@continuous-excellence/coupling-cli 1.1.429 → 1.1.430
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 +32 -32
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +7 -7
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +70 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +23 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +4 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +23 -23
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +35 -35
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +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 +33 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +49 -49
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +17 -17
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +13 -13
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/{PollResult.mjs → AccessResult.mjs} +62 -62
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/AccessResult.mjs.map +1 -0
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/DeviceCodeRequest.mjs +26 -26
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +54 -10
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs.map +1 -1
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +44 -44
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/ContributionId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs +55 -55
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +14 -14
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSetId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PairingRule.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyDetails.mjs +27 -27
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +5 -5
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/SecretId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs +16 -16
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs +21 -21
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/PlayerId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/callsign/CallSign.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/user/UserId.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +27 -27
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +68 -68
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +102 -102
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +23 -23
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +36 -36
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +47 -47
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +8 -8
- package/kotlin/apollo-kotlin-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs +103 -103
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloRequest.mjs +53 -53
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloResponse.mjs +60 -60
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Assertions.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs +3 -3
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +41 -41
- 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 +7 -7
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ExecutionContext.mjs +21 -21
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Operations.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Optional.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/DefaultHttpRequestComposer.mjs +125 -125
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/Http.mjs +54 -54
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/HttpHeaders.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/internal/ResponseParser.mjs +24 -24
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +84 -84
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSourceJsonReader.mjs +270 -270
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonNumber.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonWriters.mjs +12 -12
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs +94 -94
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonWriter.mjs +48 -48
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/FileUploadAwareJsonWriter.mjs +35 -35
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/JsonScope.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs +51 -51
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +17 -17
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +204 -204
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/NetworkInterceptor.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +39 -39
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/DeferredJsonMerger.mjs +27 -27
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +48 -48
- 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 +120 -120
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +11 -11
- 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 +142 -142
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +23 -23
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +44 -44
- 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 +93 -93
- 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 +132 -132
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +46 -46
- 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 +182 -182
- 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 +221 -221
- 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 +65 -65
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +21 -21
- 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 +114 -114
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +126 -126
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +57 -57
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +16 -16
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs +6 -6
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +10 -10
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +21 -21
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +9 -9
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/Parameters.mjs +9 -0
- package/kotlin/ktor-ktor-http/io/ktor/http/Parameters.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +3 -0
- package/kotlin/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs.map +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +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 +21 -21
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +54 -54
- 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 +208 -208
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +122 -122
- 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 +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +8 -8
- 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 +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +51 -51
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
- package/kotlin/okio-parent-okio/okio/Buffer.mjs +392 -392
- package/kotlin/okio-parent-okio/okio/ByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs +15 -15
- package/kotlin/okio-parent-okio/okio/Okio.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/Options.mjs +23 -23
- package/kotlin/okio-parent-okio/okio/RealBufferedSink.mjs +37 -37
- package/kotlin/okio-parent-okio/okio/RealBufferedSource.mjs +61 -61
- package/kotlin/okio-parent-okio/okio/Segment.mjs +65 -65
- package/kotlin/okio-parent-okio/okio/SegmentPool.mjs +3 -3
- package/kotlin/okio-parent-okio/okio/SegmentedByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/Util.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/-Utf8.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/Buffer.mjs +21 -21
- package/kotlin/okio-parent-okio/okio/internal/ByteString.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/SegmentedByteString.mjs +1 -1
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +4 -4
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +85 -85
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +28 -28
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +22 -22
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +26 -26
- package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +4 -4
- package/kotlin/uuid/com/benasher44/uuid/uuid.mjs +11 -11
- package/package.json +1 -1
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/PollResult.mjs.map +0 -1
package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs
CHANGED
|
@@ -22,20 +22,20 @@ function Data() {
|
|
|
22
22
|
if (DataClass === VOID) {
|
|
23
23
|
class $ {
|
|
24
24
|
constructor(party) {
|
|
25
|
-
this.
|
|
25
|
+
this.w5h_1 = party;
|
|
26
26
|
}
|
|
27
27
|
toString() {
|
|
28
|
-
return 'Data(party=' + toString(this.
|
|
28
|
+
return 'Data(party=' + toString(this.w5h_1) + ')';
|
|
29
29
|
}
|
|
30
30
|
hashCode() {
|
|
31
|
-
return this.
|
|
31
|
+
return this.w5h_1 == null ? 0 : this.w5h_1.hashCode();
|
|
32
32
|
}
|
|
33
33
|
equals(other) {
|
|
34
34
|
if (this === other)
|
|
35
35
|
return true;
|
|
36
36
|
if (!(other instanceof Data()))
|
|
37
37
|
return false;
|
|
38
|
-
if (!equals(this.
|
|
38
|
+
if (!equals(this.w5h_1, other.w5h_1))
|
|
39
39
|
return false;
|
|
40
40
|
return true;
|
|
41
41
|
}
|
|
@@ -50,20 +50,20 @@ function Party() {
|
|
|
50
50
|
if (PartyClass === VOID) {
|
|
51
51
|
class $ {
|
|
52
52
|
constructor(currentPairingSet) {
|
|
53
|
-
this.
|
|
53
|
+
this.x5h_1 = currentPairingSet;
|
|
54
54
|
}
|
|
55
55
|
toString() {
|
|
56
|
-
return 'Party(currentPairingSet=' + toString(this.
|
|
56
|
+
return 'Party(currentPairingSet=' + toString(this.x5h_1) + ')';
|
|
57
57
|
}
|
|
58
58
|
hashCode() {
|
|
59
|
-
return this.
|
|
59
|
+
return this.x5h_1 == null ? 0 : this.x5h_1.hashCode();
|
|
60
60
|
}
|
|
61
61
|
equals(other) {
|
|
62
62
|
if (this === other)
|
|
63
63
|
return true;
|
|
64
64
|
if (!(other instanceof Party()))
|
|
65
65
|
return false;
|
|
66
|
-
if (!equals(this.
|
|
66
|
+
if (!equals(this.x5h_1, other.x5h_1))
|
|
67
67
|
return false;
|
|
68
68
|
return true;
|
|
69
69
|
}
|
|
@@ -78,15 +78,15 @@ function CurrentPairingSet() {
|
|
|
78
78
|
if (CurrentPairingSetClass === VOID) {
|
|
79
79
|
class $ {
|
|
80
80
|
constructor(__typename, pairingSetDetails) {
|
|
81
|
-
this.
|
|
82
|
-
this.
|
|
81
|
+
this.y5h_1 = __typename;
|
|
82
|
+
this.z5h_1 = pairingSetDetails;
|
|
83
83
|
}
|
|
84
84
|
toString() {
|
|
85
|
-
return 'CurrentPairingSet(__typename=' + this.
|
|
85
|
+
return 'CurrentPairingSet(__typename=' + this.y5h_1 + ', pairingSetDetails=' + this.z5h_1.toString() + ')';
|
|
86
86
|
}
|
|
87
87
|
hashCode() {
|
|
88
|
-
var result = getStringHashCode(this.
|
|
89
|
-
result = imul(result, 31) + this.
|
|
88
|
+
var result = getStringHashCode(this.y5h_1);
|
|
89
|
+
result = imul(result, 31) + this.z5h_1.hashCode() | 0;
|
|
90
90
|
return result;
|
|
91
91
|
}
|
|
92
92
|
equals(other) {
|
|
@@ -94,9 +94,9 @@ function CurrentPairingSet() {
|
|
|
94
94
|
return true;
|
|
95
95
|
if (!(other instanceof CurrentPairingSet()))
|
|
96
96
|
return false;
|
|
97
|
-
if (!(this.
|
|
97
|
+
if (!(this.y5h_1 === other.y5h_1))
|
|
98
98
|
return false;
|
|
99
|
-
if (!this.
|
|
99
|
+
if (!this.z5h_1.equals(other.z5h_1))
|
|
100
100
|
return false;
|
|
101
101
|
return true;
|
|
102
102
|
}
|
|
@@ -111,10 +111,10 @@ function Companion() {
|
|
|
111
111
|
if (CompanionClass === VOID) {
|
|
112
112
|
class $ {
|
|
113
113
|
constructor() {
|
|
114
|
-
this.
|
|
115
|
-
this.
|
|
114
|
+
this.a5i_1 = 'f31bee5b6b3a5b24aed38eae24781fdc373f90cd0b6ba7b5c031a28e15fcb902';
|
|
115
|
+
this.b5i_1 = 'currentPairAssignmentsQuery';
|
|
116
116
|
}
|
|
117
|
-
|
|
117
|
+
c5i() {
|
|
118
118
|
return 'query currentPairAssignmentsQuery($partyId: PartyId!) { party(input: { partyId: $partyId } ) { currentPairingSet { __typename ...PairingSetDetails } } } fragment PairingSetDetails on PairingSet { id partyId date pairs { players { id name email badge avatarType callSignAdjective callSignNoun imageURL unvalidatedEmails pins { icon id name } } pins { icon id name } } discordMessageId slackMessageId }';
|
|
119
119
|
}
|
|
120
120
|
}
|
|
@@ -132,41 +132,41 @@ function CurrentPairAssignmentsQuery() {
|
|
|
132
132
|
if (CurrentPairAssignmentsQueryClass === VOID) {
|
|
133
133
|
class $ {
|
|
134
134
|
constructor(partyId) {
|
|
135
|
-
this.
|
|
135
|
+
this.d5i_1 = partyId;
|
|
136
136
|
}
|
|
137
|
-
|
|
137
|
+
e5i() {
|
|
138
138
|
return 'f31bee5b6b3a5b24aed38eae24781fdc373f90cd0b6ba7b5c031a28e15fcb902';
|
|
139
139
|
}
|
|
140
140
|
operationId() {
|
|
141
|
-
return this.
|
|
141
|
+
return this.e5i();
|
|
142
142
|
}
|
|
143
|
-
|
|
144
|
-
return Companion_instance.
|
|
143
|
+
j4s() {
|
|
144
|
+
return Companion_instance.c5i();
|
|
145
145
|
}
|
|
146
|
-
|
|
146
|
+
f5i() {
|
|
147
147
|
return 'currentPairAssignmentsQuery';
|
|
148
148
|
}
|
|
149
149
|
operationName() {
|
|
150
|
-
return this.
|
|
150
|
+
return this.f5i();
|
|
151
151
|
}
|
|
152
|
-
|
|
153
|
-
CurrentPairAssignmentsQuery_VariablesAdapter_instance.
|
|
152
|
+
g4r(writer, customScalarAdapters, withDefaultValues) {
|
|
153
|
+
CurrentPairAssignmentsQuery_VariablesAdapter_instance.g5i(writer, this, customScalarAdapters, withDefaultValues);
|
|
154
154
|
}
|
|
155
|
-
|
|
155
|
+
f4r() {
|
|
156
156
|
return obj(Data_getInstance());
|
|
157
157
|
}
|
|
158
158
|
toString() {
|
|
159
|
-
return 'CurrentPairAssignmentsQuery(partyId=' + this.
|
|
159
|
+
return 'CurrentPairAssignmentsQuery(partyId=' + this.d5i_1.toString() + ')';
|
|
160
160
|
}
|
|
161
161
|
hashCode() {
|
|
162
|
-
return this.
|
|
162
|
+
return this.d5i_1.hashCode();
|
|
163
163
|
}
|
|
164
164
|
equals(other) {
|
|
165
165
|
if (this === other)
|
|
166
166
|
return true;
|
|
167
167
|
if (!(other instanceof CurrentPairAssignmentsQuery()))
|
|
168
168
|
return false;
|
|
169
|
-
if (!this.
|
|
169
|
+
if (!this.d5i_1.equals(other.d5i_1))
|
|
170
170
|
return false;
|
|
171
171
|
return true;
|
|
172
172
|
}
|
|
@@ -22,20 +22,20 @@ function Data() {
|
|
|
22
22
|
if (DataClass === VOID) {
|
|
23
23
|
class $ {
|
|
24
24
|
constructor(party) {
|
|
25
|
-
this.
|
|
25
|
+
this.h5i_1 = party;
|
|
26
26
|
}
|
|
27
27
|
toString() {
|
|
28
|
-
return 'Data(party=' + toString(this.
|
|
28
|
+
return 'Data(party=' + toString(this.h5i_1) + ')';
|
|
29
29
|
}
|
|
30
30
|
hashCode() {
|
|
31
|
-
return this.
|
|
31
|
+
return this.h5i_1 == null ? 0 : this.h5i_1.hashCode();
|
|
32
32
|
}
|
|
33
33
|
equals(other) {
|
|
34
34
|
if (this === other)
|
|
35
35
|
return true;
|
|
36
36
|
if (!(other instanceof Data()))
|
|
37
37
|
return false;
|
|
38
|
-
if (!equals(this.
|
|
38
|
+
if (!equals(this.h5i_1, other.h5i_1))
|
|
39
39
|
return false;
|
|
40
40
|
return true;
|
|
41
41
|
}
|
|
@@ -50,15 +50,15 @@ function Party() {
|
|
|
50
50
|
if (PartyClass === VOID) {
|
|
51
51
|
class $ {
|
|
52
52
|
constructor(__typename, partyDetails) {
|
|
53
|
-
this.
|
|
54
|
-
this.
|
|
53
|
+
this.i5i_1 = __typename;
|
|
54
|
+
this.j5i_1 = partyDetails;
|
|
55
55
|
}
|
|
56
56
|
toString() {
|
|
57
|
-
return 'Party(__typename=' + this.
|
|
57
|
+
return 'Party(__typename=' + this.i5i_1 + ', partyDetails=' + this.j5i_1.toString() + ')';
|
|
58
58
|
}
|
|
59
59
|
hashCode() {
|
|
60
|
-
var result = getStringHashCode(this.
|
|
61
|
-
result = imul(result, 31) + this.
|
|
60
|
+
var result = getStringHashCode(this.i5i_1);
|
|
61
|
+
result = imul(result, 31) + this.j5i_1.hashCode() | 0;
|
|
62
62
|
return result;
|
|
63
63
|
}
|
|
64
64
|
equals(other) {
|
|
@@ -66,9 +66,9 @@ function Party() {
|
|
|
66
66
|
return true;
|
|
67
67
|
if (!(other instanceof Party()))
|
|
68
68
|
return false;
|
|
69
|
-
if (!(this.
|
|
69
|
+
if (!(this.i5i_1 === other.i5i_1))
|
|
70
70
|
return false;
|
|
71
|
-
if (!this.
|
|
71
|
+
if (!this.j5i_1.equals(other.j5i_1))
|
|
72
72
|
return false;
|
|
73
73
|
return true;
|
|
74
74
|
}
|
|
@@ -83,10 +83,10 @@ function Companion() {
|
|
|
83
83
|
if (CompanionClass === VOID) {
|
|
84
84
|
class $ {
|
|
85
85
|
constructor() {
|
|
86
|
-
this.
|
|
87
|
-
this.
|
|
86
|
+
this.k5i_1 = '51966f7540d1babb7f59d1462dabc68b706116a0a0f0d287d12f94ae170a0cfe';
|
|
87
|
+
this.l5i_1 = 'partyDetailsQuery';
|
|
88
88
|
}
|
|
89
|
-
|
|
89
|
+
c5i() {
|
|
90
90
|
return 'query partyDetailsQuery($partyId: PartyId!) { party(input: { partyId: $partyId } ) { __typename ...PartyDetails } } fragment PartyDetails on Party { id name email pairingRule badgesEnabled defaultBadgeName alternateBadgeName callSignsEnabled animationsEnabled animationSpeed }';
|
|
91
91
|
}
|
|
92
92
|
}
|
|
@@ -104,41 +104,41 @@ function PartyDetailsQuery() {
|
|
|
104
104
|
if (PartyDetailsQueryClass === VOID) {
|
|
105
105
|
class $ {
|
|
106
106
|
constructor(partyId) {
|
|
107
|
-
this.
|
|
107
|
+
this.m5i_1 = partyId;
|
|
108
108
|
}
|
|
109
|
-
|
|
109
|
+
e5i() {
|
|
110
110
|
return '51966f7540d1babb7f59d1462dabc68b706116a0a0f0d287d12f94ae170a0cfe';
|
|
111
111
|
}
|
|
112
112
|
operationId() {
|
|
113
|
-
return this.
|
|
113
|
+
return this.e5i();
|
|
114
114
|
}
|
|
115
|
-
|
|
116
|
-
return Companion_instance.
|
|
115
|
+
j4s() {
|
|
116
|
+
return Companion_instance.c5i();
|
|
117
117
|
}
|
|
118
|
-
|
|
118
|
+
f5i() {
|
|
119
119
|
return 'partyDetailsQuery';
|
|
120
120
|
}
|
|
121
121
|
operationName() {
|
|
122
|
-
return this.
|
|
122
|
+
return this.f5i();
|
|
123
123
|
}
|
|
124
|
-
|
|
125
|
-
PartyDetailsQuery_VariablesAdapter_instance.
|
|
124
|
+
g4r(writer, customScalarAdapters, withDefaultValues) {
|
|
125
|
+
PartyDetailsQuery_VariablesAdapter_instance.n5i(writer, this, customScalarAdapters, withDefaultValues);
|
|
126
126
|
}
|
|
127
|
-
|
|
127
|
+
f4r() {
|
|
128
128
|
return obj(Data_getInstance());
|
|
129
129
|
}
|
|
130
130
|
toString() {
|
|
131
|
-
return 'PartyDetailsQuery(partyId=' + this.
|
|
131
|
+
return 'PartyDetailsQuery(partyId=' + this.m5i_1.toString() + ')';
|
|
132
132
|
}
|
|
133
133
|
hashCode() {
|
|
134
|
-
return this.
|
|
134
|
+
return this.m5i_1.hashCode();
|
|
135
135
|
}
|
|
136
136
|
equals(other) {
|
|
137
137
|
if (this === other)
|
|
138
138
|
return true;
|
|
139
139
|
if (!(other instanceof PartyDetailsQuery()))
|
|
140
140
|
return false;
|
|
141
|
-
if (!this.
|
|
141
|
+
if (!this.m5i_1.equals(other.m5i_1))
|
|
142
142
|
return false;
|
|
143
143
|
return true;
|
|
144
144
|
}
|
|
@@ -17,20 +17,20 @@ function Data() {
|
|
|
17
17
|
if (DataClass === VOID) {
|
|
18
18
|
class $ {
|
|
19
19
|
constructor(saveContribution) {
|
|
20
|
-
this.
|
|
20
|
+
this.o5i_1 = saveContribution;
|
|
21
21
|
}
|
|
22
22
|
toString() {
|
|
23
|
-
return 'Data(saveContribution=' + this.
|
|
23
|
+
return 'Data(saveContribution=' + this.o5i_1 + ')';
|
|
24
24
|
}
|
|
25
25
|
hashCode() {
|
|
26
|
-
return this.
|
|
26
|
+
return this.o5i_1 == null ? 0 : getBooleanHashCode(this.o5i_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.o5i_1 == other.o5i_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.p5i_1 = 'e10d9cbfa650257f640f5182d15931052152b7ef839d4588944c20b961836736';
|
|
49
|
+
this.q5i_1 = 'saveContribution';
|
|
50
50
|
}
|
|
51
|
-
|
|
51
|
+
c5i() {
|
|
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.r5i_1 = input;
|
|
70
70
|
}
|
|
71
|
-
|
|
71
|
+
e5i() {
|
|
72
72
|
return 'e10d9cbfa650257f640f5182d15931052152b7ef839d4588944c20b961836736';
|
|
73
73
|
}
|
|
74
74
|
operationId() {
|
|
75
|
-
return this.
|
|
75
|
+
return this.e5i();
|
|
76
76
|
}
|
|
77
|
-
|
|
78
|
-
return Companion_instance.
|
|
77
|
+
j4s() {
|
|
78
|
+
return Companion_instance.c5i();
|
|
79
79
|
}
|
|
80
|
-
|
|
80
|
+
f5i() {
|
|
81
81
|
return 'saveContribution';
|
|
82
82
|
}
|
|
83
83
|
operationName() {
|
|
84
|
-
return this.
|
|
84
|
+
return this.f5i();
|
|
85
85
|
}
|
|
86
|
-
|
|
87
|
-
SaveContributionMutation_VariablesAdapter_instance.
|
|
86
|
+
g4r(writer, customScalarAdapters, withDefaultValues) {
|
|
87
|
+
SaveContributionMutation_VariablesAdapter_instance.s5i(writer, this, customScalarAdapters, withDefaultValues);
|
|
88
88
|
}
|
|
89
|
-
|
|
89
|
+
f4r() {
|
|
90
90
|
return obj(Data_getInstance());
|
|
91
91
|
}
|
|
92
92
|
toString() {
|
|
93
|
-
return 'SaveContributionMutation(input=' + this.
|
|
93
|
+
return 'SaveContributionMutation(input=' + this.r5i_1.toString() + ')';
|
|
94
94
|
}
|
|
95
95
|
hashCode() {
|
|
96
|
-
return this.
|
|
96
|
+
return this.r5i_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.r5i_1.equals(other.r5i_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.t5i_1 = listOf('party');
|
|
30
30
|
}
|
|
31
|
-
|
|
31
|
+
g4k(reader, customScalarAdapters) {
|
|
32
32
|
var _party = null;
|
|
33
33
|
$l$loop: while (true) {
|
|
34
|
-
if (reader.
|
|
35
|
-
_party = nullable(obj(Party_getInstance())).
|
|
34
|
+
if (reader.v4w(this.t5i_1) === 0)
|
|
35
|
+
_party = nullable(obj(Party_getInstance())).g4k(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())).
|
|
41
|
+
u5i(writer, customScalarAdapters, value) {
|
|
42
|
+
writer.f4s('party');
|
|
43
|
+
nullable(obj(Party_getInstance())).k4k(writer, customScalarAdapters, value.w5h_1);
|
|
44
44
|
}
|
|
45
|
-
|
|
46
|
-
return this.
|
|
45
|
+
h4k(writer, customScalarAdapters, value) {
|
|
46
|
+
return this.u5i(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.v5i_1 = listOf('currentPairingSet');
|
|
67
67
|
}
|
|
68
|
-
|
|
68
|
+
g4k(reader, customScalarAdapters) {
|
|
69
69
|
var _currentPairingSet = null;
|
|
70
70
|
$l$loop: while (true) {
|
|
71
|
-
if (reader.
|
|
72
|
-
_currentPairingSet = nullable(obj(CurrentPairingSet_getInstance(), true)).
|
|
71
|
+
if (reader.v4w(this.v5i_1) === 0)
|
|
72
|
+
_currentPairingSet = nullable(obj(CurrentPairingSet_getInstance(), true)).g4k(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)).
|
|
78
|
+
w5i(writer, customScalarAdapters, value) {
|
|
79
|
+
writer.f4s('currentPairingSet');
|
|
80
|
+
nullable(obj(CurrentPairingSet_getInstance(), true)).k4k(writer, customScalarAdapters, value.x5h_1);
|
|
81
81
|
}
|
|
82
|
-
|
|
83
|
-
return this.
|
|
82
|
+
h4k(writer, customScalarAdapters, value) {
|
|
83
|
+
return this.w5i(writer, customScalarAdapters, value instanceof Party() ? value : THROW_CCE());
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
initMetadataForObject($, 'Party', VOID, VOID, [Adapter()]);
|
|
@@ -100,18 +100,18 @@ function CurrentPairingSet_0() {
|
|
|
100
100
|
class $ {
|
|
101
101
|
constructor() {
|
|
102
102
|
CurrentPairingSet_instance = this;
|
|
103
|
-
this.
|
|
103
|
+
this.x5i_1 = listOf('__typename');
|
|
104
104
|
}
|
|
105
|
-
|
|
105
|
+
g4k(reader, customScalarAdapters) {
|
|
106
106
|
var __typename = null;
|
|
107
107
|
$l$loop: while (true) {
|
|
108
|
-
if (reader.
|
|
109
|
-
__typename = get_StringAdapter().
|
|
108
|
+
if (reader.v4w(this.x5i_1) === 0)
|
|
109
|
+
__typename = get_StringAdapter().g4k(reader, customScalarAdapters);
|
|
110
110
|
else
|
|
111
111
|
break $l$loop;
|
|
112
112
|
}
|
|
113
|
-
reader.
|
|
114
|
-
var _pairingSetDetails = PairingSetDetails_getInstance().
|
|
113
|
+
reader.w4w();
|
|
114
|
+
var _pairingSetDetails = PairingSetDetails_getInstance().g4k(reader, customScalarAdapters);
|
|
115
115
|
var tmp1_elvis_lhs = __typename;
|
|
116
116
|
var tmp;
|
|
117
117
|
if (tmp1_elvis_lhs == null) {
|
|
@@ -121,13 +121,13 @@ function CurrentPairingSet_0() {
|
|
|
121
121
|
}
|
|
122
122
|
return new (CurrentPairingSet())(tmp, _pairingSetDetails);
|
|
123
123
|
}
|
|
124
|
-
|
|
125
|
-
writer.
|
|
126
|
-
get_StringAdapter().
|
|
127
|
-
PairingSetDetails_getInstance().
|
|
124
|
+
z5i(writer, customScalarAdapters, value) {
|
|
125
|
+
writer.f4s('__typename');
|
|
126
|
+
get_StringAdapter().h4k(writer, customScalarAdapters, value.y5h_1);
|
|
127
|
+
PairingSetDetails_getInstance().a5j(writer, customScalarAdapters, value.z5h_1);
|
|
128
128
|
}
|
|
129
|
-
|
|
130
|
-
return this.
|
|
129
|
+
h4k(writer, customScalarAdapters, value) {
|
|
130
|
+
return this.z5i(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().
|
|
13
|
+
g5i(writer, value, customScalarAdapters, withDefaultValues) {
|
|
14
|
+
writer.f4s('partyId');
|
|
15
|
+
get_partyIdAdapter().h4k(writer, customScalarAdapters, value.d5i_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.b5j_1 = listOf('party');
|
|
29
29
|
}
|
|
30
|
-
|
|
30
|
+
g4k(reader, customScalarAdapters) {
|
|
31
31
|
var _party = null;
|
|
32
32
|
$l$loop: while (true) {
|
|
33
|
-
if (reader.
|
|
34
|
-
_party = nullable(obj(Party_getInstance(), true)).
|
|
33
|
+
if (reader.v4w(this.b5j_1) === 0)
|
|
34
|
+
_party = nullable(obj(Party_getInstance(), true)).g4k(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)).
|
|
40
|
+
c5j(writer, customScalarAdapters, value) {
|
|
41
|
+
writer.f4s('party');
|
|
42
|
+
nullable(obj(Party_getInstance(), true)).k4k(writer, customScalarAdapters, value.h5i_1);
|
|
43
43
|
}
|
|
44
|
-
|
|
45
|
-
return this.
|
|
44
|
+
h4k(writer, customScalarAdapters, value) {
|
|
45
|
+
return this.c5j(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
|
|
@@ -62,18 +62,18 @@ function Party_0() {
|
|
|
62
62
|
class $ {
|
|
63
63
|
constructor() {
|
|
64
64
|
Party_instance = this;
|
|
65
|
-
this.
|
|
65
|
+
this.d5j_1 = listOf('__typename');
|
|
66
66
|
}
|
|
67
|
-
|
|
67
|
+
g4k(reader, customScalarAdapters) {
|
|
68
68
|
var __typename = null;
|
|
69
69
|
$l$loop: while (true) {
|
|
70
|
-
if (reader.
|
|
71
|
-
__typename = get_StringAdapter().
|
|
70
|
+
if (reader.v4w(this.d5j_1) === 0)
|
|
71
|
+
__typename = get_StringAdapter().g4k(reader, customScalarAdapters);
|
|
72
72
|
else
|
|
73
73
|
break $l$loop;
|
|
74
74
|
}
|
|
75
|
-
reader.
|
|
76
|
-
var _partyDetails = PartyDetails_getInstance().
|
|
75
|
+
reader.w4w();
|
|
76
|
+
var _partyDetails = PartyDetails_getInstance().g4k(reader, customScalarAdapters);
|
|
77
77
|
var tmp1_elvis_lhs = __typename;
|
|
78
78
|
var tmp;
|
|
79
79
|
if (tmp1_elvis_lhs == null) {
|
|
@@ -83,13 +83,13 @@ function Party_0() {
|
|
|
83
83
|
}
|
|
84
84
|
return new (Party())(tmp, _partyDetails);
|
|
85
85
|
}
|
|
86
|
-
|
|
87
|
-
writer.
|
|
88
|
-
get_StringAdapter().
|
|
89
|
-
PartyDetails_getInstance().
|
|
86
|
+
f5j(writer, customScalarAdapters, value) {
|
|
87
|
+
writer.f4s('__typename');
|
|
88
|
+
get_StringAdapter().h4k(writer, customScalarAdapters, value.i5i_1);
|
|
89
|
+
PartyDetails_getInstance().g5j(writer, customScalarAdapters, value.j5i_1);
|
|
90
90
|
}
|
|
91
|
-
|
|
92
|
-
return this.
|
|
91
|
+
h4k(writer, customScalarAdapters, value) {
|
|
92
|
+
return this.f5j(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().
|
|
13
|
+
n5i(writer, value, customScalarAdapters, withDefaultValues) {
|
|
14
|
+
writer.f4s('partyId');
|
|
15
|
+
get_partyIdAdapter().h4k(writer, customScalarAdapters, value.m5i_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.h5j_1 = listOf('saveContribution');
|
|
20
20
|
}
|
|
21
|
-
|
|
21
|
+
g4k(reader, customScalarAdapters) {
|
|
22
22
|
var _saveContribution = null;
|
|
23
23
|
$l$loop: while (true) {
|
|
24
|
-
if (reader.
|
|
25
|
-
_saveContribution = get_NullableBooleanAdapter().
|
|
24
|
+
if (reader.v4w(this.h5j_1) === 0)
|
|
25
|
+
_saveContribution = get_NullableBooleanAdapter().g4k(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().
|
|
31
|
+
i5j(writer, customScalarAdapters, value) {
|
|
32
|
+
writer.f4s('saveContribution');
|
|
33
|
+
get_NullableBooleanAdapter().k4k(writer, customScalarAdapters, value.o5i_1);
|
|
34
34
|
}
|
|
35
|
-
|
|
36
|
-
return this.
|
|
35
|
+
h4k(writer, customScalarAdapters, value) {
|
|
36
|
+
return this.i5j(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).
|
|
14
|
+
s5i(writer, value, customScalarAdapters, withDefaultValues) {
|
|
15
|
+
writer.f4s('input');
|
|
16
|
+
obj(SaveContributionInput_InputAdapter_instance).h4k(writer, customScalarAdapters, value.r5i_1);
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
initMetadataForObject($, 'SaveContributionMutation_VariablesAdapter');
|