@continuous-excellence/coupling-cli 1.1.544 → 1.1.546
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 +19 -19
- 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-kotlin-stdlib/kotlin/text/stringJs.mjs +6 -6
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -1
- 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/channels/BufferedChannel.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +2 -2
- 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/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +2 -2
- 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
|
@@ -49,8 +49,8 @@ function HttpRedirectConfig() {
|
|
|
49
49
|
if (HttpRedirectConfigClass === VOID) {
|
|
50
50
|
class $ {
|
|
51
51
|
constructor() {
|
|
52
|
-
this.
|
|
53
|
-
this.
|
|
52
|
+
this.v3o_1 = true;
|
|
53
|
+
this.w3o_1 = false;
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
initMetadataForClass($, 'HttpRedirectConfig', HttpRedirectConfig);
|
|
@@ -70,42 +70,42 @@ function HttpRedirectConfig$_init_$ref_rhym9t() {
|
|
|
70
70
|
}
|
|
71
71
|
function HttpRedirect$lambda($this$createClientPlugin) {
|
|
72
72
|
_init_properties_HttpRedirect_kt__ure7fo();
|
|
73
|
-
var checkHttpMethod = $this$createClientPlugin.
|
|
74
|
-
var allowHttpsDowngrade = $this$createClientPlugin.
|
|
73
|
+
var checkHttpMethod = $this$createClientPlugin.e3l_1.v3o_1;
|
|
74
|
+
var allowHttpsDowngrade = $this$createClientPlugin.e3l_1.w3o_1;
|
|
75
75
|
var tmp = Send_instance;
|
|
76
|
-
$this$createClientPlugin.
|
|
76
|
+
$this$createClientPlugin.h3l(tmp, HttpRedirect$lambda$slambda_0(checkHttpMethod, allowHttpsDowngrade, $this$createClientPlugin));
|
|
77
77
|
return Unit_instance;
|
|
78
78
|
}
|
|
79
79
|
function *invoke$handleCall(_this__u8e3s4, context, origin, allowHttpsDowngrade, client, $completion) {
|
|
80
80
|
var call = origin;
|
|
81
81
|
var requestBuilder = context;
|
|
82
82
|
while (true) {
|
|
83
|
-
var previousProtocol = call.
|
|
84
|
-
var previousAuthority = get_authority(call.
|
|
85
|
-
if (!isRedirect(call.
|
|
83
|
+
var previousProtocol = call.s3g().b3h().j32_1;
|
|
84
|
+
var previousAuthority = get_authority(call.s3g().b3h());
|
|
85
|
+
if (!isRedirect(call.w3e().c34()))
|
|
86
86
|
return call;
|
|
87
|
-
var location = call.
|
|
87
|
+
var location = call.w3e().g2y().zh('Location');
|
|
88
88
|
if (location == null) {
|
|
89
|
-
get_LOGGER().i2q('Location header missing from redirect response ' + call.
|
|
89
|
+
get_LOGGER().i2q('Location header missing from redirect response ' + call.s3g().b3h().toString() + '; returning response as is');
|
|
90
90
|
return call;
|
|
91
91
|
}
|
|
92
|
-
client.
|
|
93
|
-
get_LOGGER().k2q('Received redirect response to ' + location + ' for request ' + call.
|
|
92
|
+
client.p3e_1.m2q(get_HttpResponseRedirectEvent(), call.w3e());
|
|
93
|
+
get_LOGGER().k2q('Received redirect response to ' + location + ' for request ' + call.s3g().b3h().toString());
|
|
94
94
|
// Inline function 'kotlin.apply' call
|
|
95
95
|
var this_0 = new (HttpRequestBuilder())();
|
|
96
|
-
this_0.
|
|
97
|
-
this_0.
|
|
98
|
-
takeFrom(this_0.
|
|
99
|
-
if (!allowHttpsDowngrade && isSecure(previousProtocol) && !isSecure(this_0.
|
|
100
|
-
get_LOGGER().k2q('Blocked redirect from ' + call.
|
|
96
|
+
this_0.w3j(requestBuilder);
|
|
97
|
+
this_0.a3g_1.t31_1.m4();
|
|
98
|
+
takeFrom(this_0.a3g_1, location);
|
|
99
|
+
if (!allowHttpsDowngrade && isSecure(previousProtocol) && !isSecure(this_0.a3g_1.w31())) {
|
|
100
|
+
get_LOGGER().k2q('Blocked redirect from ' + call.s3g().b3h().toString() + ' to ' + location + ' due to HTTPS downgrade');
|
|
101
101
|
return call;
|
|
102
102
|
}
|
|
103
|
-
if (!(previousAuthority === get_authority_0(this_0.
|
|
104
|
-
this_0.
|
|
105
|
-
get_LOGGER().k2q('Removing Authorization header for cross-authority redirect: ' + (previousAuthority + ' -> ' + this_0.
|
|
103
|
+
if (!(previousAuthority === get_authority_0(this_0.a3g_1))) {
|
|
104
|
+
this_0.c3g_1.i2m('Authorization');
|
|
105
|
+
get_LOGGER().k2q('Removing Authorization header for cross-authority redirect: ' + (previousAuthority + ' -> ' + this_0.a3g_1.g33()));
|
|
106
106
|
}
|
|
107
107
|
requestBuilder = this_0;
|
|
108
|
-
call = yield* _this__u8e3s4.
|
|
108
|
+
call = yield* _this__u8e3s4.y3n(requestBuilder, $completion);
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
111
|
var HttpRedirect$lambda$slambdaClass;
|
|
@@ -113,20 +113,20 @@ function HttpRedirect$lambda$slambda() {
|
|
|
113
113
|
if (HttpRedirect$lambda$slambdaClass === VOID) {
|
|
114
114
|
class $ {
|
|
115
115
|
constructor($checkHttpMethod, $allowHttpsDowngrade, $this_createClientPlugin) {
|
|
116
|
-
this.
|
|
117
|
-
this.
|
|
118
|
-
this.
|
|
116
|
+
this.x3o_1 = $checkHttpMethod;
|
|
117
|
+
this.y3o_1 = $allowHttpsDowngrade;
|
|
118
|
+
this.z3o_1 = $this_createClientPlugin;
|
|
119
119
|
}
|
|
120
|
-
*
|
|
121
|
-
var origin = yield* $this$on.
|
|
122
|
-
if (this.
|
|
120
|
+
*v3n($this$on, request, $completion) {
|
|
121
|
+
var origin = yield* $this$on.y3n(request, $completion);
|
|
122
|
+
if (this.x3o_1 && !get_ALLOWED_FOR_REDIRECT().k3(origin.s3g().a3h())) {
|
|
123
123
|
return origin;
|
|
124
124
|
}
|
|
125
|
-
return yield* /*#__NOINLINE__*/invoke$handleCall($this$on, request, origin, this.
|
|
125
|
+
return yield* /*#__NOINLINE__*/invoke$handleCall($this$on, request, origin, this.y3o_1, this.z3o_1.d3l_1, $completion);
|
|
126
126
|
}
|
|
127
127
|
wd(p1, p2, $completion) {
|
|
128
128
|
var tmp = p1 instanceof Sender() ? p1 : THROW_CCE();
|
|
129
|
-
return this.
|
|
129
|
+
return this.v3n(tmp, p2 instanceof HttpRequestBuilder() ? p2 : THROW_CCE(), $completion);
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
initMetadataForLambda($, VOID, VOID, [2]);
|
|
@@ -136,7 +136,7 @@ function HttpRedirect$lambda$slambda() {
|
|
|
136
136
|
}
|
|
137
137
|
function HttpRedirect$lambda$slambda_0($checkHttpMethod, $allowHttpsDowngrade, $this_createClientPlugin) {
|
|
138
138
|
var i = new (HttpRedirect$lambda$slambda())($checkHttpMethod, $allowHttpsDowngrade, $this_createClientPlugin);
|
|
139
|
-
var l = ($this$on, request, $completion) => i.
|
|
139
|
+
var l = ($this$on, request, $completion) => i.v3n($this$on, request, $completion);
|
|
140
140
|
l.$arity = 2;
|
|
141
141
|
return l;
|
|
142
142
|
}
|
|
@@ -39,10 +39,10 @@ function PipelineContext$proceed$ref() {
|
|
|
39
39
|
if (PipelineContext$proceed$refClass === VOID) {
|
|
40
40
|
class $ {
|
|
41
41
|
constructor(p0) {
|
|
42
|
-
this.
|
|
42
|
+
this.a3p_1 = p0;
|
|
43
43
|
}
|
|
44
44
|
*z1u($completion) {
|
|
45
|
-
yield* this.
|
|
45
|
+
yield* this.a3p_1.h2o($completion);
|
|
46
46
|
return Unit_instance;
|
|
47
47
|
}
|
|
48
48
|
ud($completion) {
|
|
@@ -65,15 +65,15 @@ function SetupRequestContext$install$slambda() {
|
|
|
65
65
|
if (SetupRequestContext$install$slambdaClass === VOID) {
|
|
66
66
|
class $ {
|
|
67
67
|
constructor($handler) {
|
|
68
|
-
this.
|
|
68
|
+
this.b3p_1 = $handler;
|
|
69
69
|
}
|
|
70
|
-
*
|
|
71
|
-
yield* this.
|
|
70
|
+
*c3e($this$intercept, it, $completion) {
|
|
71
|
+
yield* this.b3p_1($this$intercept.e2p_1, PipelineContext$proceed$ref_0($this$intercept), $completion);
|
|
72
72
|
return Unit_instance;
|
|
73
73
|
}
|
|
74
74
|
wd(p1, p2, $completion) {
|
|
75
75
|
var tmp = p1 instanceof PipelineContext() ? p1 : THROW_CCE();
|
|
76
|
-
return this.
|
|
76
|
+
return this.c3e(tmp, !(p2 == null) ? p2 : THROW_CCE(), $completion);
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
initMetadataForLambda($, VOID, VOID, [2]);
|
|
@@ -83,7 +83,7 @@ function SetupRequestContext$install$slambda() {
|
|
|
83
83
|
}
|
|
84
84
|
function SetupRequestContext$install$slambda_0($handler) {
|
|
85
85
|
var i = new (SetupRequestContext$install$slambda())($handler);
|
|
86
|
-
var l = ($this$intercept, it, $completion) => i.
|
|
86
|
+
var l = ($this$intercept, it, $completion) => i.c3e($this$intercept, it, $completion);
|
|
87
87
|
l.$arity = 2;
|
|
88
88
|
return l;
|
|
89
89
|
}
|
|
@@ -91,12 +91,12 @@ var SetupRequestContextClass;
|
|
|
91
91
|
function SetupRequestContext() {
|
|
92
92
|
if (SetupRequestContextClass === VOID) {
|
|
93
93
|
class $ {
|
|
94
|
-
|
|
95
|
-
var tmp = Phases_getInstance().
|
|
96
|
-
client.
|
|
94
|
+
c3p(client, handler) {
|
|
95
|
+
var tmp = Phases_getInstance().q3k_1;
|
|
96
|
+
client.j3e_1.i2p(tmp, SetupRequestContext$install$slambda_0(handler));
|
|
97
97
|
}
|
|
98
|
-
|
|
99
|
-
return this.
|
|
98
|
+
v3k(client, handler) {
|
|
99
|
+
return this.c3p(client, (!(handler == null) ? isSuspendFunction(handler, 2) : false) ? handler : THROW_CCE());
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
102
|
initMetadataForObject($, 'SetupRequestContext');
|
|
@@ -116,7 +116,7 @@ function attachToClientEngineJob(requestJob, clientEngineJob) {
|
|
|
116
116
|
function HttpRequestLifecycle$lambda($this$createClientPlugin) {
|
|
117
117
|
_init_properties_HttpRequestLifecycle_kt__jgkmfx();
|
|
118
118
|
var tmp = SetupRequestContext_instance;
|
|
119
|
-
$this$createClientPlugin.
|
|
119
|
+
$this$createClientPlugin.h3l(tmp, HttpRequestLifecycle$lambda$slambda_0($this$createClientPlugin));
|
|
120
120
|
return Unit_instance;
|
|
121
121
|
}
|
|
122
122
|
var HttpRequestLifecycle$lambda$slambdaClass;
|
|
@@ -124,13 +124,13 @@ function HttpRequestLifecycle$lambda$slambda() {
|
|
|
124
124
|
if (HttpRequestLifecycle$lambda$slambdaClass === VOID) {
|
|
125
125
|
class $ {
|
|
126
126
|
constructor($this_createClientPlugin) {
|
|
127
|
-
this.
|
|
127
|
+
this.d3p_1 = $this_createClientPlugin;
|
|
128
128
|
}
|
|
129
|
-
*
|
|
130
|
-
var executionContext = SupervisorJob(request.
|
|
131
|
-
attachToClientEngineJob(executionContext, ensureNotNull(this.
|
|
129
|
+
*e3p(request, proceed, $completion) {
|
|
130
|
+
var executionContext = SupervisorJob(request.e3g_1);
|
|
131
|
+
attachToClientEngineJob(executionContext, ensureNotNull(this.d3p_1.d3l_1.i3e_1.id(Key_instance)));
|
|
132
132
|
try {
|
|
133
|
-
request.
|
|
133
|
+
request.e3g_1 = executionContext;
|
|
134
134
|
yield* proceed($completion);
|
|
135
135
|
} catch ($p) {
|
|
136
136
|
if ($p instanceof Error) {
|
|
@@ -148,7 +148,7 @@ function HttpRequestLifecycle$lambda$slambda() {
|
|
|
148
148
|
}
|
|
149
149
|
wd(p1, p2, $completion) {
|
|
150
150
|
var tmp = p1 instanceof HttpRequestBuilder() ? p1 : THROW_CCE();
|
|
151
|
-
return this.
|
|
151
|
+
return this.e3p(tmp, (!(p2 == null) ? isSuspendFunction(p2, 0) : false) ? p2 : THROW_CCE(), $completion);
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
154
|
initMetadataForLambda($, VOID, VOID, [2]);
|
|
@@ -158,7 +158,7 @@ function HttpRequestLifecycle$lambda$slambda() {
|
|
|
158
158
|
}
|
|
159
159
|
function HttpRequestLifecycle$lambda$slambda_0($this_createClientPlugin) {
|
|
160
160
|
var i = new (HttpRequestLifecycle$lambda$slambda())($this_createClientPlugin);
|
|
161
|
-
var l = (request, proceed, $completion) => i.
|
|
161
|
+
var l = (request, proceed, $completion) => i.e3p(request, proceed, $completion);
|
|
162
162
|
l.$arity = 2;
|
|
163
163
|
return l;
|
|
164
164
|
}
|
|
@@ -111,10 +111,10 @@ function HttpRetryEventData() {
|
|
|
111
111
|
if (HttpRetryEventDataClass === VOID) {
|
|
112
112
|
class $ {
|
|
113
113
|
constructor(request, retryCount, response, cause) {
|
|
114
|
-
this.
|
|
115
|
-
this.
|
|
116
|
-
this.
|
|
117
|
-
this.
|
|
114
|
+
this.f3p_1 = request;
|
|
115
|
+
this.g3p_1 = retryCount;
|
|
116
|
+
this.h3p_1 = response;
|
|
117
|
+
this.i3p_1 = cause;
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
120
|
initMetadataForClass($, 'HttpRetryEventData');
|
|
@@ -129,12 +129,12 @@ var HttpRequestRetryConfig$delay$slambdaClass;
|
|
|
129
129
|
function HttpRequestRetryConfig$delay$slambda() {
|
|
130
130
|
if (HttpRequestRetryConfig$delay$slambdaClass === VOID) {
|
|
131
131
|
class $ {
|
|
132
|
-
*
|
|
132
|
+
*j3p(it, $completion) {
|
|
133
133
|
yield* delay(it, $completion);
|
|
134
134
|
return Unit_instance;
|
|
135
135
|
}
|
|
136
136
|
vd(p1, $completion) {
|
|
137
|
-
return this.
|
|
137
|
+
return this.j3p(p1 instanceof Long() ? p1 : THROW_CCE(), $completion);
|
|
138
138
|
}
|
|
139
139
|
}
|
|
140
140
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -144,7 +144,7 @@ function HttpRequestRetryConfig$delay$slambda() {
|
|
|
144
144
|
}
|
|
145
145
|
function HttpRequestRetryConfig$delay$slambda_0() {
|
|
146
146
|
var i = new (HttpRequestRetryConfig$delay$slambda())();
|
|
147
|
-
var l = (it, $completion) => i.
|
|
147
|
+
var l = (it, $completion) => i.j3p(it, $completion);
|
|
148
148
|
l.$arity = 1;
|
|
149
149
|
return l;
|
|
150
150
|
}
|
|
@@ -175,7 +175,7 @@ function HttpRequestRetryConfig$delayMillis$lambda($respectRetryAfterHeader, $bl
|
|
|
175
175
|
return (_this__u8e3s4, it) => {
|
|
176
176
|
var tmp;
|
|
177
177
|
if ($respectRetryAfterHeader) {
|
|
178
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
178
|
+
var tmp0_safe_receiver = _this__u8e3s4.l3p_1;
|
|
179
179
|
var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.g2y();
|
|
180
180
|
var tmp2_safe_receiver = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.zh('Retry-After');
|
|
181
181
|
var tmp3_safe_receiver = tmp2_safe_receiver == null ? null : toLongOrNull(tmp2_safe_receiver);
|
|
@@ -216,74 +216,74 @@ function HttpRequestRetryConfig() {
|
|
|
216
216
|
class $ {
|
|
217
217
|
constructor() {
|
|
218
218
|
var tmp = this;
|
|
219
|
-
tmp.
|
|
219
|
+
tmp.q3p_1 = HttpRequestRetryConfig$delay$slambda_0();
|
|
220
220
|
var tmp_0 = this;
|
|
221
|
-
tmp_0.
|
|
222
|
-
this.
|
|
223
|
-
this.
|
|
224
|
-
this.
|
|
221
|
+
tmp_0.r3p_1 = HttpRequestRetryConfig$modifyRequest$lambda;
|
|
222
|
+
this.s3p_1 = 0;
|
|
223
|
+
this.t3p(3);
|
|
224
|
+
this.u3p();
|
|
225
225
|
}
|
|
226
|
-
|
|
227
|
-
var tmp = this.
|
|
226
|
+
v3p() {
|
|
227
|
+
var tmp = this.n3p_1;
|
|
228
228
|
if (!(tmp == null))
|
|
229
229
|
return tmp;
|
|
230
230
|
else {
|
|
231
231
|
throwUninitializedPropertyAccessException('shouldRetry');
|
|
232
232
|
}
|
|
233
233
|
}
|
|
234
|
-
|
|
235
|
-
var tmp = this.
|
|
234
|
+
w3p() {
|
|
235
|
+
var tmp = this.o3p_1;
|
|
236
236
|
if (!(tmp == null))
|
|
237
237
|
return tmp;
|
|
238
238
|
else {
|
|
239
239
|
throwUninitializedPropertyAccessException('shouldRetryOnException');
|
|
240
240
|
}
|
|
241
241
|
}
|
|
242
|
-
|
|
243
|
-
var tmp = this.
|
|
242
|
+
x3p() {
|
|
243
|
+
var tmp = this.p3p_1;
|
|
244
244
|
if (!(tmp == null))
|
|
245
245
|
return tmp;
|
|
246
246
|
else {
|
|
247
247
|
throwUninitializedPropertyAccessException('delayMillis');
|
|
248
248
|
}
|
|
249
249
|
}
|
|
250
|
-
x3p(maxRetries, block) {
|
|
251
|
-
if (!(maxRetries === -1))
|
|
252
|
-
this.r3p_1 = maxRetries;
|
|
253
|
-
this.m3p_1 = block;
|
|
254
|
-
}
|
|
255
250
|
y3p(maxRetries, block) {
|
|
256
251
|
if (!(maxRetries === -1))
|
|
257
|
-
this.
|
|
252
|
+
this.s3p_1 = maxRetries;
|
|
258
253
|
this.n3p_1 = block;
|
|
259
254
|
}
|
|
260
|
-
z3p(maxRetries,
|
|
261
|
-
|
|
255
|
+
z3p(maxRetries, block) {
|
|
256
|
+
if (!(maxRetries === -1))
|
|
257
|
+
this.s3p_1 = maxRetries;
|
|
258
|
+
this.o3p_1 = block;
|
|
259
|
+
}
|
|
260
|
+
a3q(maxRetries, retryOnTimeout) {
|
|
261
|
+
this.z3p(maxRetries, HttpRequestRetryConfig$retryOnException$lambda(retryOnTimeout));
|
|
262
262
|
}
|
|
263
|
-
|
|
263
|
+
b3q(maxRetries, retryOnTimeout, $super) {
|
|
264
264
|
maxRetries = maxRetries === VOID ? -1 : maxRetries;
|
|
265
265
|
retryOnTimeout = retryOnTimeout === VOID ? false : retryOnTimeout;
|
|
266
266
|
var tmp;
|
|
267
267
|
if ($super === VOID) {
|
|
268
|
-
this.
|
|
268
|
+
this.a3q(maxRetries, retryOnTimeout);
|
|
269
269
|
tmp = Unit_instance;
|
|
270
270
|
} else {
|
|
271
|
-
tmp = $super.
|
|
271
|
+
tmp = $super.a3q.call(this, maxRetries, retryOnTimeout);
|
|
272
272
|
}
|
|
273
273
|
return tmp;
|
|
274
274
|
}
|
|
275
|
-
|
|
276
|
-
this.
|
|
275
|
+
c3q(maxRetries) {
|
|
276
|
+
this.y3p(maxRetries, HttpRequestRetryConfig$retryOnServerErrors$lambda);
|
|
277
277
|
}
|
|
278
|
-
|
|
278
|
+
t3p(maxRetries) {
|
|
279
|
+
this.c3q(maxRetries);
|
|
279
280
|
this.b3q(maxRetries);
|
|
280
|
-
this.a3q(maxRetries);
|
|
281
281
|
}
|
|
282
|
-
|
|
282
|
+
d3q(respectRetryAfterHeader, block) {
|
|
283
283
|
var tmp = this;
|
|
284
|
-
tmp.
|
|
284
|
+
tmp.p3p_1 = HttpRequestRetryConfig$delayMillis$lambda(respectRetryAfterHeader, block);
|
|
285
285
|
}
|
|
286
|
-
|
|
286
|
+
e3q(base, baseDelayMs, maxDelayMs, randomizationMs, respectRetryAfterHeader) {
|
|
287
287
|
// Inline function 'kotlin.check' call
|
|
288
288
|
if (!(base > 0)) {
|
|
289
289
|
throw IllegalStateException().o('Check failed.');
|
|
@@ -300,9 +300,9 @@ function HttpRequestRetryConfig() {
|
|
|
300
300
|
if (!(compare(randomizationMs, new (Long())(0, 0)) >= 0)) {
|
|
301
301
|
throw IllegalStateException().o('Check failed.');
|
|
302
302
|
}
|
|
303
|
-
this.
|
|
303
|
+
this.d3q(respectRetryAfterHeader, HttpRequestRetryConfig$exponentialDelay$lambda(base, baseDelayMs, maxDelayMs, this, randomizationMs));
|
|
304
304
|
}
|
|
305
|
-
|
|
305
|
+
u3p(base, baseDelayMs, maxDelayMs, randomizationMs, respectRetryAfterHeader, $super) {
|
|
306
306
|
base = base === VOID ? 2.0 : base;
|
|
307
307
|
baseDelayMs = baseDelayMs === VOID ? new (Long())(1000, 0) : baseDelayMs;
|
|
308
308
|
maxDelayMs = maxDelayMs === VOID ? new (Long())(60000, 0) : maxDelayMs;
|
|
@@ -310,10 +310,10 @@ function HttpRequestRetryConfig() {
|
|
|
310
310
|
respectRetryAfterHeader = respectRetryAfterHeader === VOID ? true : respectRetryAfterHeader;
|
|
311
311
|
var tmp;
|
|
312
312
|
if ($super === VOID) {
|
|
313
|
-
this.
|
|
313
|
+
this.e3q(base, baseDelayMs, maxDelayMs, randomizationMs, respectRetryAfterHeader);
|
|
314
314
|
tmp = Unit_instance;
|
|
315
315
|
} else {
|
|
316
|
-
tmp = $super.
|
|
316
|
+
tmp = $super.e3q.call(this, base, baseDelayMs, maxDelayMs, randomizationMs, respectRetryAfterHeader);
|
|
317
317
|
}
|
|
318
318
|
return tmp;
|
|
319
319
|
}
|
|
@@ -328,7 +328,7 @@ function HttpRetryShouldRetryContext() {
|
|
|
328
328
|
if (HttpRetryShouldRetryContextClass === VOID) {
|
|
329
329
|
class $ {
|
|
330
330
|
constructor(retryCount) {
|
|
331
|
-
this.
|
|
331
|
+
this.f3q_1 = retryCount;
|
|
332
332
|
}
|
|
333
333
|
}
|
|
334
334
|
initMetadataForClass($, 'HttpRetryShouldRetryContext');
|
|
@@ -341,9 +341,9 @@ function HttpRetryDelayContext() {
|
|
|
341
341
|
if (HttpRetryDelayContextClass === VOID) {
|
|
342
342
|
class $ {
|
|
343
343
|
constructor(request, response, cause) {
|
|
344
|
-
this.
|
|
345
|
-
this.
|
|
346
|
-
this.
|
|
344
|
+
this.k3p_1 = request;
|
|
345
|
+
this.l3p_1 = response;
|
|
346
|
+
this.m3p_1 = cause;
|
|
347
347
|
}
|
|
348
348
|
}
|
|
349
349
|
initMetadataForClass($, 'HttpRetryDelayContext');
|
|
@@ -356,10 +356,10 @@ function HttpRetryModifyRequestContext() {
|
|
|
356
356
|
if (HttpRetryModifyRequestContextClass === VOID) {
|
|
357
357
|
class $ {
|
|
358
358
|
constructor(request, response, cause, retryCount) {
|
|
359
|
-
this.
|
|
360
|
-
this.
|
|
361
|
-
this.
|
|
362
|
-
this.
|
|
359
|
+
this.g3q_1 = request;
|
|
360
|
+
this.h3q_1 = response;
|
|
361
|
+
this.i3q_1 = cause;
|
|
362
|
+
this.j3q_1 = retryCount;
|
|
363
363
|
}
|
|
364
364
|
}
|
|
365
365
|
initMetadataForClass($, 'HttpRetryModifyRequestContext');
|
|
@@ -371,7 +371,7 @@ function *throwOnInvalidResponseBody(_this__u8e3s4, $completion) {
|
|
|
371
371
|
var tmp;
|
|
372
372
|
if (get_isSaved(_this__u8e3s4)) {
|
|
373
373
|
// Inline function 'kotlin.run' call
|
|
374
|
-
var $this$run = _this__u8e3s4.
|
|
374
|
+
var $this$run = _this__u8e3s4.i3h();
|
|
375
375
|
var tmp_0;
|
|
376
376
|
try {
|
|
377
377
|
tmp_0 = yield* $this$run.w1t(VOID, $completion);
|
|
@@ -433,20 +433,20 @@ function HttpRequestRetryConfig$_init_$ref_mqbboi() {
|
|
|
433
433
|
}
|
|
434
434
|
function HttpRequestRetry$lambda($this$createClientPlugin) {
|
|
435
435
|
_init_properties_HttpRequestRetry_kt__h4xjtt();
|
|
436
|
-
var shouldRetry = $this$createClientPlugin.
|
|
437
|
-
var shouldRetryOnException = $this$createClientPlugin.
|
|
438
|
-
var delayMillis = $this$createClientPlugin.
|
|
439
|
-
var delay = $this$createClientPlugin.
|
|
440
|
-
var maxRetries = $this$createClientPlugin.
|
|
441
|
-
var modifyRequest = $this$createClientPlugin.
|
|
442
|
-
$this$createClientPlugin.
|
|
436
|
+
var shouldRetry = $this$createClientPlugin.e3l_1.v3p();
|
|
437
|
+
var shouldRetryOnException = $this$createClientPlugin.e3l_1.w3p();
|
|
438
|
+
var delayMillis = $this$createClientPlugin.e3l_1.x3p();
|
|
439
|
+
var delay = $this$createClientPlugin.e3l_1.q3p_1;
|
|
440
|
+
var maxRetries = $this$createClientPlugin.e3l_1.s3p_1;
|
|
441
|
+
var modifyRequest = $this$createClientPlugin.e3l_1.r3p_1;
|
|
442
|
+
$this$createClientPlugin.k3q(HttpRequestRetry$lambda$slambda_0(maxRetries));
|
|
443
443
|
var tmp = Send_instance;
|
|
444
|
-
$this$createClientPlugin.
|
|
444
|
+
$this$createClientPlugin.h3l(tmp, HttpRequestRetry$lambda$slambda_2(shouldRetry, shouldRetryOnException, maxRetries, delayMillis, modifyRequest, $this$createClientPlugin, delay));
|
|
445
445
|
return Unit_instance;
|
|
446
446
|
}
|
|
447
447
|
function HttpRequestRetry$lambda$prepareRequest$lambda($subRequest) {
|
|
448
448
|
return (cause) => {
|
|
449
|
-
var tmp = $subRequest.
|
|
449
|
+
var tmp = $subRequest.e3g_1;
|
|
450
450
|
var subRequestJob = isInterface(tmp, CompletableJob()) ? tmp : THROW_CCE();
|
|
451
451
|
if (cause == null) {
|
|
452
452
|
subRequestJob.k14();
|
|
@@ -457,14 +457,14 @@ function HttpRequestRetry$lambda$prepareRequest$lambda($subRequest) {
|
|
|
457
457
|
};
|
|
458
458
|
}
|
|
459
459
|
function invoke$shouldRetry(retryCount, maxRetries, shouldRetry, call) {
|
|
460
|
-
return retryCount < maxRetries && shouldRetry(new (HttpRetryShouldRetryContext())(retryCount + 1 | 0), call.
|
|
460
|
+
return retryCount < maxRetries && shouldRetry(new (HttpRetryShouldRetryContext())(retryCount + 1 | 0), call.s3g(), call.w3e());
|
|
461
461
|
}
|
|
462
462
|
function invoke$shouldRetryOnException(retryCount, maxRetries, shouldRetry, subRequest, cause) {
|
|
463
463
|
return retryCount < maxRetries && shouldRetry(new (HttpRetryShouldRetryContext())(retryCount + 1 | 0), subRequest, cause);
|
|
464
464
|
}
|
|
465
465
|
function invoke$prepareRequest(request) {
|
|
466
|
-
var subRequest = (new (HttpRequestBuilder())()).
|
|
467
|
-
var tmp = request.
|
|
466
|
+
var subRequest = (new (HttpRequestBuilder())()).l3q(request);
|
|
467
|
+
var tmp = request.e3g_1;
|
|
468
468
|
tmp.ey(HttpRequestRetry$lambda$prepareRequest$lambda(subRequest));
|
|
469
469
|
return subRequest;
|
|
470
470
|
}
|
|
@@ -473,18 +473,18 @@ function HttpRequestRetry$lambda$slambda() {
|
|
|
473
473
|
if (HttpRequestRetry$lambda$slambdaClass === VOID) {
|
|
474
474
|
class $ {
|
|
475
475
|
constructor($maxRetries) {
|
|
476
|
-
this.
|
|
476
|
+
this.m3q_1 = $maxRetries;
|
|
477
477
|
}
|
|
478
|
-
*
|
|
479
|
-
var tmp0_elvis_lhs = request.
|
|
480
|
-
var maxRetriesValue = tmp0_elvis_lhs == null ? this.
|
|
481
|
-
request.
|
|
478
|
+
*n3q($this$onRequest, request, _unused_var__etf5q3, $completion) {
|
|
479
|
+
var tmp0_elvis_lhs = request.f3g_1.c2j(get_MaxRetriesPerRequestAttributeKey());
|
|
480
|
+
var maxRetriesValue = tmp0_elvis_lhs == null ? this.m3q_1 : tmp0_elvis_lhs;
|
|
481
|
+
request.f3g_1.e2j(get_MaxRetriesPerRequestAttributeKey(), maxRetriesValue);
|
|
482
482
|
return Unit_instance;
|
|
483
483
|
}
|
|
484
|
-
|
|
484
|
+
o3q(p1, p2, p3, $completion) {
|
|
485
485
|
var tmp = p1 instanceof OnRequestContext() ? p1 : THROW_CCE();
|
|
486
486
|
var tmp_0 = p2 instanceof HttpRequestBuilder() ? p2 : THROW_CCE();
|
|
487
|
-
return this.
|
|
487
|
+
return this.n3q(tmp, tmp_0, !(p3 == null) ? p3 : THROW_CCE(), $completion);
|
|
488
488
|
}
|
|
489
489
|
}
|
|
490
490
|
initMetadataForLambda($, VOID, VOID, [3]);
|
|
@@ -494,7 +494,7 @@ function HttpRequestRetry$lambda$slambda() {
|
|
|
494
494
|
}
|
|
495
495
|
function HttpRequestRetry$lambda$slambda_0($maxRetries) {
|
|
496
496
|
var i = new (HttpRequestRetry$lambda$slambda())($maxRetries);
|
|
497
|
-
var l = ($this$onRequest, request, _unused_var__etf5q3, $completion) => i.
|
|
497
|
+
var l = ($this$onRequest, request, _unused_var__etf5q3, $completion) => i.n3q($this$onRequest, request, _unused_var__etf5q3, $completion);
|
|
498
498
|
l.$arity = 3;
|
|
499
499
|
return l;
|
|
500
500
|
}
|
|
@@ -503,26 +503,26 @@ function HttpRequestRetry$lambda$slambda_1() {
|
|
|
503
503
|
if (HttpRequestRetry$lambda$slambdaClass_0 === VOID) {
|
|
504
504
|
class $ {
|
|
505
505
|
constructor($shouldRetry, $shouldRetryOnException, $maxRetries, $delayMillis, $modifyRequest, $this_createClientPlugin, $delay) {
|
|
506
|
-
this.
|
|
507
|
-
this.
|
|
508
|
-
this.
|
|
509
|
-
this.
|
|
510
|
-
this.
|
|
511
|
-
this.
|
|
512
|
-
this.
|
|
513
|
-
}
|
|
514
|
-
*
|
|
506
|
+
this.p3q_1 = $shouldRetry;
|
|
507
|
+
this.q3q_1 = $shouldRetryOnException;
|
|
508
|
+
this.r3q_1 = $maxRetries;
|
|
509
|
+
this.s3q_1 = $delayMillis;
|
|
510
|
+
this.t3q_1 = $modifyRequest;
|
|
511
|
+
this.u3q_1 = $this_createClientPlugin;
|
|
512
|
+
this.v3q_1 = $delay;
|
|
513
|
+
}
|
|
514
|
+
*v3n($this$on, request, $completion) {
|
|
515
515
|
var retryCount = 0;
|
|
516
|
-
var tmp0_elvis_lhs = request.
|
|
517
|
-
var shouldRetry = tmp0_elvis_lhs == null ? this.
|
|
518
|
-
var tmp1_elvis_lhs = request.
|
|
519
|
-
var shouldRetryOnException = tmp1_elvis_lhs == null ? this.
|
|
520
|
-
var tmp2_elvis_lhs = request.
|
|
521
|
-
var maxRetries = tmp2_elvis_lhs == null ? this.
|
|
522
|
-
var tmp3_elvis_lhs = request.
|
|
523
|
-
var delayMillis = tmp3_elvis_lhs == null ? this.
|
|
524
|
-
var tmp4_elvis_lhs = request.
|
|
525
|
-
var modifyRequest = tmp4_elvis_lhs == null ? this.
|
|
516
|
+
var tmp0_elvis_lhs = request.f3g_1.c2j(get_ShouldRetryPerRequestAttributeKey());
|
|
517
|
+
var shouldRetry = tmp0_elvis_lhs == null ? this.p3q_1 : tmp0_elvis_lhs;
|
|
518
|
+
var tmp1_elvis_lhs = request.f3g_1.c2j(get_ShouldRetryOnExceptionPerRequestAttributeKey());
|
|
519
|
+
var shouldRetryOnException = tmp1_elvis_lhs == null ? this.q3q_1 : tmp1_elvis_lhs;
|
|
520
|
+
var tmp2_elvis_lhs = request.f3g_1.c2j(get_MaxRetriesPerRequestAttributeKey());
|
|
521
|
+
var maxRetries = tmp2_elvis_lhs == null ? this.r3q_1 : tmp2_elvis_lhs;
|
|
522
|
+
var tmp3_elvis_lhs = request.f3g_1.c2j(get_RetryDelayPerRequestAttributeKey());
|
|
523
|
+
var delayMillis = tmp3_elvis_lhs == null ? this.s3q_1 : tmp3_elvis_lhs;
|
|
524
|
+
var tmp4_elvis_lhs = request.f3g_1.c2j(get_ModifyRequestPerRequestAttributeKey());
|
|
525
|
+
var modifyRequest = tmp4_elvis_lhs == null ? this.t3q_1 : tmp4_elvis_lhs;
|
|
526
526
|
var call;
|
|
527
527
|
var lastRetryData = null;
|
|
528
528
|
$l$loop: while (true) {
|
|
@@ -530,16 +530,16 @@ function HttpRequestRetry$lambda$slambda_1() {
|
|
|
530
530
|
var tmp;
|
|
531
531
|
try {
|
|
532
532
|
if (!(lastRetryData == null)) {
|
|
533
|
-
var modifyRequestContext = new (HttpRetryModifyRequestContext())(request, lastRetryData.
|
|
533
|
+
var modifyRequestContext = new (HttpRetryModifyRequestContext())(request, lastRetryData.h3p_1, lastRetryData.i3p_1, lastRetryData.g3p_1);
|
|
534
534
|
modifyRequest(modifyRequestContext, subRequest);
|
|
535
535
|
}
|
|
536
|
-
call = yield* $this$on.
|
|
536
|
+
call = yield* $this$on.y3n(subRequest, $completion);
|
|
537
537
|
if (!invoke$shouldRetry(retryCount, maxRetries, shouldRetry, call)) {
|
|
538
|
-
yield* /*#__NOINLINE__*/throwOnInvalidResponseBody(call.
|
|
538
|
+
yield* /*#__NOINLINE__*/throwOnInvalidResponseBody(call.w3e(), $completion);
|
|
539
539
|
break $l$loop;
|
|
540
540
|
}
|
|
541
541
|
retryCount = retryCount + 1 | 0;
|
|
542
|
-
tmp = new (HttpRetryEventData())(subRequest, retryCount, call.
|
|
542
|
+
tmp = new (HttpRetryEventData())(subRequest, retryCount, call.w3e(), null);
|
|
543
543
|
} catch ($p) {
|
|
544
544
|
var tmp_0;
|
|
545
545
|
if ($p instanceof Error) {
|
|
@@ -556,16 +556,16 @@ function HttpRequestRetry$lambda$slambda_1() {
|
|
|
556
556
|
}
|
|
557
557
|
var retryData = tmp;
|
|
558
558
|
lastRetryData = retryData;
|
|
559
|
-
this.
|
|
560
|
-
var delayContext = new (HttpRetryDelayContext())(lastRetryData.
|
|
561
|
-
yield* this.
|
|
562
|
-
get_LOGGER().k2q('Retrying request ' + request.
|
|
559
|
+
this.u3q_1.d3l_1.p3e_1.m2q(get_HttpRequestRetryEvent(), lastRetryData);
|
|
560
|
+
var delayContext = new (HttpRetryDelayContext())(lastRetryData.f3p_1, lastRetryData.h3p_1, lastRetryData.i3p_1);
|
|
561
|
+
yield* this.v3q_1(delayMillis(delayContext, retryCount), $completion);
|
|
562
|
+
get_LOGGER().k2q('Retrying request ' + request.a3g_1.toString() + ' attempt: ' + retryCount);
|
|
563
563
|
}
|
|
564
564
|
return call;
|
|
565
565
|
}
|
|
566
566
|
wd(p1, p2, $completion) {
|
|
567
567
|
var tmp = p1 instanceof Sender() ? p1 : THROW_CCE();
|
|
568
|
-
return this.
|
|
568
|
+
return this.v3n(tmp, p2 instanceof HttpRequestBuilder() ? p2 : THROW_CCE(), $completion);
|
|
569
569
|
}
|
|
570
570
|
}
|
|
571
571
|
initMetadataForLambda($, VOID, VOID, [2]);
|
|
@@ -575,7 +575,7 @@ function HttpRequestRetry$lambda$slambda_1() {
|
|
|
575
575
|
}
|
|
576
576
|
function HttpRequestRetry$lambda$slambda_2($shouldRetry, $shouldRetryOnException, $maxRetries, $delayMillis, $modifyRequest, $this_createClientPlugin, $delay) {
|
|
577
577
|
var i = new (HttpRequestRetry$lambda$slambda_1())($shouldRetry, $shouldRetryOnException, $maxRetries, $delayMillis, $modifyRequest, $this_createClientPlugin, $delay);
|
|
578
|
-
var l = ($this$on, request, $completion) => i.
|
|
578
|
+
var l = ($this$on, request, $completion) => i.v3n($this$on, request, $completion);
|
|
579
579
|
l.$arity = 2;
|
|
580
580
|
return l;
|
|
581
581
|
}
|