@continuous-excellence/coupling-cli 1.1.430 → 1.1.431
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 +36 -36
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +15 -15
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.js.mjs +33 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.js.mjs.map +1 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +91 -17
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +33 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +28 -26
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +28 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +23 -23
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +35 -35
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +4 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +33 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +50 -50
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +12 -12
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +18 -18
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +13 -13
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/AccessResult.mjs +78 -78
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/DeviceCodeRequest.mjs +50 -50
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +30 -30
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs.map +1 -1
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/CouplingJsonFormat.mjs +4 -4
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +10 -10
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +47 -47
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/ContributionId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs +57 -57
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +16 -16
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSetId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PairingRule.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyDetails.mjs +34 -34
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +5 -5
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/SecretId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs +17 -17
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs +26 -26
- 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 +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +32 -32
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +27 -27
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +77 -77
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +102 -102
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +29 -29
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +36 -36
- 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 +24 -24
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- 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/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 +107 -107
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloRequest.mjs +54 -54
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloResponse.mjs +61 -61
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Assertions.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs +3 -3
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +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 +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Optional.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/DefaultHttpRequestComposer.mjs +139 -139
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/Http.mjs +57 -57
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/HttpHeaders.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/internal/ResponseParser.mjs +28 -28
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +83 -83
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSourceJsonReader.mjs +273 -273
- 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 +11 -11
- 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 +111 -111
- 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 +216 -216
- 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 +26 -26
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +49 -49
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/dispatchers.js.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/flows.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +18 -18
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpEngine.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs +145 -145
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/Js.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/Js.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +33 -33
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +29 -29
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +181 -181
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +23 -23
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.js.mjs +1 -1
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +42 -42
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +68 -68
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +5 -5
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +33 -33
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +101 -101
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +93 -93
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +124 -124
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +134 -134
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +48 -48
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +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 +189 -189
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +45 -45
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +227 -227
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +64 -64
- 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 +24 -24
- 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 +119 -119
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +132 -132
- 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/DeepRecursive.mjs +19 -19
- package/kotlin/kotlin-kotlin-stdlib/kotlin/Lazy.mjs +9 -9
- package/kotlin/kotlin-kotlin-stdlib/kotlin/Result.mjs +5 -5
- package/kotlin/kotlin-kotlin-stdlib/kotlin/Tuples.mjs +14 -14
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UByte.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UInt.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ULong.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UShort.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs +2 -0
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs +80 -56
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/TimeSource.mjs +11 -11
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/measureTime.mjs +7 -7
- package/kotlin/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs +24 -24
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +10 -10
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +22 -22
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +9 -9
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs +5 -5
- package/kotlin/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs +8 -8
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs +25 -25
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Await.mjs +40 -40
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Await.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs +30 -30
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs +7 -7
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs +163 -163
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs +10 -10
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs +11 -11
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs +42 -42
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs +18 -18
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs +27 -27
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs +6 -6
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +92 -92
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs +18 -18
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +313 -313
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs +18 -18
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +461 -461
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs +30 -30
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +25 -25
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs +16 -16
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +13 -13
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +20 -20
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collection.mjs +10 -10
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Context.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs +14 -14
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Errors.mjs +28 -28
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Limit.mjs +16 -16
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs +9 -9
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs +19 -19
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs +134 -134
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Transform.mjs +19 -19
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs +32 -32
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs +72 -72
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs +8 -8
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs +46 -46
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs +71 -71
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LimitedDispatcher.mjs +39 -39
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs +23 -23
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LockFreeTaskQueue.mjs +72 -72
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/NamedDispatcher.mjs +12 -12
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs +11 -11
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs +9 -9
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +15 -15
- package/kotlin/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs +34 -34
- package/kotlin/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs +2 -2
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs +11 -11
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs +157 -157
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +10 -10
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs +20 -20
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs +50 -50
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs +132 -132
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +6 -6
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs +2 -2
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs +12 -12
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +58 -58
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs +12 -12
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +17 -17
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs +3 -3
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +32 -32
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +18 -18
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +89 -89
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +46 -46
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +50 -50
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +7 -7
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +25 -25
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +38 -38
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +56 -56
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +229 -229
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +22 -22
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +33 -33
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +14 -14
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +41 -41
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +19 -19
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs +5 -5
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +70 -70
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +444 -444
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +114 -114
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +194 -194
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +90 -90
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +48 -48
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +30 -30
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +47 -47
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +18 -18
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +58 -58
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementBuilders.mjs +6 -6
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +146 -146
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +178 -178
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +25 -25
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +68 -68
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +15 -15
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +20 -20
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +39 -39
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +12 -12
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +62 -62
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +6 -6
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +175 -175
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +142 -142
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +51 -51
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +212 -212
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonEncoder.mjs +178 -178
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +9 -9
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +69 -69
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +75 -75
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +35 -35
- package/kotlin/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +45 -45
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +48 -48
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +46 -46
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +24 -24
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +49 -49
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +22 -22
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +3 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +20 -20
- 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 +32 -32
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs +16 -16
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs +9 -9
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +36 -36
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultRequest.mjs +56 -56
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +32 -32
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +67 -67
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +78 -78
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +48 -48
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +33 -33
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +28 -28
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +108 -108
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +52 -52
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +79 -79
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +23 -23
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +13 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +26 -26
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +13 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +34 -34
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/observer/ResponseObserver.mjs +56 -56
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/ClientSessions.mjs +36 -36
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +61 -61
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSocketContent.mjs +8 -8
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +77 -77
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/builders.mjs +7 -7
- 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 +14 -14
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +57 -57
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +18 -18
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/buildersWithUrl.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/FormDataContent.mjs +9 -9
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/formBuilders.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +20 -20
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +25 -25
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +19 -19
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +16 -16
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +3 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +5 -5
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/HttpClientCallLogger.mjs +28 -28
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogLevel.mjs +3 -3
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggedContent.mjs +15 -15
- 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 +275 -275
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggingUtils.mjs +14 -14
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/ObservingUtils.mjs +13 -13
- package/kotlin/ktor-ktor-events/io/ktor/events/Events.mjs +6 -6
- package/kotlin/ktor-ktor-http/io/ktor/http/Codecs.mjs +12 -12
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +90 -90
- package/kotlin/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +18 -18
- package/kotlin/ktor-ktor-http/io/ktor/http/Headers.mjs +18 -18
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +32 -32
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +115 -115
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +5 -5
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +13 -13
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +16 -16
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +66 -66
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpUrlEncoded.mjs +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/Parameters.mjs +12 -12
- package/kotlin/ktor-ktor-http/io/ktor/http/Query.mjs +4 -4
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilder.mjs +59 -59
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/URLParser.mjs +34 -34
- package/kotlin/ktor-ktor-http/io/ktor/http/URLProtocol.mjs +20 -20
- package/kotlin/ktor-ktor-http/io/ktor/http/URLUtils.mjs +25 -25
- package/kotlin/ktor-ktor-http/io/ktor/http/Url.mjs +77 -77
- package/kotlin/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +31 -31
- package/kotlin/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +11 -11
- package/kotlin/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +9 -9
- package/kotlin/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +14 -14
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +5 -5
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +87 -87
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +33 -33
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +49 -49
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +10 -10
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +68 -68
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +2 -2
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +4 -4
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs +3 -3
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs +126 -126
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs +53 -53
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +13 -13
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +71 -71
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +2 -2
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +34 -34
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +11 -11
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +23 -23
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs +12 -12
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs +15 -15
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs +18 -18
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +36 -36
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs +4 -4
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs +2 -2
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +5 -5
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs +4 -4
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +10 -10
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +28 -28
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +3 -3
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +5 -5
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +36 -36
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +79 -79
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +8 -8
- package/kotlin/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +7 -7
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.mjs +12 -12
- package/kotlin/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs +16 -16
- package/kotlin/ktor-ktor-utils/io/ktor/util/ByteChannels.mjs +55 -55
- package/kotlin/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +31 -31
- package/kotlin/ktor-ktor-utils/io/ktor/util/ContentEncodersJs.mjs +5 -5
- package/kotlin/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs +34 -34
- package/kotlin/ktor-ktor-utils/io/ktor/util/Encoders.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +16 -16
- package/kotlin/ktor-ktor-utils/io/ktor/util/StringValues.mjs +88 -88
- package/kotlin/ktor-ktor-utils/io/ktor/util/Text.mjs +7 -7
- package/kotlin/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/date/Date.mjs +102 -102
- package/kotlin/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +5 -5
- package/kotlin/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +8 -8
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs +10 -10
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +29 -29
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +25 -25
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +53 -53
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs +2 -2
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +50 -50
- package/kotlin/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +9 -9
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +19 -19
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs +119 -119
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +8 -8
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs +41 -41
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +6 -6
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +8 -8
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/PingPong.mjs +42 -42
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketExtension.mjs +4 -4
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketExtensionHeader.mjs +4 -4
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketSession.mjs +6 -6
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +63 -63
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +65 -65
- 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 +225 -225
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +23 -23
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +139 -139
- 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 +16 -16
- 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 +58 -58
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
- package/kotlin/okio-parent-okio/okio/Buffer.mjs +408 -408
- package/kotlin/okio-parent-okio/okio/ByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs +15 -15
- package/kotlin/okio-parent-okio/okio/Okio.mjs +2 -2
- package/kotlin/okio-parent-okio/okio/Options.mjs +23 -23
- package/kotlin/okio-parent-okio/okio/RealBufferedSink.mjs +37 -37
- package/kotlin/okio-parent-okio/okio/RealBufferedSource.mjs +70 -70
- package/kotlin/okio-parent-okio/okio/Segment.mjs +70 -70
- package/kotlin/okio-parent-okio/okio/SegmentPool.mjs +5 -5
- package/kotlin/okio-parent-okio/okio/SegmentedByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/Util.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/-Utf8.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/Buffer.mjs +24 -24
- package/kotlin/okio-parent-okio/okio/internal/ByteString.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/SegmentedByteString.mjs +1 -1
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +7 -7
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +144 -144
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +32 -32
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +30 -30
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +34 -34
- package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
- package/kotlin/types-types-internal/kotools/types/internal/Errors.mjs +1 -1
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +12 -12
- package/kotlin/uuid/com/benasher44/uuid/uuid.mjs +11 -11
- package/package.json +1 -1
|
@@ -88,7 +88,7 @@ import {
|
|
|
88
88
|
function writeJson(json, value, serializer) {
|
|
89
89
|
var result = {_v: null};
|
|
90
90
|
var encoder = new (JsonTreeEncoder())(json, writeJson$lambda(result));
|
|
91
|
-
encoder.
|
|
91
|
+
encoder.e22(serializer, value);
|
|
92
92
|
var tmp;
|
|
93
93
|
if (result._v == null) {
|
|
94
94
|
throwUninitializedPropertyAccessException('result');
|
|
@@ -105,19 +105,19 @@ function JsonTreeEncoder() {
|
|
|
105
105
|
super(json, nodeConsumer);
|
|
106
106
|
var tmp = this;
|
|
107
107
|
// Inline function 'kotlin.collections.linkedMapOf' call
|
|
108
|
-
tmp.
|
|
108
|
+
tmp.m48_1 = LinkedHashMap().qc();
|
|
109
109
|
}
|
|
110
|
-
|
|
110
|
+
n48(key, element) {
|
|
111
111
|
// Inline function 'kotlin.collections.set' call
|
|
112
|
-
this.
|
|
112
|
+
this.m48_1.v4(key, element);
|
|
113
113
|
}
|
|
114
|
-
|
|
115
|
-
if (!(value == null) || this.
|
|
116
|
-
super.
|
|
114
|
+
f22(descriptor, index, serializer, value) {
|
|
115
|
+
if (!(value == null) || this.d48_1.j3z_1) {
|
|
116
|
+
super.f22(descriptor, index, serializer, value);
|
|
117
117
|
}
|
|
118
118
|
}
|
|
119
|
-
|
|
120
|
-
return new (JsonObject())(this.
|
|
119
|
+
o48() {
|
|
120
|
+
return new (JsonObject())(this.m48_1);
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
initMetadataForClass($, 'JsonTreeEncoder');
|
|
@@ -126,49 +126,49 @@ function JsonTreeEncoder() {
|
|
|
126
126
|
return JsonTreeEncoderClass;
|
|
127
127
|
}
|
|
128
128
|
function inlineUnsignedNumberEncoder($this, tag) {
|
|
129
|
-
return AbstractJsonTreeEncoder$inlineUnsignedNumberEncoder$1().
|
|
129
|
+
return AbstractJsonTreeEncoder$inlineUnsignedNumberEncoder$1().f49($this, tag);
|
|
130
130
|
}
|
|
131
131
|
function inlineUnquotedLiteralEncoder($this, tag, inlineDescriptor) {
|
|
132
|
-
return AbstractJsonTreeEncoder$inlineUnquotedLiteralEncoder$1().
|
|
132
|
+
return AbstractJsonTreeEncoder$inlineUnquotedLiteralEncoder$1().j49($this, tag, inlineDescriptor);
|
|
133
133
|
}
|
|
134
134
|
var AbstractJsonTreeEncoder$inlineUnsignedNumberEncoder$1Class;
|
|
135
135
|
function AbstractJsonTreeEncoder$inlineUnsignedNumberEncoder$1() {
|
|
136
136
|
if (AbstractJsonTreeEncoder$inlineUnsignedNumberEncoder$1Class === VOID) {
|
|
137
137
|
class $ extends AbstractEncoder() {
|
|
138
|
-
static
|
|
138
|
+
static f49(this$0, $tag, $box) {
|
|
139
139
|
if ($box === VOID)
|
|
140
140
|
$box = {};
|
|
141
|
-
$box.
|
|
142
|
-
$box.
|
|
143
|
-
var $this = this.
|
|
144
|
-
$this.
|
|
141
|
+
$box.d49_1 = this$0;
|
|
142
|
+
$box.e49_1 = $tag;
|
|
143
|
+
var $this = this.e21($box);
|
|
144
|
+
$this.c49_1 = this$0.b48_1.a21();
|
|
145
145
|
return $this;
|
|
146
146
|
}
|
|
147
|
-
|
|
148
|
-
return this.
|
|
147
|
+
a21() {
|
|
148
|
+
return this.c49_1;
|
|
149
149
|
}
|
|
150
|
-
|
|
151
|
-
return this.
|
|
150
|
+
k49(s) {
|
|
151
|
+
return this.d49_1.n48(this.e49_1, new (JsonLiteral())(s, false));
|
|
152
152
|
}
|
|
153
|
-
|
|
153
|
+
l21(value) {
|
|
154
154
|
// Inline function 'kotlin.toUInt' call
|
|
155
155
|
var tmp$ret$0 = _UInt___init__impl__l7qpdl(value);
|
|
156
|
-
return this.
|
|
156
|
+
return this.k49(UInt__toString_impl_dbgl21(tmp$ret$0));
|
|
157
157
|
}
|
|
158
|
-
|
|
158
|
+
m21(value) {
|
|
159
159
|
// Inline function 'kotlin.toULong' call
|
|
160
160
|
var tmp$ret$0 = _ULong___init__impl__c78o9k(value);
|
|
161
|
-
return this.
|
|
161
|
+
return this.k49(ULong__toString_impl_f9au7k(tmp$ret$0));
|
|
162
162
|
}
|
|
163
|
-
|
|
163
|
+
j21(value) {
|
|
164
164
|
// Inline function 'kotlin.toUByte' call
|
|
165
165
|
var tmp$ret$0 = _UByte___init__impl__g9hnc4(value);
|
|
166
|
-
return this.
|
|
166
|
+
return this.k49(UByte__toString_impl_v72jg(tmp$ret$0));
|
|
167
167
|
}
|
|
168
|
-
|
|
168
|
+
k21(value) {
|
|
169
169
|
// Inline function 'kotlin.toUShort' call
|
|
170
170
|
var tmp$ret$0 = _UShort___init__impl__jigrne(value);
|
|
171
|
-
return this.
|
|
171
|
+
return this.k49(UShort__toString_impl_edaoee(tmp$ret$0));
|
|
172
172
|
}
|
|
173
173
|
}
|
|
174
174
|
initMetadataForClass($);
|
|
@@ -180,19 +180,19 @@ var AbstractJsonTreeEncoder$inlineUnquotedLiteralEncoder$1Class;
|
|
|
180
180
|
function AbstractJsonTreeEncoder$inlineUnquotedLiteralEncoder$1() {
|
|
181
181
|
if (AbstractJsonTreeEncoder$inlineUnquotedLiteralEncoder$1Class === VOID) {
|
|
182
182
|
class $ extends AbstractEncoder() {
|
|
183
|
-
static
|
|
183
|
+
static j49(this$0, $tag, $inlineDescriptor, $box) {
|
|
184
184
|
if ($box === VOID)
|
|
185
185
|
$box = {};
|
|
186
|
-
$box.
|
|
187
|
-
$box.
|
|
188
|
-
$box.
|
|
189
|
-
return this.
|
|
186
|
+
$box.g49_1 = this$0;
|
|
187
|
+
$box.h49_1 = $tag;
|
|
188
|
+
$box.i49_1 = $inlineDescriptor;
|
|
189
|
+
return this.e21($box);
|
|
190
190
|
}
|
|
191
|
-
|
|
192
|
-
return this.
|
|
191
|
+
a21() {
|
|
192
|
+
return this.g49_1.b48_1.a21();
|
|
193
193
|
}
|
|
194
|
-
|
|
195
|
-
return this.
|
|
194
|
+
q21(value) {
|
|
195
|
+
return this.g49_1.n48(this.h49_1, new (JsonLiteral())(value, false, this.i49_1));
|
|
196
196
|
}
|
|
197
197
|
}
|
|
198
198
|
initMetadataForClass($);
|
|
@@ -202,7 +202,7 @@ function AbstractJsonTreeEncoder$inlineUnquotedLiteralEncoder$1() {
|
|
|
202
202
|
}
|
|
203
203
|
function AbstractJsonTreeEncoder$beginStructure$lambda(this$0) {
|
|
204
204
|
return (node) => {
|
|
205
|
-
this$0.
|
|
205
|
+
this$0.n48(this$0.e2g(), node);
|
|
206
206
|
return Unit_instance;
|
|
207
207
|
};
|
|
208
208
|
}
|
|
@@ -212,94 +212,94 @@ function AbstractJsonTreeEncoder() {
|
|
|
212
212
|
class $ extends NamedValueEncoder() {
|
|
213
213
|
constructor(json, nodeConsumer) {
|
|
214
214
|
super();
|
|
215
|
-
this.
|
|
216
|
-
this.
|
|
217
|
-
this.
|
|
218
|
-
this.
|
|
219
|
-
this.
|
|
215
|
+
this.b48_1 = json;
|
|
216
|
+
this.c48_1 = nodeConsumer;
|
|
217
|
+
this.d48_1 = this.b48_1.s3x_1;
|
|
218
|
+
this.e48_1 = null;
|
|
219
|
+
this.f48_1 = null;
|
|
220
220
|
}
|
|
221
|
-
|
|
222
|
-
return this.
|
|
221
|
+
v3z() {
|
|
222
|
+
return this.b48_1;
|
|
223
223
|
}
|
|
224
|
-
|
|
225
|
-
return this.
|
|
224
|
+
a21() {
|
|
225
|
+
return this.b48_1.a21();
|
|
226
226
|
}
|
|
227
|
-
|
|
228
|
-
return getJsonElementName(descriptor, this.
|
|
227
|
+
r2e(descriptor, index) {
|
|
228
|
+
return getJsonElementName(descriptor, this.b48_1, index);
|
|
229
229
|
}
|
|
230
|
-
|
|
231
|
-
return this.
|
|
230
|
+
j22(descriptor, index) {
|
|
231
|
+
return this.d48_1.e3z_1;
|
|
232
232
|
}
|
|
233
|
-
|
|
233
|
+
w2e(parentName, childName) {
|
|
234
234
|
return childName;
|
|
235
235
|
}
|
|
236
|
-
|
|
236
|
+
h22() {
|
|
237
237
|
}
|
|
238
|
-
|
|
239
|
-
var tmp0_elvis_lhs = this.
|
|
238
|
+
h21() {
|
|
239
|
+
var tmp0_elvis_lhs = this.v2e();
|
|
240
240
|
var tmp;
|
|
241
241
|
if (tmp0_elvis_lhs == null) {
|
|
242
|
-
return this.
|
|
242
|
+
return this.c48_1(JsonNull_getInstance());
|
|
243
243
|
} else {
|
|
244
244
|
tmp = tmp0_elvis_lhs;
|
|
245
245
|
}
|
|
246
246
|
var tag = tmp;
|
|
247
|
-
this.
|
|
248
|
-
}
|
|
249
|
-
n48(tag) {
|
|
250
|
-
return this.l48(tag, JsonNull_getInstance());
|
|
247
|
+
this.p48(tag);
|
|
251
248
|
}
|
|
252
|
-
|
|
253
|
-
return this.n48(
|
|
249
|
+
p48(tag) {
|
|
250
|
+
return this.n48(tag, JsonNull_getInstance());
|
|
254
251
|
}
|
|
255
|
-
|
|
256
|
-
return this.
|
|
257
|
-
}
|
|
258
|
-
q2f(tag, value) {
|
|
259
|
-
return this.o48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), value);
|
|
260
|
-
}
|
|
261
|
-
p48(tag, value) {
|
|
262
|
-
return this.l48(tag, JsonPrimitive(value));
|
|
263
|
-
}
|
|
264
|
-
r2f(tag, value) {
|
|
265
|
-
return this.p48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), value);
|
|
252
|
+
r2f(tag) {
|
|
253
|
+
return this.p48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE());
|
|
266
254
|
}
|
|
267
255
|
q48(tag, value) {
|
|
268
|
-
return this.
|
|
256
|
+
return this.n48(tag, JsonPrimitive(value));
|
|
269
257
|
}
|
|
270
258
|
s2f(tag, value) {
|
|
271
259
|
return this.q48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), value);
|
|
272
260
|
}
|
|
273
261
|
r48(tag, value) {
|
|
274
|
-
return this.
|
|
262
|
+
return this.n48(tag, JsonPrimitive(value));
|
|
275
263
|
}
|
|
276
264
|
t2f(tag, value) {
|
|
277
265
|
return this.r48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), value);
|
|
278
266
|
}
|
|
279
267
|
s48(tag, value) {
|
|
280
|
-
this.
|
|
281
|
-
if (!this.b48_1.m3z_1 && !isFinite(value)) {
|
|
282
|
-
throw InvalidFloatingPointEncoded(value, tag, toString(this.m48()));
|
|
283
|
-
}
|
|
268
|
+
return this.n48(tag, JsonPrimitive(value));
|
|
284
269
|
}
|
|
285
270
|
u2f(tag, value) {
|
|
286
271
|
return this.s48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), value);
|
|
287
272
|
}
|
|
288
|
-
|
|
289
|
-
|
|
273
|
+
t48(tag, value) {
|
|
274
|
+
return this.n48(tag, JsonPrimitive(value));
|
|
275
|
+
}
|
|
276
|
+
v2f(tag, value) {
|
|
277
|
+
return this.t48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), value);
|
|
278
|
+
}
|
|
279
|
+
u48(tag, value) {
|
|
280
|
+
this.n48(tag, JsonPrimitive(value));
|
|
281
|
+
if (!this.d48_1.o3z_1 && !isFinite(value)) {
|
|
282
|
+
throw InvalidFloatingPointEncoded(value, tag, toString(this.o48()));
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
w2f(tag, value) {
|
|
286
|
+
return this.u48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), value);
|
|
287
|
+
}
|
|
288
|
+
e22(serializer, value) {
|
|
289
|
+
if (!(this.v2e() == null) || !get_requiresTopLevelTag(carrierDescriptor(serializer.j1w(), this.a21()))) {
|
|
290
290
|
$l$block: {
|
|
291
291
|
// Inline function 'kotlinx.serialization.json.internal.encodePolymorphically' call
|
|
292
|
-
if (this.
|
|
293
|
-
serializer.
|
|
292
|
+
if (this.v3z().s3x_1.m3z_1) {
|
|
293
|
+
serializer.k1w(this, value);
|
|
294
294
|
break $l$block;
|
|
295
295
|
}
|
|
296
296
|
var isPolymorphicSerializer = serializer instanceof AbstractPolymorphicSerializer();
|
|
297
297
|
var tmp;
|
|
298
298
|
if (isPolymorphicSerializer) {
|
|
299
|
-
tmp = !this.
|
|
299
|
+
tmp = !this.v3z().s3x_1.u3z_1.equals(ClassDiscriminatorMode_NONE_getInstance());
|
|
300
300
|
} else {
|
|
301
301
|
var tmp_0;
|
|
302
|
-
switch (this.
|
|
302
|
+
switch (this.v3z().s3x_1.u3z_1.x1_1) {
|
|
303
303
|
case 0:
|
|
304
304
|
case 2:
|
|
305
305
|
tmp_0 = false;
|
|
@@ -307,7 +307,7 @@ function AbstractJsonTreeEncoder() {
|
|
|
307
307
|
case 1:
|
|
308
308
|
// Inline function 'kotlin.let' call
|
|
309
309
|
|
|
310
|
-
var it = serializer.
|
|
310
|
+
var it = serializer.j1w().q1y();
|
|
311
311
|
tmp_0 = equals(it, CLASS_getInstance()) || equals(it, OBJECT_getInstance());
|
|
312
312
|
break;
|
|
313
313
|
default:
|
|
@@ -317,14 +317,14 @@ function AbstractJsonTreeEncoder() {
|
|
|
317
317
|
tmp = tmp_0;
|
|
318
318
|
}
|
|
319
319
|
var needDiscriminator = tmp;
|
|
320
|
-
var baseClassDiscriminator = needDiscriminator ? classDiscriminator(serializer.
|
|
320
|
+
var baseClassDiscriminator = needDiscriminator ? classDiscriminator(serializer.j1w(), this.v3z()) : null;
|
|
321
321
|
var tmp_1;
|
|
322
322
|
if (isPolymorphicSerializer) {
|
|
323
323
|
var casted = serializer instanceof AbstractPolymorphicSerializer() ? serializer : THROW_CCE();
|
|
324
324
|
$l$block_0: {
|
|
325
325
|
// Inline function 'kotlin.requireNotNull' call
|
|
326
326
|
if (value == null) {
|
|
327
|
-
var message = 'Value for serializer ' + toString(serializer.
|
|
327
|
+
var message = 'Value for serializer ' + toString(serializer.j1w()) + ' should always be non-null. Please report issue to the kotlinx.serialization tracker.';
|
|
328
328
|
throw IllegalArgumentException().r2(toString(message));
|
|
329
329
|
} else {
|
|
330
330
|
break $l$block_0;
|
|
@@ -333,7 +333,7 @@ function AbstractJsonTreeEncoder() {
|
|
|
333
333
|
var actual = findPolymorphicSerializer(casted, this, value);
|
|
334
334
|
if (!(baseClassDiscriminator == null)) {
|
|
335
335
|
access$validateIfSealed$tPolymorphicKt(serializer, actual, baseClassDiscriminator);
|
|
336
|
-
checkKind(actual.
|
|
336
|
+
checkKind(actual.j1w().q1y());
|
|
337
337
|
}
|
|
338
338
|
tmp_1 = isInterface(actual, SerializationStrategy()) ? actual : THROW_CCE();
|
|
339
339
|
} else {
|
|
@@ -341,82 +341,82 @@ function AbstractJsonTreeEncoder() {
|
|
|
341
341
|
}
|
|
342
342
|
var actualSerializer = tmp_1;
|
|
343
343
|
if (!(baseClassDiscriminator == null)) {
|
|
344
|
-
var serialName = actualSerializer.
|
|
345
|
-
this.
|
|
346
|
-
this.
|
|
344
|
+
var serialName = actualSerializer.j1w().p1y();
|
|
345
|
+
this.e48_1 = baseClassDiscriminator;
|
|
346
|
+
this.f48_1 = serialName;
|
|
347
347
|
}
|
|
348
|
-
actualSerializer.
|
|
348
|
+
actualSerializer.k1w(this, value);
|
|
349
349
|
}
|
|
350
350
|
} else {
|
|
351
351
|
// Inline function 'kotlin.apply' call
|
|
352
|
-
(new (JsonPrimitiveEncoder())(this.
|
|
353
|
-
}
|
|
354
|
-
}
|
|
355
|
-
t48(tag, value) {
|
|
356
|
-
this.l48(tag, JsonPrimitive(value));
|
|
357
|
-
if (!this.b48_1.m3z_1 && !isFinite_0(value)) {
|
|
358
|
-
throw InvalidFloatingPointEncoded(value, tag, toString(this.m48()));
|
|
352
|
+
(new (JsonPrimitiveEncoder())(this.b48_1, this.c48_1)).e22(serializer, value);
|
|
359
353
|
}
|
|
360
354
|
}
|
|
361
|
-
v2f(tag, value) {
|
|
362
|
-
return this.t48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), value);
|
|
363
|
-
}
|
|
364
|
-
u48(tag, value) {
|
|
365
|
-
return this.l48(tag, JsonPrimitive_0(value));
|
|
366
|
-
}
|
|
367
|
-
w2f(tag, value) {
|
|
368
|
-
return this.u48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), value);
|
|
369
|
-
}
|
|
370
355
|
v48(tag, value) {
|
|
371
|
-
|
|
356
|
+
this.n48(tag, JsonPrimitive(value));
|
|
357
|
+
if (!this.d48_1.o3z_1 && !isFinite_0(value)) {
|
|
358
|
+
throw InvalidFloatingPointEncoded(value, tag, toString(this.o48()));
|
|
359
|
+
}
|
|
372
360
|
}
|
|
373
361
|
x2f(tag, value) {
|
|
374
362
|
return this.v48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), value);
|
|
375
363
|
}
|
|
376
364
|
w48(tag, value) {
|
|
377
|
-
return this.
|
|
365
|
+
return this.n48(tag, JsonPrimitive_0(value));
|
|
378
366
|
}
|
|
379
367
|
y2f(tag, value) {
|
|
380
368
|
return this.w48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), value);
|
|
381
369
|
}
|
|
382
|
-
x48(tag,
|
|
383
|
-
return this.
|
|
370
|
+
x48(tag, value) {
|
|
371
|
+
return this.n48(tag, JsonPrimitive_1(toString_0(value)));
|
|
384
372
|
}
|
|
385
|
-
z2f(tag,
|
|
386
|
-
return this.x48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(),
|
|
373
|
+
z2f(tag, value) {
|
|
374
|
+
return this.x48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), value);
|
|
387
375
|
}
|
|
388
376
|
y48(tag, value) {
|
|
389
|
-
this.
|
|
377
|
+
return this.n48(tag, JsonPrimitive_1(value));
|
|
390
378
|
}
|
|
391
|
-
|
|
379
|
+
a2g(tag, value) {
|
|
392
380
|
return this.y48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), value);
|
|
393
381
|
}
|
|
394
|
-
z48(tag,
|
|
395
|
-
return
|
|
382
|
+
z48(tag, enumDescriptor, ordinal) {
|
|
383
|
+
return this.n48(tag, JsonPrimitive_1(enumDescriptor.u1y(ordinal)));
|
|
384
|
+
}
|
|
385
|
+
b2g(tag, enumDescriptor, ordinal) {
|
|
386
|
+
return this.z48((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), enumDescriptor, ordinal);
|
|
387
|
+
}
|
|
388
|
+
a49(tag, value) {
|
|
389
|
+
this.n48(tag, JsonPrimitive_1(toString(value)));
|
|
390
|
+
}
|
|
391
|
+
p2f(tag, value) {
|
|
392
|
+
return this.a49((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), value);
|
|
393
|
+
}
|
|
394
|
+
b49(tag, inlineDescriptor) {
|
|
395
|
+
return get_isUnsignedNumber(inlineDescriptor) ? inlineUnsignedNumberEncoder(this, tag) : get_isUnquotedLiteral(inlineDescriptor) ? inlineUnquotedLiteralEncoder(this, tag, inlineDescriptor) : super.c2g(tag, inlineDescriptor);
|
|
396
396
|
}
|
|
397
|
-
|
|
398
|
-
return this.
|
|
397
|
+
c2g(tag, inlineDescriptor) {
|
|
398
|
+
return this.b49((!(tag == null) ? typeof tag === 'string' : false) ? tag : THROW_CCE(), inlineDescriptor);
|
|
399
399
|
}
|
|
400
|
-
|
|
400
|
+
s21(descriptor) {
|
|
401
401
|
var tmp;
|
|
402
|
-
if (!(this.
|
|
403
|
-
if (!(this.
|
|
404
|
-
this.
|
|
405
|
-
tmp = super.
|
|
402
|
+
if (!(this.v2e() == null)) {
|
|
403
|
+
if (!(this.e48_1 == null))
|
|
404
|
+
this.f48_1 = descriptor.p1y();
|
|
405
|
+
tmp = super.s21(descriptor);
|
|
406
406
|
} else {
|
|
407
|
-
tmp = (new (JsonPrimitiveEncoder())(this.
|
|
407
|
+
tmp = (new (JsonPrimitiveEncoder())(this.b48_1, this.c48_1)).s21(descriptor);
|
|
408
408
|
}
|
|
409
409
|
return tmp;
|
|
410
410
|
}
|
|
411
|
-
|
|
411
|
+
l20(descriptor) {
|
|
412
412
|
var tmp;
|
|
413
|
-
if (this.
|
|
414
|
-
tmp = this.
|
|
413
|
+
if (this.v2e() == null) {
|
|
414
|
+
tmp = this.c48_1;
|
|
415
415
|
} else {
|
|
416
416
|
tmp = AbstractJsonTreeEncoder$beginStructure$lambda(this);
|
|
417
417
|
}
|
|
418
418
|
var consumer = tmp;
|
|
419
|
-
var tmp0_subject = descriptor.
|
|
419
|
+
var tmp0_subject = descriptor.q1y();
|
|
420
420
|
var tmp_0;
|
|
421
421
|
var tmp_1;
|
|
422
422
|
if (equals(tmp0_subject, LIST_getInstance())) {
|
|
@@ -425,13 +425,13 @@ function AbstractJsonTreeEncoder() {
|
|
|
425
425
|
tmp_1 = tmp0_subject instanceof PolymorphicKind();
|
|
426
426
|
}
|
|
427
427
|
if (tmp_1) {
|
|
428
|
-
tmp_0 = new (JsonTreeListEncoder())(this.
|
|
428
|
+
tmp_0 = new (JsonTreeListEncoder())(this.b48_1, consumer);
|
|
429
429
|
} else {
|
|
430
430
|
if (equals(tmp0_subject, MAP_getInstance())) {
|
|
431
431
|
// Inline function 'kotlinx.serialization.json.internal.selectMapMode' call
|
|
432
|
-
var this_0 = this.
|
|
433
|
-
var keyDescriptor = carrierDescriptor(descriptor.
|
|
434
|
-
var keyKind = keyDescriptor.
|
|
432
|
+
var this_0 = this.b48_1;
|
|
433
|
+
var keyDescriptor = carrierDescriptor(descriptor.x1y(0), this_0.a21());
|
|
434
|
+
var keyKind = keyDescriptor.q1y();
|
|
435
435
|
var tmp_2;
|
|
436
436
|
var tmp_3;
|
|
437
437
|
if (keyKind instanceof PrimitiveKind()) {
|
|
@@ -440,37 +440,37 @@ function AbstractJsonTreeEncoder() {
|
|
|
440
440
|
tmp_3 = equals(keyKind, ENUM_getInstance());
|
|
441
441
|
}
|
|
442
442
|
if (tmp_3) {
|
|
443
|
-
tmp_2 = new (JsonTreeMapEncoder())(this.
|
|
443
|
+
tmp_2 = new (JsonTreeMapEncoder())(this.b48_1, consumer);
|
|
444
444
|
} else {
|
|
445
|
-
if (this_0.
|
|
446
|
-
tmp_2 = new (JsonTreeListEncoder())(this.
|
|
445
|
+
if (this_0.s3x_1.h3z_1) {
|
|
446
|
+
tmp_2 = new (JsonTreeListEncoder())(this.b48_1, consumer);
|
|
447
447
|
} else {
|
|
448
448
|
throw InvalidKeyKindException(keyDescriptor);
|
|
449
449
|
}
|
|
450
450
|
}
|
|
451
451
|
tmp_0 = tmp_2;
|
|
452
452
|
} else {
|
|
453
|
-
tmp_0 = new (JsonTreeEncoder())(this.
|
|
453
|
+
tmp_0 = new (JsonTreeEncoder())(this.b48_1, consumer);
|
|
454
454
|
}
|
|
455
455
|
}
|
|
456
456
|
var encoder = tmp_0;
|
|
457
|
-
var discriminator = this.
|
|
457
|
+
var discriminator = this.e48_1;
|
|
458
458
|
if (!(discriminator == null)) {
|
|
459
459
|
if (encoder instanceof JsonTreeMapEncoder()) {
|
|
460
|
-
encoder.
|
|
461
|
-
var tmp1_elvis_lhs = this.
|
|
462
|
-
encoder.
|
|
460
|
+
encoder.n48('key', JsonPrimitive_1(discriminator));
|
|
461
|
+
var tmp1_elvis_lhs = this.f48_1;
|
|
462
|
+
encoder.n48('value', JsonPrimitive_1(tmp1_elvis_lhs == null ? descriptor.p1y() : tmp1_elvis_lhs));
|
|
463
463
|
} else {
|
|
464
|
-
var tmp2_elvis_lhs = this.
|
|
465
|
-
encoder.
|
|
464
|
+
var tmp2_elvis_lhs = this.f48_1;
|
|
465
|
+
encoder.n48(discriminator, JsonPrimitive_1(tmp2_elvis_lhs == null ? descriptor.p1y() : tmp2_elvis_lhs));
|
|
466
466
|
}
|
|
467
|
-
this.
|
|
468
|
-
this.
|
|
467
|
+
this.e48_1 = null;
|
|
468
|
+
this.f48_1 = null;
|
|
469
469
|
}
|
|
470
470
|
return encoder;
|
|
471
471
|
}
|
|
472
|
-
|
|
473
|
-
this.
|
|
472
|
+
d2g(descriptor) {
|
|
473
|
+
this.c48_1(this.o48());
|
|
474
474
|
}
|
|
475
475
|
}
|
|
476
476
|
initMetadataForClass($, 'AbstractJsonTreeEncoder', VOID, VOID, [NamedValueEncoder(), JsonEncoder()]);
|
|
@@ -480,11 +480,11 @@ function AbstractJsonTreeEncoder() {
|
|
|
480
480
|
}
|
|
481
481
|
function get_requiresTopLevelTag(_this__u8e3s4) {
|
|
482
482
|
var tmp;
|
|
483
|
-
var tmp_0 = _this__u8e3s4.
|
|
483
|
+
var tmp_0 = _this__u8e3s4.q1y();
|
|
484
484
|
if (tmp_0 instanceof PrimitiveKind()) {
|
|
485
485
|
tmp = true;
|
|
486
486
|
} else {
|
|
487
|
-
tmp = _this__u8e3s4.
|
|
487
|
+
tmp = _this__u8e3s4.q1y() === ENUM_getInstance();
|
|
488
488
|
}
|
|
489
489
|
return tmp;
|
|
490
490
|
}
|
|
@@ -494,25 +494,25 @@ function JsonPrimitiveEncoder() {
|
|
|
494
494
|
class $ extends AbstractJsonTreeEncoder() {
|
|
495
495
|
constructor(json, nodeConsumer) {
|
|
496
496
|
super(json, nodeConsumer);
|
|
497
|
-
this.
|
|
498
|
-
this.
|
|
497
|
+
this.a4a_1 = null;
|
|
498
|
+
this.l2f('primitive');
|
|
499
499
|
}
|
|
500
|
-
|
|
500
|
+
n48(key, element) {
|
|
501
501
|
// Inline function 'kotlin.require' call
|
|
502
502
|
if (!(key === 'primitive')) {
|
|
503
503
|
var message = "This output can only consume primitives with 'primitive' tag";
|
|
504
504
|
throw IllegalArgumentException().r2(toString(message));
|
|
505
505
|
}
|
|
506
506
|
// Inline function 'kotlin.require' call
|
|
507
|
-
if (!(this.
|
|
507
|
+
if (!(this.a4a_1 == null)) {
|
|
508
508
|
var message_0 = 'Primitive element was already recorded. Does call to .encodeXxx happen more than once?';
|
|
509
509
|
throw IllegalArgumentException().r2(toString(message_0));
|
|
510
510
|
}
|
|
511
|
-
this.
|
|
512
|
-
this.
|
|
511
|
+
this.a4a_1 = element;
|
|
512
|
+
this.c48_1(element);
|
|
513
513
|
}
|
|
514
|
-
|
|
515
|
-
var tmp0 = this.
|
|
514
|
+
o48() {
|
|
515
|
+
var tmp0 = this.a4a_1;
|
|
516
516
|
var tmp$ret$1;
|
|
517
517
|
$l$block: {
|
|
518
518
|
// Inline function 'kotlin.requireNotNull' call
|
|
@@ -540,17 +540,17 @@ function JsonTreeListEncoder() {
|
|
|
540
540
|
super(json, nodeConsumer);
|
|
541
541
|
var tmp = this;
|
|
542
542
|
// Inline function 'kotlin.collections.arrayListOf' call
|
|
543
|
-
tmp.
|
|
543
|
+
tmp.h4a_1 = ArrayList().n2();
|
|
544
544
|
}
|
|
545
|
-
|
|
545
|
+
r2e(descriptor, index) {
|
|
546
546
|
return index.toString();
|
|
547
547
|
}
|
|
548
|
-
|
|
548
|
+
n48(key, element) {
|
|
549
549
|
var idx = toInt(key);
|
|
550
|
-
this.
|
|
550
|
+
this.h4a_1.t4(idx, element);
|
|
551
551
|
}
|
|
552
|
-
|
|
553
|
-
return new (JsonArray())(this.
|
|
552
|
+
o48() {
|
|
553
|
+
return new (JsonArray())(this.h4a_1);
|
|
554
554
|
}
|
|
555
555
|
}
|
|
556
556
|
initMetadataForClass($, 'JsonTreeListEncoder');
|
|
@@ -559,7 +559,7 @@ function JsonTreeListEncoder() {
|
|
|
559
559
|
return JsonTreeListEncoderClass;
|
|
560
560
|
}
|
|
561
561
|
function _get_tag__e6h4qf($this) {
|
|
562
|
-
var tmp = $this.
|
|
562
|
+
var tmp = $this.s49_1;
|
|
563
563
|
if (!(tmp == null))
|
|
564
564
|
return tmp;
|
|
565
565
|
else {
|
|
@@ -572,37 +572,37 @@ function JsonTreeMapEncoder() {
|
|
|
572
572
|
class $ extends JsonTreeEncoder() {
|
|
573
573
|
constructor(json, nodeConsumer) {
|
|
574
574
|
super(json, nodeConsumer);
|
|
575
|
-
this.
|
|
575
|
+
this.t49_1 = true;
|
|
576
576
|
}
|
|
577
|
-
|
|
578
|
-
if (this.
|
|
577
|
+
n48(key, element) {
|
|
578
|
+
if (this.t49_1) {
|
|
579
579
|
var tmp = this;
|
|
580
580
|
var tmp_0;
|
|
581
581
|
if (element instanceof JsonPrimitive_2()) {
|
|
582
|
-
tmp_0 = element.
|
|
582
|
+
tmp_0 = element.p3e();
|
|
583
583
|
} else {
|
|
584
584
|
if (element instanceof JsonObject()) {
|
|
585
|
-
throw InvalidKeyKindException(JsonObjectSerializer_getInstance().
|
|
585
|
+
throw InvalidKeyKindException(JsonObjectSerializer_getInstance().n40_1);
|
|
586
586
|
} else {
|
|
587
587
|
if (element instanceof JsonArray()) {
|
|
588
|
-
throw InvalidKeyKindException(JsonArraySerializer_getInstance().
|
|
588
|
+
throw InvalidKeyKindException(JsonArraySerializer_getInstance().o40_1);
|
|
589
589
|
} else {
|
|
590
590
|
noWhenBranchMatchedException();
|
|
591
591
|
}
|
|
592
592
|
}
|
|
593
593
|
}
|
|
594
|
-
tmp.
|
|
595
|
-
this.
|
|
594
|
+
tmp.s49_1 = tmp_0;
|
|
595
|
+
this.t49_1 = false;
|
|
596
596
|
} else {
|
|
597
|
-
var tmp0 = this.
|
|
597
|
+
var tmp0 = this.m48_1;
|
|
598
598
|
// Inline function 'kotlin.collections.set' call
|
|
599
599
|
var key_0 = _get_tag__e6h4qf(this);
|
|
600
600
|
tmp0.v4(key_0, element);
|
|
601
|
-
this.
|
|
601
|
+
this.t49_1 = true;
|
|
602
602
|
}
|
|
603
603
|
}
|
|
604
|
-
|
|
605
|
-
return new (JsonObject())(this.
|
|
604
|
+
o48() {
|
|
605
|
+
return new (JsonObject())(this.m48_1);
|
|
606
606
|
}
|
|
607
607
|
}
|
|
608
608
|
initMetadataForClass($, 'JsonTreeMapEncoder');
|