@continuous-excellence/coupling-cli 1.1.439 → 1.1.441
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/ConfigCommand.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +15 -15
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +12 -12
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +30 -30
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +17 -17
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +19 -19
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +23 -23
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +29 -29
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +32 -32
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +23 -23
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +47 -47
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/AccessResult.mjs +39 -39
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/DeviceCodeRequest.mjs +25 -25
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +21 -21
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/CouplingJsonFormat.mjs +4 -4
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +16 -16
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSyntax.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +15 -15
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +12 -12
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +10 -10
- 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 +8 -8
- 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 +19 -19
- 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 +13 -13
- 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 +6 -6
- 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 +66 -66
- 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 +25 -25
- 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 +21 -21
- 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/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 +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +45 -45
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +6 -6
- package/kotlin/apollo-kotlin-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs +79 -52
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs.map +1 -1
- 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 +42 -42
- 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 +6 -6
- 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 +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/DefaultHttpRequestComposer.mjs +104 -104
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/DefaultHttpRequestComposer.mjs.map +1 -1
- 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 +16 -16
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSourceJsonReader.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonWriters.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs +22 -22
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonWriter.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/FileUploadAwareJsonWriter.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs +31 -31
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +11 -11
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +180 -168
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs.map +1 -1
- 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 +37 -37
- 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 +47 -47
- 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 +118 -118
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +24 -24
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +26 -26
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +144 -144
- 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 +39 -39
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +56 -56
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +5 -5
- 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 +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 +60 -60
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +19 -19
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs +21 -21
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs +16 -16
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs +3 -3
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/exceptions.mjs +23 -23
- package/kotlin/kotlin-kotlin-stdlib/kotlin/exceptions.mjs.map +1 -1
- 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/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +16 -11
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +29 -29
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +18 -18
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +67 -67
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +41 -41
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +48 -48
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +6 -6
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +26 -26
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +55 -55
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +216 -216
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +22 -22
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +30 -30
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +13 -13
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs +4 -0
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +12 -12
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +36 -36
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +12 -12
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs.map +1 -1
- 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.common.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +68 -68
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +444 -444
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +83 -83
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +180 -180
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +79 -80
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +36 -36
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +30 -30
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +46 -46
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +23 -18
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +78 -78
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementBuilders.mjs +6 -6
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementBuilders.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +113 -113
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +96 -96
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +64 -64
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs.map +1 -1
- 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/JsonElementMarker.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +18 -18
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +38 -21
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs.map +1 -1
- 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/JsonPath.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +8 -27
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs.map +1 -1
- 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/JsonStreams.mjs.map +1 -1
- 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/JsonToStringWriterJsWasm.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +11 -11
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +15 -18
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +158 -157
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +85 -87
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +21 -21
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +105 -105
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonEncoder.mjs +78 -80
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonEncoder.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +7 -7
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +67 -67
- 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 +73 -73
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +33 -33
- 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 +42 -42
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +47 -47
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +42 -42
- 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 +23 -23
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +37 -37
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +18 -18
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +20 -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 +28 -28
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs +15 -15
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs +5 -5
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +3 -3
- 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 +59 -59
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +74 -74
- 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 +47 -47
- 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 +22 -22
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +103 -103
- 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 +65 -65
- 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 +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 +34 -34
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/observer/ResponseObserver.mjs +48 -48
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/ClientSessions.mjs +30 -30
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +49 -49
- 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 +58 -58
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +18 -18
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/buildersWithUrl.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/FormDataContent.mjs +10 -10
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/formBuilders.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +17 -17
- 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 +25 -25
- 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 +11 -11
- 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/LoggedContent.mjs +9 -9
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logging.mjs +147 -147
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggingUtils.mjs +5 -5
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/ObservingUtils.mjs +8 -8
- package/kotlin/ktor-ktor-events/io/ktor/events/Events.mjs +5 -5
- package/kotlin/ktor-ktor-http/io/ktor/http/Codecs.mjs +4 -4
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +89 -89
- 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 +31 -31
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +115 -115
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +3 -3
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +13 -13
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +14 -14
- 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 +57 -57
- 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 +23 -23
- package/kotlin/ktor-ktor-http/io/ktor/http/Url.mjs +73 -73
- package/kotlin/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +31 -31
- package/kotlin/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +8 -8
- package/kotlin/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +9 -9
- package/kotlin/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +11 -11
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +4 -4
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +76 -76
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +32 -32
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +27 -27
- 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 +66 -66
- 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 +2 -2
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.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 +22 -22
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +13 -13
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +8 -8
- package/kotlin/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +6 -6
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.mjs +12 -12
- package/kotlin/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs +16 -16
- package/kotlin/ktor-ktor-utils/io/ktor/util/ByteChannels.mjs +31 -31
- 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/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 +87 -87
- 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 +99 -99
- package/kotlin/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +5 -5
- package/kotlin/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +6 -6
- 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 +28 -28
- 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 +49 -49
- 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 +99 -99
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +5 -5
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs +41 -41
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +5 -5
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +8 -8
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/PingPong.mjs +26 -26
- 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 +5 -5
- 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/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +141 -141
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs.map +1 -1
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +32 -32
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +3 -3
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +2 -2
- package/kotlin/types-types-internal/kotools/types/internal/Errors.mjs +1 -1
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +1 -1
- package/package.json +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs +0 -36
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs.map +0 -1
|
@@ -29,29 +29,27 @@ function ContributionInput() {
|
|
|
29
29
|
cycleTime = cycleTime === VOID ? Absent_getInstance() : cycleTime;
|
|
30
30
|
name = name === VOID ? Absent_getInstance() : name;
|
|
31
31
|
commitCount = commitCount === VOID ? Absent_getInstance() : commitCount;
|
|
32
|
-
this.
|
|
33
|
-
this.
|
|
34
|
-
this.
|
|
35
|
-
this.
|
|
36
|
-
this.
|
|
37
|
-
this.
|
|
38
|
-
this.
|
|
39
|
-
this.
|
|
40
|
-
this.
|
|
41
|
-
this.
|
|
42
|
-
this.
|
|
43
|
-
this.
|
|
44
|
-
this.
|
|
45
|
-
this.
|
|
46
|
-
this.
|
|
32
|
+
this.z5l_1 = contributionId;
|
|
33
|
+
this.a5m_1 = hash;
|
|
34
|
+
this.b5m_1 = dateTime;
|
|
35
|
+
this.c5m_1 = ease;
|
|
36
|
+
this.d5m_1 = story;
|
|
37
|
+
this.e5m_1 = link;
|
|
38
|
+
this.f5m_1 = label;
|
|
39
|
+
this.g5m_1 = semver;
|
|
40
|
+
this.h5m_1 = firstCommit;
|
|
41
|
+
this.i5m_1 = firstCommitDateTime;
|
|
42
|
+
this.j5m_1 = integrationDateTime;
|
|
43
|
+
this.k5m_1 = cycleTime;
|
|
44
|
+
this.l5m_1 = participantEmails;
|
|
45
|
+
this.m5m_1 = name;
|
|
46
|
+
this.n5m_1 = commitCount;
|
|
47
47
|
}
|
|
48
48
|
toString() {
|
|
49
|
-
return 'ContributionInput(contributionId=' + this.
|
|
49
|
+
return 'ContributionInput(contributionId=' + this.z5l_1.toString() + ', hash=' + toString(this.a5m_1) + ', dateTime=' + toString(this.b5m_1) + ', ease=' + toString(this.c5m_1) + ', story=' + toString(this.d5m_1) + ', link=' + toString(this.e5m_1) + ', label=' + toString(this.f5m_1) + ', semver=' + toString(this.g5m_1) + ', firstCommit=' + toString(this.h5m_1) + ', firstCommitDateTime=' + toString(this.i5m_1) + ', integrationDateTime=' + toString(this.j5m_1) + ', cycleTime=' + toString(this.k5m_1) + ', participantEmails=' + toString(this.l5m_1) + ', name=' + toString(this.m5m_1) + ', commitCount=' + toString(this.n5m_1) + ')';
|
|
50
50
|
}
|
|
51
51
|
hashCode() {
|
|
52
|
-
var result = this.
|
|
53
|
-
result = imul(result, 31) + hashCode(this.y5l_1) | 0;
|
|
54
|
-
result = imul(result, 31) + hashCode(this.z5l_1) | 0;
|
|
52
|
+
var result = this.z5l_1.hashCode();
|
|
55
53
|
result = imul(result, 31) + hashCode(this.a5m_1) | 0;
|
|
56
54
|
result = imul(result, 31) + hashCode(this.b5m_1) | 0;
|
|
57
55
|
result = imul(result, 31) + hashCode(this.c5m_1) | 0;
|
|
@@ -64,6 +62,8 @@ function ContributionInput() {
|
|
|
64
62
|
result = imul(result, 31) + hashCode(this.j5m_1) | 0;
|
|
65
63
|
result = imul(result, 31) + hashCode(this.k5m_1) | 0;
|
|
66
64
|
result = imul(result, 31) + hashCode(this.l5m_1) | 0;
|
|
65
|
+
result = imul(result, 31) + hashCode(this.m5m_1) | 0;
|
|
66
|
+
result = imul(result, 31) + hashCode(this.n5m_1) | 0;
|
|
67
67
|
return result;
|
|
68
68
|
}
|
|
69
69
|
equals(other) {
|
|
@@ -71,11 +71,7 @@ function ContributionInput() {
|
|
|
71
71
|
return true;
|
|
72
72
|
if (!(other instanceof ContributionInput()))
|
|
73
73
|
return false;
|
|
74
|
-
if (!this.
|
|
75
|
-
return false;
|
|
76
|
-
if (!equals(this.y5l_1, other.y5l_1))
|
|
77
|
-
return false;
|
|
78
|
-
if (!equals(this.z5l_1, other.z5l_1))
|
|
74
|
+
if (!this.z5l_1.equals(other.z5l_1))
|
|
79
75
|
return false;
|
|
80
76
|
if (!equals(this.a5m_1, other.a5m_1))
|
|
81
77
|
return false;
|
|
@@ -101,6 +97,10 @@ function ContributionInput() {
|
|
|
101
97
|
return false;
|
|
102
98
|
if (!equals(this.l5m_1, other.l5m_1))
|
|
103
99
|
return false;
|
|
100
|
+
if (!equals(this.m5m_1, other.m5m_1))
|
|
101
|
+
return false;
|
|
102
|
+
if (!equals(this.n5m_1, other.n5m_1))
|
|
103
|
+
return false;
|
|
104
104
|
return true;
|
|
105
105
|
}
|
|
106
106
|
}
|
|
@@ -11,7 +11,7 @@ function Companion() {
|
|
|
11
11
|
class $ {
|
|
12
12
|
constructor() {
|
|
13
13
|
Companion_instance = this;
|
|
14
|
-
this.
|
|
14
|
+
this.e5l_1 = new (CustomScalarType())('Float', 'kotlin.Double');
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
initMetadataForCompanion($);
|
|
@@ -9,20 +9,20 @@ function PartyInput() {
|
|
|
9
9
|
if (PartyInputClass === VOID) {
|
|
10
10
|
class $ {
|
|
11
11
|
constructor(partyId) {
|
|
12
|
-
this.
|
|
12
|
+
this.o5m_1 = partyId;
|
|
13
13
|
}
|
|
14
14
|
toString() {
|
|
15
|
-
return 'PartyInput(partyId=' + this.
|
|
15
|
+
return 'PartyInput(partyId=' + this.o5m_1.toString() + ')';
|
|
16
16
|
}
|
|
17
17
|
hashCode() {
|
|
18
|
-
return this.
|
|
18
|
+
return this.o5m_1.hashCode();
|
|
19
19
|
}
|
|
20
20
|
equals(other) {
|
|
21
21
|
if (this === other)
|
|
22
22
|
return true;
|
|
23
23
|
if (!(other instanceof PartyInput()))
|
|
24
24
|
return false;
|
|
25
|
-
if (!this.
|
|
25
|
+
if (!this.o5m_1.equals(other.o5m_1))
|
|
26
26
|
return false;
|
|
27
27
|
return true;
|
|
28
28
|
}
|
package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs
CHANGED
|
@@ -15,15 +15,15 @@ function SaveContributionInput() {
|
|
|
15
15
|
if (SaveContributionInputClass === VOID) {
|
|
16
16
|
class $ {
|
|
17
17
|
constructor(partyId, contributionList) {
|
|
18
|
-
this.
|
|
19
|
-
this.
|
|
18
|
+
this.p5m_1 = partyId;
|
|
19
|
+
this.q5m_1 = contributionList;
|
|
20
20
|
}
|
|
21
21
|
toString() {
|
|
22
|
-
return 'SaveContributionInput(partyId=' + this.
|
|
22
|
+
return 'SaveContributionInput(partyId=' + this.p5m_1.toString() + ', contributionList=' + toString(this.q5m_1) + ')';
|
|
23
23
|
}
|
|
24
24
|
hashCode() {
|
|
25
|
-
var result = this.
|
|
26
|
-
result = imul(result, 31) + hashCode(this.
|
|
25
|
+
var result = this.p5m_1.hashCode();
|
|
26
|
+
result = imul(result, 31) + hashCode(this.q5m_1) | 0;
|
|
27
27
|
return result;
|
|
28
28
|
}
|
|
29
29
|
equals(other) {
|
|
@@ -31,9 +31,9 @@ function SaveContributionInput() {
|
|
|
31
31
|
return true;
|
|
32
32
|
if (!(other instanceof SaveContributionInput()))
|
|
33
33
|
return false;
|
|
34
|
-
if (!this.
|
|
34
|
+
if (!this.p5m_1.equals(other.p5m_1))
|
|
35
35
|
return false;
|
|
36
|
-
if (!equals(this.
|
|
36
|
+
if (!equals(this.q5m_1, other.q5m_1))
|
|
37
37
|
return false;
|
|
38
38
|
return true;
|
|
39
39
|
}
|
|
@@ -19,14 +19,14 @@ function AvatarType_ResponseAdapter() {
|
|
|
19
19
|
if (AvatarType_ResponseAdapterClass === VOID) {
|
|
20
20
|
class $ {
|
|
21
21
|
i4k(reader, customScalarAdapters) {
|
|
22
|
-
var rawValue = ensureNotNull(reader.
|
|
23
|
-
return Companion_getInstance().
|
|
22
|
+
var rawValue = ensureNotNull(reader.s4l());
|
|
23
|
+
return Companion_getInstance().r5l(rawValue);
|
|
24
24
|
}
|
|
25
|
-
|
|
26
|
-
writer.
|
|
25
|
+
r5m(writer, customScalarAdapters, value) {
|
|
26
|
+
writer.u4l(value.u5l_1);
|
|
27
27
|
}
|
|
28
28
|
j4k(writer, customScalarAdapters, value) {
|
|
29
|
-
return this.
|
|
29
|
+
return this.r5m(writer, customScalarAdapters, value instanceof AvatarType() ? value : THROW_CCE());
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
initMetadataForObject($, 'AvatarType_ResponseAdapter', VOID, VOID, [Adapter()]);
|
|
@@ -19,14 +19,14 @@ function Badge_ResponseAdapter() {
|
|
|
19
19
|
if (Badge_ResponseAdapterClass === VOID) {
|
|
20
20
|
class $ {
|
|
21
21
|
i4k(reader, customScalarAdapters) {
|
|
22
|
-
var rawValue = ensureNotNull(reader.
|
|
23
|
-
return Companion_getInstance().
|
|
22
|
+
var rawValue = ensureNotNull(reader.s4l());
|
|
23
|
+
return Companion_getInstance().r5l(rawValue);
|
|
24
24
|
}
|
|
25
|
-
|
|
26
|
-
writer.
|
|
25
|
+
p5k(writer, customScalarAdapters, value) {
|
|
26
|
+
writer.u4l(value.y5l_1);
|
|
27
27
|
}
|
|
28
28
|
j4k(writer, customScalarAdapters, value) {
|
|
29
|
-
return this.
|
|
29
|
+
return this.p5k(writer, customScalarAdapters, value instanceof Badge() ? value : THROW_CCE());
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
initMetadataForObject($, 'Badge_ResponseAdapter', VOID, VOID, [Adapter()]);
|
|
@@ -30,79 +30,79 @@ function ContributionInput_InputAdapter() {
|
|
|
30
30
|
i4k(reader, customScalarAdapters) {
|
|
31
31
|
throw IllegalStateException().o('Input type used in output position');
|
|
32
32
|
}
|
|
33
|
-
|
|
34
|
-
writer.
|
|
35
|
-
get_contributionAdapter().j4k(writer, customScalarAdapters, value.
|
|
36
|
-
var tmp = value.
|
|
33
|
+
s5m(writer, customScalarAdapters, value) {
|
|
34
|
+
writer.i4s('contributionId');
|
|
35
|
+
get_contributionAdapter().j4k(writer, customScalarAdapters, value.z5l_1);
|
|
36
|
+
var tmp = value.a5m_1;
|
|
37
37
|
if (tmp instanceof Present()) {
|
|
38
|
-
writer.
|
|
39
|
-
present(get_NullableStringAdapter()).
|
|
38
|
+
writer.i4s('hash');
|
|
39
|
+
present(get_NullableStringAdapter()).r4l(writer, customScalarAdapters, value.a5m_1);
|
|
40
40
|
}
|
|
41
|
-
var tmp_0 = value.
|
|
41
|
+
var tmp_0 = value.b5m_1;
|
|
42
42
|
if (tmp_0 instanceof Present()) {
|
|
43
|
-
writer.
|
|
44
|
-
present(nullable(KotlinInstantAdapter_instance)).
|
|
43
|
+
writer.i4s('dateTime');
|
|
44
|
+
present(nullable(KotlinInstantAdapter_instance)).r4l(writer, customScalarAdapters, value.b5m_1);
|
|
45
45
|
}
|
|
46
|
-
var tmp_1 = value.
|
|
46
|
+
var tmp_1 = value.c5m_1;
|
|
47
47
|
if (tmp_1 instanceof Present()) {
|
|
48
|
-
writer.
|
|
49
|
-
present(get_NullableIntAdapter()).
|
|
48
|
+
writer.i4s('ease');
|
|
49
|
+
present(get_NullableIntAdapter()).r4l(writer, customScalarAdapters, value.c5m_1);
|
|
50
50
|
}
|
|
51
|
-
var tmp_2 = value.
|
|
51
|
+
var tmp_2 = value.d5m_1;
|
|
52
52
|
if (tmp_2 instanceof Present()) {
|
|
53
|
-
writer.
|
|
54
|
-
present(get_NullableStringAdapter()).
|
|
53
|
+
writer.i4s('story');
|
|
54
|
+
present(get_NullableStringAdapter()).r4l(writer, customScalarAdapters, value.d5m_1);
|
|
55
55
|
}
|
|
56
|
-
var tmp_3 = value.
|
|
56
|
+
var tmp_3 = value.e5m_1;
|
|
57
57
|
if (tmp_3 instanceof Present()) {
|
|
58
|
-
writer.
|
|
59
|
-
present(get_NullableStringAdapter()).
|
|
58
|
+
writer.i4s('link');
|
|
59
|
+
present(get_NullableStringAdapter()).r4l(writer, customScalarAdapters, value.e5m_1);
|
|
60
60
|
}
|
|
61
|
-
var tmp_4 = value.
|
|
61
|
+
var tmp_4 = value.f5m_1;
|
|
62
62
|
if (tmp_4 instanceof Present()) {
|
|
63
|
-
writer.
|
|
64
|
-
present(get_NullableStringAdapter()).
|
|
63
|
+
writer.i4s('label');
|
|
64
|
+
present(get_NullableStringAdapter()).r4l(writer, customScalarAdapters, value.f5m_1);
|
|
65
65
|
}
|
|
66
|
-
var tmp_5 = value.
|
|
66
|
+
var tmp_5 = value.g5m_1;
|
|
67
67
|
if (tmp_5 instanceof Present()) {
|
|
68
|
-
writer.
|
|
69
|
-
present(get_NullableStringAdapter()).
|
|
68
|
+
writer.i4s('semver');
|
|
69
|
+
present(get_NullableStringAdapter()).r4l(writer, customScalarAdapters, value.g5m_1);
|
|
70
70
|
}
|
|
71
|
-
var tmp_6 = value.
|
|
71
|
+
var tmp_6 = value.h5m_1;
|
|
72
72
|
if (tmp_6 instanceof Present()) {
|
|
73
|
-
writer.
|
|
74
|
-
present(get_NullableStringAdapter()).
|
|
73
|
+
writer.i4s('firstCommit');
|
|
74
|
+
present(get_NullableStringAdapter()).r4l(writer, customScalarAdapters, value.h5m_1);
|
|
75
75
|
}
|
|
76
|
-
var tmp_7 = value.
|
|
76
|
+
var tmp_7 = value.i5m_1;
|
|
77
77
|
if (tmp_7 instanceof Present()) {
|
|
78
|
-
writer.
|
|
79
|
-
present(nullable(KotlinInstantAdapter_instance)).
|
|
78
|
+
writer.i4s('firstCommitDateTime');
|
|
79
|
+
present(nullable(KotlinInstantAdapter_instance)).r4l(writer, customScalarAdapters, value.i5m_1);
|
|
80
80
|
}
|
|
81
|
-
var tmp_8 = value.
|
|
81
|
+
var tmp_8 = value.j5m_1;
|
|
82
82
|
if (tmp_8 instanceof Present()) {
|
|
83
|
-
writer.
|
|
84
|
-
present(nullable(KotlinInstantAdapter_instance)).
|
|
83
|
+
writer.i4s('integrationDateTime');
|
|
84
|
+
present(nullable(KotlinInstantAdapter_instance)).r4l(writer, customScalarAdapters, value.j5m_1);
|
|
85
85
|
}
|
|
86
|
-
var tmp_9 = value.
|
|
86
|
+
var tmp_9 = value.k5m_1;
|
|
87
87
|
if (tmp_9 instanceof Present()) {
|
|
88
|
-
writer.
|
|
89
|
-
present(nullable(KotlinDurationAdapter_instance)).
|
|
88
|
+
writer.i4s('cycleTime');
|
|
89
|
+
present(nullable(KotlinDurationAdapter_instance)).r4l(writer, customScalarAdapters, value.k5m_1);
|
|
90
90
|
}
|
|
91
|
-
writer.
|
|
92
|
-
list(get_StringAdapter()).
|
|
93
|
-
var tmp_10 = value.
|
|
91
|
+
writer.i4s('participantEmails');
|
|
92
|
+
list(get_StringAdapter()).p4l(writer, customScalarAdapters, value.l5m_1);
|
|
93
|
+
var tmp_10 = value.m5m_1;
|
|
94
94
|
if (tmp_10 instanceof Present()) {
|
|
95
|
-
writer.
|
|
96
|
-
present(get_NullableStringAdapter()).
|
|
95
|
+
writer.i4s('name');
|
|
96
|
+
present(get_NullableStringAdapter()).r4l(writer, customScalarAdapters, value.m5m_1);
|
|
97
97
|
}
|
|
98
|
-
var tmp_11 = value.
|
|
98
|
+
var tmp_11 = value.n5m_1;
|
|
99
99
|
if (tmp_11 instanceof Present()) {
|
|
100
|
-
writer.
|
|
101
|
-
present(get_NullableIntAdapter()).
|
|
100
|
+
writer.i4s('commitCount');
|
|
101
|
+
present(get_NullableIntAdapter()).r4l(writer, customScalarAdapters, value.n5m_1);
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
104
|
j4k(writer, customScalarAdapters, value) {
|
|
105
|
-
return this.
|
|
105
|
+
return this.s5m(writer, customScalarAdapters, value instanceof ContributionInput() ? value : THROW_CCE());
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
initMetadataForObject($, 'ContributionInput_InputAdapter', VOID, VOID, [Adapter()]);
|
|
@@ -17,12 +17,12 @@ function PartyInput_InputAdapter() {
|
|
|
17
17
|
i4k(reader, customScalarAdapters) {
|
|
18
18
|
throw IllegalStateException().o('Input type used in output position');
|
|
19
19
|
}
|
|
20
|
-
|
|
21
|
-
writer.
|
|
22
|
-
get_partyIdAdapter().j4k(writer, customScalarAdapters, value.
|
|
20
|
+
t5m(writer, customScalarAdapters, value) {
|
|
21
|
+
writer.i4s('partyId');
|
|
22
|
+
get_partyIdAdapter().j4k(writer, customScalarAdapters, value.o5m_1);
|
|
23
23
|
}
|
|
24
24
|
j4k(writer, customScalarAdapters, value) {
|
|
25
|
-
return this.
|
|
25
|
+
return this.t5m(writer, customScalarAdapters, value instanceof PartyInput() ? value : THROW_CCE());
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
initMetadataForObject($, 'PartyInput_InputAdapter', VOID, VOID, [Adapter()]);
|
|
@@ -22,14 +22,14 @@ function SaveContributionInput_InputAdapter() {
|
|
|
22
22
|
i4k(reader, customScalarAdapters) {
|
|
23
23
|
throw IllegalStateException().o('Input type used in output position');
|
|
24
24
|
}
|
|
25
|
-
|
|
26
|
-
writer.
|
|
27
|
-
get_partyIdAdapter().j4k(writer, customScalarAdapters, value.
|
|
28
|
-
writer.
|
|
29
|
-
list(obj(ContributionInput_InputAdapter_instance)).
|
|
25
|
+
u5m(writer, customScalarAdapters, value) {
|
|
26
|
+
writer.i4s('partyId');
|
|
27
|
+
get_partyIdAdapter().j4k(writer, customScalarAdapters, value.p5m_1);
|
|
28
|
+
writer.i4s('contributionList');
|
|
29
|
+
list(obj(ContributionInput_InputAdapter_instance)).p4l(writer, customScalarAdapters, value.q5m_1);
|
|
30
30
|
}
|
|
31
31
|
j4k(writer, customScalarAdapters, value) {
|
|
32
|
-
return this.
|
|
32
|
+
return this.u5m(writer, customScalarAdapters, value instanceof SaveContributionInput() ? value : THROW_CCE());
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
initMetadataForObject($, 'SaveContributionInput_InputAdapter', VOID, VOID, [Adapter()]);
|
|
@@ -19,10 +19,10 @@ function KotlinInstantAdapter() {
|
|
|
19
19
|
if (KotlinInstantAdapterClass === VOID) {
|
|
20
20
|
class $ {
|
|
21
21
|
i4k(reader, customScalarAdapters) {
|
|
22
|
-
return Companion_getInstance().bs(ensureNotNull(reader.
|
|
22
|
+
return Companion_getInstance().bs(ensureNotNull(reader.s4l()));
|
|
23
23
|
}
|
|
24
24
|
d52(writer, customScalarAdapters, value) {
|
|
25
|
-
writer.
|
|
25
|
+
writer.u4l(value.toString());
|
|
26
26
|
}
|
|
27
27
|
j4k(writer, customScalarAdapters, value) {
|
|
28
28
|
return this.d52(writer, customScalarAdapters, value instanceof Instant() ? value : THROW_CCE());
|
|
@@ -19,6 +19,7 @@ import {
|
|
|
19
19
|
Companion_instance3bl0oo0sjhkhb as Companion_instance,
|
|
20
20
|
} from './json/MapJsonReader.mjs';
|
|
21
21
|
import { MapJsonWriter4jz7ym6vbwk4 as MapJsonWriter } from './json/MapJsonWriter.mjs';
|
|
22
|
+
import { ApolloGraphQLException2qazyzs4ebcad as ApolloGraphQLException } from '../exception/Exceptions.mjs';
|
|
22
23
|
import { writeAny16i13331zbqlc as writeAny } from './json/JsonWriters.mjs';
|
|
23
24
|
import { ArrayList3it5z8td81qkl as ArrayList } from '../../../../../kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs';
|
|
24
25
|
import { KtList3hktaavzmj137 as KtList } from '../../../../../kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs';
|
|
@@ -212,10 +213,23 @@ function ObjectAdapter() {
|
|
|
212
213
|
}
|
|
213
214
|
var actualReader = tmp;
|
|
214
215
|
actualReader.i4l();
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
216
|
+
try {
|
|
217
|
+
var result = this.f4l_1.i4k(actualReader, customScalarAdapters);
|
|
218
|
+
actualReader.j4l();
|
|
219
|
+
return result;
|
|
220
|
+
} catch ($p) {
|
|
221
|
+
if ($p instanceof ApolloGraphQLException()) {
|
|
222
|
+
var e = $p;
|
|
223
|
+
while (actualReader.r1()) {
|
|
224
|
+
actualReader.k4l();
|
|
225
|
+
actualReader.l4k();
|
|
226
|
+
}
|
|
227
|
+
actualReader.j4l();
|
|
228
|
+
throw e;
|
|
229
|
+
} else {
|
|
230
|
+
throw $p;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
219
233
|
}
|
|
220
234
|
j4k(writer, customScalarAdapters, value) {
|
|
221
235
|
var tmp;
|
|
@@ -229,7 +243,7 @@ function ObjectAdapter() {
|
|
|
229
243
|
mapWriter.i4l();
|
|
230
244
|
this.f4l_1.j4k(mapWriter, customScalarAdapters, value);
|
|
231
245
|
mapWriter.j4l();
|
|
232
|
-
writeAny(writer, ensureNotNull(mapWriter.
|
|
246
|
+
writeAny(writer, ensureNotNull(mapWriter.l4l()));
|
|
233
247
|
} else {
|
|
234
248
|
writer.i4l();
|
|
235
249
|
this.f4l_1.j4k(writer, customScalarAdapters, value);
|
|
@@ -252,30 +266,43 @@ function ListAdapter() {
|
|
|
252
266
|
if (ListAdapterClass === VOID) {
|
|
253
267
|
class $ {
|
|
254
268
|
constructor(wrappedAdapter) {
|
|
255
|
-
this.
|
|
269
|
+
this.m4l_1 = wrappedAdapter;
|
|
256
270
|
}
|
|
257
271
|
i4k(reader, customScalarAdapters) {
|
|
258
|
-
reader.
|
|
272
|
+
reader.n4l();
|
|
259
273
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
260
274
|
var list = ArrayList().n2();
|
|
261
|
-
|
|
262
|
-
|
|
275
|
+
try {
|
|
276
|
+
while (reader.r1()) {
|
|
277
|
+
list.t2(this.m4l_1.i4k(reader, customScalarAdapters));
|
|
278
|
+
}
|
|
279
|
+
reader.o4l();
|
|
280
|
+
return list;
|
|
281
|
+
} catch ($p) {
|
|
282
|
+
if ($p instanceof ApolloGraphQLException()) {
|
|
283
|
+
var e = $p;
|
|
284
|
+
while (reader.r1()) {
|
|
285
|
+
reader.l4k();
|
|
286
|
+
}
|
|
287
|
+
reader.o4l();
|
|
288
|
+
throw e;
|
|
289
|
+
} else {
|
|
290
|
+
throw $p;
|
|
291
|
+
}
|
|
263
292
|
}
|
|
264
|
-
reader.n4l();
|
|
265
|
-
return list;
|
|
266
293
|
}
|
|
267
|
-
|
|
268
|
-
writer.
|
|
294
|
+
p4l(writer, customScalarAdapters, value) {
|
|
295
|
+
writer.n4l();
|
|
269
296
|
// Inline function 'kotlin.collections.forEach' call
|
|
270
297
|
var _iterator__ex2g4s = value.q1();
|
|
271
298
|
while (_iterator__ex2g4s.r1()) {
|
|
272
299
|
var element = _iterator__ex2g4s.s1();
|
|
273
|
-
this.
|
|
300
|
+
this.m4l_1.j4k(writer, customScalarAdapters, element);
|
|
274
301
|
}
|
|
275
|
-
writer.
|
|
302
|
+
writer.o4l();
|
|
276
303
|
}
|
|
277
304
|
j4k(writer, customScalarAdapters, value) {
|
|
278
|
-
return this.
|
|
305
|
+
return this.p4l(writer, customScalarAdapters, (!(value == null) ? isInterface(value, KtList()) : false) ? value : THROW_CCE());
|
|
279
306
|
}
|
|
280
307
|
}
|
|
281
308
|
initMetadataForClass($, 'ListAdapter', VOID, VOID, [Adapter()]);
|
|
@@ -292,16 +319,16 @@ function PresentAdapter() {
|
|
|
292
319
|
if (PresentAdapterClass === VOID) {
|
|
293
320
|
class $ {
|
|
294
321
|
constructor(wrappedAdapter) {
|
|
295
|
-
this.
|
|
322
|
+
this.q4l_1 = wrappedAdapter;
|
|
296
323
|
}
|
|
297
324
|
i4k(reader, customScalarAdapters) {
|
|
298
|
-
return new (Present())(this.
|
|
325
|
+
return new (Present())(this.q4l_1.i4k(reader, customScalarAdapters));
|
|
299
326
|
}
|
|
300
|
-
|
|
301
|
-
this.
|
|
327
|
+
r4l(writer, customScalarAdapters, value) {
|
|
328
|
+
this.q4l_1.j4k(writer, customScalarAdapters, value.q4k_1);
|
|
302
329
|
}
|
|
303
330
|
j4k(writer, customScalarAdapters, value) {
|
|
304
|
-
return this.
|
|
331
|
+
return this.r4l(writer, customScalarAdapters, value instanceof Present() ? value : THROW_CCE());
|
|
305
332
|
}
|
|
306
333
|
}
|
|
307
334
|
initMetadataForClass($, 'PresentAdapter', VOID, VOID, [Adapter()]);
|
|
@@ -318,13 +345,13 @@ function StringAdapter$1() {
|
|
|
318
345
|
if (StringAdapter$1Class === VOID) {
|
|
319
346
|
class $ {
|
|
320
347
|
i4k(reader, customScalarAdapters) {
|
|
321
|
-
return ensureNotNull(reader.
|
|
348
|
+
return ensureNotNull(reader.s4l());
|
|
322
349
|
}
|
|
323
|
-
|
|
324
|
-
writer.
|
|
350
|
+
t4l(writer, customScalarAdapters, value) {
|
|
351
|
+
writer.u4l(value);
|
|
325
352
|
}
|
|
326
353
|
j4k(writer, customScalarAdapters, value) {
|
|
327
|
-
return this.
|
|
354
|
+
return this.t4l(writer, customScalarAdapters, (!(value == null) ? typeof value === 'string' : false) ? value : THROW_CCE());
|
|
328
355
|
}
|
|
329
356
|
}
|
|
330
357
|
initMetadataForClass($, VOID, VOID, VOID, [Adapter()]);
|
|
@@ -339,11 +366,11 @@ function IntAdapter$1() {
|
|
|
339
366
|
i4k(reader, customScalarAdapters) {
|
|
340
367
|
return reader.gm();
|
|
341
368
|
}
|
|
342
|
-
|
|
343
|
-
writer.
|
|
369
|
+
v4l(writer, customScalarAdapters, value) {
|
|
370
|
+
writer.w4l(value);
|
|
344
371
|
}
|
|
345
372
|
j4k(writer, customScalarAdapters, value) {
|
|
346
|
-
return this.
|
|
373
|
+
return this.v4l(writer, customScalarAdapters, (!(value == null) ? typeof value === 'number' : false) ? value : THROW_CCE());
|
|
347
374
|
}
|
|
348
375
|
}
|
|
349
376
|
initMetadataForClass($, VOID, VOID, VOID, [Adapter()]);
|
|
@@ -356,13 +383,13 @@ function DoubleAdapter$1() {
|
|
|
356
383
|
if (DoubleAdapter$1Class === VOID) {
|
|
357
384
|
class $ {
|
|
358
385
|
i4k(reader, customScalarAdapters) {
|
|
359
|
-
return reader.
|
|
386
|
+
return reader.x4l();
|
|
360
387
|
}
|
|
361
|
-
|
|
362
|
-
writer.
|
|
388
|
+
y4l(writer, customScalarAdapters, value) {
|
|
389
|
+
writer.z4l(value);
|
|
363
390
|
}
|
|
364
391
|
j4k(writer, customScalarAdapters, value) {
|
|
365
|
-
return this.
|
|
392
|
+
return this.y4l(writer, customScalarAdapters, (!(value == null) ? typeof value === 'number' : false) ? value : THROW_CCE());
|
|
366
393
|
}
|
|
367
394
|
}
|
|
368
395
|
initMetadataForClass($, VOID, VOID, VOID, [Adapter()]);
|
|
@@ -375,13 +402,13 @@ function FloatAdapter$1() {
|
|
|
375
402
|
if (FloatAdapter$1Class === VOID) {
|
|
376
403
|
class $ {
|
|
377
404
|
i4k(reader, customScalarAdapters) {
|
|
378
|
-
return reader.
|
|
405
|
+
return reader.x4l();
|
|
379
406
|
}
|
|
380
|
-
|
|
381
|
-
writer.
|
|
407
|
+
a4m(writer, customScalarAdapters, value) {
|
|
408
|
+
writer.z4l(value);
|
|
382
409
|
}
|
|
383
410
|
j4k(writer, customScalarAdapters, value) {
|
|
384
|
-
return this.
|
|
411
|
+
return this.a4m(writer, customScalarAdapters, (!(value == null) ? typeof value === 'number' : false) ? value : THROW_CCE());
|
|
385
412
|
}
|
|
386
413
|
}
|
|
387
414
|
initMetadataForClass($, VOID, VOID, VOID, [Adapter()]);
|
|
@@ -396,11 +423,11 @@ function LongAdapter$1() {
|
|
|
396
423
|
i4k(reader, customScalarAdapters) {
|
|
397
424
|
return reader.kp();
|
|
398
425
|
}
|
|
399
|
-
|
|
400
|
-
writer.
|
|
426
|
+
b4m(writer, customScalarAdapters, value) {
|
|
427
|
+
writer.c4m(value);
|
|
401
428
|
}
|
|
402
429
|
j4k(writer, customScalarAdapters, value) {
|
|
403
|
-
return this.
|
|
430
|
+
return this.b4m(writer, customScalarAdapters, value instanceof Long() ? value : THROW_CCE());
|
|
404
431
|
}
|
|
405
432
|
}
|
|
406
433
|
initMetadataForClass($, VOID, VOID, VOID, [Adapter()]);
|
|
@@ -413,13 +440,13 @@ function BooleanAdapter$1() {
|
|
|
413
440
|
if (BooleanAdapter$1Class === VOID) {
|
|
414
441
|
class $ {
|
|
415
442
|
i4k(reader, customScalarAdapters) {
|
|
416
|
-
return reader.
|
|
443
|
+
return reader.d4m();
|
|
417
444
|
}
|
|
418
|
-
|
|
419
|
-
writer.
|
|
445
|
+
e4m(writer, customScalarAdapters, value) {
|
|
446
|
+
writer.f4m(value);
|
|
420
447
|
}
|
|
421
448
|
j4k(writer, customScalarAdapters, value) {
|
|
422
|
-
return this.
|
|
449
|
+
return this.e4m(writer, customScalarAdapters, (!(value == null) ? typeof value === 'boolean' : false) ? value : THROW_CCE());
|
|
423
450
|
}
|
|
424
451
|
}
|
|
425
452
|
initMetadataForClass($, VOID, VOID, VOID, [Adapter()]);
|
|
@@ -431,20 +458,20 @@ var AnyAdapter$1Class;
|
|
|
431
458
|
function AnyAdapter$1() {
|
|
432
459
|
if (AnyAdapter$1Class === VOID) {
|
|
433
460
|
class $ {
|
|
434
|
-
|
|
461
|
+
g4m(reader) {
|
|
435
462
|
return ensureNotNull(readAny(reader));
|
|
436
463
|
}
|
|
437
|
-
|
|
464
|
+
h4m(writer, value) {
|
|
438
465
|
writeAny(writer, value);
|
|
439
466
|
}
|
|
440
467
|
i4k(reader, customScalarAdapters) {
|
|
441
|
-
return this.
|
|
468
|
+
return this.g4m(reader);
|
|
442
469
|
}
|
|
443
|
-
|
|
444
|
-
this.
|
|
470
|
+
i4m(writer, customScalarAdapters, value) {
|
|
471
|
+
this.h4m(writer, value);
|
|
445
472
|
}
|
|
446
473
|
j4k(writer, customScalarAdapters, value) {
|
|
447
|
-
return this.
|
|
474
|
+
return this.i4m(writer, customScalarAdapters, !(value == null) ? value : THROW_CCE());
|
|
448
475
|
}
|
|
449
476
|
}
|
|
450
477
|
initMetadataForClass($, VOID, VOID, VOID, [Adapter()]);
|
|
@@ -461,11 +488,11 @@ function UploadAdapter$1() {
|
|
|
461
488
|
var message = 'File Upload used in output position';
|
|
462
489
|
throw IllegalStateException().o(toString(message));
|
|
463
490
|
}
|
|
464
|
-
|
|
465
|
-
writer.
|
|
491
|
+
j4m(writer, customScalarAdapters, value) {
|
|
492
|
+
writer.k4m(value);
|
|
466
493
|
}
|
|
467
494
|
j4k(writer, customScalarAdapters, value) {
|
|
468
|
-
return this.
|
|
495
|
+
return this.j4m(writer, customScalarAdapters, (!(value == null) ? isInterface(value, Upload()) : false) ? value : THROW_CCE());
|
|
469
496
|
}
|
|
470
497
|
}
|
|
471
498
|
initMetadataForClass($, VOID, VOID, VOID, [Adapter()]);
|