@continuous-excellence/coupling-cli 1.1.509 → 1.1.510
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 +11 -11
- 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 +54 -54
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +26 -26
- 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 +19 -19
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSyntax.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +19 -19
- 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 +2 -2
- 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 +114 -114
- 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 +31 -31
- 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 +276 -276
- 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 +13 -13
- 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 +115 -115
- 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 +20 -20
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +243 -243
- 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/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 +150 -150
- 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 +35 -35
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +35 -35
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +190 -190
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +21 -21
- 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 -43
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +68 -68
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +5 -5
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +40 -40
- 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 +97 -97
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +124 -124
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +38 -38
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +141 -141
- 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 +28 -28
- 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 +22 -22
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +211 -211
- 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 +32 -32
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +46 -46
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +236 -236
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +16 -16
- 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 +19 -19
- 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 +68 -68
- 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 +24 -24
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UByte.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +22 -69
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UInt.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +22 -69
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ULong.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +22 -69
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UShort.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +22 -69
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +10 -0
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs +11 -46
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs +11 -11
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs +2 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs +6 -6
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs +9 -9
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs +4 -4
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/ReversedViews.mjs +35 -35
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs +4 -4
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs +81 -81
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs +4 -4
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs +8 -8
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs +3 -3
- package/kotlin/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs +3 -3
- package/kotlin/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs +33 -33
- package/kotlin/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs +13 -13
- package/kotlin/kotlin-kotlin-stdlib/kotlin/io/encoding/Base64.mjs +39 -39
- package/kotlin/kotlin-kotlin-stdlib/kotlin/random/Random.mjs +43 -43
- package/kotlin/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs +23 -23
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs +17 -17
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs +24 -24
- 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/sequences/SequenceBuilder.mjs +34 -34
- package/kotlin/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs +39 -39
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +60 -60
- 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 +64 -64
- 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/DirectLoggerFactory.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +9 -9
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +25 -25
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +4 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +12 -12
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +11 -11
- 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-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 +30 -30
- 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/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 +6 -6
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +6 -6
- 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 +4 -4
- 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 +90 -96
- 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 +316 -316
- 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 +30 -30
- 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 +23 -23
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs +137 -137
- 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 +5 -5
- 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/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 +16 -16
- 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/unsafe/UnsafeByteStringOperations.mjs +2 -2
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs +11 -11
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs +157 -157
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +10 -10
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs +20 -20
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs +50 -50
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs +133 -133
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +6 -6
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs +2 -2
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs +12 -12
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +58 -58
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs +12 -12
- 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 +97 -97
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +59 -59
- 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 +92 -92
- 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 +56 -62
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs.map +1 -1
- 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 +175 -175
- 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 +69 -69
- 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 +75 -75
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +36 -36
- package/kotlin/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +2 -2
- 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 +47 -47
- 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/content/ObservableContent.mjs +24 -24
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +50 -50
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +22 -22
- 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 +14 -14
- 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/JsClientEngine.mjs +83 -43
- 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 +15 -15
- 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/DefaultRequest.mjs +55 -55
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +32 -32
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +69 -69
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +78 -78
- 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 +57 -57
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +33 -33
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +31 -31
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +108 -108
- 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 +53 -53
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +80 -80
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +23 -23
- 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 +36 -36
- 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/sse/ClientSSESession.mjs +8 -8
- 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 +69 -69
- 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 +9 -9
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +81 -81
- 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 +17 -17
- 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 +58 -58
- 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 +10 -10
- 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 -2
- 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 +27 -27
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +19 -19
- 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 +4 -4
- 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.web.mjs +3 -3
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogBodyFilter.mjs +24 -24
- 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/Logging.mjs +286 -295
- 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 +12 -12
- 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 +95 -95
- 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/HttpHeaderValueParser.mjs +37 -37
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +115 -115
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +5 -5
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +15 -15
- 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/HttpUrlEncoded.mjs +4 -4
- 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 +59 -59
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilder.web.mjs +1 -1
- 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 +29 -29
- 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/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 +88 -88
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +32 -32
- 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 +2 -2
- 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 +124 -124
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs +50 -50
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +13 -13
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +64 -64
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +2 -2
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +37 -37
- 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.web.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs +15 -15
- 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 +36 -36
- 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/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/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/Pool.mjs +3 -3
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +5 -5
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +36 -36
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +81 -81
- 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 +6 -6
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.mjs +12 -12
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.web.mjs +16 -16
- package/kotlin/ktor-ktor-utils/io/ktor/util/ByteChannels.mjs +55 -55
- package/kotlin/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +647 -93
- package/kotlin/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs.map +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/ContentEncoders.web.mjs +5 -5
- package/kotlin/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs +2 -2
- package/kotlin/ktor-ktor-utils/io/ktor/util/Crypto.web.mjs +6 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/Crypto.web.mjs.map +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/Encoders.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +16 -16
- package/kotlin/ktor-ktor-utils/io/ktor/util/StringValues.mjs +398 -136
- package/kotlin/ktor-ktor-utils/io/ktor/util/StringValues.mjs.map +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/Text.mjs +0 -52
- package/kotlin/ktor-ktor-utils/io/ktor/util/Text.mjs.map +1 -1
- 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/LockFreeLinkedList.mjs +8 -8
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLogger.web.mjs +10 -10
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/Logger.web.mjs +1 -1
- 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 +53 -53
- 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/SuspendFunctionGun.mjs +52 -52
- package/kotlin/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +9 -9
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +19 -19
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs +121 -121
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/Frame.web.mjs +41 -41
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +8 -8
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +6 -6
- 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/WebSocketChannelsConfig.mjs +46 -46
- 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 +6 -6
- 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 +57 -57
- 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 +61 -67
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs.map +1 -1
- 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 +241 -241
- 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 +54 -54
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +7 -7
- 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 +62 -62
- 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 +160 -160
- 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-utils/io/ktor/util/DelegatingMutableSet.mjs +0 -159
- package/kotlin/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs.map +0 -1
|
@@ -53,6 +53,7 @@ import { CoroutineScopelux7s7zphw7e as CoroutineScope } from '../../../../../../
|
|
|
53
53
|
import { buildHeaders3beu05fiq9iq2 as buildHeaders } from '../../utils/headers.mjs';
|
|
54
54
|
import { intercepted2ogpsikxxj4u0 as intercepted } from '../../../../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs';
|
|
55
55
|
import { CancellableContinuationImpl1cx201opicavg as CancellableContinuationImpl } from '../../../../../../kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs';
|
|
56
|
+
import { throwUninitializedPropertyAccessException14fok093f3k3t as throwUninitializedPropertyAccessException } from '../../../../../../kotlin-kotlin-stdlib/kotlin/internal/ThrowHelpers.mjs';
|
|
56
57
|
import { StringBuildermazzzhj6kkai as StringBuilder } from '../../../../../../kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs';
|
|
57
58
|
import { dropCompressionHeaders12falb2m2fkr1 as dropCompressionHeaders } from '../../utils/HeadersUtils.mjs';
|
|
58
59
|
import {
|
|
@@ -66,7 +67,7 @@ import {
|
|
|
66
67
|
//endregion
|
|
67
68
|
function *createWebSocket($this, urlString_capturingHack, headers, $completion) {
|
|
68
69
|
// Inline function 'kotlin.collections.filter' call
|
|
69
|
-
var tmp0 = headers.
|
|
70
|
+
var tmp0 = headers.c2m();
|
|
70
71
|
// Inline function 'kotlin.collections.filterTo' call
|
|
71
72
|
var destination = ArrayList().i2();
|
|
72
73
|
var _iterator__ex2g4s = tmp0.l1();
|
|
@@ -84,7 +85,7 @@ function *createWebSocket($this, urlString_capturingHack, headers, $completion)
|
|
|
84
85
|
var _iterator__ex2g4s_0 = protocolHeaderNames.l1();
|
|
85
86
|
while (_iterator__ex2g4s_0.m1()) {
|
|
86
87
|
var element_0 = _iterator__ex2g4s_0.n1();
|
|
87
|
-
var tmp0_safe_receiver = headers.
|
|
88
|
+
var tmp0_safe_receiver = headers.b2m(element_0);
|
|
88
89
|
if (tmp0_safe_receiver == null)
|
|
89
90
|
null;
|
|
90
91
|
else {
|
|
@@ -96,23 +97,23 @@ function *createWebSocket($this, urlString_capturingHack, headers, $completion)
|
|
|
96
97
|
var this_0 = flatten(destination_0);
|
|
97
98
|
var protocols = copyToArray(this_0);
|
|
98
99
|
var tmp;
|
|
99
|
-
if (PlatformUtils_getInstance().
|
|
100
|
+
if (PlatformUtils_getInstance().m2l_1) {
|
|
100
101
|
tmp = new WebSocket(urlString_capturingHack, protocols);
|
|
101
102
|
} else {
|
|
102
103
|
var ws_import = import('ws');
|
|
103
104
|
var ws_capturingHack = (yield* await_0(ws_import, $completion)).default;
|
|
104
105
|
var headers_capturingHack = new (JsClientEngine$createWebSocket$headers_capturingHack$1())();
|
|
105
|
-
headers.
|
|
106
|
+
headers.g2m(JsClientEngine$createWebSocket$lambda(headers_capturingHack));
|
|
106
107
|
tmp = new ws_capturingHack(urlString_capturingHack, protocols, {headers: headers_capturingHack});
|
|
107
108
|
}
|
|
108
109
|
return tmp;
|
|
109
110
|
}
|
|
110
111
|
function *executeWebSocketRequest($this, request, callContext, $completion) {
|
|
111
112
|
var requestTime = GMTDate();
|
|
112
|
-
var urlString = request.
|
|
113
|
-
var wsConfig = request.
|
|
114
|
-
var socket = yield* /*#__NOINLINE__*/createWebSocket($this, urlString, request.
|
|
115
|
-
var session = new (JsWebSocketSession())(callContext, socket, wsConfig.
|
|
113
|
+
var urlString = request.h3j_1.toString();
|
|
114
|
+
var wsConfig = request.m3j_1.b2j(get_WEBSOCKETS_KEY());
|
|
115
|
+
var socket = yield* /*#__NOINLINE__*/createWebSocket($this, urlString, request.j3j_1, $completion);
|
|
116
|
+
var session = new (JsWebSocketSession())(callContext, socket, wsConfig.h3v_1);
|
|
116
117
|
try {
|
|
117
118
|
yield* awaitConnection(socket, $completion);
|
|
118
119
|
} catch ($p) {
|
|
@@ -134,8 +135,8 @@ function *executeWebSocketRequest($this, request, callContext, $completion) {
|
|
|
134
135
|
tmp = null;
|
|
135
136
|
}
|
|
136
137
|
var protocol = tmp;
|
|
137
|
-
var headers = !(protocol == null) ? headersOf('Sec-WebSocket-Protocol', protocol) : Companion_getInstance().
|
|
138
|
-
return new (HttpResponseData())(Companion_getInstance_0().
|
|
138
|
+
var headers = !(protocol == null) ? headersOf('Sec-WebSocket-Protocol', protocol) : Companion_getInstance().k2x_1;
|
|
139
|
+
return new (HttpResponseData())(Companion_getInstance_0().c2z_1, requestTime, headers, Companion_getInstance_1().u2y_1, session, callContext);
|
|
139
140
|
}
|
|
140
141
|
function JsClientEngine$execute$lambda(_this__u8e3s4) {
|
|
141
142
|
return Unit_instance;
|
|
@@ -161,30 +162,30 @@ function JsClientEngine() {
|
|
|
161
162
|
class $ extends HttpClientEngineBase() {
|
|
162
163
|
constructor(config) {
|
|
163
164
|
super('ktor-js');
|
|
164
|
-
this.
|
|
165
|
-
this.
|
|
165
|
+
this.a3z_1 = config;
|
|
166
|
+
this.b3z_1 = setOf([HttpTimeoutCapability_instance, WebSocketCapability_instance, SSECapability_instance]);
|
|
166
167
|
// Inline function 'kotlin.check' call
|
|
167
|
-
if (!(this.
|
|
168
|
+
if (!(this.a3z_1.g3k_1 == null)) {
|
|
168
169
|
var message = 'Proxy unsupported in Js engine.';
|
|
169
170
|
throw IllegalStateException().o(toString(message));
|
|
170
171
|
}
|
|
171
172
|
}
|
|
172
|
-
|
|
173
|
-
return this.
|
|
173
|
+
w3e() {
|
|
174
|
+
return this.a3z_1;
|
|
174
175
|
}
|
|
175
|
-
|
|
176
|
-
return this.
|
|
176
|
+
o3j() {
|
|
177
|
+
return this.b3z_1;
|
|
177
178
|
}
|
|
178
|
-
*
|
|
179
|
+
*c3k(data, $completion) {
|
|
179
180
|
var callContext_0 = yield* callContext($completion);
|
|
180
|
-
var clientConfig = data.
|
|
181
|
+
var clientConfig = data.m3j_1.b2j(get_CLIENT_CONFIG());
|
|
181
182
|
if (isUpgradeRequest(data)) {
|
|
182
183
|
return yield* /*#__NOINLINE__*/executeWebSocketRequest(this, data, callContext_0, $completion);
|
|
183
184
|
}
|
|
184
185
|
var requestTime = GMTDate();
|
|
185
186
|
var rawRequest = yield* toRaw(data, clientConfig, callContext_0, $completion);
|
|
186
|
-
var tmp0_safe_receiver = data.
|
|
187
|
-
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
187
|
+
var tmp0_safe_receiver = data.m3j_1.c2j(Companion_getInstance_2().l3y_1);
|
|
188
|
+
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.m3y_1;
|
|
188
189
|
var tmp;
|
|
189
190
|
if (tmp1_elvis_lhs == null) {
|
|
190
191
|
tmp = JsClientEngine$execute$lambda;
|
|
@@ -192,13 +193,13 @@ function JsClientEngine() {
|
|
|
192
193
|
tmp = tmp1_elvis_lhs;
|
|
193
194
|
}
|
|
194
195
|
var fetchOptions = tmp;
|
|
195
|
-
var rawResponse = yield* commonFetch(data.
|
|
196
|
+
var rawResponse = yield* commonFetch(data.h3j_1.toString(), rawRequest, fetchOptions, this.a3z_1, get_job(callContext_0), $completion);
|
|
196
197
|
var status = new (HttpStatusCode())(rawResponse.status, rawResponse.statusText);
|
|
197
|
-
var headers = mapToKtor(rawResponse.headers, data.
|
|
198
|
-
var version = Companion_getInstance_1().
|
|
198
|
+
var headers = mapToKtor(rawResponse.headers, data.i3j_1, data.m3j_1);
|
|
199
|
+
var version = Companion_getInstance_1().u2y_1;
|
|
199
200
|
var body = readBody(CoroutineScope(callContext_0), rawResponse);
|
|
200
|
-
var tmp2_safe_receiver = data.
|
|
201
|
-
var tmp3_elvis_lhs = tmp2_safe_receiver == null ? null : tmp2_safe_receiver.
|
|
201
|
+
var tmp2_safe_receiver = data.m3j_1.c2j(get_ResponseAdapterAttributeKey());
|
|
202
|
+
var tmp3_elvis_lhs = tmp2_safe_receiver == null ? null : tmp2_safe_receiver.i3w(data, status, headers, body, data.k3j_1, callContext_0);
|
|
202
203
|
var responseBody = tmp3_elvis_lhs == null ? body : tmp3_elvis_lhs;
|
|
203
204
|
return new (HttpResponseData())(status, requestTime, headers, version, responseBody, callContext_0);
|
|
204
205
|
}
|
|
@@ -217,17 +218,30 @@ function *awaitConnection(_this__u8e3s4, $completion) {
|
|
|
217
218
|
return yield () => {
|
|
218
219
|
var uCont = $completion;
|
|
219
220
|
var cancellable = new (CancellableContinuationImpl())(intercepted(uCont), 1);
|
|
220
|
-
cancellable.
|
|
221
|
+
cancellable.r10();
|
|
221
222
|
$l$block: {
|
|
222
|
-
if (cancellable.
|
|
223
|
+
if (cancellable.yx()) {
|
|
223
224
|
break $l$block;
|
|
224
225
|
}
|
|
225
|
-
var eventListener =
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
226
|
+
var eventListener = {_v: null};
|
|
227
|
+
eventListener._v = awaitConnection$lambda(_this__u8e3s4, eventListener, cancellable);
|
|
228
|
+
var tmp;
|
|
229
|
+
if (eventListener._v == null) {
|
|
230
|
+
throwUninitializedPropertyAccessException('eventListener');
|
|
231
|
+
} else {
|
|
232
|
+
tmp = eventListener._v;
|
|
233
|
+
}
|
|
234
|
+
_this__u8e3s4.addEventListener('open', tmp);
|
|
235
|
+
var tmp_0;
|
|
236
|
+
if (eventListener._v == null) {
|
|
237
|
+
throwUninitializedPropertyAccessException('eventListener');
|
|
238
|
+
} else {
|
|
239
|
+
tmp_0 = eventListener._v;
|
|
240
|
+
}
|
|
241
|
+
_this__u8e3s4.addEventListener('error', tmp_0);
|
|
242
|
+
cancellable.u11(awaitConnection$lambda_0(_this__u8e3s4, eventListener));
|
|
229
243
|
}
|
|
230
|
-
return cancellable.
|
|
244
|
+
return cancellable.s10();
|
|
231
245
|
};
|
|
232
246
|
}
|
|
233
247
|
function asString(_this__u8e3s4) {
|
|
@@ -244,7 +258,7 @@ function asString(_this__u8e3s4) {
|
|
|
244
258
|
}
|
|
245
259
|
function mapToKtor$lambda$lambda($this_buildHeaders) {
|
|
246
260
|
return (value, key) => {
|
|
247
|
-
$this_buildHeaders.
|
|
261
|
+
$this_buildHeaders.u2l(key, value);
|
|
248
262
|
return Unit_instance;
|
|
249
263
|
};
|
|
250
264
|
}
|
|
@@ -252,14 +266,28 @@ function mapToKtor$lambda($this_mapToKtor, $method, $attributes) {
|
|
|
252
266
|
return ($this$buildHeaders) => {
|
|
253
267
|
// Inline function 'kotlin.js.asDynamic' call
|
|
254
268
|
$this_mapToKtor.forEach(mapToKtor$lambda$lambda($this$buildHeaders));
|
|
255
|
-
dropCompressionHeaders($this$buildHeaders, $method, $attributes, PlatformUtils_getInstance().
|
|
269
|
+
dropCompressionHeaders($this$buildHeaders, $method, $attributes, PlatformUtils_getInstance().m2l_1);
|
|
256
270
|
return Unit_instance;
|
|
257
271
|
};
|
|
258
272
|
}
|
|
259
|
-
function awaitConnection$lambda($
|
|
273
|
+
function awaitConnection$lambda($this_awaitConnection, $eventListener, $continuation) {
|
|
260
274
|
return (event) => {
|
|
261
|
-
var tmp0_subject = event.type;
|
|
262
275
|
var tmp;
|
|
276
|
+
if ($eventListener._v == null) {
|
|
277
|
+
throwUninitializedPropertyAccessException('eventListener');
|
|
278
|
+
} else {
|
|
279
|
+
tmp = $eventListener._v;
|
|
280
|
+
}
|
|
281
|
+
$this_awaitConnection.removeEventListener('open', tmp);
|
|
282
|
+
var tmp_0;
|
|
283
|
+
if ($eventListener._v == null) {
|
|
284
|
+
throwUninitializedPropertyAccessException('eventListener');
|
|
285
|
+
} else {
|
|
286
|
+
tmp_0 = $eventListener._v;
|
|
287
|
+
}
|
|
288
|
+
$this_awaitConnection.removeEventListener('error', tmp_0);
|
|
289
|
+
var tmp0_subject = event.type;
|
|
290
|
+
var tmp_1;
|
|
263
291
|
if (tmp0_subject === 'open') {
|
|
264
292
|
var tmp0 = $continuation;
|
|
265
293
|
// Inline function 'kotlin.coroutines.resume' call
|
|
@@ -267,27 +295,39 @@ function awaitConnection$lambda($continuation, $this_awaitConnection) {
|
|
|
267
295
|
var value = $this_awaitConnection;
|
|
268
296
|
var tmp$ret$1 = _Result___init__impl__xyqfz8(value);
|
|
269
297
|
tmp0.yc(tmp$ret$1);
|
|
270
|
-
|
|
298
|
+
tmp_1 = Unit_instance;
|
|
271
299
|
} else if (tmp0_subject === 'error') {
|
|
272
300
|
var tmp0_0 = $continuation;
|
|
273
301
|
// Inline function 'kotlin.coroutines.resumeWithException' call
|
|
274
302
|
// Inline function 'kotlin.Companion.failure' call
|
|
275
|
-
var exception = WebSocketException().
|
|
303
|
+
var exception = WebSocketException().c3v(asString(event));
|
|
276
304
|
var tmp$ret$3 = _Result___init__impl__xyqfz8(createFailure(exception));
|
|
277
305
|
tmp0_0.yc(tmp$ret$3);
|
|
278
|
-
|
|
306
|
+
tmp_1 = Unit_instance;
|
|
279
307
|
}
|
|
280
308
|
return Unit_instance;
|
|
281
309
|
};
|
|
282
310
|
}
|
|
283
311
|
function awaitConnection$lambda_0($this_awaitConnection, $eventListener) {
|
|
284
312
|
return (it) => {
|
|
285
|
-
$this_awaitConnection.removeEventListener('open', $eventListener);
|
|
286
|
-
$this_awaitConnection.removeEventListener('error', $eventListener);
|
|
287
313
|
var tmp;
|
|
314
|
+
if ($eventListener._v == null) {
|
|
315
|
+
throwUninitializedPropertyAccessException('eventListener');
|
|
316
|
+
} else {
|
|
317
|
+
tmp = $eventListener._v;
|
|
318
|
+
}
|
|
319
|
+
$this_awaitConnection.removeEventListener('open', tmp);
|
|
320
|
+
var tmp_0;
|
|
321
|
+
if ($eventListener._v == null) {
|
|
322
|
+
throwUninitializedPropertyAccessException('eventListener');
|
|
323
|
+
} else {
|
|
324
|
+
tmp_0 = $eventListener._v;
|
|
325
|
+
}
|
|
326
|
+
$this_awaitConnection.removeEventListener('error', tmp_0);
|
|
327
|
+
var tmp_1;
|
|
288
328
|
if (!(it == null)) {
|
|
289
329
|
$this_awaitConnection.close();
|
|
290
|
-
|
|
330
|
+
tmp_1 = Unit_instance;
|
|
291
331
|
}
|
|
292
332
|
return Unit_instance;
|
|
293
333
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-client/ktor-client-core/js/src/io/ktor/client/engine/js/JsClientEngine.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/common/src/generated/_Collections.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/js/src/kotlin/collectionJs.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/src/kotlin/util/Standard.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/src/kotlin/text/Strings.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/src/kotlin/util/Preconditions.kt","../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/Await.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/src/kotlin/text/StringBuilder.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/js/builtins/Library.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/src/kotlin/util/Result.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/src/kotlin/coroutines/Continuation.kt"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["createWebSocket","$this","element","protocolHeaderNames","protocols","ws_import","ws_capturingHack","headers_capturingHack","executeWebSocketRequest","requestTime","urlString","wsConfig","socket","session","cause","protocol","headers","JsClientEngine$execute$lambda","JsClientEngine$createWebSocket$lambda","JsClientEngine$createWebSocket$lambda$lambda","config","message","<get-config>","<get-supportedCapabilities>","execute","data","$completion","callContext","clientConfig","rawRequest","fetchOptions","rawResponse","status","version","body","responseBody","mapToKtor","<this>","method","attributes","awaitConnection","cancellable","eventListener","asString","mapToKtor$lambda$lambda","mapToKtor$lambda$lambda$lambda","mapToKtor$lambda","awaitConnection$lambda","awaitConnection$lambda$lambda"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-client/ktor-client-core/js/src/io/ktor/client/engine/js/JsClientEngine.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/common/src/generated/_Collections.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/js/src/kotlin/collectionJs.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/src/kotlin/util/Standard.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/src/kotlin/text/Strings.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/src/kotlin/util/Preconditions.kt","../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/Await.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/src/kotlin/text/StringBuilder.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/js/builtins/Library.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/src/kotlin/util/Result.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/src/kotlin/coroutines/Continuation.kt"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["createWebSocket","$this","element","protocolHeaderNames","protocols","ws_import","ws_capturingHack","headers_capturingHack","executeWebSocketRequest","requestTime","urlString","wsConfig","socket","session","cause","protocol","headers","JsClientEngine$execute$lambda","JsClientEngine$createWebSocket$lambda","JsClientEngine$createWebSocket$lambda$lambda","config","message","<get-config>","<get-supportedCapabilities>","execute","data","$completion","callContext","clientConfig","rawRequest","fetchOptions","rawResponse","status","version","body","responseBody","mapToKtor","<this>","method","attributes","awaitConnection","cancellable","eventListener","asString","mapToKtor$lambda$lambda","mapToKtor$lambda$lambda$lambda","mapToKtor$lambda","awaitConnection$lambda","awaitConnection$lambda$lambda"],"mappings":"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"}
|
|
@@ -32,31 +32,31 @@ import { initMetadataForLambda3af3he42mmnh as initMetadataForLambda } from '../.
|
|
|
32
32
|
function *toRaw(_this__u8e3s4, clientConfig, callContext, $completion) {
|
|
33
33
|
var jsHeaders = {};
|
|
34
34
|
// Inline function 'io.ktor.client.request.forEachHeader' call
|
|
35
|
-
var skipContentLengthHeader = !get_supportsRequestBody(_this__u8e3s4.
|
|
36
|
-
mergeHeaders(_this__u8e3s4.
|
|
37
|
-
var bodyBytes = yield* getBodyBytes(_this__u8e3s4.
|
|
35
|
+
var skipContentLengthHeader = !get_supportsRequestBody(_this__u8e3s4.i3j_1) && isEmpty(_this__u8e3s4.k3j_1);
|
|
36
|
+
mergeHeaders(_this__u8e3s4.j3j_1, _this__u8e3s4.k3j_1, toRaw$lambda(skipContentLengthHeader, jsHeaders));
|
|
37
|
+
var bodyBytes = yield* getBodyBytes(_this__u8e3s4.k3j_1, callContext, $completion);
|
|
38
38
|
return buildObject(toRaw$lambda_0(_this__u8e3s4, jsHeaders, clientConfig, bodyBytes));
|
|
39
39
|
}
|
|
40
40
|
function *getBodyBytes(content, callContext, $completion) {
|
|
41
41
|
var tmp;
|
|
42
42
|
if (content instanceof ByteArrayContent()) {
|
|
43
|
-
tmp = content.
|
|
43
|
+
tmp = content.e34();
|
|
44
44
|
} else {
|
|
45
45
|
if (content instanceof ReadChannelContent()) {
|
|
46
|
-
tmp = readByteArray(yield* readRemaining(content.
|
|
46
|
+
tmp = readByteArray(yield* readRemaining(content.h34(), $completion));
|
|
47
47
|
} else {
|
|
48
48
|
if (content instanceof WriteChannelContent()) {
|
|
49
49
|
var tmp_0 = GlobalScope_instance;
|
|
50
|
-
tmp = readByteArray(yield* readRemaining(writer(tmp_0, callContext, VOID, getBodyBytes$slambda_0(content)).
|
|
50
|
+
tmp = readByteArray(yield* readRemaining(writer(tmp_0, callContext, VOID, getBodyBytes$slambda_0(content)).t1u_1, $completion));
|
|
51
51
|
} else {
|
|
52
52
|
if (content instanceof ContentWrapper()) {
|
|
53
|
-
tmp = yield* getBodyBytes(content.
|
|
53
|
+
tmp = yield* getBodyBytes(content.n34(), callContext, $completion);
|
|
54
54
|
} else {
|
|
55
55
|
if (content instanceof NoContent()) {
|
|
56
56
|
tmp = null;
|
|
57
57
|
} else {
|
|
58
58
|
if (content instanceof ProtocolUpgrade()) {
|
|
59
|
-
throw UnsupportedContentTypeException().
|
|
59
|
+
throw UnsupportedContentTypeException().a3j(content);
|
|
60
60
|
} else {
|
|
61
61
|
noWhenBranchMatchedException();
|
|
62
62
|
}
|
|
@@ -85,10 +85,10 @@ function toRaw$lambda($skipContentLengthHeader, $jsHeaders) {
|
|
|
85
85
|
}
|
|
86
86
|
function toRaw$lambda_0($this_toRaw, $jsHeaders, $clientConfig, $bodyBytes) {
|
|
87
87
|
return ($this$buildObject) => {
|
|
88
|
-
$this$buildObject.method = $this_toRaw.
|
|
88
|
+
$this$buildObject.method = $this_toRaw.i3j_1.r2y_1;
|
|
89
89
|
$this$buildObject.headers = $jsHeaders;
|
|
90
90
|
var tmp;
|
|
91
|
-
if ($clientConfig.
|
|
91
|
+
if ($clientConfig.h3f_1) {
|
|
92
92
|
// Inline function 'org.w3c.fetch.FOLLOW' call
|
|
93
93
|
// Inline function 'kotlin.js.asDynamic' call
|
|
94
94
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
@@ -115,14 +115,14 @@ function getBodyBytes$slambda() {
|
|
|
115
115
|
if (getBodyBytes$slambdaClass === VOID) {
|
|
116
116
|
class $ {
|
|
117
117
|
constructor($content) {
|
|
118
|
-
this.
|
|
118
|
+
this.c3z_1 = $content;
|
|
119
119
|
}
|
|
120
|
-
*
|
|
121
|
-
yield* this.
|
|
120
|
+
*v36($this$writer, $completion) {
|
|
121
|
+
yield* this.c3z_1.j34($this$writer.v1u_1, $completion);
|
|
122
122
|
return Unit_instance;
|
|
123
123
|
}
|
|
124
124
|
vd(p1, $completion) {
|
|
125
|
-
return this.
|
|
125
|
+
return this.v36(p1 instanceof WriterScope() ? p1 : THROW_CCE(), $completion);
|
|
126
126
|
}
|
|
127
127
|
}
|
|
128
128
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -132,7 +132,7 @@ function getBodyBytes$slambda() {
|
|
|
132
132
|
}
|
|
133
133
|
function getBodyBytes$slambda_0($content) {
|
|
134
134
|
var i = new (getBodyBytes$slambda())($content);
|
|
135
|
-
var l = ($this$writer, $completion) => i.
|
|
135
|
+
var l = ($this$writer, $completion) => i.v36($this$writer, $completion);
|
|
136
136
|
l.$arity = 1;
|
|
137
137
|
return l;
|
|
138
138
|
}
|
|
@@ -25,7 +25,7 @@ function readBodyBrowser(_this__u8e3s4, response) {
|
|
|
25
25
|
var tmp0_elvis_lhs = response.body;
|
|
26
26
|
var tmp;
|
|
27
27
|
if (tmp0_elvis_lhs == null) {
|
|
28
|
-
return Companion_getInstance().
|
|
28
|
+
return Companion_getInstance().n1u_1;
|
|
29
29
|
} else {
|
|
30
30
|
tmp = tmp0_elvis_lhs;
|
|
31
31
|
}
|
|
@@ -33,7 +33,7 @@ function readBodyBrowser(_this__u8e3s4, response) {
|
|
|
33
33
|
return channelFromStream(_this__u8e3s4, stream);
|
|
34
34
|
}
|
|
35
35
|
function channelFromStream(_this__u8e3s4, stream) {
|
|
36
|
-
return writer(_this__u8e3s4, VOID, VOID, channelFromStream$slambda_0(stream)).
|
|
36
|
+
return writer(_this__u8e3s4, VOID, VOID, channelFromStream$slambda_0(stream)).t1u_1;
|
|
37
37
|
}
|
|
38
38
|
function *readChunk(_this__u8e3s4, $completion) {
|
|
39
39
|
// Inline function 'kotlin.coroutines.suspendCoroutine' call
|
|
@@ -55,10 +55,10 @@ function channelFromStream$slambda() {
|
|
|
55
55
|
if (channelFromStream$slambdaClass === VOID) {
|
|
56
56
|
class $ {
|
|
57
57
|
constructor($stream) {
|
|
58
|
-
this.
|
|
58
|
+
this.d3z_1 = $stream;
|
|
59
59
|
}
|
|
60
|
-
*
|
|
61
|
-
var reader = this.
|
|
60
|
+
*v36($this$writer, $completion) {
|
|
61
|
+
var reader = this.d3z_1.getReader();
|
|
62
62
|
try {
|
|
63
63
|
$l$loop: while (true) {
|
|
64
64
|
var tmp0_elvis_lhs = yield* /*#__NOINLINE__*/readChunk(reader, $completion);
|
|
@@ -69,8 +69,8 @@ function channelFromStream$slambda() {
|
|
|
69
69
|
tmp = tmp0_elvis_lhs;
|
|
70
70
|
}
|
|
71
71
|
var chunk = tmp;
|
|
72
|
-
yield* writeFully($this$writer.
|
|
73
|
-
yield* $this$writer.
|
|
72
|
+
yield* writeFully($this$writer.v1u_1, asByteArray(chunk), VOID, VOID, $completion);
|
|
73
|
+
yield* $this$writer.v1u_1.x1t($completion);
|
|
74
74
|
}
|
|
75
75
|
} catch ($p) {
|
|
76
76
|
if ($p instanceof Error) {
|
|
@@ -85,7 +85,7 @@ function channelFromStream$slambda() {
|
|
|
85
85
|
return Unit_instance;
|
|
86
86
|
}
|
|
87
87
|
vd(p1, $completion) {
|
|
88
|
-
return this.
|
|
88
|
+
return this.v36(p1 instanceof WriterScope() ? p1 : THROW_CCE(), $completion);
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
91
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -95,7 +95,7 @@ function channelFromStream$slambda() {
|
|
|
95
95
|
}
|
|
96
96
|
function channelFromStream$slambda_0($stream) {
|
|
97
97
|
var i = new (channelFromStream$slambda())($stream);
|
|
98
|
-
var l = ($this$writer, $completion) => i.
|
|
98
|
+
var l = ($this$writer, $completion) => i.v36($this$writer, $completion);
|
|
99
99
|
l.$arity = 1;
|
|
100
100
|
return l;
|
|
101
101
|
}
|
|
@@ -20,23 +20,23 @@ function *commonFetch(input, init, requestConfig, config, callJob, $completion)
|
|
|
20
20
|
return yield () => {
|
|
21
21
|
var uCont = $completion;
|
|
22
22
|
var cancellable = new (CancellableContinuationImpl())(intercepted(uCont), 1);
|
|
23
|
-
cancellable.
|
|
23
|
+
cancellable.r10();
|
|
24
24
|
var controller = AbortController_0();
|
|
25
25
|
init.signal = controller.signal;
|
|
26
|
-
config.
|
|
26
|
+
config.s3y_1(init);
|
|
27
27
|
requestConfig(init);
|
|
28
|
-
callJob.
|
|
28
|
+
callJob.gy(true, VOID, commonFetch$lambda(controller));
|
|
29
29
|
var tmp;
|
|
30
|
-
if (PlatformUtils_getInstance().
|
|
30
|
+
if (PlatformUtils_getInstance().m2l_1) {
|
|
31
31
|
tmp = fetch(input, init);
|
|
32
32
|
} else {
|
|
33
|
-
var options = Object.assign(Object.create(null), init, config.
|
|
33
|
+
var options = Object.assign(Object.create(null), init, config.t3y_1);
|
|
34
34
|
tmp = fetch(input, options);
|
|
35
35
|
}
|
|
36
36
|
var promise = tmp;
|
|
37
37
|
var tmp_0 = commonFetch$lambda_0(cancellable);
|
|
38
38
|
promise.then(tmp_0, commonFetch$lambda_1(cancellable));
|
|
39
|
-
return cancellable.
|
|
39
|
+
return cancellable.s10();
|
|
40
40
|
};
|
|
41
41
|
}
|
|
42
42
|
function readBody(_this__u8e3s4, response) {
|