@continuous-excellence/coupling-cli 1.1.470 → 1.1.471
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 +12 -12
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +16 -16
- 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 +19 -19
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +2 -2
- 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 +30 -30
- 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 +12 -12
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +24 -24
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +48 -48
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +18 -18
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs.map +1 -1
- 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-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +8 -8
- 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 +4 -4
- 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 +28 -28
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +24 -24
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +16 -16
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +11 -11
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +2 -2
- 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 +44 -44
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +15 -15
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs +28 -28
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +13 -13
- 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 +41 -41
- 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 +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +201 -201
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +2 -2
- 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 +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +36 -36
- 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 +42 -42
- 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 +15 -15
- 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 +12 -12
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +4 -4
- 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 +102 -102
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +25 -25
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +141 -141
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +20 -20
- 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 +13 -13
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +42 -42
- 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 +110 -110
- 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 +206 -206
- 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 +230 -230
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +65 -65
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +25 -25
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +121 -121
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +134 -134
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +62 -62
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +19 -19
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs +34 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs.map +1 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +17 -28
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +29 -22
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +16 -7
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +33 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +7 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +13 -12
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggingClock.mjs +15 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggingClock.mjs.map +1 -0
- 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-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +2 -2
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +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 +79 -79
- 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 +233 -233
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +152 -152
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +18 -18
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +10 -10
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +56 -56
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +59 -59
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
- package/kotlin/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 +95 -95
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +37 -37
- package/package.json +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs +0 -15
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs.map +0 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +0 -34
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.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.u5k_1 = party;
|
|
26
26
|
}
|
|
27
27
|
toString() {
|
|
28
|
-
return 'Data(party=' + toString(this.
|
|
28
|
+
return 'Data(party=' + toString(this.u5k_1) + ')';
|
|
29
29
|
}
|
|
30
30
|
hashCode() {
|
|
31
|
-
return this.
|
|
31
|
+
return this.u5k_1 == null ? 0 : this.u5k_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.u5k_1, other.u5k_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.v5k_1 = currentPairingSet;
|
|
54
54
|
}
|
|
55
55
|
toString() {
|
|
56
|
-
return 'Party(currentPairingSet=' + toString(this.
|
|
56
|
+
return 'Party(currentPairingSet=' + toString(this.v5k_1) + ')';
|
|
57
57
|
}
|
|
58
58
|
hashCode() {
|
|
59
|
-
return this.
|
|
59
|
+
return this.v5k_1 == null ? 0 : this.v5k_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.v5k_1, other.v5k_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.w5k_1 = __typename;
|
|
82
|
+
this.x5k_1 = pairingSetDetails;
|
|
83
83
|
}
|
|
84
84
|
toString() {
|
|
85
|
-
return 'CurrentPairingSet(__typename=' + this.
|
|
85
|
+
return 'CurrentPairingSet(__typename=' + this.w5k_1 + ', pairingSetDetails=' + this.x5k_1.toString() + ')';
|
|
86
86
|
}
|
|
87
87
|
hashCode() {
|
|
88
|
-
var result = getStringHashCode(this.
|
|
89
|
-
result = imul(result, 31) + this.
|
|
88
|
+
var result = getStringHashCode(this.w5k_1);
|
|
89
|
+
result = imul(result, 31) + this.x5k_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.w5k_1 === other.w5k_1))
|
|
98
98
|
return false;
|
|
99
|
-
if (!this.
|
|
99
|
+
if (!this.x5k_1.equals(other.x5k_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.y5k_1 = 'f31bee5b6b3a5b24aed38eae24781fdc373f90cd0b6ba7b5c031a28e15fcb902';
|
|
115
|
+
this.z5k_1 = 'currentPairAssignmentsQuery';
|
|
116
116
|
}
|
|
117
|
-
|
|
117
|
+
a5l() {
|
|
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.b5l_1 = partyId;
|
|
136
136
|
}
|
|
137
|
-
|
|
137
|
+
c5l() {
|
|
138
138
|
return 'f31bee5b6b3a5b24aed38eae24781fdc373f90cd0b6ba7b5c031a28e15fcb902';
|
|
139
139
|
}
|
|
140
140
|
operationId() {
|
|
141
|
-
return this.
|
|
141
|
+
return this.c5l();
|
|
142
142
|
}
|
|
143
143
|
x4u() {
|
|
144
|
-
return Companion_instance.
|
|
144
|
+
return Companion_instance.a5l();
|
|
145
145
|
}
|
|
146
|
-
|
|
146
|
+
d5l() {
|
|
147
147
|
return 'currentPairAssignmentsQuery';
|
|
148
148
|
}
|
|
149
149
|
operationName() {
|
|
150
|
-
return this.
|
|
150
|
+
return this.d5l();
|
|
151
151
|
}
|
|
152
152
|
u4t(writer, customScalarAdapters, withDefaultValues) {
|
|
153
|
-
CurrentPairAssignmentsQuery_VariablesAdapter_instance.
|
|
153
|
+
CurrentPairAssignmentsQuery_VariablesAdapter_instance.e5l(writer, this, customScalarAdapters, withDefaultValues);
|
|
154
154
|
}
|
|
155
155
|
t4t() {
|
|
156
156
|
return obj(Data_getInstance());
|
|
157
157
|
}
|
|
158
158
|
toString() {
|
|
159
|
-
return 'CurrentPairAssignmentsQuery(partyId=' + this.
|
|
159
|
+
return 'CurrentPairAssignmentsQuery(partyId=' + this.b5l_1.toString() + ')';
|
|
160
160
|
}
|
|
161
161
|
hashCode() {
|
|
162
|
-
return this.
|
|
162
|
+
return this.b5l_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.b5l_1.equals(other.b5l_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.f5l_1 = party;
|
|
26
26
|
}
|
|
27
27
|
toString() {
|
|
28
|
-
return 'Data(party=' + toString(this.
|
|
28
|
+
return 'Data(party=' + toString(this.f5l_1) + ')';
|
|
29
29
|
}
|
|
30
30
|
hashCode() {
|
|
31
|
-
return this.
|
|
31
|
+
return this.f5l_1 == null ? 0 : this.f5l_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.f5l_1, other.f5l_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.g5l_1 = __typename;
|
|
54
|
+
this.h5l_1 = partyDetails;
|
|
55
55
|
}
|
|
56
56
|
toString() {
|
|
57
|
-
return 'Party(__typename=' + this.
|
|
57
|
+
return 'Party(__typename=' + this.g5l_1 + ', partyDetails=' + this.h5l_1.toString() + ')';
|
|
58
58
|
}
|
|
59
59
|
hashCode() {
|
|
60
|
-
var result = getStringHashCode(this.
|
|
61
|
-
result = imul(result, 31) + this.
|
|
60
|
+
var result = getStringHashCode(this.g5l_1);
|
|
61
|
+
result = imul(result, 31) + this.h5l_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.g5l_1 === other.g5l_1))
|
|
70
70
|
return false;
|
|
71
|
-
if (!this.
|
|
71
|
+
if (!this.h5l_1.equals(other.h5l_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.i5l_1 = '51966f7540d1babb7f59d1462dabc68b706116a0a0f0d287d12f94ae170a0cfe';
|
|
87
|
+
this.j5l_1 = 'partyDetailsQuery';
|
|
88
88
|
}
|
|
89
|
-
|
|
89
|
+
a5l() {
|
|
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.k5l_1 = partyId;
|
|
108
108
|
}
|
|
109
|
-
|
|
109
|
+
c5l() {
|
|
110
110
|
return '51966f7540d1babb7f59d1462dabc68b706116a0a0f0d287d12f94ae170a0cfe';
|
|
111
111
|
}
|
|
112
112
|
operationId() {
|
|
113
|
-
return this.
|
|
113
|
+
return this.c5l();
|
|
114
114
|
}
|
|
115
115
|
x4u() {
|
|
116
|
-
return Companion_instance.
|
|
116
|
+
return Companion_instance.a5l();
|
|
117
117
|
}
|
|
118
|
-
|
|
118
|
+
d5l() {
|
|
119
119
|
return 'partyDetailsQuery';
|
|
120
120
|
}
|
|
121
121
|
operationName() {
|
|
122
|
-
return this.
|
|
122
|
+
return this.d5l();
|
|
123
123
|
}
|
|
124
124
|
u4t(writer, customScalarAdapters, withDefaultValues) {
|
|
125
|
-
PartyDetailsQuery_VariablesAdapter_instance.
|
|
125
|
+
PartyDetailsQuery_VariablesAdapter_instance.l5l(writer, this, customScalarAdapters, withDefaultValues);
|
|
126
126
|
}
|
|
127
127
|
t4t() {
|
|
128
128
|
return obj(Data_getInstance());
|
|
129
129
|
}
|
|
130
130
|
toString() {
|
|
131
|
-
return 'PartyDetailsQuery(partyId=' + this.
|
|
131
|
+
return 'PartyDetailsQuery(partyId=' + this.k5l_1.toString() + ')';
|
|
132
132
|
}
|
|
133
133
|
hashCode() {
|
|
134
|
-
return this.
|
|
134
|
+
return this.k5l_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.k5l_1.equals(other.k5l_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.m5l_1 = saveContribution;
|
|
21
21
|
}
|
|
22
22
|
toString() {
|
|
23
|
-
return 'Data(saveContribution=' + this.
|
|
23
|
+
return 'Data(saveContribution=' + this.m5l_1 + ')';
|
|
24
24
|
}
|
|
25
25
|
hashCode() {
|
|
26
|
-
return this.
|
|
26
|
+
return this.m5l_1 == null ? 0 : getBooleanHashCode(this.m5l_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.m5l_1 == other.m5l_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.n5l_1 = 'e10d9cbfa650257f640f5182d15931052152b7ef839d4588944c20b961836736';
|
|
49
|
+
this.o5l_1 = 'saveContribution';
|
|
50
50
|
}
|
|
51
|
-
|
|
51
|
+
a5l() {
|
|
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.p5l_1 = input;
|
|
70
70
|
}
|
|
71
|
-
|
|
71
|
+
c5l() {
|
|
72
72
|
return 'e10d9cbfa650257f640f5182d15931052152b7ef839d4588944c20b961836736';
|
|
73
73
|
}
|
|
74
74
|
operationId() {
|
|
75
|
-
return this.
|
|
75
|
+
return this.c5l();
|
|
76
76
|
}
|
|
77
77
|
x4u() {
|
|
78
|
-
return Companion_instance.
|
|
78
|
+
return Companion_instance.a5l();
|
|
79
79
|
}
|
|
80
|
-
|
|
80
|
+
d5l() {
|
|
81
81
|
return 'saveContribution';
|
|
82
82
|
}
|
|
83
83
|
operationName() {
|
|
84
|
-
return this.
|
|
84
|
+
return this.d5l();
|
|
85
85
|
}
|
|
86
86
|
u4t(writer, customScalarAdapters, withDefaultValues) {
|
|
87
|
-
SaveContributionMutation_VariablesAdapter_instance.
|
|
87
|
+
SaveContributionMutation_VariablesAdapter_instance.q5l(writer, this, customScalarAdapters, withDefaultValues);
|
|
88
88
|
}
|
|
89
89
|
t4t() {
|
|
90
90
|
return obj(Data_getInstance());
|
|
91
91
|
}
|
|
92
92
|
toString() {
|
|
93
|
-
return 'SaveContributionMutation(input=' + this.
|
|
93
|
+
return 'SaveContributionMutation(input=' + this.p5l_1.toString() + ')';
|
|
94
94
|
}
|
|
95
95
|
hashCode() {
|
|
96
|
-
return this.
|
|
96
|
+
return this.p5l_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.p5l_1.equals(other.p5l_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.r5l_1 = listOf('party');
|
|
30
30
|
}
|
|
31
31
|
t4m(reader, customScalarAdapters) {
|
|
32
32
|
var _party = null;
|
|
33
33
|
$l$loop: while (true) {
|
|
34
|
-
if (reader.i4z(this.
|
|
34
|
+
if (reader.i4z(this.r5l_1) === 0)
|
|
35
35
|
_party = nullable(obj(Party_getInstance())).t4m(reader, customScalarAdapters);
|
|
36
36
|
else
|
|
37
37
|
break $l$loop;
|
|
38
38
|
}
|
|
39
39
|
return new (Data())(_party);
|
|
40
40
|
}
|
|
41
|
-
|
|
41
|
+
s5l(writer, customScalarAdapters, value) {
|
|
42
42
|
writer.t4u('party');
|
|
43
|
-
nullable(obj(Party_getInstance())).x4m(writer, customScalarAdapters, value.
|
|
43
|
+
nullable(obj(Party_getInstance())).x4m(writer, customScalarAdapters, value.u5k_1);
|
|
44
44
|
}
|
|
45
45
|
u4m(writer, customScalarAdapters, value) {
|
|
46
|
-
return this.
|
|
46
|
+
return this.s5l(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.t5l_1 = listOf('currentPairingSet');
|
|
67
67
|
}
|
|
68
68
|
t4m(reader, customScalarAdapters) {
|
|
69
69
|
var _currentPairingSet = null;
|
|
70
70
|
$l$loop: while (true) {
|
|
71
|
-
if (reader.i4z(this.
|
|
71
|
+
if (reader.i4z(this.t5l_1) === 0)
|
|
72
72
|
_currentPairingSet = nullable(obj(CurrentPairingSet_getInstance(), true)).t4m(reader, customScalarAdapters);
|
|
73
73
|
else
|
|
74
74
|
break $l$loop;
|
|
75
75
|
}
|
|
76
76
|
return new (Party())(_currentPairingSet);
|
|
77
77
|
}
|
|
78
|
-
|
|
78
|
+
u5l(writer, customScalarAdapters, value) {
|
|
79
79
|
writer.t4u('currentPairingSet');
|
|
80
|
-
nullable(obj(CurrentPairingSet_getInstance(), true)).x4m(writer, customScalarAdapters, value.
|
|
80
|
+
nullable(obj(CurrentPairingSet_getInstance(), true)).x4m(writer, customScalarAdapters, value.v5k_1);
|
|
81
81
|
}
|
|
82
82
|
u4m(writer, customScalarAdapters, value) {
|
|
83
|
-
return this.
|
|
83
|
+
return this.u5l(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.v5l_1 = listOf('__typename');
|
|
104
104
|
}
|
|
105
105
|
t4m(reader, customScalarAdapters) {
|
|
106
106
|
var __typename = null;
|
|
107
107
|
$l$loop: while (true) {
|
|
108
|
-
if (reader.i4z(this.
|
|
108
|
+
if (reader.i4z(this.v5l_1) === 0)
|
|
109
109
|
__typename = get_StringAdapter().t4m(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
|
-
|
|
124
|
+
x5l(writer, customScalarAdapters, value) {
|
|
125
125
|
writer.t4u('__typename');
|
|
126
|
-
get_StringAdapter().u4m(writer, customScalarAdapters, value.
|
|
127
|
-
PairingSetDetails_getInstance().
|
|
126
|
+
get_StringAdapter().u4m(writer, customScalarAdapters, value.w5k_1);
|
|
127
|
+
PairingSetDetails_getInstance().y5l(writer, customScalarAdapters, value.x5k_1);
|
|
128
128
|
}
|
|
129
129
|
u4m(writer, customScalarAdapters, value) {
|
|
130
|
-
return this.
|
|
130
|
+
return this.x5l(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
|
-
|
|
13
|
+
e5l(writer, value, customScalarAdapters, withDefaultValues) {
|
|
14
14
|
writer.t4u('partyId');
|
|
15
|
-
get_partyIdAdapter().u4m(writer, customScalarAdapters, value.
|
|
15
|
+
get_partyIdAdapter().u4m(writer, customScalarAdapters, value.b5l_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.z5l_1 = listOf('party');
|
|
29
29
|
}
|
|
30
30
|
t4m(reader, customScalarAdapters) {
|
|
31
31
|
var _party = null;
|
|
32
32
|
$l$loop: while (true) {
|
|
33
|
-
if (reader.i4z(this.
|
|
33
|
+
if (reader.i4z(this.z5l_1) === 0)
|
|
34
34
|
_party = nullable(obj(Party_getInstance(), true)).t4m(reader, customScalarAdapters);
|
|
35
35
|
else
|
|
36
36
|
break $l$loop;
|
|
37
37
|
}
|
|
38
38
|
return new (Data())(_party);
|
|
39
39
|
}
|
|
40
|
-
|
|
40
|
+
a5m(writer, customScalarAdapters, value) {
|
|
41
41
|
writer.t4u('party');
|
|
42
|
-
nullable(obj(Party_getInstance(), true)).x4m(writer, customScalarAdapters, value.
|
|
42
|
+
nullable(obj(Party_getInstance(), true)).x4m(writer, customScalarAdapters, value.f5l_1);
|
|
43
43
|
}
|
|
44
44
|
u4m(writer, customScalarAdapters, value) {
|
|
45
|
-
return this.
|
|
45
|
+
return this.a5m(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.b5m_1 = listOf('__typename');
|
|
66
66
|
}
|
|
67
67
|
t4m(reader, customScalarAdapters) {
|
|
68
68
|
var __typename = null;
|
|
69
69
|
$l$loop: while (true) {
|
|
70
|
-
if (reader.i4z(this.
|
|
70
|
+
if (reader.i4z(this.b5m_1) === 0)
|
|
71
71
|
__typename = get_StringAdapter().t4m(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
|
-
|
|
86
|
+
d5m(writer, customScalarAdapters, value) {
|
|
87
87
|
writer.t4u('__typename');
|
|
88
|
-
get_StringAdapter().u4m(writer, customScalarAdapters, value.
|
|
89
|
-
PartyDetails_getInstance().
|
|
88
|
+
get_StringAdapter().u4m(writer, customScalarAdapters, value.g5l_1);
|
|
89
|
+
PartyDetails_getInstance().e5m(writer, customScalarAdapters, value.h5l_1);
|
|
90
90
|
}
|
|
91
91
|
u4m(writer, customScalarAdapters, value) {
|
|
92
|
-
return this.
|
|
92
|
+
return this.d5m(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
|
-
|
|
13
|
+
l5l(writer, value, customScalarAdapters, withDefaultValues) {
|
|
14
14
|
writer.t4u('partyId');
|
|
15
|
-
get_partyIdAdapter().u4m(writer, customScalarAdapters, value.
|
|
15
|
+
get_partyIdAdapter().u4m(writer, customScalarAdapters, value.k5l_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.f5m_1 = listOf('saveContribution');
|
|
20
20
|
}
|
|
21
21
|
t4m(reader, customScalarAdapters) {
|
|
22
22
|
var _saveContribution = null;
|
|
23
23
|
$l$loop: while (true) {
|
|
24
|
-
if (reader.i4z(this.
|
|
24
|
+
if (reader.i4z(this.f5m_1) === 0)
|
|
25
25
|
_saveContribution = get_NullableBooleanAdapter().t4m(reader, customScalarAdapters);
|
|
26
26
|
else
|
|
27
27
|
break $l$loop;
|
|
28
28
|
}
|
|
29
29
|
return new (Data())(_saveContribution);
|
|
30
30
|
}
|
|
31
|
-
|
|
31
|
+
g5m(writer, customScalarAdapters, value) {
|
|
32
32
|
writer.t4u('saveContribution');
|
|
33
|
-
get_NullableBooleanAdapter().x4m(writer, customScalarAdapters, value.
|
|
33
|
+
get_NullableBooleanAdapter().x4m(writer, customScalarAdapters, value.m5l_1);
|
|
34
34
|
}
|
|
35
35
|
u4m(writer, customScalarAdapters, value) {
|
|
36
|
-
return this.
|
|
36
|
+
return this.g5m(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
|
-
|
|
14
|
+
q5l(writer, value, customScalarAdapters, withDefaultValues) {
|
|
15
15
|
writer.t4u('input');
|
|
16
|
-
obj(SaveContributionInput_InputAdapter_instance).u4m(writer, customScalarAdapters, value.
|
|
16
|
+
obj(SaveContributionInput_InputAdapter_instance).u4m(writer, customScalarAdapters, value.p5l_1);
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
initMetadataForObject($, 'SaveContributionMutation_VariablesAdapter');
|