@continuous-excellence/coupling-cli 1.1.518 → 1.1.520
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 +35 -35
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +15 -15
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +19 -19
- 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 +12 -12
- 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 +43 -43
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +26 -26
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +38 -38
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.js.mjs +15 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.js.mjs.map +1 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.mjs +328 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.mjs.map +1 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +38 -37
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +17 -17
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +32 -32
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +56 -56
- 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-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +108 -0
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs.map +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/ContributionId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs +57 -57
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +16 -16
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSetId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PairingRule.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyDetails.mjs +34 -34
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/SecretId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs +17 -17
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs +28 -28
- 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 +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 +15 -15
- 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 +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/ContributionDetailsMapper.mjs +32 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/ContributionDetailsMapper.mjs.map +1 -0
- 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/PartyContributionReportContributionsQuery.mjs +229 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyContributionReportContributionsQuery.mjs.map +1 -0
- 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/PartyContributionReportContributionsQuery_ResponseAdapter.mjs +196 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_ResponseAdapter.mjs.map +1 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_VariablesAdapter.mjs +48 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_VariablesAdapter.mjs.map +1 -0
- 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/ContributionDetails.mjs +127 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetails.mjs.map +1 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.mjs +199 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.mjs.map +1 -0
- 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 +46 -46
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs +134 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs.map +1 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionsInput.mjs +22 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionsInput.mjs.map +1 -0
- 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/ContributionWindow_ResponseAdapter.mjs +50 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionWindow_ResponseAdapter.mjs.map +1 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionsInput_InputAdapter.mjs +60 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionsInput_InputAdapter.mjs.map +1 -0
- 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-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +208 -208
- 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 +11 -11
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +31 -31
- 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 +18 -18
- 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 +43 -43
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +7 -7
- 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 +111 -111
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +95 -95
- 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 +209 -209
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +5 -5
- 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/command/SuspendingCliktCommand.mjs +2 -2
- 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/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +9 -9
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +25 -25
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +4 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +12 -12
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +11 -11
- 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/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 +60 -60
- 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 +234 -234
- 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 +7 -7
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +148 -108
- 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 +37 -37
- package/package.json +1 -1
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
import { listOf1jh22dvmctj1r as listOf } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs';
|
|
2
|
+
import {
|
|
3
|
+
get_NullableIntAdapter1poaa869odci7 as get_NullableIntAdapter,
|
|
4
|
+
nullable1in0t8o94jx9t as nullable,
|
|
5
|
+
get_NullableStringAdapter3fffxc67fmluc as get_NullableStringAdapter,
|
|
6
|
+
get_StringAdapter1plpsgiy8rwhj as get_StringAdapter,
|
|
7
|
+
list2lpjhmv1d2k19 as list,
|
|
8
|
+
} from '../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs';
|
|
9
|
+
import { KotlinInstantAdapter_instancedmy0d2wf294o as KotlinInstantAdapter_instance } from '../../../../../../../apollo-kotlin-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs';
|
|
10
|
+
import {
|
|
11
|
+
KotlinDurationAdapter_instance1lab9178abi05 as KotlinDurationAdapter_instance,
|
|
12
|
+
get_contributionAdapter2matul6niev52 as get_contributionAdapter,
|
|
13
|
+
} from '../../adapter/Adapter.mjs';
|
|
14
|
+
import { missingField4n9ldh7pi82p as missingField } from '../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/Assertions.mjs';
|
|
15
|
+
import { ContributionDetailsnivtoltwsbs6 as ContributionDetails } from './ContributionDetails.mjs';
|
|
16
|
+
import { Unit_instancev9v8hjid95df as Unit_instance } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
17
|
+
import { Duration5ynfiptaqcrg as Duration } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/time/Duration.mjs';
|
|
18
|
+
import { THROW_CCE2g6jy02ryeudk as THROW_CCE } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
|
|
19
|
+
import { Adapter1t72m9xaryzfb as Adapter } from '../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapter.mjs';
|
|
20
|
+
import { initMetadataForObject1cxne3s9w65el as initMetadataForObject } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
21
|
+
import { VOID3gxj6tk5isa35 as VOID } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
22
|
+
//region block: imports
|
|
23
|
+
//endregion
|
|
24
|
+
//region block: pre-declaration
|
|
25
|
+
//endregion
|
|
26
|
+
var ContributionDetailsClass;
|
|
27
|
+
function ContributionDetails_0() {
|
|
28
|
+
if (ContributionDetailsClass === VOID) {
|
|
29
|
+
class $ {
|
|
30
|
+
constructor() {
|
|
31
|
+
ContributionDetails_instance = this;
|
|
32
|
+
this.i5o_1 = listOf(['commitCount', 'createdAt', 'cycleTime', 'dateTime', 'ease', 'firstCommit', 'firstCommitDateTime', 'hash', 'id', 'integrationDateTime', 'label', 'link', 'name', 'participantEmails', 'semver', 'story']);
|
|
33
|
+
}
|
|
34
|
+
q4n(reader, customScalarAdapters) {
|
|
35
|
+
var _commitCount = null;
|
|
36
|
+
var _createdAt = null;
|
|
37
|
+
var _cycleTime = null;
|
|
38
|
+
var _dateTime = null;
|
|
39
|
+
var _ease = null;
|
|
40
|
+
var _firstCommit = null;
|
|
41
|
+
var _firstCommitDateTime = null;
|
|
42
|
+
var _hash = null;
|
|
43
|
+
var _id = null;
|
|
44
|
+
var _integrationDateTime = null;
|
|
45
|
+
var _label = null;
|
|
46
|
+
var _link = null;
|
|
47
|
+
var _name = null;
|
|
48
|
+
var _participantEmails = null;
|
|
49
|
+
var _semver = null;
|
|
50
|
+
var _story = null;
|
|
51
|
+
$l$loop: while (true) {
|
|
52
|
+
switch (reader.f50(this.i5o_1)) {
|
|
53
|
+
case 0:
|
|
54
|
+
_commitCount = get_NullableIntAdapter().q4n(reader, customScalarAdapters);
|
|
55
|
+
break;
|
|
56
|
+
case 1:
|
|
57
|
+
_createdAt = KotlinInstantAdapter_instance.q4n(reader, customScalarAdapters);
|
|
58
|
+
break;
|
|
59
|
+
case 2:
|
|
60
|
+
var tmp = nullable(KotlinDurationAdapter_instance).q4n(reader, customScalarAdapters);
|
|
61
|
+
_cycleTime = tmp == null ? null : tmp.lj_1;
|
|
62
|
+
break;
|
|
63
|
+
case 3:
|
|
64
|
+
_dateTime = nullable(KotlinInstantAdapter_instance).q4n(reader, customScalarAdapters);
|
|
65
|
+
break;
|
|
66
|
+
case 4:
|
|
67
|
+
_ease = get_NullableIntAdapter().q4n(reader, customScalarAdapters);
|
|
68
|
+
break;
|
|
69
|
+
case 5:
|
|
70
|
+
_firstCommit = get_NullableStringAdapter().q4n(reader, customScalarAdapters);
|
|
71
|
+
break;
|
|
72
|
+
case 6:
|
|
73
|
+
_firstCommitDateTime = nullable(KotlinInstantAdapter_instance).q4n(reader, customScalarAdapters);
|
|
74
|
+
break;
|
|
75
|
+
case 7:
|
|
76
|
+
_hash = get_NullableStringAdapter().q4n(reader, customScalarAdapters);
|
|
77
|
+
break;
|
|
78
|
+
case 8:
|
|
79
|
+
_id = get_contributionAdapter().q4n(reader, customScalarAdapters);
|
|
80
|
+
break;
|
|
81
|
+
case 9:
|
|
82
|
+
_integrationDateTime = nullable(KotlinInstantAdapter_instance).q4n(reader, customScalarAdapters);
|
|
83
|
+
break;
|
|
84
|
+
case 10:
|
|
85
|
+
_label = get_NullableStringAdapter().q4n(reader, customScalarAdapters);
|
|
86
|
+
break;
|
|
87
|
+
case 11:
|
|
88
|
+
_link = get_NullableStringAdapter().q4n(reader, customScalarAdapters);
|
|
89
|
+
break;
|
|
90
|
+
case 12:
|
|
91
|
+
_name = get_NullableStringAdapter().q4n(reader, customScalarAdapters);
|
|
92
|
+
break;
|
|
93
|
+
case 13:
|
|
94
|
+
_participantEmails = list(get_StringAdapter()).q4n(reader, customScalarAdapters);
|
|
95
|
+
break;
|
|
96
|
+
case 14:
|
|
97
|
+
_semver = get_NullableStringAdapter().q4n(reader, customScalarAdapters);
|
|
98
|
+
break;
|
|
99
|
+
case 15:
|
|
100
|
+
_story = get_NullableStringAdapter().q4n(reader, customScalarAdapters);
|
|
101
|
+
break;
|
|
102
|
+
default:
|
|
103
|
+
break $l$loop;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
var tmp_0 = _commitCount;
|
|
107
|
+
var tmp1_elvis_lhs = _createdAt;
|
|
108
|
+
var tmp_1;
|
|
109
|
+
if (tmp1_elvis_lhs == null) {
|
|
110
|
+
missingField(reader, 'createdAt');
|
|
111
|
+
} else {
|
|
112
|
+
tmp_1 = tmp1_elvis_lhs;
|
|
113
|
+
}
|
|
114
|
+
var tmp_2 = tmp_1;
|
|
115
|
+
var tmp_3 = _cycleTime;
|
|
116
|
+
var tmp_4 = _dateTime;
|
|
117
|
+
var tmp_5 = _ease;
|
|
118
|
+
var tmp_6 = _firstCommit;
|
|
119
|
+
var tmp_7 = _firstCommitDateTime;
|
|
120
|
+
var tmp_8 = _hash;
|
|
121
|
+
var tmp2_elvis_lhs = _id;
|
|
122
|
+
var tmp_9;
|
|
123
|
+
if (tmp2_elvis_lhs == null) {
|
|
124
|
+
missingField(reader, 'id');
|
|
125
|
+
} else {
|
|
126
|
+
tmp_9 = tmp2_elvis_lhs;
|
|
127
|
+
}
|
|
128
|
+
var tmp_10 = tmp_9;
|
|
129
|
+
var tmp_11 = _integrationDateTime;
|
|
130
|
+
var tmp_12 = _label;
|
|
131
|
+
var tmp_13 = _link;
|
|
132
|
+
var tmp_14 = _name;
|
|
133
|
+
var tmp3_elvis_lhs = _participantEmails;
|
|
134
|
+
var tmp_15;
|
|
135
|
+
if (tmp3_elvis_lhs == null) {
|
|
136
|
+
missingField(reader, 'participantEmails');
|
|
137
|
+
} else {
|
|
138
|
+
tmp_15 = tmp3_elvis_lhs;
|
|
139
|
+
}
|
|
140
|
+
return new (ContributionDetails())(tmp_0, tmp_2, tmp_3, tmp_4, tmp_5, tmp_6, tmp_7, tmp_8, tmp_10, tmp_11, tmp_12, tmp_13, tmp_14, tmp_15, _semver, _story);
|
|
141
|
+
}
|
|
142
|
+
k5o(writer, customScalarAdapters, value) {
|
|
143
|
+
writer.q4v('commitCount');
|
|
144
|
+
get_NullableIntAdapter().u4n(writer, customScalarAdapters, value.t5o_1);
|
|
145
|
+
writer.q4v('createdAt');
|
|
146
|
+
KotlinInstantAdapter_instance.b56(writer, customScalarAdapters, value.u5o_1);
|
|
147
|
+
writer.q4v('cycleTime');
|
|
148
|
+
var tmp = nullable(KotlinDurationAdapter_instance);
|
|
149
|
+
var tmp_0 = value.v5o_1;
|
|
150
|
+
tmp.u4n(writer, customScalarAdapters, tmp_0 == null ? null : new (Duration())(tmp_0));
|
|
151
|
+
writer.q4v('dateTime');
|
|
152
|
+
nullable(KotlinInstantAdapter_instance).u4n(writer, customScalarAdapters, value.w5o_1);
|
|
153
|
+
writer.q4v('ease');
|
|
154
|
+
get_NullableIntAdapter().u4n(writer, customScalarAdapters, value.x5o_1);
|
|
155
|
+
writer.q4v('firstCommit');
|
|
156
|
+
get_NullableStringAdapter().u4n(writer, customScalarAdapters, value.y5o_1);
|
|
157
|
+
writer.q4v('firstCommitDateTime');
|
|
158
|
+
nullable(KotlinInstantAdapter_instance).u4n(writer, customScalarAdapters, value.z5o_1);
|
|
159
|
+
writer.q4v('hash');
|
|
160
|
+
get_NullableStringAdapter().u4n(writer, customScalarAdapters, value.a5p_1);
|
|
161
|
+
writer.q4v('id');
|
|
162
|
+
get_contributionAdapter().r4n(writer, customScalarAdapters, value.b5p_1);
|
|
163
|
+
writer.q4v('integrationDateTime');
|
|
164
|
+
nullable(KotlinInstantAdapter_instance).u4n(writer, customScalarAdapters, value.c5p_1);
|
|
165
|
+
writer.q4v('label');
|
|
166
|
+
get_NullableStringAdapter().u4n(writer, customScalarAdapters, value.d5p_1);
|
|
167
|
+
writer.q4v('link');
|
|
168
|
+
get_NullableStringAdapter().u4n(writer, customScalarAdapters, value.e5p_1);
|
|
169
|
+
writer.q4v('name');
|
|
170
|
+
get_NullableStringAdapter().u4n(writer, customScalarAdapters, value.f5p_1);
|
|
171
|
+
writer.q4v('participantEmails');
|
|
172
|
+
list(get_StringAdapter()).x4o(writer, customScalarAdapters, value.g5p_1);
|
|
173
|
+
writer.q4v('semver');
|
|
174
|
+
get_NullableStringAdapter().u4n(writer, customScalarAdapters, value.h5p_1);
|
|
175
|
+
writer.q4v('story');
|
|
176
|
+
get_NullableStringAdapter().u4n(writer, customScalarAdapters, value.i5p_1);
|
|
177
|
+
}
|
|
178
|
+
r4n(writer, customScalarAdapters, value) {
|
|
179
|
+
return this.k5o(writer, customScalarAdapters, value instanceof ContributionDetails() ? value : THROW_CCE());
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
initMetadataForObject($, 'ContributionDetails', VOID, VOID, [Adapter()]);
|
|
183
|
+
ContributionDetailsClass = $;
|
|
184
|
+
}
|
|
185
|
+
return ContributionDetailsClass;
|
|
186
|
+
}
|
|
187
|
+
var ContributionDetails_instance;
|
|
188
|
+
function ContributionDetails_getInstance() {
|
|
189
|
+
if (ContributionDetails_instance === VOID)
|
|
190
|
+
new (ContributionDetails_0())();
|
|
191
|
+
return ContributionDetails_instance;
|
|
192
|
+
}
|
|
193
|
+
//region block: exports
|
|
194
|
+
export {
|
|
195
|
+
ContributionDetails_getInstance as ContributionDetails_getInstance12dt2lnw3opbs,
|
|
196
|
+
};
|
|
197
|
+
//endregion
|
|
198
|
+
|
|
199
|
+
//# sourceMappingURL=ContributionDetailsImpl_ResponseAdapter.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["fromJson","reader","customScalarAdapters","_commitCount","_createdAt","_cycleTime","_dateTime","_ease","_firstCommit","_firstCommitDateTime","_hash","_id","_integrationDateTime","_label","_link","_name","_participantEmails","_semver","_story","toJson","writer","value"],"mappings":"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"}
|
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.j5p_1 = players;
|
|
21
|
+
this.k5p_1 = pins;
|
|
22
22
|
}
|
|
23
23
|
toString() {
|
|
24
|
-
return 'Pair(players=' + toString(this.
|
|
24
|
+
return 'Pair(players=' + toString(this.j5p_1) + ', pins=' + toString(this.k5p_1) + ')';
|
|
25
25
|
}
|
|
26
26
|
hashCode() {
|
|
27
|
-
var result = hashCode(this.
|
|
28
|
-
result = imul(result, 31) + hashCode(this.
|
|
27
|
+
var result = hashCode(this.j5p_1);
|
|
28
|
+
result = imul(result, 31) + hashCode(this.k5p_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.j5p_1, other.j5p_1))
|
|
37
37
|
return false;
|
|
38
|
-
if (!equals(this.
|
|
38
|
+
if (!equals(this.k5p_1, other.k5p_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.l5p_1 = id;
|
|
54
|
+
this.m5p_1 = name;
|
|
55
|
+
this.n5p_1 = email;
|
|
56
|
+
this.o5p_1 = badge;
|
|
57
|
+
this.p5p_1 = avatarType;
|
|
58
|
+
this.q5p_1 = callSignAdjective;
|
|
59
|
+
this.r5p_1 = callSignNoun;
|
|
60
|
+
this.s5p_1 = imageURL;
|
|
61
|
+
this.t5p_1 = unvalidatedEmails;
|
|
62
|
+
this.u5p_1 = pins;
|
|
63
63
|
}
|
|
64
64
|
toString() {
|
|
65
|
-
return 'Player(id=' + this.
|
|
65
|
+
return 'Player(id=' + this.l5p_1.toString() + ', name=' + this.m5p_1 + ', email=' + this.n5p_1 + ', badge=' + this.o5p_1.toString() + ', avatarType=' + toString_0(this.p5p_1) + ', callSignAdjective=' + this.q5p_1 + ', callSignNoun=' + this.r5p_1 + ', imageURL=' + this.s5p_1 + ', unvalidatedEmails=' + toString(this.t5p_1) + ', pins=' + toString(this.u5p_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.l5p_1.hashCode();
|
|
69
|
+
result = imul(result, 31) + getStringHashCode(this.m5p_1) | 0;
|
|
70
|
+
result = imul(result, 31) + getStringHashCode(this.n5p_1) | 0;
|
|
71
|
+
result = imul(result, 31) + this.o5p_1.hashCode() | 0;
|
|
72
|
+
result = imul(result, 31) + (this.p5p_1 == null ? 0 : this.p5p_1.hashCode()) | 0;
|
|
73
|
+
result = imul(result, 31) + getStringHashCode(this.q5p_1) | 0;
|
|
74
|
+
result = imul(result, 31) + getStringHashCode(this.r5p_1) | 0;
|
|
75
|
+
result = imul(result, 31) + (this.s5p_1 == null ? 0 : getStringHashCode(this.s5p_1)) | 0;
|
|
76
|
+
result = imul(result, 31) + hashCode(this.t5p_1) | 0;
|
|
77
|
+
result = imul(result, 31) + hashCode(this.u5p_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.l5p_1.equals(other.l5p_1))
|
|
86
86
|
return false;
|
|
87
|
-
if (!(this.
|
|
87
|
+
if (!(this.m5p_1 === other.m5p_1))
|
|
88
88
|
return false;
|
|
89
|
-
if (!(this.
|
|
89
|
+
if (!(this.n5p_1 === other.n5p_1))
|
|
90
90
|
return false;
|
|
91
|
-
if (!this.
|
|
91
|
+
if (!this.o5p_1.equals(other.o5p_1))
|
|
92
92
|
return false;
|
|
93
|
-
if (!equals(this.
|
|
93
|
+
if (!equals(this.p5p_1, other.p5p_1))
|
|
94
94
|
return false;
|
|
95
|
-
if (!(this.
|
|
95
|
+
if (!(this.q5p_1 === other.q5p_1))
|
|
96
96
|
return false;
|
|
97
|
-
if (!(this.
|
|
97
|
+
if (!(this.r5p_1 === other.r5p_1))
|
|
98
98
|
return false;
|
|
99
|
-
if (!(this.
|
|
99
|
+
if (!(this.s5p_1 == other.s5p_1))
|
|
100
100
|
return false;
|
|
101
|
-
if (!equals(this.
|
|
101
|
+
if (!equals(this.t5p_1, other.t5p_1))
|
|
102
102
|
return false;
|
|
103
|
-
if (!equals(this.
|
|
103
|
+
if (!equals(this.u5p_1, other.u5p_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.v5p_1 = icon;
|
|
119
|
+
this.w5p_1 = id;
|
|
120
|
+
this.x5p_1 = name;
|
|
121
121
|
}
|
|
122
122
|
toString() {
|
|
123
|
-
return 'Pin(icon=' + this.
|
|
123
|
+
return 'Pin(icon=' + this.v5p_1 + ', id=' + this.w5p_1.toString() + ', name=' + this.x5p_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.v5p_1);
|
|
127
|
+
result = imul(result, 31) + this.w5p_1.hashCode() | 0;
|
|
128
|
+
result = imul(result, 31) + getStringHashCode(this.x5p_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.v5p_1 === other.v5p_1))
|
|
137
137
|
return false;
|
|
138
|
-
if (!this.
|
|
138
|
+
if (!this.w5p_1.equals(other.w5p_1))
|
|
139
139
|
return false;
|
|
140
|
-
if (!(this.
|
|
140
|
+
if (!(this.x5p_1 === other.x5p_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.y5p_1 = icon;
|
|
156
|
+
this.z5p_1 = id;
|
|
157
|
+
this.a5q_1 = name;
|
|
158
158
|
}
|
|
159
159
|
toString() {
|
|
160
|
-
return 'Pin1(icon=' + this.
|
|
160
|
+
return 'Pin1(icon=' + this.y5p_1 + ', id=' + this.z5p_1.toString() + ', name=' + this.a5q_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.y5p_1);
|
|
164
|
+
result = imul(result, 31) + this.z5p_1.hashCode() | 0;
|
|
165
|
+
result = imul(result, 31) + getStringHashCode(this.a5q_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.y5p_1 === other.y5p_1))
|
|
174
174
|
return false;
|
|
175
|
-
if (!this.
|
|
175
|
+
if (!this.z5p_1.equals(other.z5p_1))
|
|
176
176
|
return false;
|
|
177
|
-
if (!(this.
|
|
177
|
+
if (!(this.a5q_1 === other.a5q_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.b5q_1 = id;
|
|
193
|
+
this.c5q_1 = partyId;
|
|
194
|
+
this.d5q_1 = date;
|
|
195
|
+
this.e5q_1 = pairs;
|
|
196
|
+
this.f5q_1 = discordMessageId;
|
|
197
|
+
this.g5q_1 = slackMessageId;
|
|
198
198
|
}
|
|
199
199
|
toString() {
|
|
200
|
-
return 'PairingSetDetails(id=' + this.
|
|
200
|
+
return 'PairingSetDetails(id=' + this.b5q_1.toString() + ', partyId=' + this.c5q_1.toString() + ', date=' + this.d5q_1.toString() + ', pairs=' + toString(this.e5q_1) + ', discordMessageId=' + this.f5q_1 + ', slackMessageId=' + this.g5q_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.b5q_1.hashCode();
|
|
204
|
+
result = imul(result, 31) + this.c5q_1.hashCode() | 0;
|
|
205
|
+
result = imul(result, 31) + this.d5q_1.hashCode() | 0;
|
|
206
|
+
result = imul(result, 31) + hashCode(this.e5q_1) | 0;
|
|
207
|
+
result = imul(result, 31) + (this.f5q_1 == null ? 0 : getStringHashCode(this.f5q_1)) | 0;
|
|
208
|
+
result = imul(result, 31) + (this.g5q_1 == null ? 0 : getStringHashCode(this.g5q_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.b5q_1.equals(other.b5q_1))
|
|
217
217
|
return false;
|
|
218
|
-
if (!this.
|
|
218
|
+
if (!this.c5q_1.equals(other.c5q_1))
|
|
219
219
|
return false;
|
|
220
|
-
if (!this.
|
|
220
|
+
if (!this.d5q_1.equals(other.d5q_1))
|
|
221
221
|
return false;
|
|
222
|
-
if (!equals(this.
|
|
222
|
+
if (!equals(this.e5q_1, other.e5q_1))
|
|
223
223
|
return false;
|
|
224
|
-
if (!(this.
|
|
224
|
+
if (!(this.f5q_1 == other.f5q_1))
|
|
225
225
|
return false;
|
|
226
|
-
if (!(this.
|
|
226
|
+
if (!(this.g5q_1 == other.g5q_1))
|
|
227
227
|
return false;
|
|
228
228
|
return true;
|
|
229
229
|
}
|