@continuous-excellence/coupling-cli 1.1.545 → 1.1.547
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 +37 -37
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +12 -12
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +26 -26
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +2 -2
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +16 -16
- 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 +43 -43
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +26 -26
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +38 -38
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.mjs +51 -51
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +37 -37
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +17 -17
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +32 -32
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +57 -57
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +10 -10
- 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 +52 -52
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/DeviceCodeRequest.mjs +30 -30
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +13 -13
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/CouplingJsonFormat.mjs +4 -4
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +106 -106
- 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 +33 -33
- 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 +2 -2
- 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 +31 -31
- 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/ContributionDetailsMapper.mjs +16 -16
- 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/PartyContributionReportContributionsQuery.mjs +38 -38
- 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/PartyContributionReportContributionsQuery_ResponseAdapter.mjs +39 -39
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_VariablesAdapter.mjs +6 -6
- 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/ContributionDetails.mjs +50 -50
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.mjs +55 -55
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +75 -75
- 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 +30 -30
- 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 +27 -27
- 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 +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs +4 -4
- 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/ContributionWindow_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionsInput_InputAdapter.mjs +10 -10
- 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 +110 -110
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloRequest.mjs +55 -55
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloResponse.mjs +60 -60
- 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 +43 -43
- 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 +8 -8
- 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 +131 -131
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/Http.mjs +55 -55
- 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 +24 -24
- 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 +272 -272
- 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 +10 -10
- 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 +99 -99
- 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 +218 -218
- 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/flows.mjs +22 -22
- 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 +24 -24
- 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 +122 -122
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +12 -12
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +32 -32
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +148 -148
- 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 +37 -37
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +47 -47
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +28 -28
- 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 +107 -107
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +95 -95
- 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 +47 -47
- 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 +12 -12
- 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 +196 -196
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +5 -5
- 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/command/SuspendingCliktCommand.mjs +2 -2
- 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 +133 -133
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +62 -62
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +19 -19
- 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 +24 -24
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +4 -4
- 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.mjs +41 -41
- package/kotlin/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +2 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs +11 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +13 -12
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs +4 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +39 -39
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +19 -19
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +52 -52
- 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 +73 -73
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonExceptions.mjs +18 -18
- 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 +177 -177
- 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 +69 -69
- 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 +7 -7
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +10 -10
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +38 -38
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +11 -11
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +61 -61
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +4 -4
- 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 +144 -144
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +98 -98
- 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 +200 -200
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonEncoder.mjs +130 -130
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +3 -3
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +58 -58
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +96 -87
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClient.web.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +35 -35
- 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 +39 -39
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +44 -44
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +47 -47
- 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 +12 -12
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +35 -35
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +49 -45
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs.map +1 -1
- 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 +2 -2
- 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 +122 -89
- 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/browser/BrowserFetch.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +34 -34
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultRequest.mjs +39 -39
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +31 -31
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +39 -39
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +73 -73
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +45 -45
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +30 -30
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +20 -20
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +99 -99
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +50 -50
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +64 -64
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +15 -15
- 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 +25 -25
- 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 +30 -30
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/observer/ResponseObserver.mjs +51 -51
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/ClientSessions.mjs +20 -20
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +181 -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 +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +64 -64
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/builders.mjs +13 -13
- 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 +17 -17
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +55 -55
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +16 -16
- 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 +7 -7
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/formBuilders.mjs +10 -10
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +18 -18
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +23 -23
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +16 -16
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +8 -8
- 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 +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/{engine/js/JsUtils.mjs → utils/JsUtils.js.mjs} +32 -23
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/JsUtils.js.mjs.map +1 -0
- 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/LogBodyFilter.mjs +17 -17
- 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 +11 -11
- 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 +235 -235
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggingUtils.mjs +11 -11
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/ObservingUtils.mjs +2 -2
- package/kotlin/ktor-ktor-events/io/ktor/events/Events.mjs +2 -1
- package/kotlin/ktor-ktor-events/io/ktor/events/Events.mjs.map +1 -1
- 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 +56 -56
- package/kotlin/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +6 -6
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +51 -32
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +2 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -1
- 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 +60 -60
- 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 +75 -75
- 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 +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +149 -149
- 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 +59 -59
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
- package/kotlin/okio-parent-okio/okio/Buffer.mjs +393 -393
- 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 +1 -1
- 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 +61 -61
- package/kotlin/okio-parent-okio/okio/Segment.mjs +69 -69
- package/kotlin/okio-parent-okio/okio/SegmentPool.mjs +4 -4
- 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 +21 -21
- 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 +120 -120
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +37 -37
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +22 -22
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +27 -27
- package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +4 -4
- package/kotlin/uuid/com/benasher44/uuid/uuid.mjs +11 -11
- package/package.json +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs.map +0 -1
|
@@ -45,10 +45,10 @@ function HttpSend$Plugin$install$slambda() {
|
|
|
45
45
|
if (HttpSend$Plugin$install$slambdaClass === VOID) {
|
|
46
46
|
class $ {
|
|
47
47
|
constructor($plugin, $scope) {
|
|
48
|
-
this.
|
|
49
|
-
this.
|
|
48
|
+
this.w3q_1 = $plugin;
|
|
49
|
+
this.x3q_1 = $scope;
|
|
50
50
|
}
|
|
51
|
-
*
|
|
51
|
+
*c3e($this$intercept, content, $completion) {
|
|
52
52
|
// Inline function 'kotlin.check' call
|
|
53
53
|
if (!(content instanceof OutgoingContent())) {
|
|
54
54
|
var message = trimMargin('\n|Fail to prepare request body for sending. \n|The body type is: ' + toString(getKClassFromExpression(content)) + ', with Content-Type: ' + toString_0(contentType($this$intercept.e2p_1)) + '.\n|\n|If you expect serialized body, please check that you have installed the corresponding plugin(like `ContentNegotiation`) and set `Content-Type` header.');
|
|
@@ -57,7 +57,7 @@ function HttpSend$Plugin$install$slambda() {
|
|
|
57
57
|
// Inline function 'io.ktor.client.request.setBody' call
|
|
58
58
|
var this_0 = $this$intercept.e2p_1;
|
|
59
59
|
if (content == null) {
|
|
60
|
-
this_0.
|
|
60
|
+
this_0.d3g_1 = NullBody_instance;
|
|
61
61
|
// Inline function 'io.ktor.util.reflect.typeInfo' call
|
|
62
62
|
var tmp = getKClass(OutgoingContent());
|
|
63
63
|
// Inline function 'io.ktor.util.reflect.typeOfOrNull' call
|
|
@@ -76,13 +76,13 @@ function HttpSend$Plugin$install$slambda() {
|
|
|
76
76
|
}
|
|
77
77
|
var tmp$ret$4 = tmp_0;
|
|
78
78
|
var tmp$ret$3 = new (TypeInfo())(tmp, tmp$ret$4);
|
|
79
|
-
this_0.
|
|
79
|
+
this_0.x3j(tmp$ret$3);
|
|
80
80
|
} else {
|
|
81
81
|
if (content instanceof OutgoingContent()) {
|
|
82
|
-
this_0.
|
|
83
|
-
this_0.
|
|
82
|
+
this_0.d3g_1 = content;
|
|
83
|
+
this_0.x3j(null);
|
|
84
84
|
} else {
|
|
85
|
-
this_0.
|
|
85
|
+
this_0.d3g_1 = content;
|
|
86
86
|
// Inline function 'io.ktor.util.reflect.typeInfo' call
|
|
87
87
|
var tmp_2 = getKClass(OutgoingContent());
|
|
88
88
|
// Inline function 'io.ktor.util.reflect.typeOfOrNull' call
|
|
@@ -101,12 +101,12 @@ function HttpSend$Plugin$install$slambda() {
|
|
|
101
101
|
}
|
|
102
102
|
var tmp$ret$6 = tmp_3;
|
|
103
103
|
var tmp$ret$5 = new (TypeInfo())(tmp_2, tmp$ret$6);
|
|
104
|
-
this_0.
|
|
104
|
+
this_0.x3j(tmp$ret$5);
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
|
-
var maxRetries = $this$intercept.e2p_1.
|
|
107
|
+
var maxRetries = $this$intercept.e2p_1.f3g_1.c2j(get_MaxRetriesPerRequestAttributeKey());
|
|
108
108
|
var tmp_5;
|
|
109
|
-
if (!(maxRetries == null) && maxRetries >= this.
|
|
109
|
+
if (!(maxRetries == null) && maxRetries >= this.w3q_1.y3q_1) {
|
|
110
110
|
var tmp_6;
|
|
111
111
|
if (maxRetries < 2147483647) {
|
|
112
112
|
tmp_6 = maxRetries + 1 | 0;
|
|
@@ -115,23 +115,23 @@ function HttpSend$Plugin$install$slambda() {
|
|
|
115
115
|
}
|
|
116
116
|
tmp_5 = tmp_6;
|
|
117
117
|
} else {
|
|
118
|
-
tmp_5 = this.
|
|
118
|
+
tmp_5 = this.w3q_1.y3q_1;
|
|
119
119
|
}
|
|
120
120
|
var maxSendCount = tmp_5;
|
|
121
|
-
var realSender = new (DefaultSender())(maxSendCount, this.
|
|
121
|
+
var realSender = new (DefaultSender())(maxSendCount, this.x3q_1);
|
|
122
122
|
var interceptedSender = realSender;
|
|
123
|
-
var _iterator__ex2g4s = reversed(this.
|
|
123
|
+
var _iterator__ex2g4s = reversed(this.w3q_1.z3q_1).l1();
|
|
124
124
|
while (_iterator__ex2g4s.m1()) {
|
|
125
125
|
var interceptor = _iterator__ex2g4s.n1();
|
|
126
126
|
interceptedSender = new (InterceptedSender())(interceptor, interceptedSender);
|
|
127
127
|
}
|
|
128
|
-
var call = yield* interceptedSender.
|
|
128
|
+
var call = yield* interceptedSender.a3r($this$intercept.e2p_1, $completion);
|
|
129
129
|
yield* $this$intercept.g2o(call, $completion);
|
|
130
130
|
return Unit_instance;
|
|
131
131
|
}
|
|
132
132
|
wd(p1, p2, $completion) {
|
|
133
133
|
var tmp = p1 instanceof PipelineContext() ? p1 : THROW_CCE();
|
|
134
|
-
return this.
|
|
134
|
+
return this.c3e(tmp, !(p2 == null) ? p2 : THROW_CCE(), $completion);
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
137
|
initMetadataForLambda($, VOID, VOID, [2]);
|
|
@@ -141,7 +141,7 @@ function HttpSend$Plugin$install$slambda() {
|
|
|
141
141
|
}
|
|
142
142
|
function HttpSend$Plugin$install$slambda_0($plugin, $scope) {
|
|
143
143
|
var i = new (HttpSend$Plugin$install$slambda())($plugin, $scope);
|
|
144
|
-
var l = ($this$intercept, content, $completion) => i.
|
|
144
|
+
var l = ($this$intercept, content, $completion) => i.c3e($this$intercept, content, $completion);
|
|
145
145
|
l.$arity = 2;
|
|
146
146
|
return l;
|
|
147
147
|
}
|
|
@@ -150,7 +150,7 @@ function Config() {
|
|
|
150
150
|
if (ConfigClass === VOID) {
|
|
151
151
|
class $ {
|
|
152
152
|
constructor() {
|
|
153
|
-
this.
|
|
153
|
+
this.b3r_1 = 20;
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
initMetadataForClass($, 'Config', Config);
|
|
@@ -185,27 +185,27 @@ function Plugin() {
|
|
|
185
185
|
}
|
|
186
186
|
var tmp$ret$2 = tmp_1;
|
|
187
187
|
var tmp$ret$1 = new (TypeInfo())(tmp_0, tmp$ret$2);
|
|
188
|
-
tmp.
|
|
188
|
+
tmp.c3r_1 = new (AttributeKey())(name, tmp$ret$1);
|
|
189
189
|
}
|
|
190
190
|
b3() {
|
|
191
|
-
return this.
|
|
191
|
+
return this.c3r_1;
|
|
192
192
|
}
|
|
193
|
-
|
|
193
|
+
d3r(block) {
|
|
194
194
|
// Inline function 'kotlin.apply' call
|
|
195
195
|
var this_0 = new (Config())();
|
|
196
196
|
block(this_0);
|
|
197
197
|
var config = this_0;
|
|
198
|
-
return new (HttpSend())(config.
|
|
198
|
+
return new (HttpSend())(config.b3r_1);
|
|
199
199
|
}
|
|
200
|
-
|
|
201
|
-
return this.
|
|
200
|
+
i3g(block) {
|
|
201
|
+
return this.d3r(block);
|
|
202
202
|
}
|
|
203
|
-
|
|
204
|
-
var tmp = Phases_getInstance().
|
|
205
|
-
scope.
|
|
203
|
+
e3r(plugin, scope) {
|
|
204
|
+
var tmp = Phases_getInstance().u3k_1;
|
|
205
|
+
scope.j3e_1.i2p(tmp, HttpSend$Plugin$install$slambda_0(plugin, scope));
|
|
206
206
|
}
|
|
207
|
-
|
|
208
|
-
return this.
|
|
207
|
+
j3g(plugin, scope) {
|
|
208
|
+
return this.e3r(plugin instanceof HttpSend() ? plugin : THROW_CCE(), scope);
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
initMetadataForObject($, 'Plugin');
|
|
@@ -224,11 +224,11 @@ function InterceptedSender() {
|
|
|
224
224
|
if (InterceptedSenderClass === VOID) {
|
|
225
225
|
class $ {
|
|
226
226
|
constructor(interceptor, nextSender) {
|
|
227
|
-
this.
|
|
228
|
-
this.
|
|
227
|
+
this.f3r_1 = interceptor;
|
|
228
|
+
this.g3r_1 = nextSender;
|
|
229
229
|
}
|
|
230
|
-
*
|
|
231
|
-
return yield* this.
|
|
230
|
+
*a3r(requestBuilder, $completion) {
|
|
231
|
+
return yield* this.f3r_1(this.g3r_1, requestBuilder, $completion);
|
|
232
232
|
}
|
|
233
233
|
}
|
|
234
234
|
initMetadataForClass($, 'InterceptedSender', VOID, VOID, [Sender()], [1]);
|
|
@@ -241,23 +241,23 @@ function DefaultSender() {
|
|
|
241
241
|
if (DefaultSenderClass === VOID) {
|
|
242
242
|
class $ {
|
|
243
243
|
constructor(maxSendCount, client) {
|
|
244
|
-
this.
|
|
245
|
-
this.
|
|
246
|
-
this.
|
|
247
|
-
this.
|
|
244
|
+
this.h3r_1 = maxSendCount;
|
|
245
|
+
this.i3r_1 = client;
|
|
246
|
+
this.j3r_1 = 0;
|
|
247
|
+
this.k3r_1 = null;
|
|
248
248
|
}
|
|
249
|
-
*
|
|
250
|
-
var tmp0_safe_receiver = this.
|
|
249
|
+
*a3r(requestBuilder, $completion) {
|
|
250
|
+
var tmp0_safe_receiver = this.k3r_1;
|
|
251
251
|
if (tmp0_safe_receiver == null)
|
|
252
252
|
null;
|
|
253
253
|
else {
|
|
254
254
|
cancel(tmp0_safe_receiver);
|
|
255
255
|
}
|
|
256
|
-
if (this.
|
|
257
|
-
throw SendCountExceedException().
|
|
256
|
+
if (this.j3r_1 >= this.h3r_1) {
|
|
257
|
+
throw SendCountExceedException().p3r('Max send count ' + this.h3r_1 + ' exceeded. Consider increasing the property ' + 'maxSendCount if more is required.');
|
|
258
258
|
}
|
|
259
|
-
this.
|
|
260
|
-
var sendResult = yield* this.
|
|
259
|
+
this.j3r_1 = this.j3r_1 + 1 | 0;
|
|
260
|
+
var sendResult = yield* this.i3r_1.l3e_1.d2p(requestBuilder, requestBuilder.d3g_1, $completion);
|
|
261
261
|
var tmp1_elvis_lhs = sendResult instanceof HttpClientCall() ? sendResult : null;
|
|
262
262
|
var tmp;
|
|
263
263
|
if (tmp1_elvis_lhs == null) {
|
|
@@ -268,7 +268,7 @@ function DefaultSender() {
|
|
|
268
268
|
tmp = tmp1_elvis_lhs;
|
|
269
269
|
}
|
|
270
270
|
var call = tmp;
|
|
271
|
-
this.
|
|
271
|
+
this.k3r_1 = call;
|
|
272
272
|
return call;
|
|
273
273
|
}
|
|
274
274
|
}
|
|
@@ -284,14 +284,14 @@ function HttpSend() {
|
|
|
284
284
|
constructor(maxSendCount) {
|
|
285
285
|
Plugin_getInstance();
|
|
286
286
|
maxSendCount = maxSendCount === VOID ? 20 : maxSendCount;
|
|
287
|
-
this.
|
|
287
|
+
this.y3q_1 = maxSendCount;
|
|
288
288
|
var tmp = this;
|
|
289
289
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
290
|
-
tmp.
|
|
290
|
+
tmp.z3q_1 = ArrayList().i2();
|
|
291
291
|
}
|
|
292
|
-
|
|
292
|
+
q3r(block) {
|
|
293
293
|
// Inline function 'kotlin.collections.plusAssign' call
|
|
294
|
-
this.
|
|
294
|
+
this.z3q_1.o2(block);
|
|
295
295
|
}
|
|
296
296
|
}
|
|
297
297
|
initMetadataForClass($, 'HttpSend');
|
|
@@ -312,9 +312,9 @@ var SendCountExceedExceptionClass;
|
|
|
312
312
|
function SendCountExceedException() {
|
|
313
313
|
if (SendCountExceedExceptionClass === VOID) {
|
|
314
314
|
class $ extends IllegalStateException() {
|
|
315
|
-
static
|
|
315
|
+
static p3r(message) {
|
|
316
316
|
var $this = this.o(message);
|
|
317
|
-
captureStack($this, $this.
|
|
317
|
+
captureStack($this, $this.o3r_1);
|
|
318
318
|
return $this;
|
|
319
319
|
}
|
|
320
320
|
}
|
|
@@ -93,21 +93,21 @@ var HttpRequestTimeoutExceptionClass;
|
|
|
93
93
|
function HttpRequestTimeoutException() {
|
|
94
94
|
if (HttpRequestTimeoutExceptionClass === VOID) {
|
|
95
95
|
class $ extends IOException() {
|
|
96
|
-
static
|
|
96
|
+
static w3r(url, timeoutMillis, cause) {
|
|
97
97
|
cause = cause === VOID ? null : cause;
|
|
98
98
|
var $this = this.b1s('Request timeout has expired [url=' + url + ', request_timeout=' + toString(timeoutMillis == null ? 'unknown' : timeoutMillis) + ' ms]', cause);
|
|
99
|
-
captureStack($this, $this.
|
|
100
|
-
$this.
|
|
101
|
-
$this.
|
|
99
|
+
captureStack($this, $this.v3r_1);
|
|
100
|
+
$this.t3r_1 = url;
|
|
101
|
+
$this.u3r_1 = timeoutMillis;
|
|
102
102
|
return $this;
|
|
103
103
|
}
|
|
104
|
-
static
|
|
105
|
-
var tmp = request.
|
|
106
|
-
var tmp0_safe_receiver = request.
|
|
107
|
-
return this.
|
|
104
|
+
static x3r(request) {
|
|
105
|
+
var tmp = request.a3g_1.g33();
|
|
106
|
+
var tmp0_safe_receiver = request.y3r(HttpTimeoutCapability_instance);
|
|
107
|
+
return this.w3r(tmp, tmp0_safe_receiver == null ? null : tmp0_safe_receiver.c3s());
|
|
108
108
|
}
|
|
109
109
|
x14() {
|
|
110
|
-
return HttpRequestTimeoutException().
|
|
110
|
+
return HttpRequestTimeoutException().w3r(this.t3r_1, this.u3r_1, this.cause);
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
initMetadataForClass($, 'HttpRequestTimeoutException', VOID, VOID, [CopyableThrowable()]);
|
|
@@ -129,7 +129,7 @@ function Companion() {
|
|
|
129
129
|
class $ {
|
|
130
130
|
constructor() {
|
|
131
131
|
Companion_instance = this;
|
|
132
|
-
this.
|
|
132
|
+
this.d3s_1 = new (Long())(-1, 2147483647);
|
|
133
133
|
var tmp = this;
|
|
134
134
|
// Inline function 'io.ktor.util.AttributeKey' call
|
|
135
135
|
var name = 'TimeoutConfiguration';
|
|
@@ -151,7 +151,7 @@ function Companion() {
|
|
|
151
151
|
}
|
|
152
152
|
var tmp$ret$2 = tmp_1;
|
|
153
153
|
var tmp$ret$1 = new (TypeInfo())(tmp_0, tmp$ret$2);
|
|
154
|
-
tmp.
|
|
154
|
+
tmp.e3s_1 = new (AttributeKey())(name, tmp$ret$1);
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
initMetadataForCompanion($);
|
|
@@ -167,36 +167,30 @@ function Companion_getInstance() {
|
|
|
167
167
|
}
|
|
168
168
|
function init_io_ktor_client_plugins_HttpTimeoutConfig(_this__u8e3s4) {
|
|
169
169
|
Companion_getInstance();
|
|
170
|
-
_this__u8e3s4.y3r_1 = new (Long())(0, 0);
|
|
171
170
|
_this__u8e3s4.z3r_1 = new (Long())(0, 0);
|
|
172
171
|
_this__u8e3s4.a3s_1 = new (Long())(0, 0);
|
|
172
|
+
_this__u8e3s4.b3s_1 = new (Long())(0, 0);
|
|
173
173
|
}
|
|
174
174
|
var HttpTimeoutConfigClass;
|
|
175
175
|
function HttpTimeoutConfig() {
|
|
176
176
|
if (HttpTimeoutConfigClass === VOID) {
|
|
177
177
|
class $ {
|
|
178
|
-
static
|
|
178
|
+
static f3s(requestTimeoutMillis, connectTimeoutMillis, socketTimeoutMillis) {
|
|
179
179
|
Companion_getInstance();
|
|
180
180
|
requestTimeoutMillis = requestTimeoutMillis === VOID ? null : requestTimeoutMillis;
|
|
181
181
|
connectTimeoutMillis = connectTimeoutMillis === VOID ? null : connectTimeoutMillis;
|
|
182
182
|
socketTimeoutMillis = socketTimeoutMillis === VOID ? null : socketTimeoutMillis;
|
|
183
183
|
var $this = createThis(this);
|
|
184
184
|
init_io_ktor_client_plugins_HttpTimeoutConfig($this);
|
|
185
|
-
$this.
|
|
186
|
-
$this.
|
|
187
|
-
$this.
|
|
185
|
+
$this.g3s(requestTimeoutMillis);
|
|
186
|
+
$this.h3s(connectTimeoutMillis);
|
|
187
|
+
$this.i3s(socketTimeoutMillis);
|
|
188
188
|
return $this;
|
|
189
189
|
}
|
|
190
|
-
f3s(value) {
|
|
191
|
-
this.y3r_1 = checkTimeoutValue(this, value);
|
|
192
|
-
}
|
|
193
|
-
b3s() {
|
|
194
|
-
return this.y3r_1;
|
|
195
|
-
}
|
|
196
190
|
g3s(value) {
|
|
197
191
|
this.z3r_1 = checkTimeoutValue(this, value);
|
|
198
192
|
}
|
|
199
|
-
|
|
193
|
+
c3s() {
|
|
200
194
|
return this.z3r_1;
|
|
201
195
|
}
|
|
202
196
|
h3s(value) {
|
|
@@ -205,6 +199,12 @@ function HttpTimeoutConfig() {
|
|
|
205
199
|
j3s() {
|
|
206
200
|
return this.a3s_1;
|
|
207
201
|
}
|
|
202
|
+
i3s(value) {
|
|
203
|
+
this.b3s_1 = checkTimeoutValue(this, value);
|
|
204
|
+
}
|
|
205
|
+
k3s() {
|
|
206
|
+
return this.b3s_1;
|
|
207
|
+
}
|
|
208
208
|
equals(other) {
|
|
209
209
|
if (this === other)
|
|
210
210
|
return true;
|
|
@@ -212,30 +212,30 @@ function HttpTimeoutConfig() {
|
|
|
212
212
|
return false;
|
|
213
213
|
if (!(other instanceof HttpTimeoutConfig()))
|
|
214
214
|
THROW_CCE();
|
|
215
|
-
if (!equals(this.y3r_1, other.y3r_1))
|
|
216
|
-
return false;
|
|
217
215
|
if (!equals(this.z3r_1, other.z3r_1))
|
|
218
216
|
return false;
|
|
219
217
|
if (!equals(this.a3s_1, other.a3s_1))
|
|
220
218
|
return false;
|
|
219
|
+
if (!equals(this.b3s_1, other.b3s_1))
|
|
220
|
+
return false;
|
|
221
221
|
return true;
|
|
222
222
|
}
|
|
223
223
|
hashCode() {
|
|
224
|
-
var tmp0_safe_receiver = this.
|
|
224
|
+
var tmp0_safe_receiver = this.z3r_1;
|
|
225
225
|
var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.hashCode();
|
|
226
226
|
var result = tmp1_elvis_lhs == null ? 0 : tmp1_elvis_lhs;
|
|
227
227
|
var tmp = imul(31, result);
|
|
228
|
-
var tmp2_safe_receiver = this.
|
|
228
|
+
var tmp2_safe_receiver = this.a3s_1;
|
|
229
229
|
var tmp3_elvis_lhs = tmp2_safe_receiver == null ? null : tmp2_safe_receiver.hashCode();
|
|
230
230
|
result = tmp + (tmp3_elvis_lhs == null ? 0 : tmp3_elvis_lhs) | 0;
|
|
231
231
|
var tmp_0 = imul(31, result);
|
|
232
|
-
var tmp4_safe_receiver = this.
|
|
232
|
+
var tmp4_safe_receiver = this.b3s_1;
|
|
233
233
|
var tmp5_elvis_lhs = tmp4_safe_receiver == null ? null : tmp4_safe_receiver.hashCode();
|
|
234
234
|
result = tmp_0 + (tmp5_elvis_lhs == null ? 0 : tmp5_elvis_lhs) | 0;
|
|
235
235
|
return result;
|
|
236
236
|
}
|
|
237
237
|
}
|
|
238
|
-
initMetadataForClass($, 'HttpTimeoutConfig', $.
|
|
238
|
+
initMetadataForClass($, 'HttpTimeoutConfig', $.f3s);
|
|
239
239
|
HttpTimeoutConfigClass = $;
|
|
240
240
|
}
|
|
241
241
|
return HttpTimeoutConfigClass;
|
|
@@ -244,14 +244,14 @@ function get_supportsRequestTimeout(_this__u8e3s4) {
|
|
|
244
244
|
_init_properties_HttpTimeout_kt__pucqrr();
|
|
245
245
|
var tmp;
|
|
246
246
|
var tmp_0;
|
|
247
|
-
if (!isWebsocket(_this__u8e3s4.
|
|
248
|
-
var tmp_1 = _this__u8e3s4.
|
|
247
|
+
if (!isWebsocket(_this__u8e3s4.a3g_1.w31())) {
|
|
248
|
+
var tmp_1 = _this__u8e3s4.d3g_1;
|
|
249
249
|
tmp_0 = !(tmp_1 instanceof ClientUpgradeContent());
|
|
250
250
|
} else {
|
|
251
251
|
tmp_0 = false;
|
|
252
252
|
}
|
|
253
253
|
if (tmp_0) {
|
|
254
|
-
var tmp_2 = _this__u8e3s4.
|
|
254
|
+
var tmp_2 = _this__u8e3s4.d3g_1;
|
|
255
255
|
tmp = !(tmp_2 instanceof SSEClientContent());
|
|
256
256
|
} else {
|
|
257
257
|
tmp = false;
|
|
@@ -262,22 +262,22 @@ function applyRequestTimeout(_this__u8e3s4, request, requestTimeout) {
|
|
|
262
262
|
_init_properties_HttpTimeout_kt__pucqrr();
|
|
263
263
|
if (requestTimeout == null || equals(requestTimeout, new (Long())(-1, 2147483647)))
|
|
264
264
|
return Unit_instance;
|
|
265
|
-
var executionContext = request.
|
|
265
|
+
var executionContext = request.e3g_1;
|
|
266
266
|
var tmp = new (CoroutineName())('request-timeout');
|
|
267
267
|
var killer = launch(_this__u8e3s4, tmp, VOID, applyRequestTimeout$slambda_0(requestTimeout, request, executionContext));
|
|
268
|
-
var tmp_0 = request.
|
|
268
|
+
var tmp_0 = request.e3g_1;
|
|
269
269
|
tmp_0.ey(applyRequestTimeout$lambda(killer));
|
|
270
270
|
}
|
|
271
271
|
function HttpTimeoutConfig$_init_$ref_dl1k0m() {
|
|
272
|
-
return () => HttpTimeoutConfig().
|
|
272
|
+
return () => HttpTimeoutConfig().f3s();
|
|
273
273
|
}
|
|
274
274
|
function HttpTimeout$lambda($this$createClientPlugin) {
|
|
275
275
|
_init_properties_HttpTimeout_kt__pucqrr();
|
|
276
|
-
var requestTimeoutMillis = $this$createClientPlugin.
|
|
277
|
-
var connectTimeoutMillis = $this$createClientPlugin.
|
|
278
|
-
var socketTimeoutMillis = $this$createClientPlugin.
|
|
276
|
+
var requestTimeoutMillis = $this$createClientPlugin.e3l_1.c3s();
|
|
277
|
+
var connectTimeoutMillis = $this$createClientPlugin.e3l_1.j3s();
|
|
278
|
+
var socketTimeoutMillis = $this$createClientPlugin.e3l_1.k3s();
|
|
279
279
|
var tmp = Send_instance;
|
|
280
|
-
$this$createClientPlugin.
|
|
280
|
+
$this$createClientPlugin.h3l(tmp, HttpTimeout$lambda$slambda_0(connectTimeoutMillis, socketTimeoutMillis, requestTimeoutMillis));
|
|
281
281
|
return Unit_instance;
|
|
282
282
|
}
|
|
283
283
|
function invoke$hasNotNullTimeouts(requestTimeoutMillis, connectTimeoutMillis, socketTimeoutMillis, supportsRequestTimeout) {
|
|
@@ -288,37 +288,37 @@ function HttpTimeout$lambda$slambda() {
|
|
|
288
288
|
if (HttpTimeout$lambda$slambdaClass === VOID) {
|
|
289
289
|
class $ {
|
|
290
290
|
constructor($connectTimeoutMillis, $socketTimeoutMillis, $requestTimeoutMillis) {
|
|
291
|
-
this.
|
|
292
|
-
this.
|
|
293
|
-
this.
|
|
291
|
+
this.l3s_1 = $connectTimeoutMillis;
|
|
292
|
+
this.m3s_1 = $socketTimeoutMillis;
|
|
293
|
+
this.n3s_1 = $requestTimeoutMillis;
|
|
294
294
|
}
|
|
295
|
-
*
|
|
295
|
+
*v3n($this$on, request, $completion) {
|
|
296
296
|
var supportsRequestTimeout = get_supportsRequestTimeout(request);
|
|
297
|
-
var configuration = request.
|
|
298
|
-
if (configuration == null && invoke$hasNotNullTimeouts(this.
|
|
299
|
-
configuration = HttpTimeoutConfig().
|
|
300
|
-
request.
|
|
297
|
+
var configuration = request.y3r(HttpTimeoutCapability_instance);
|
|
298
|
+
if (configuration == null && invoke$hasNotNullTimeouts(this.n3s_1, this.l3s_1, this.m3s_1, supportsRequestTimeout)) {
|
|
299
|
+
configuration = HttpTimeoutConfig().f3s();
|
|
300
|
+
request.o3s(HttpTimeoutCapability_instance, configuration);
|
|
301
301
|
}
|
|
302
302
|
var tmp0_safe_receiver = configuration;
|
|
303
303
|
if (tmp0_safe_receiver == null)
|
|
304
304
|
null;
|
|
305
305
|
else {
|
|
306
306
|
// Inline function 'kotlin.apply' call
|
|
307
|
-
var tmp0_elvis_lhs = tmp0_safe_receiver.
|
|
308
|
-
tmp0_safe_receiver.
|
|
309
|
-
var tmp1_elvis_lhs = tmp0_safe_receiver.
|
|
310
|
-
tmp0_safe_receiver.
|
|
307
|
+
var tmp0_elvis_lhs = tmp0_safe_receiver.j3s();
|
|
308
|
+
tmp0_safe_receiver.h3s(tmp0_elvis_lhs == null ? this.l3s_1 : tmp0_elvis_lhs);
|
|
309
|
+
var tmp1_elvis_lhs = tmp0_safe_receiver.k3s();
|
|
310
|
+
tmp0_safe_receiver.i3s(tmp1_elvis_lhs == null ? this.m3s_1 : tmp1_elvis_lhs);
|
|
311
311
|
if (supportsRequestTimeout) {
|
|
312
|
-
var tmp2_elvis_lhs = tmp0_safe_receiver.
|
|
313
|
-
tmp0_safe_receiver.
|
|
314
|
-
applyRequestTimeout($this$on, request, tmp0_safe_receiver.
|
|
312
|
+
var tmp2_elvis_lhs = tmp0_safe_receiver.c3s();
|
|
313
|
+
tmp0_safe_receiver.g3s(tmp2_elvis_lhs == null ? this.n3s_1 : tmp2_elvis_lhs);
|
|
314
|
+
applyRequestTimeout($this$on, request, tmp0_safe_receiver.c3s());
|
|
315
315
|
}
|
|
316
316
|
}
|
|
317
|
-
return yield* $this$on.
|
|
317
|
+
return yield* $this$on.y3n(request, $completion);
|
|
318
318
|
}
|
|
319
319
|
wd(p1, p2, $completion) {
|
|
320
320
|
var tmp = p1 instanceof Sender() ? p1 : THROW_CCE();
|
|
321
|
-
return this.
|
|
321
|
+
return this.v3n(tmp, p2 instanceof HttpRequestBuilder() ? p2 : THROW_CCE(), $completion);
|
|
322
322
|
}
|
|
323
323
|
}
|
|
324
324
|
initMetadataForLambda($, VOID, VOID, [2]);
|
|
@@ -328,7 +328,7 @@ function HttpTimeout$lambda$slambda() {
|
|
|
328
328
|
}
|
|
329
329
|
function HttpTimeout$lambda$slambda_0($connectTimeoutMillis, $socketTimeoutMillis, $requestTimeoutMillis) {
|
|
330
330
|
var i = new (HttpTimeout$lambda$slambda())($connectTimeoutMillis, $socketTimeoutMillis, $requestTimeoutMillis);
|
|
331
|
-
var l = ($this$on, request, $completion) => i.
|
|
331
|
+
var l = ($this$on, request, $completion) => i.v3n($this$on, request, $completion);
|
|
332
332
|
l.$arity = 2;
|
|
333
333
|
return l;
|
|
334
334
|
}
|
|
@@ -337,20 +337,20 @@ function applyRequestTimeout$slambda() {
|
|
|
337
337
|
if (applyRequestTimeout$slambdaClass === VOID) {
|
|
338
338
|
class $ {
|
|
339
339
|
constructor($requestTimeout, $request, $executionContext) {
|
|
340
|
-
this.
|
|
341
|
-
this.
|
|
342
|
-
this.
|
|
340
|
+
this.p3s_1 = $requestTimeout;
|
|
341
|
+
this.q3s_1 = $request;
|
|
342
|
+
this.r3s_1 = $executionContext;
|
|
343
343
|
}
|
|
344
344
|
*r1h($this$launch, $completion) {
|
|
345
|
-
yield* delay(this.
|
|
346
|
-
var cause = HttpRequestTimeoutException().
|
|
345
|
+
yield* delay(this.p3s_1, $completion);
|
|
346
|
+
var cause = HttpRequestTimeoutException().x3r(this.q3s_1);
|
|
347
347
|
// Inline function 'io.ktor.util.logging.trace' call
|
|
348
348
|
var this_0 = get_LOGGER();
|
|
349
349
|
if (get_isTraceEnabled(this_0)) {
|
|
350
|
-
var tmp$ret$1 = 'Request timeout: ' + this.
|
|
350
|
+
var tmp$ret$1 = 'Request timeout: ' + this.q3s_1.a3g_1.toString();
|
|
351
351
|
this_0.k2q(tmp$ret$1);
|
|
352
352
|
}
|
|
353
|
-
cancel(this.
|
|
353
|
+
cancel(this.r3s_1, ensureNotNull(cause.message), cause);
|
|
354
354
|
return Unit_instance;
|
|
355
355
|
}
|
|
356
356
|
vd(p1, $completion) {
|
|
@@ -64,14 +64,14 @@ var SaveBody;
|
|
|
64
64
|
var SaveBodyPlugin;
|
|
65
65
|
function get_isSaved(_this__u8e3s4) {
|
|
66
66
|
_init_properties_SaveBody_kt__lbc3fj();
|
|
67
|
-
return _this__u8e3s4.
|
|
67
|
+
return _this__u8e3s4.z3g().t3g().d2j(get_RESPONSE_BODY_SAVED());
|
|
68
68
|
}
|
|
69
69
|
var SaveBodyPluginConfigClass;
|
|
70
70
|
function SaveBodyPluginConfig() {
|
|
71
71
|
if (SaveBodyPluginConfigClass === VOID) {
|
|
72
72
|
class $ {
|
|
73
73
|
constructor() {
|
|
74
|
-
this.
|
|
74
|
+
this.s3s_1 = false;
|
|
75
75
|
}
|
|
76
76
|
}
|
|
77
77
|
initMetadataForClass($, 'SaveBodyPluginConfig', SaveBodyPluginConfig);
|
|
@@ -81,7 +81,7 @@ function SaveBodyPluginConfig() {
|
|
|
81
81
|
}
|
|
82
82
|
function skipSaveBody(_this__u8e3s4) {
|
|
83
83
|
_init_properties_SaveBody_kt__lbc3fj();
|
|
84
|
-
_this__u8e3s4.
|
|
84
|
+
_this__u8e3s4.f3g_1.e2j(get_SKIP_SAVE_BODY(), Unit_instance);
|
|
85
85
|
}
|
|
86
86
|
function LOGGER$delegate$lambda() {
|
|
87
87
|
_init_properties_SaveBody_kt__lbc3fj();
|
|
@@ -92,22 +92,22 @@ function _get_LOGGER_$ref_77hhxy() {
|
|
|
92
92
|
}
|
|
93
93
|
function SaveBody$lambda($this$createClientPlugin) {
|
|
94
94
|
_init_properties_SaveBody_kt__lbc3fj();
|
|
95
|
-
var tmp = Phases_getInstance().
|
|
96
|
-
$this$createClientPlugin.
|
|
95
|
+
var tmp = Phases_getInstance().z3k_1;
|
|
96
|
+
$this$createClientPlugin.d3l_1.m3e_1.i2p(tmp, SaveBody$lambda$slambda_0());
|
|
97
97
|
return Unit_instance;
|
|
98
98
|
}
|
|
99
99
|
var SaveBody$lambda$slambdaClass;
|
|
100
100
|
function SaveBody$lambda$slambda() {
|
|
101
101
|
if (SaveBody$lambda$slambdaClass === VOID) {
|
|
102
102
|
class $ {
|
|
103
|
-
*
|
|
104
|
-
var call = response.
|
|
105
|
-
var attributes = call.
|
|
103
|
+
*x3k($this$intercept, response, $completion) {
|
|
104
|
+
var call = response.z3g();
|
|
105
|
+
var attributes = call.t3g();
|
|
106
106
|
if (attributes.d2j(get_SKIP_SAVE_BODY())) {
|
|
107
107
|
// Inline function 'io.ktor.util.logging.trace' call
|
|
108
108
|
var this_0 = get_LOGGER();
|
|
109
109
|
if (get_isTraceEnabled(this_0)) {
|
|
110
|
-
var tmp$ret$1 = 'Skipping body saving for ' + call.
|
|
110
|
+
var tmp$ret$1 = 'Skipping body saving for ' + call.s3g().b3h().toString();
|
|
111
111
|
this_0.k2q(tmp$ret$1);
|
|
112
112
|
}
|
|
113
113
|
return Unit_instance;
|
|
@@ -117,15 +117,15 @@ function SaveBody$lambda$slambda() {
|
|
|
117
117
|
// Inline function 'io.ktor.util.logging.trace' call
|
|
118
118
|
var this_1 = get_LOGGER();
|
|
119
119
|
if (get_isTraceEnabled(this_1)) {
|
|
120
|
-
var tmp$ret$3 = 'Saving body for ' + call.
|
|
120
|
+
var tmp$ret$3 = 'Saving body for ' + call.s3g().b3h().toString();
|
|
121
121
|
this_1.k2q(tmp$ret$3);
|
|
122
122
|
}
|
|
123
|
-
tmp = (yield* save(call, $completion)).
|
|
123
|
+
tmp = (yield* save(call, $completion)).w3e();
|
|
124
124
|
}finally {
|
|
125
125
|
// Inline function 'kotlin.runCatching' call
|
|
126
126
|
var tmp_0;
|
|
127
127
|
try {
|
|
128
|
-
cancel(response.
|
|
128
|
+
cancel(response.i3h());
|
|
129
129
|
// Inline function 'kotlin.Companion.success' call
|
|
130
130
|
tmp_0 = _Result___init__impl__xyqfz8(Unit_instance);
|
|
131
131
|
} catch ($p) {
|
|
@@ -156,7 +156,7 @@ function SaveBody$lambda$slambda() {
|
|
|
156
156
|
}
|
|
157
157
|
wd(p1, p2, $completion) {
|
|
158
158
|
var tmp = p1 instanceof PipelineContext() ? p1 : THROW_CCE();
|
|
159
|
-
return this.
|
|
159
|
+
return this.x3k(tmp, p2 instanceof HttpResponse() ? p2 : THROW_CCE(), $completion);
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
initMetadataForLambda($, VOID, VOID, [2]);
|
|
@@ -166,7 +166,7 @@ function SaveBody$lambda$slambda() {
|
|
|
166
166
|
}
|
|
167
167
|
function SaveBody$lambda$slambda_0() {
|
|
168
168
|
var i = new (SaveBody$lambda$slambda())();
|
|
169
|
-
var l = ($this$intercept, response, $completion) => i.
|
|
169
|
+
var l = ($this$intercept, response, $completion) => i.x3k($this$intercept, response, $completion);
|
|
170
170
|
l.$arity = 2;
|
|
171
171
|
return l;
|
|
172
172
|
}
|
|
@@ -177,7 +177,7 @@ function SaveBodyPluginConfig$_init_$ref_lwjaof() {
|
|
|
177
177
|
}
|
|
178
178
|
function SaveBodyPlugin$lambda($this$createClientPlugin) {
|
|
179
179
|
_init_properties_SaveBody_kt__lbc3fj();
|
|
180
|
-
if ($this$createClientPlugin.
|
|
180
|
+
if ($this$createClientPlugin.e3l_1.s3s_1) {
|
|
181
181
|
get_LOGGER().i2q('It is no longer possible to disable body saving for all requests. Use client.prepareRequest(...).execute { ... } syntax to prevent saving the body in memory.\n\nThis API is deprecated and will be removed in Ktor 4.0.0\nIf you were relying on this functionality, share your use case by commenting on this issue: https://youtrack.jetbrains.com/issue/KTOR-8367/');
|
|
182
182
|
} else {
|
|
183
183
|
get_LOGGER().i2q('The SaveBodyPlugin plugin is deprecated and can be safely removed. Request bodies are now saved in memory by default for all non-streaming responses.');
|
|
@@ -9,11 +9,11 @@ function HookHandler() {
|
|
|
9
9
|
if (HookHandlerClass === VOID) {
|
|
10
10
|
class $ {
|
|
11
11
|
constructor(hook, handler) {
|
|
12
|
-
this.
|
|
13
|
-
this.
|
|
12
|
+
this.t3s_1 = hook;
|
|
13
|
+
this.u3s_1 = handler;
|
|
14
14
|
}
|
|
15
|
-
|
|
16
|
-
this.
|
|
15
|
+
c3f(client) {
|
|
16
|
+
this.t3s_1.v3k(client, this.u3s_1);
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
initMetadataForClass($, 'HookHandler');
|
|
@@ -20,26 +20,26 @@ function ClientPluginBuilder() {
|
|
|
20
20
|
if (ClientPluginBuilderClass === VOID) {
|
|
21
21
|
class $ {
|
|
22
22
|
constructor(key, client, pluginConfig) {
|
|
23
|
-
this.
|
|
24
|
-
this.
|
|
25
|
-
this.
|
|
23
|
+
this.c3l_1 = key;
|
|
24
|
+
this.d3l_1 = client;
|
|
25
|
+
this.e3l_1 = pluginConfig;
|
|
26
26
|
var tmp = this;
|
|
27
27
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
28
|
-
tmp.
|
|
28
|
+
tmp.f3l_1 = ArrayList().i2();
|
|
29
29
|
var tmp_0 = this;
|
|
30
|
-
tmp_0.
|
|
30
|
+
tmp_0.g3l_1 = ClientPluginBuilder$onClose$lambda;
|
|
31
31
|
}
|
|
32
|
-
|
|
33
|
-
this.
|
|
32
|
+
k3q(block) {
|
|
33
|
+
this.h3l(RequestHook_instance, block);
|
|
34
34
|
}
|
|
35
|
-
|
|
36
|
-
this.
|
|
35
|
+
v3s(block) {
|
|
36
|
+
this.h3l(TransformRequestBodyHook_instance, block);
|
|
37
37
|
}
|
|
38
|
-
|
|
39
|
-
this.
|
|
38
|
+
n3o(block) {
|
|
39
|
+
this.h3l(TransformResponseBodyHook_instance, block);
|
|
40
40
|
}
|
|
41
|
-
|
|
42
|
-
this.
|
|
41
|
+
h3l(hook, handler) {
|
|
42
|
+
this.f3l_1.o2(new (HookHandler())(hook, handler));
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
initMetadataForClass($, 'ClientPluginBuilder');
|