@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
|
@@ -17,20 +17,20 @@ function Data() {
|
|
|
17
17
|
if (DataClass === VOID) {
|
|
18
18
|
class $ {
|
|
19
19
|
constructor(saveContribution) {
|
|
20
|
-
this.
|
|
20
|
+
this.s5i_1 = saveContribution;
|
|
21
21
|
}
|
|
22
22
|
toString() {
|
|
23
|
-
return 'Data(saveContribution=' + this.
|
|
23
|
+
return 'Data(saveContribution=' + this.s5i_1 + ')';
|
|
24
24
|
}
|
|
25
25
|
hashCode() {
|
|
26
|
-
return this.
|
|
26
|
+
return this.s5i_1 == null ? 0 : getBooleanHashCode(this.s5i_1);
|
|
27
27
|
}
|
|
28
28
|
equals(other) {
|
|
29
29
|
if (this === other)
|
|
30
30
|
return true;
|
|
31
31
|
if (!(other instanceof Data()))
|
|
32
32
|
return false;
|
|
33
|
-
if (!(this.
|
|
33
|
+
if (!(this.s5i_1 == other.s5i_1))
|
|
34
34
|
return false;
|
|
35
35
|
return true;
|
|
36
36
|
}
|
|
@@ -45,10 +45,10 @@ function Companion() {
|
|
|
45
45
|
if (CompanionClass === VOID) {
|
|
46
46
|
class $ {
|
|
47
47
|
constructor() {
|
|
48
|
-
this.
|
|
49
|
-
this.
|
|
48
|
+
this.t5i_1 = 'e10d9cbfa650257f640f5182d15931052152b7ef839d4588944c20b961836736';
|
|
49
|
+
this.u5i_1 = 'saveContribution';
|
|
50
50
|
}
|
|
51
|
-
|
|
51
|
+
g5i() {
|
|
52
52
|
return 'mutation saveContribution($input: SaveContributionInput!) { saveContribution(input: $input) }';
|
|
53
53
|
}
|
|
54
54
|
}
|
|
@@ -66,41 +66,41 @@ function SaveContributionMutation() {
|
|
|
66
66
|
if (SaveContributionMutationClass === VOID) {
|
|
67
67
|
class $ {
|
|
68
68
|
constructor(input) {
|
|
69
|
-
this.
|
|
69
|
+
this.v5i_1 = input;
|
|
70
70
|
}
|
|
71
|
-
|
|
71
|
+
i5i() {
|
|
72
72
|
return 'e10d9cbfa650257f640f5182d15931052152b7ef839d4588944c20b961836736';
|
|
73
73
|
}
|
|
74
74
|
operationId() {
|
|
75
|
-
return this.
|
|
75
|
+
return this.i5i();
|
|
76
76
|
}
|
|
77
|
-
|
|
78
|
-
return Companion_instance.
|
|
77
|
+
m4s() {
|
|
78
|
+
return Companion_instance.g5i();
|
|
79
79
|
}
|
|
80
|
-
|
|
80
|
+
j5i() {
|
|
81
81
|
return 'saveContribution';
|
|
82
82
|
}
|
|
83
83
|
operationName() {
|
|
84
|
-
return this.
|
|
84
|
+
return this.j5i();
|
|
85
85
|
}
|
|
86
|
-
|
|
87
|
-
SaveContributionMutation_VariablesAdapter_instance.
|
|
86
|
+
j4r(writer, customScalarAdapters, withDefaultValues) {
|
|
87
|
+
SaveContributionMutation_VariablesAdapter_instance.w5i(writer, this, customScalarAdapters, withDefaultValues);
|
|
88
88
|
}
|
|
89
|
-
|
|
89
|
+
i4r() {
|
|
90
90
|
return obj(Data_getInstance());
|
|
91
91
|
}
|
|
92
92
|
toString() {
|
|
93
|
-
return 'SaveContributionMutation(input=' + this.
|
|
93
|
+
return 'SaveContributionMutation(input=' + this.v5i_1.toString() + ')';
|
|
94
94
|
}
|
|
95
95
|
hashCode() {
|
|
96
|
-
return this.
|
|
96
|
+
return this.v5i_1.hashCode();
|
|
97
97
|
}
|
|
98
98
|
equals(other) {
|
|
99
99
|
if (this === other)
|
|
100
100
|
return true;
|
|
101
101
|
if (!(other instanceof SaveContributionMutation()))
|
|
102
102
|
return false;
|
|
103
|
-
if (!this.
|
|
103
|
+
if (!this.v5i_1.equals(other.v5i_1))
|
|
104
104
|
return false;
|
|
105
105
|
return true;
|
|
106
106
|
}
|
|
@@ -26,24 +26,24 @@ function Data_0() {
|
|
|
26
26
|
class $ {
|
|
27
27
|
constructor() {
|
|
28
28
|
Data_instance = this;
|
|
29
|
-
this.
|
|
29
|
+
this.x5i_1 = listOf('party');
|
|
30
30
|
}
|
|
31
31
|
i4k(reader, customScalarAdapters) {
|
|
32
32
|
var _party = null;
|
|
33
33
|
$l$loop: while (true) {
|
|
34
|
-
if (reader.x4w(this.
|
|
34
|
+
if (reader.x4w(this.x5i_1) === 0)
|
|
35
35
|
_party = nullable(obj(Party_getInstance())).i4k(reader, customScalarAdapters);
|
|
36
36
|
else
|
|
37
37
|
break $l$loop;
|
|
38
38
|
}
|
|
39
39
|
return new (Data())(_party);
|
|
40
40
|
}
|
|
41
|
-
|
|
42
|
-
writer.
|
|
43
|
-
nullable(obj(Party_getInstance())).m4k(writer, customScalarAdapters, value.
|
|
41
|
+
y5i(writer, customScalarAdapters, value) {
|
|
42
|
+
writer.i4s('party');
|
|
43
|
+
nullable(obj(Party_getInstance())).m4k(writer, customScalarAdapters, value.a5i_1);
|
|
44
44
|
}
|
|
45
45
|
j4k(writer, customScalarAdapters, value) {
|
|
46
|
-
return this.
|
|
46
|
+
return this.y5i(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
|
|
@@ -63,24 +63,24 @@ function Party_0() {
|
|
|
63
63
|
class $ {
|
|
64
64
|
constructor() {
|
|
65
65
|
Party_instance = this;
|
|
66
|
-
this.
|
|
66
|
+
this.z5i_1 = listOf('currentPairingSet');
|
|
67
67
|
}
|
|
68
68
|
i4k(reader, customScalarAdapters) {
|
|
69
69
|
var _currentPairingSet = null;
|
|
70
70
|
$l$loop: while (true) {
|
|
71
|
-
if (reader.x4w(this.
|
|
71
|
+
if (reader.x4w(this.z5i_1) === 0)
|
|
72
72
|
_currentPairingSet = nullable(obj(CurrentPairingSet_getInstance(), true)).i4k(reader, customScalarAdapters);
|
|
73
73
|
else
|
|
74
74
|
break $l$loop;
|
|
75
75
|
}
|
|
76
76
|
return new (Party())(_currentPairingSet);
|
|
77
77
|
}
|
|
78
|
-
|
|
79
|
-
writer.
|
|
80
|
-
nullable(obj(CurrentPairingSet_getInstance(), true)).m4k(writer, customScalarAdapters, value.
|
|
78
|
+
a5j(writer, customScalarAdapters, value) {
|
|
79
|
+
writer.i4s('currentPairingSet');
|
|
80
|
+
nullable(obj(CurrentPairingSet_getInstance(), true)).m4k(writer, customScalarAdapters, value.b5i_1);
|
|
81
81
|
}
|
|
82
82
|
j4k(writer, customScalarAdapters, value) {
|
|
83
|
-
return this.
|
|
83
|
+
return this.a5j(writer, customScalarAdapters, value instanceof Party() ? value : THROW_CCE());
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
initMetadataForObject($, 'Party', VOID, VOID, [Adapter()]);
|
|
@@ -100,12 +100,12 @@ function CurrentPairingSet_0() {
|
|
|
100
100
|
class $ {
|
|
101
101
|
constructor() {
|
|
102
102
|
CurrentPairingSet_instance = this;
|
|
103
|
-
this.
|
|
103
|
+
this.b5j_1 = listOf('__typename');
|
|
104
104
|
}
|
|
105
105
|
i4k(reader, customScalarAdapters) {
|
|
106
106
|
var __typename = null;
|
|
107
107
|
$l$loop: while (true) {
|
|
108
|
-
if (reader.x4w(this.
|
|
108
|
+
if (reader.x4w(this.b5j_1) === 0)
|
|
109
109
|
__typename = get_StringAdapter().i4k(reader, customScalarAdapters);
|
|
110
110
|
else
|
|
111
111
|
break $l$loop;
|
|
@@ -121,13 +121,13 @@ function CurrentPairingSet_0() {
|
|
|
121
121
|
}
|
|
122
122
|
return new (CurrentPairingSet())(tmp, _pairingSetDetails);
|
|
123
123
|
}
|
|
124
|
-
|
|
125
|
-
writer.
|
|
126
|
-
get_StringAdapter().j4k(writer, customScalarAdapters, value.
|
|
127
|
-
PairingSetDetails_getInstance().
|
|
124
|
+
d5j(writer, customScalarAdapters, value) {
|
|
125
|
+
writer.i4s('__typename');
|
|
126
|
+
get_StringAdapter().j4k(writer, customScalarAdapters, value.c5i_1);
|
|
127
|
+
PairingSetDetails_getInstance().e5j(writer, customScalarAdapters, value.d5i_1);
|
|
128
128
|
}
|
|
129
129
|
j4k(writer, customScalarAdapters, value) {
|
|
130
|
-
return this.
|
|
130
|
+
return this.d5j(writer, customScalarAdapters, value instanceof CurrentPairingSet() ? value : THROW_CCE());
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
133
|
initMetadataForObject($, 'CurrentPairingSet', VOID, VOID, [Adapter()]);
|
|
@@ -10,9 +10,9 @@ var CurrentPairAssignmentsQuery_VariablesAdapterClass;
|
|
|
10
10
|
function CurrentPairAssignmentsQuery_VariablesAdapter() {
|
|
11
11
|
if (CurrentPairAssignmentsQuery_VariablesAdapterClass === VOID) {
|
|
12
12
|
class $ {
|
|
13
|
-
|
|
14
|
-
writer.
|
|
15
|
-
get_partyIdAdapter().j4k(writer, customScalarAdapters, value.
|
|
13
|
+
k5i(writer, value, customScalarAdapters, withDefaultValues) {
|
|
14
|
+
writer.i4s('partyId');
|
|
15
|
+
get_partyIdAdapter().j4k(writer, customScalarAdapters, value.h5i_1);
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
initMetadataForObject($, 'CurrentPairAssignmentsQuery_VariablesAdapter');
|
|
@@ -25,24 +25,24 @@ function Data_0() {
|
|
|
25
25
|
class $ {
|
|
26
26
|
constructor() {
|
|
27
27
|
Data_instance = this;
|
|
28
|
-
this.
|
|
28
|
+
this.f5j_1 = listOf('party');
|
|
29
29
|
}
|
|
30
30
|
i4k(reader, customScalarAdapters) {
|
|
31
31
|
var _party = null;
|
|
32
32
|
$l$loop: while (true) {
|
|
33
|
-
if (reader.x4w(this.
|
|
33
|
+
if (reader.x4w(this.f5j_1) === 0)
|
|
34
34
|
_party = nullable(obj(Party_getInstance(), true)).i4k(reader, customScalarAdapters);
|
|
35
35
|
else
|
|
36
36
|
break $l$loop;
|
|
37
37
|
}
|
|
38
38
|
return new (Data())(_party);
|
|
39
39
|
}
|
|
40
|
-
|
|
41
|
-
writer.
|
|
42
|
-
nullable(obj(Party_getInstance(), true)).m4k(writer, customScalarAdapters, value.
|
|
40
|
+
g5j(writer, customScalarAdapters, value) {
|
|
41
|
+
writer.i4s('party');
|
|
42
|
+
nullable(obj(Party_getInstance(), true)).m4k(writer, customScalarAdapters, value.l5i_1);
|
|
43
43
|
}
|
|
44
44
|
j4k(writer, customScalarAdapters, value) {
|
|
45
|
-
return this.
|
|
45
|
+
return this.g5j(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
|
|
@@ -62,12 +62,12 @@ function Party_0() {
|
|
|
62
62
|
class $ {
|
|
63
63
|
constructor() {
|
|
64
64
|
Party_instance = this;
|
|
65
|
-
this.
|
|
65
|
+
this.h5j_1 = listOf('__typename');
|
|
66
66
|
}
|
|
67
67
|
i4k(reader, customScalarAdapters) {
|
|
68
68
|
var __typename = null;
|
|
69
69
|
$l$loop: while (true) {
|
|
70
|
-
if (reader.x4w(this.
|
|
70
|
+
if (reader.x4w(this.h5j_1) === 0)
|
|
71
71
|
__typename = get_StringAdapter().i4k(reader, customScalarAdapters);
|
|
72
72
|
else
|
|
73
73
|
break $l$loop;
|
|
@@ -83,13 +83,13 @@ function Party_0() {
|
|
|
83
83
|
}
|
|
84
84
|
return new (Party())(tmp, _partyDetails);
|
|
85
85
|
}
|
|
86
|
-
|
|
87
|
-
writer.
|
|
88
|
-
get_StringAdapter().j4k(writer, customScalarAdapters, value.
|
|
89
|
-
PartyDetails_getInstance().
|
|
86
|
+
j5j(writer, customScalarAdapters, value) {
|
|
87
|
+
writer.i4s('__typename');
|
|
88
|
+
get_StringAdapter().j4k(writer, customScalarAdapters, value.m5i_1);
|
|
89
|
+
PartyDetails_getInstance().k5j(writer, customScalarAdapters, value.n5i_1);
|
|
90
90
|
}
|
|
91
91
|
j4k(writer, customScalarAdapters, value) {
|
|
92
|
-
return this.
|
|
92
|
+
return this.j5j(writer, customScalarAdapters, value instanceof Party() ? value : THROW_CCE());
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
initMetadataForObject($, 'Party', VOID, VOID, [Adapter()]);
|
|
@@ -10,9 +10,9 @@ var PartyDetailsQuery_VariablesAdapterClass;
|
|
|
10
10
|
function PartyDetailsQuery_VariablesAdapter() {
|
|
11
11
|
if (PartyDetailsQuery_VariablesAdapterClass === VOID) {
|
|
12
12
|
class $ {
|
|
13
|
-
|
|
14
|
-
writer.
|
|
15
|
-
get_partyIdAdapter().j4k(writer, customScalarAdapters, value.
|
|
13
|
+
r5i(writer, value, customScalarAdapters, withDefaultValues) {
|
|
14
|
+
writer.i4s('partyId');
|
|
15
|
+
get_partyIdAdapter().j4k(writer, customScalarAdapters, value.q5i_1);
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
initMetadataForObject($, 'PartyDetailsQuery_VariablesAdapter');
|
|
@@ -16,24 +16,24 @@ function Data_0() {
|
|
|
16
16
|
class $ {
|
|
17
17
|
constructor() {
|
|
18
18
|
Data_instance = this;
|
|
19
|
-
this.
|
|
19
|
+
this.l5j_1 = listOf('saveContribution');
|
|
20
20
|
}
|
|
21
21
|
i4k(reader, customScalarAdapters) {
|
|
22
22
|
var _saveContribution = null;
|
|
23
23
|
$l$loop: while (true) {
|
|
24
|
-
if (reader.x4w(this.
|
|
24
|
+
if (reader.x4w(this.l5j_1) === 0)
|
|
25
25
|
_saveContribution = get_NullableBooleanAdapter().i4k(reader, customScalarAdapters);
|
|
26
26
|
else
|
|
27
27
|
break $l$loop;
|
|
28
28
|
}
|
|
29
29
|
return new (Data())(_saveContribution);
|
|
30
30
|
}
|
|
31
|
-
|
|
32
|
-
writer.
|
|
33
|
-
get_NullableBooleanAdapter().m4k(writer, customScalarAdapters, value.
|
|
31
|
+
m5j(writer, customScalarAdapters, value) {
|
|
32
|
+
writer.i4s('saveContribution');
|
|
33
|
+
get_NullableBooleanAdapter().m4k(writer, customScalarAdapters, value.s5i_1);
|
|
34
34
|
}
|
|
35
35
|
j4k(writer, customScalarAdapters, value) {
|
|
36
|
-
return this.
|
|
36
|
+
return this.m5j(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
|
|
@@ -11,9 +11,9 @@ var SaveContributionMutation_VariablesAdapterClass;
|
|
|
11
11
|
function SaveContributionMutation_VariablesAdapter() {
|
|
12
12
|
if (SaveContributionMutation_VariablesAdapterClass === VOID) {
|
|
13
13
|
class $ {
|
|
14
|
-
|
|
15
|
-
writer.
|
|
16
|
-
obj(SaveContributionInput_InputAdapter_instance).j4k(writer, customScalarAdapters, value.
|
|
14
|
+
w5i(writer, value, customScalarAdapters, withDefaultValues) {
|
|
15
|
+
writer.i4s('input');
|
|
16
|
+
obj(SaveContributionInput_InputAdapter_instance).j4k(writer, customScalarAdapters, value.v5i_1);
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
initMetadataForObject($, 'SaveContributionMutation_VariablesAdapter');
|
package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs
CHANGED
|
@@ -17,15 +17,15 @@ function Pair() {
|
|
|
17
17
|
if (PairClass === VOID) {
|
|
18
18
|
class $ {
|
|
19
19
|
constructor(players, pins) {
|
|
20
|
-
this.
|
|
21
|
-
this.
|
|
20
|
+
this.n5j_1 = players;
|
|
21
|
+
this.o5j_1 = pins;
|
|
22
22
|
}
|
|
23
23
|
toString() {
|
|
24
|
-
return 'Pair(players=' + toString(this.
|
|
24
|
+
return 'Pair(players=' + toString(this.n5j_1) + ', pins=' + toString(this.o5j_1) + ')';
|
|
25
25
|
}
|
|
26
26
|
hashCode() {
|
|
27
|
-
var result = hashCode(this.
|
|
28
|
-
result = imul(result, 31) + hashCode(this.
|
|
27
|
+
var result = hashCode(this.n5j_1);
|
|
28
|
+
result = imul(result, 31) + hashCode(this.o5j_1) | 0;
|
|
29
29
|
return result;
|
|
30
30
|
}
|
|
31
31
|
equals(other) {
|
|
@@ -33,9 +33,9 @@ function Pair() {
|
|
|
33
33
|
return true;
|
|
34
34
|
if (!(other instanceof Pair()))
|
|
35
35
|
return false;
|
|
36
|
-
if (!equals(this.
|
|
36
|
+
if (!equals(this.n5j_1, other.n5j_1))
|
|
37
37
|
return false;
|
|
38
|
-
if (!equals(this.
|
|
38
|
+
if (!equals(this.o5j_1, other.o5j_1))
|
|
39
39
|
return false;
|
|
40
40
|
return true;
|
|
41
41
|
}
|
|
@@ -50,31 +50,31 @@ function Player() {
|
|
|
50
50
|
if (PlayerClass === VOID) {
|
|
51
51
|
class $ {
|
|
52
52
|
constructor(id, name, email, badge, avatarType, callSignAdjective, callSignNoun, imageURL, unvalidatedEmails, pins) {
|
|
53
|
-
this.
|
|
54
|
-
this.
|
|
55
|
-
this.
|
|
56
|
-
this.
|
|
57
|
-
this.
|
|
58
|
-
this.
|
|
59
|
-
this.
|
|
60
|
-
this.
|
|
61
|
-
this.
|
|
62
|
-
this.
|
|
53
|
+
this.p5j_1 = id;
|
|
54
|
+
this.q5j_1 = name;
|
|
55
|
+
this.r5j_1 = email;
|
|
56
|
+
this.s5j_1 = badge;
|
|
57
|
+
this.t5j_1 = avatarType;
|
|
58
|
+
this.u5j_1 = callSignAdjective;
|
|
59
|
+
this.v5j_1 = callSignNoun;
|
|
60
|
+
this.w5j_1 = imageURL;
|
|
61
|
+
this.x5j_1 = unvalidatedEmails;
|
|
62
|
+
this.y5j_1 = pins;
|
|
63
63
|
}
|
|
64
64
|
toString() {
|
|
65
|
-
return 'Player(id=' + this.
|
|
65
|
+
return 'Player(id=' + this.p5j_1.toString() + ', name=' + this.q5j_1 + ', email=' + this.r5j_1 + ', badge=' + this.s5j_1.toString() + ', avatarType=' + toString_0(this.t5j_1) + ', callSignAdjective=' + this.u5j_1 + ', callSignNoun=' + this.v5j_1 + ', imageURL=' + this.w5j_1 + ', unvalidatedEmails=' + toString(this.x5j_1) + ', pins=' + toString(this.y5j_1) + ')';
|
|
66
66
|
}
|
|
67
67
|
hashCode() {
|
|
68
|
-
var result = this.
|
|
69
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
70
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
71
|
-
result = imul(result, 31) + this.
|
|
72
|
-
result = imul(result, 31) + (this.
|
|
73
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
74
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
75
|
-
result = imul(result, 31) + (this.
|
|
76
|
-
result = imul(result, 31) + hashCode(this.
|
|
77
|
-
result = imul(result, 31) + hashCode(this.
|
|
68
|
+
var result = this.p5j_1.hashCode();
|
|
69
|
+
result = imul(result, 31) + getStringHashCode(this.q5j_1) | 0;
|
|
70
|
+
result = imul(result, 31) + getStringHashCode(this.r5j_1) | 0;
|
|
71
|
+
result = imul(result, 31) + this.s5j_1.hashCode() | 0;
|
|
72
|
+
result = imul(result, 31) + (this.t5j_1 == null ? 0 : this.t5j_1.hashCode()) | 0;
|
|
73
|
+
result = imul(result, 31) + getStringHashCode(this.u5j_1) | 0;
|
|
74
|
+
result = imul(result, 31) + getStringHashCode(this.v5j_1) | 0;
|
|
75
|
+
result = imul(result, 31) + (this.w5j_1 == null ? 0 : getStringHashCode(this.w5j_1)) | 0;
|
|
76
|
+
result = imul(result, 31) + hashCode(this.x5j_1) | 0;
|
|
77
|
+
result = imul(result, 31) + hashCode(this.y5j_1) | 0;
|
|
78
78
|
return result;
|
|
79
79
|
}
|
|
80
80
|
equals(other) {
|
|
@@ -82,25 +82,25 @@ function Player() {
|
|
|
82
82
|
return true;
|
|
83
83
|
if (!(other instanceof Player()))
|
|
84
84
|
return false;
|
|
85
|
-
if (!this.
|
|
85
|
+
if (!this.p5j_1.equals(other.p5j_1))
|
|
86
86
|
return false;
|
|
87
|
-
if (!(this.
|
|
87
|
+
if (!(this.q5j_1 === other.q5j_1))
|
|
88
88
|
return false;
|
|
89
|
-
if (!(this.
|
|
89
|
+
if (!(this.r5j_1 === other.r5j_1))
|
|
90
90
|
return false;
|
|
91
|
-
if (!this.
|
|
91
|
+
if (!this.s5j_1.equals(other.s5j_1))
|
|
92
92
|
return false;
|
|
93
|
-
if (!equals(this.
|
|
93
|
+
if (!equals(this.t5j_1, other.t5j_1))
|
|
94
94
|
return false;
|
|
95
|
-
if (!(this.
|
|
95
|
+
if (!(this.u5j_1 === other.u5j_1))
|
|
96
96
|
return false;
|
|
97
|
-
if (!(this.
|
|
97
|
+
if (!(this.v5j_1 === other.v5j_1))
|
|
98
98
|
return false;
|
|
99
|
-
if (!(this.
|
|
99
|
+
if (!(this.w5j_1 == other.w5j_1))
|
|
100
100
|
return false;
|
|
101
|
-
if (!equals(this.
|
|
101
|
+
if (!equals(this.x5j_1, other.x5j_1))
|
|
102
102
|
return false;
|
|
103
|
-
if (!equals(this.
|
|
103
|
+
if (!equals(this.y5j_1, other.y5j_1))
|
|
104
104
|
return false;
|
|
105
105
|
return true;
|
|
106
106
|
}
|
|
@@ -115,17 +115,17 @@ function Pin() {
|
|
|
115
115
|
if (PinClass === VOID) {
|
|
116
116
|
class $ {
|
|
117
117
|
constructor(icon, id, name) {
|
|
118
|
-
this.
|
|
119
|
-
this.
|
|
120
|
-
this.
|
|
118
|
+
this.z5j_1 = icon;
|
|
119
|
+
this.a5k_1 = id;
|
|
120
|
+
this.b5k_1 = name;
|
|
121
121
|
}
|
|
122
122
|
toString() {
|
|
123
|
-
return 'Pin(icon=' + this.
|
|
123
|
+
return 'Pin(icon=' + this.z5j_1 + ', id=' + this.a5k_1.toString() + ', name=' + this.b5k_1 + ')';
|
|
124
124
|
}
|
|
125
125
|
hashCode() {
|
|
126
|
-
var result = getStringHashCode(this.
|
|
127
|
-
result = imul(result, 31) + this.
|
|
128
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
126
|
+
var result = getStringHashCode(this.z5j_1);
|
|
127
|
+
result = imul(result, 31) + this.a5k_1.hashCode() | 0;
|
|
128
|
+
result = imul(result, 31) + getStringHashCode(this.b5k_1) | 0;
|
|
129
129
|
return result;
|
|
130
130
|
}
|
|
131
131
|
equals(other) {
|
|
@@ -133,11 +133,11 @@ function Pin() {
|
|
|
133
133
|
return true;
|
|
134
134
|
if (!(other instanceof Pin()))
|
|
135
135
|
return false;
|
|
136
|
-
if (!(this.
|
|
136
|
+
if (!(this.z5j_1 === other.z5j_1))
|
|
137
137
|
return false;
|
|
138
|
-
if (!this.
|
|
138
|
+
if (!this.a5k_1.equals(other.a5k_1))
|
|
139
139
|
return false;
|
|
140
|
-
if (!(this.
|
|
140
|
+
if (!(this.b5k_1 === other.b5k_1))
|
|
141
141
|
return false;
|
|
142
142
|
return true;
|
|
143
143
|
}
|
|
@@ -152,17 +152,17 @@ function Pin1() {
|
|
|
152
152
|
if (Pin1Class === VOID) {
|
|
153
153
|
class $ {
|
|
154
154
|
constructor(icon, id, name) {
|
|
155
|
-
this.
|
|
156
|
-
this.
|
|
157
|
-
this.
|
|
155
|
+
this.c5k_1 = icon;
|
|
156
|
+
this.d5k_1 = id;
|
|
157
|
+
this.e5k_1 = name;
|
|
158
158
|
}
|
|
159
159
|
toString() {
|
|
160
|
-
return 'Pin1(icon=' + this.
|
|
160
|
+
return 'Pin1(icon=' + this.c5k_1 + ', id=' + this.d5k_1.toString() + ', name=' + this.e5k_1 + ')';
|
|
161
161
|
}
|
|
162
162
|
hashCode() {
|
|
163
|
-
var result = getStringHashCode(this.
|
|
164
|
-
result = imul(result, 31) + this.
|
|
165
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
163
|
+
var result = getStringHashCode(this.c5k_1);
|
|
164
|
+
result = imul(result, 31) + this.d5k_1.hashCode() | 0;
|
|
165
|
+
result = imul(result, 31) + getStringHashCode(this.e5k_1) | 0;
|
|
166
166
|
return result;
|
|
167
167
|
}
|
|
168
168
|
equals(other) {
|
|
@@ -170,11 +170,11 @@ function Pin1() {
|
|
|
170
170
|
return true;
|
|
171
171
|
if (!(other instanceof Pin1()))
|
|
172
172
|
return false;
|
|
173
|
-
if (!(this.
|
|
173
|
+
if (!(this.c5k_1 === other.c5k_1))
|
|
174
174
|
return false;
|
|
175
|
-
if (!this.
|
|
175
|
+
if (!this.d5k_1.equals(other.d5k_1))
|
|
176
176
|
return false;
|
|
177
|
-
if (!(this.
|
|
177
|
+
if (!(this.e5k_1 === other.e5k_1))
|
|
178
178
|
return false;
|
|
179
179
|
return true;
|
|
180
180
|
}
|
|
@@ -189,23 +189,23 @@ function PairingSetDetails() {
|
|
|
189
189
|
if (PairingSetDetailsClass === VOID) {
|
|
190
190
|
class $ {
|
|
191
191
|
constructor(id, partyId, date, pairs, discordMessageId, slackMessageId) {
|
|
192
|
-
this.
|
|
193
|
-
this.
|
|
194
|
-
this.
|
|
195
|
-
this.
|
|
196
|
-
this.
|
|
197
|
-
this.
|
|
192
|
+
this.f5k_1 = id;
|
|
193
|
+
this.g5k_1 = partyId;
|
|
194
|
+
this.h5k_1 = date;
|
|
195
|
+
this.i5k_1 = pairs;
|
|
196
|
+
this.j5k_1 = discordMessageId;
|
|
197
|
+
this.k5k_1 = slackMessageId;
|
|
198
198
|
}
|
|
199
199
|
toString() {
|
|
200
|
-
return 'PairingSetDetails(id=' + this.
|
|
200
|
+
return 'PairingSetDetails(id=' + this.f5k_1.toString() + ', partyId=' + this.g5k_1.toString() + ', date=' + this.h5k_1.toString() + ', pairs=' + toString(this.i5k_1) + ', discordMessageId=' + this.j5k_1 + ', slackMessageId=' + this.k5k_1 + ')';
|
|
201
201
|
}
|
|
202
202
|
hashCode() {
|
|
203
|
-
var result = this.
|
|
204
|
-
result = imul(result, 31) + this.
|
|
205
|
-
result = imul(result, 31) + this.
|
|
206
|
-
result = imul(result, 31) + hashCode(this.
|
|
207
|
-
result = imul(result, 31) + (this.
|
|
208
|
-
result = imul(result, 31) + (this.
|
|
203
|
+
var result = this.f5k_1.hashCode();
|
|
204
|
+
result = imul(result, 31) + this.g5k_1.hashCode() | 0;
|
|
205
|
+
result = imul(result, 31) + this.h5k_1.hashCode() | 0;
|
|
206
|
+
result = imul(result, 31) + hashCode(this.i5k_1) | 0;
|
|
207
|
+
result = imul(result, 31) + (this.j5k_1 == null ? 0 : getStringHashCode(this.j5k_1)) | 0;
|
|
208
|
+
result = imul(result, 31) + (this.k5k_1 == null ? 0 : getStringHashCode(this.k5k_1)) | 0;
|
|
209
209
|
return result;
|
|
210
210
|
}
|
|
211
211
|
equals(other) {
|
|
@@ -213,17 +213,17 @@ function PairingSetDetails() {
|
|
|
213
213
|
return true;
|
|
214
214
|
if (!(other instanceof PairingSetDetails()))
|
|
215
215
|
return false;
|
|
216
|
-
if (!this.
|
|
216
|
+
if (!this.f5k_1.equals(other.f5k_1))
|
|
217
217
|
return false;
|
|
218
|
-
if (!this.
|
|
218
|
+
if (!this.g5k_1.equals(other.g5k_1))
|
|
219
219
|
return false;
|
|
220
|
-
if (!this.
|
|
220
|
+
if (!this.h5k_1.equals(other.h5k_1))
|
|
221
221
|
return false;
|
|
222
|
-
if (!equals(this.
|
|
222
|
+
if (!equals(this.i5k_1, other.i5k_1))
|
|
223
223
|
return false;
|
|
224
|
-
if (!(this.
|
|
224
|
+
if (!(this.j5k_1 == other.j5k_1))
|
|
225
225
|
return false;
|
|
226
|
-
if (!(this.
|
|
226
|
+
if (!(this.k5k_1 == other.k5k_1))
|
|
227
227
|
return false;
|
|
228
228
|
return true;
|
|
229
229
|
}
|