@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
|
@@ -17,29 +17,29 @@ function Player() {
|
|
|
17
17
|
if (PlayerClass === VOID) {
|
|
18
18
|
class $ {
|
|
19
19
|
constructor(id, badge, name, email, callSignAdjective, callSignNoun, imageURL, avatarType, additionalEmails) {
|
|
20
|
-
this.
|
|
21
|
-
this.
|
|
22
|
-
this.
|
|
23
|
-
this.
|
|
24
|
-
this.
|
|
25
|
-
this.
|
|
26
|
-
this.
|
|
27
|
-
this.
|
|
28
|
-
this.
|
|
20
|
+
this.c54_1 = id;
|
|
21
|
+
this.d54_1 = badge;
|
|
22
|
+
this.e54_1 = name;
|
|
23
|
+
this.f54_1 = email;
|
|
24
|
+
this.g54_1 = callSignAdjective;
|
|
25
|
+
this.h54_1 = callSignNoun;
|
|
26
|
+
this.i54_1 = imageURL;
|
|
27
|
+
this.j54_1 = avatarType;
|
|
28
|
+
this.k54_1 = additionalEmails;
|
|
29
29
|
}
|
|
30
30
|
toString() {
|
|
31
|
-
return 'Player(id=' + this.
|
|
31
|
+
return 'Player(id=' + this.c54_1.toString() + ', badge=' + this.d54_1.toString() + ', name=' + this.e54_1 + ', email=' + this.f54_1 + ', callSignAdjective=' + this.g54_1 + ', callSignNoun=' + this.h54_1 + ', imageURL=' + this.i54_1 + ', avatarType=' + toString(this.j54_1) + ', additionalEmails=' + toString_0(this.k54_1) + ')';
|
|
32
32
|
}
|
|
33
33
|
hashCode() {
|
|
34
|
-
var result = this.
|
|
35
|
-
result = imul(result, 31) + this.
|
|
36
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
37
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
38
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
39
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
40
|
-
result = imul(result, 31) + (this.
|
|
41
|
-
result = imul(result, 31) + (this.
|
|
42
|
-
result = imul(result, 31) + hashCode(this.
|
|
34
|
+
var result = this.c54_1.hashCode();
|
|
35
|
+
result = imul(result, 31) + this.d54_1.hashCode() | 0;
|
|
36
|
+
result = imul(result, 31) + getStringHashCode(this.e54_1) | 0;
|
|
37
|
+
result = imul(result, 31) + getStringHashCode(this.f54_1) | 0;
|
|
38
|
+
result = imul(result, 31) + getStringHashCode(this.g54_1) | 0;
|
|
39
|
+
result = imul(result, 31) + getStringHashCode(this.h54_1) | 0;
|
|
40
|
+
result = imul(result, 31) + (this.i54_1 == null ? 0 : getStringHashCode(this.i54_1)) | 0;
|
|
41
|
+
result = imul(result, 31) + (this.j54_1 == null ? 0 : this.j54_1.hashCode()) | 0;
|
|
42
|
+
result = imul(result, 31) + hashCode(this.k54_1) | 0;
|
|
43
43
|
return result;
|
|
44
44
|
}
|
|
45
45
|
equals(other) {
|
|
@@ -47,23 +47,23 @@ function Player() {
|
|
|
47
47
|
return true;
|
|
48
48
|
if (!(other instanceof Player()))
|
|
49
49
|
return false;
|
|
50
|
-
if (!this.
|
|
50
|
+
if (!this.c54_1.equals(other.c54_1))
|
|
51
51
|
return false;
|
|
52
|
-
if (!this.
|
|
52
|
+
if (!this.d54_1.equals(other.d54_1))
|
|
53
53
|
return false;
|
|
54
|
-
if (!(this.
|
|
54
|
+
if (!(this.e54_1 === other.e54_1))
|
|
55
55
|
return false;
|
|
56
|
-
if (!(this.
|
|
56
|
+
if (!(this.f54_1 === other.f54_1))
|
|
57
57
|
return false;
|
|
58
|
-
if (!(this.
|
|
58
|
+
if (!(this.g54_1 === other.g54_1))
|
|
59
59
|
return false;
|
|
60
|
-
if (!(this.
|
|
60
|
+
if (!(this.h54_1 === other.h54_1))
|
|
61
61
|
return false;
|
|
62
|
-
if (!(this.
|
|
62
|
+
if (!(this.i54_1 == other.i54_1))
|
|
63
63
|
return false;
|
|
64
|
-
if (!equals(this.
|
|
64
|
+
if (!equals(this.j54_1, other.j54_1))
|
|
65
65
|
return false;
|
|
66
|
-
if (!equals(this.
|
|
66
|
+
if (!equals(this.k54_1, other.k54_1))
|
|
67
67
|
return false;
|
|
68
68
|
return true;
|
|
69
69
|
}
|
|
@@ -29,20 +29,20 @@ function PlayerId() {
|
|
|
29
29
|
if (PlayerIdClass === VOID) {
|
|
30
30
|
class $ {
|
|
31
31
|
constructor(value) {
|
|
32
|
-
this.
|
|
32
|
+
this.x55_1 = value;
|
|
33
33
|
}
|
|
34
34
|
toString() {
|
|
35
|
-
return 'PlayerId(value=' + NotBlankString__toString_impl_5tex9r(this.
|
|
35
|
+
return 'PlayerId(value=' + NotBlankString__toString_impl_5tex9r(this.x55_1) + ')';
|
|
36
36
|
}
|
|
37
37
|
hashCode() {
|
|
38
|
-
return NotBlankString__hashCode_impl_fxqzj4(this.
|
|
38
|
+
return NotBlankString__hashCode_impl_fxqzj4(this.x55_1);
|
|
39
39
|
}
|
|
40
40
|
equals(other) {
|
|
41
41
|
if (this === other)
|
|
42
42
|
return true;
|
|
43
43
|
if (!(other instanceof PlayerId()))
|
|
44
44
|
return false;
|
|
45
|
-
if (!(this.
|
|
45
|
+
if (!(this.x55_1 === other.x55_1))
|
|
46
46
|
return false;
|
|
47
47
|
return true;
|
|
48
48
|
}
|
package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/callsign/CallSign.mjs
CHANGED
|
@@ -11,15 +11,15 @@ function CallSign() {
|
|
|
11
11
|
if (CallSignClass === VOID) {
|
|
12
12
|
class $ {
|
|
13
13
|
constructor(adjective, noun) {
|
|
14
|
-
this.
|
|
15
|
-
this.
|
|
14
|
+
this.y55_1 = adjective;
|
|
15
|
+
this.z55_1 = noun;
|
|
16
16
|
}
|
|
17
17
|
toString() {
|
|
18
|
-
return this.
|
|
18
|
+
return this.y55_1 + ' ' + this.z55_1;
|
|
19
19
|
}
|
|
20
20
|
hashCode() {
|
|
21
|
-
var result = getStringHashCode(this.
|
|
22
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
21
|
+
var result = getStringHashCode(this.y55_1);
|
|
22
|
+
result = imul(result, 31) + getStringHashCode(this.z55_1) | 0;
|
|
23
23
|
return result;
|
|
24
24
|
}
|
|
25
25
|
equals(other) {
|
|
@@ -27,9 +27,9 @@ function CallSign() {
|
|
|
27
27
|
return true;
|
|
28
28
|
if (!(other instanceof CallSign()))
|
|
29
29
|
return false;
|
|
30
|
-
if (!(this.
|
|
30
|
+
if (!(this.y55_1 === other.y55_1))
|
|
31
31
|
return false;
|
|
32
|
-
if (!(this.
|
|
32
|
+
if (!(this.z55_1 === other.z55_1))
|
|
33
33
|
return false;
|
|
34
34
|
return true;
|
|
35
35
|
}
|
|
@@ -29,20 +29,20 @@ function UserId() {
|
|
|
29
29
|
if (UserIdClass === VOID) {
|
|
30
30
|
class $ {
|
|
31
31
|
constructor(value) {
|
|
32
|
-
this.
|
|
32
|
+
this.a56_1 = value;
|
|
33
33
|
}
|
|
34
34
|
toString() {
|
|
35
|
-
return 'UserId(value=' + NotBlankString__toString_impl_5tex9r(this.
|
|
35
|
+
return 'UserId(value=' + NotBlankString__toString_impl_5tex9r(this.a56_1) + ')';
|
|
36
36
|
}
|
|
37
37
|
hashCode() {
|
|
38
|
-
return NotBlankString__hashCode_impl_fxqzj4(this.
|
|
38
|
+
return NotBlankString__hashCode_impl_fxqzj4(this.a56_1);
|
|
39
39
|
}
|
|
40
40
|
equals(other) {
|
|
41
41
|
if (this === other)
|
|
42
42
|
return true;
|
|
43
43
|
if (!(other instanceof UserId()))
|
|
44
44
|
return false;
|
|
45
|
-
if (!(this.
|
|
45
|
+
if (!(this.a56_1 === other.a56_1))
|
|
46
46
|
return false;
|
|
47
47
|
return true;
|
|
48
48
|
}
|
|
@@ -30,23 +30,23 @@ import {
|
|
|
30
30
|
//endregion
|
|
31
31
|
function couplingSdk(getIdTokenFunc, httpClient, pipe) {
|
|
32
32
|
pipe = pipe === VOID ? Companion_instance : pipe;
|
|
33
|
-
return new (DispatcherPipeCannon())(new (KtorCouplingSdkDispatcher())(getIdTokenFunc, httpClient, ktorClient((new (Builder())()).
|
|
33
|
+
return new (DispatcherPipeCannon())(new (KtorCouplingSdkDispatcher())(getIdTokenFunc, httpClient, ktorClient((new (Builder())()).r5b('/api/graphql'), httpClient).k2t()), pipe);
|
|
34
34
|
}
|
|
35
35
|
var KtorCouplingSdkDispatcherClass;
|
|
36
36
|
function KtorCouplingSdkDispatcher() {
|
|
37
37
|
if (KtorCouplingSdkDispatcherClass === VOID) {
|
|
38
38
|
class $ {
|
|
39
39
|
constructor(getIdTokenFunc, httpClient, apolloClient) {
|
|
40
|
-
this.
|
|
41
|
-
this.
|
|
40
|
+
this.z5s_1 = getIdTokenFunc;
|
|
41
|
+
this.a5t_1 = new (StandardPartyGQLPerformer())(this.z5s_1, httpClient, apolloClient);
|
|
42
42
|
}
|
|
43
|
-
|
|
44
|
-
return this.
|
|
43
|
+
b5t() {
|
|
44
|
+
return this.a5t_1;
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
|
-
protoOf($).
|
|
48
|
-
protoOf($).
|
|
49
|
-
protoOf($).
|
|
47
|
+
protoOf($).c5t = perform;
|
|
48
|
+
protoOf($).h58 = perform_0;
|
|
49
|
+
protoOf($).d5t = execute;
|
|
50
50
|
initMetadataForClass($, 'KtorCouplingSdkDispatcher', VOID, VOID, [Dispatcher(), Dispatcher_0(), GqlTrait(), SdkGraphQueryDispatcher(), SdkSaveContributionCommandDispatcher()], [1]);
|
|
51
51
|
KtorCouplingSdkDispatcherClass = $;
|
|
52
52
|
}
|
|
@@ -57,19 +57,19 @@ function StandardPartyGQLPerformer() {
|
|
|
57
57
|
if (StandardPartyGQLPerformerClass === VOID) {
|
|
58
58
|
class $ {
|
|
59
59
|
constructor(getIdTokenFunc, httpClient, apolloClient) {
|
|
60
|
-
this.
|
|
61
|
-
this.
|
|
62
|
-
this.
|
|
60
|
+
this.e5t_1 = getIdTokenFunc;
|
|
61
|
+
this.f5t_1 = apolloClient;
|
|
62
|
+
this.g5t_1 = httpClient;
|
|
63
63
|
}
|
|
64
|
-
|
|
65
|
-
return this.
|
|
64
|
+
h5t() {
|
|
65
|
+
return this.f5t_1;
|
|
66
66
|
}
|
|
67
|
-
*
|
|
68
|
-
return yield* this.
|
|
67
|
+
*i5t($completion) {
|
|
68
|
+
return yield* this.e5t_1($completion);
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
|
-
protoOf($).
|
|
72
|
-
protoOf($).
|
|
71
|
+
protoOf($).j5t = apolloMutation;
|
|
72
|
+
protoOf($).k5t = apolloQuery;
|
|
73
73
|
initMetadataForClass($, 'StandardPartyGQLPerformer', VOID, VOID, [KtorQueryPerformer()], [0, 1]);
|
|
74
74
|
StandardPartyGQLPerformerClass = $;
|
|
75
75
|
}
|
|
@@ -7,7 +7,7 @@ import { VOID3gxj6tk5isa35 as VOID } from '../../../../../kotlin-kotlin-stdlib/k
|
|
|
7
7
|
//region block: pre-declaration
|
|
8
8
|
//endregion
|
|
9
9
|
function *perform(query, $completion) {
|
|
10
|
-
return (yield* this.
|
|
10
|
+
return (yield* this.b5t().k5t(query.l5t_1, $completion)).i4s();
|
|
11
11
|
}
|
|
12
12
|
var SdkGraphQueryDispatcherClass;
|
|
13
13
|
function SdkGraphQueryDispatcher() {
|
package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs
CHANGED
|
@@ -17,7 +17,7 @@ import { ContributionInput3usm1nmagoyah as ContributionInput } from './schema/ty
|
|
|
17
17
|
//region block: pre-declaration
|
|
18
18
|
//endregion
|
|
19
19
|
function *perform(command, $completion) {
|
|
20
|
-
(yield* this.
|
|
20
|
+
(yield* this.d5t(new (SaveContributionMutation())(saveContributionInput(command)), $completion)).i4s();
|
|
21
21
|
return Accepted_instance;
|
|
22
22
|
}
|
|
23
23
|
var SdkSaveContributionCommandDispatcherClass;
|
|
@@ -31,7 +31,7 @@ function SdkSaveContributionCommandDispatcher() {
|
|
|
31
31
|
}
|
|
32
32
|
function saveContributionInput(_this__u8e3s4) {
|
|
33
33
|
// Inline function 'kotlin.collections.map' call
|
|
34
|
-
var this_0 = _this__u8e3s4.
|
|
34
|
+
var this_0 = _this__u8e3s4.t58_1;
|
|
35
35
|
// Inline function 'kotlin.collections.mapTo' call
|
|
36
36
|
var destination = ArrayList().r2(collectionSizeOrDefault(this_0, 10));
|
|
37
37
|
var _iterator__ex2g4s = this_0.l1();
|
|
@@ -40,7 +40,7 @@ function saveContributionInput(_this__u8e3s4) {
|
|
|
40
40
|
var tmp$ret$2 = toJson(item);
|
|
41
41
|
destination.o2(tmp$ret$2);
|
|
42
42
|
}
|
|
43
|
-
return new (SaveContributionInput())(_this__u8e3s4.
|
|
43
|
+
return new (SaveContributionInput())(_this__u8e3s4.s58_1, destination);
|
|
44
44
|
}
|
|
45
45
|
function toJson(_this__u8e3s4) {
|
|
46
46
|
var tmp0_contributionId = _this__u8e3s4.q52_1;
|
|
@@ -70,17 +70,17 @@ var KotlinDurationAdapterClass;
|
|
|
70
70
|
function KotlinDurationAdapter() {
|
|
71
71
|
if (KotlinDurationAdapterClass === VOID) {
|
|
72
72
|
class $ {
|
|
73
|
-
|
|
73
|
+
n5t(reader, customScalarAdapters) {
|
|
74
74
|
return Companion_getInstance().js(ensureNotNull(reader.a4p()));
|
|
75
75
|
}
|
|
76
76
|
q4n(reader, customScalarAdapters) {
|
|
77
|
-
return new (Duration())(this.
|
|
77
|
+
return new (Duration())(this.n5t(reader, customScalarAdapters));
|
|
78
78
|
}
|
|
79
|
-
|
|
79
|
+
o5t(writer, customScalarAdapters, value) {
|
|
80
80
|
writer.c4p(Duration__toIsoString_impl_9h6wsm(value));
|
|
81
81
|
}
|
|
82
82
|
r4n(writer, customScalarAdapters, value) {
|
|
83
|
-
return this.
|
|
83
|
+
return this.o5t(writer, customScalarAdapters, value instanceof Duration() ? value.lj_1 : THROW_CCE());
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
initMetadataForObject($, 'KotlinDurationAdapter', VOID, VOID, [Adapter()]);
|
|
@@ -102,7 +102,7 @@ function ContributionId$_init_$ref_7ybeii() {
|
|
|
102
102
|
return l;
|
|
103
103
|
}
|
|
104
104
|
function ContributionId$_get_value_$ref_no1s8m() {
|
|
105
|
-
return (p0) => new (NotBlankString())(p0.
|
|
105
|
+
return (p0) => new (NotBlankString())(p0.v53_1);
|
|
106
106
|
}
|
|
107
107
|
function PartyId$_init_$ref_45kbqc() {
|
|
108
108
|
var l = (p0) => new (PartyId())(p0.j52_1);
|
|
@@ -110,7 +110,7 @@ function PartyId$_init_$ref_45kbqc() {
|
|
|
110
110
|
return l;
|
|
111
111
|
}
|
|
112
112
|
function PartyId$_get_value_$ref_r1wifg() {
|
|
113
|
-
return (p0) => new (NotBlankString())(p0.
|
|
113
|
+
return (p0) => new (NotBlankString())(p0.k55_1);
|
|
114
114
|
}
|
|
115
115
|
function PlayerId$_init_$ref_vkax9z() {
|
|
116
116
|
var l = (p0) => new (PlayerId())(p0.j52_1);
|
|
@@ -118,7 +118,7 @@ function PlayerId$_init_$ref_vkax9z() {
|
|
|
118
118
|
return l;
|
|
119
119
|
}
|
|
120
120
|
function PlayerId$_get_value_$ref_s5dvif() {
|
|
121
|
-
return (p0) => new (NotBlankString())(p0.
|
|
121
|
+
return (p0) => new (NotBlankString())(p0.x55_1);
|
|
122
122
|
}
|
|
123
123
|
function PinId$_init_$ref_wjrvu3() {
|
|
124
124
|
var l = (p0) => new (PinId())(p0.j52_1);
|
|
@@ -126,7 +126,7 @@ function PinId$_init_$ref_wjrvu3() {
|
|
|
126
126
|
return l;
|
|
127
127
|
}
|
|
128
128
|
function PinId$_get_value_$ref_gzwpmt() {
|
|
129
|
-
return (p0) => new (NotBlankString())(p0.
|
|
129
|
+
return (p0) => new (NotBlankString())(p0.m55_1);
|
|
130
130
|
}
|
|
131
131
|
function SecretId$_init_$ref_cy9qw6() {
|
|
132
132
|
var l = (p0) => new (SecretId())(p0.j52_1);
|
|
@@ -134,7 +134,7 @@ function SecretId$_init_$ref_cy9qw6() {
|
|
|
134
134
|
return l;
|
|
135
135
|
}
|
|
136
136
|
function SecretId$_get_value_$ref_pzuxii() {
|
|
137
|
-
return (p0) => new (NotBlankString())(p0.
|
|
137
|
+
return (p0) => new (NotBlankString())(p0.l55_1);
|
|
138
138
|
}
|
|
139
139
|
function UserId$_init_$ref_kjvkgv() {
|
|
140
140
|
var l = (p0) => new (UserId())(p0.j52_1);
|
|
@@ -142,7 +142,7 @@ function UserId$_init_$ref_kjvkgv() {
|
|
|
142
142
|
return l;
|
|
143
143
|
}
|
|
144
144
|
function UserId$_get_value_$ref_i9dk27() {
|
|
145
|
-
return (p0) => new (NotBlankString())(p0.
|
|
145
|
+
return (p0) => new (NotBlankString())(p0.a56_1);
|
|
146
146
|
}
|
|
147
147
|
function PairingSetId$_init_$ref_cqwo34() {
|
|
148
148
|
var l = (p0) => new (PairingSetId())(p0.j52_1);
|
|
@@ -150,7 +150,7 @@ function PairingSetId$_init_$ref_cqwo34() {
|
|
|
150
150
|
return l;
|
|
151
151
|
}
|
|
152
152
|
function PairingSetId$_get_value_$ref_545sf4() {
|
|
153
|
-
return (p0) => new (NotBlankString())(p0.
|
|
153
|
+
return (p0) => new (NotBlankString())(p0.x54_1);
|
|
154
154
|
}
|
|
155
155
|
function notBlankStringAdapter$lambda(it) {
|
|
156
156
|
_init_properties_Adapter_kt__th4orn();
|
|
@@ -165,8 +165,8 @@ function serializationAdapter$1() {
|
|
|
165
165
|
if (serializationAdapter$1Class === VOID) {
|
|
166
166
|
class $ {
|
|
167
167
|
constructor($init, $toValue) {
|
|
168
|
-
this.
|
|
169
|
-
this.
|
|
168
|
+
this.p5t_1 = $init;
|
|
169
|
+
this.q5t_1 = $toValue;
|
|
170
170
|
}
|
|
171
171
|
q4n(reader, customScalarAdapters) {
|
|
172
172
|
var tmp0_safe_receiver = reader.a4p();
|
|
@@ -189,7 +189,7 @@ function serializationAdapter$1() {
|
|
|
189
189
|
var tmp_3 = tmp2_safe_receiver;
|
|
190
190
|
var tmp0 = tmp_3 == null ? null : new (NotBlankString())(tmp_3);
|
|
191
191
|
// Inline function 'kotlin.let' call
|
|
192
|
-
tmp_1 = this.
|
|
192
|
+
tmp_1 = this.p5t_1(tmp0);
|
|
193
193
|
}
|
|
194
194
|
var tmp3_elvis_lhs = tmp_1;
|
|
195
195
|
var tmp_4;
|
|
@@ -202,7 +202,7 @@ function serializationAdapter$1() {
|
|
|
202
202
|
}
|
|
203
203
|
r4n(writer, customScalarAdapters, value) {
|
|
204
204
|
// Inline function 'kotlin.let' call
|
|
205
|
-
var it = this.
|
|
205
|
+
var it = this.q5t_1(value).j52_1;
|
|
206
206
|
writer.c4p(NotBlankString__toString_impl_5tex9r(it));
|
|
207
207
|
}
|
|
208
208
|
}
|
|
@@ -34,12 +34,12 @@ var GqlQuery$Dispatcher$perform$refClass;
|
|
|
34
34
|
function GqlQuery$Dispatcher$perform$ref() {
|
|
35
35
|
if (GqlQuery$Dispatcher$perform$refClass === VOID) {
|
|
36
36
|
class $ {
|
|
37
|
-
*
|
|
38
|
-
return yield* p0.
|
|
37
|
+
*r5t(p0, p1, $completion) {
|
|
38
|
+
return yield* p0.c5t(p1, $completion);
|
|
39
39
|
}
|
|
40
40
|
wd(p1, p2, $completion) {
|
|
41
41
|
var tmp = (!(p1 == null) ? isInterface(p1, Dispatcher()) : false) ? p1 : THROW_CCE();
|
|
42
|
-
return this.
|
|
42
|
+
return this.r5t(tmp, p2 instanceof GqlQuery() ? p2 : THROW_CCE(), $completion);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
initMetadataForFunctionReference($, VOID, VOID, [2]);
|
|
@@ -49,7 +49,7 @@ function GqlQuery$Dispatcher$perform$ref() {
|
|
|
49
49
|
}
|
|
50
50
|
function GqlQuery$Dispatcher$perform$ref_0() {
|
|
51
51
|
var i = new (GqlQuery$Dispatcher$perform$ref())();
|
|
52
|
-
var l = (p0, p1, $completion) => i.
|
|
52
|
+
var l = (p0, p1, $completion) => i.r5t(p0, p1, $completion);
|
|
53
53
|
l.callableName = 'perform';
|
|
54
54
|
l.$arity = 2;
|
|
55
55
|
return l;
|
|
@@ -59,31 +59,31 @@ function GqlQuery() {
|
|
|
59
59
|
if (GqlQueryClass === VOID) {
|
|
60
60
|
class $ {
|
|
61
61
|
constructor(query) {
|
|
62
|
-
this.
|
|
62
|
+
this.l5t_1 = query;
|
|
63
63
|
var tmp = this;
|
|
64
|
-
tmp.
|
|
64
|
+
tmp.m5t_1 = this.g58(this, GqlQuery$Dispatcher$perform$ref_0());
|
|
65
65
|
}
|
|
66
|
-
|
|
67
|
-
return this.
|
|
66
|
+
f58() {
|
|
67
|
+
return this.m5t_1;
|
|
68
68
|
}
|
|
69
69
|
toString() {
|
|
70
|
-
return 'GqlQuery(query=' + toString(this.
|
|
70
|
+
return 'GqlQuery(query=' + toString(this.l5t_1) + ')';
|
|
71
71
|
}
|
|
72
72
|
hashCode() {
|
|
73
|
-
return hashCode(this.
|
|
73
|
+
return hashCode(this.l5t_1);
|
|
74
74
|
}
|
|
75
75
|
equals(other) {
|
|
76
76
|
if (this === other)
|
|
77
77
|
return true;
|
|
78
78
|
if (!(other instanceof GqlQuery()))
|
|
79
79
|
return false;
|
|
80
|
-
if (!equals(this.
|
|
80
|
+
if (!equals(this.l5t_1, other.l5t_1))
|
|
81
81
|
return false;
|
|
82
82
|
return true;
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
|
-
protoOf($).
|
|
86
|
-
protoOf($).
|
|
85
|
+
protoOf($).a58 = execute;
|
|
86
|
+
protoOf($).g58 = link;
|
|
87
87
|
initMetadataForClass($, 'GqlQuery', VOID, VOID, [SimpleSuspendAction()], [1]);
|
|
88
88
|
GqlQueryClass = $;
|
|
89
89
|
}
|
|
@@ -5,7 +5,7 @@ import { VOID3gxj6tk5isa35 as VOID } from '../../../../../../kotlin-kotlin-stdli
|
|
|
5
5
|
//region block: pre-declaration
|
|
6
6
|
//endregion
|
|
7
7
|
function *execute(_this__u8e3s4, $completion) {
|
|
8
|
-
return yield* this.
|
|
8
|
+
return yield* this.b5t().j5t(_this__u8e3s4, $completion);
|
|
9
9
|
}
|
|
10
10
|
var GqlTraitClass;
|
|
11
11
|
function GqlTrait() {
|
|
@@ -5,10 +5,10 @@ import { VOID3gxj6tk5isa35 as VOID } from '../../../../../../kotlin-kotlin-stdli
|
|
|
5
5
|
//region block: pre-declaration
|
|
6
6
|
//endregion
|
|
7
7
|
function *apolloMutation(mutation, $completion) {
|
|
8
|
-
return yield* this.
|
|
8
|
+
return yield* this.h5t().m5d(mutation).m4q('Authorization', 'Bearer ' + (yield* this.i5t($completion))).v59($completion);
|
|
9
9
|
}
|
|
10
10
|
function *apolloQuery(query, $completion) {
|
|
11
|
-
return yield* this.
|
|
11
|
+
return yield* this.h5t().l5d(query).m4q('Authorization', 'Bearer ' + (yield* this.i5t($completion))).v59($completion);
|
|
12
12
|
}
|
|
13
13
|
var KtorQueryPerformerClass;
|
|
14
14
|
function KtorQueryPerformer() {
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { toSet2orjxp16sotqu as toSet } from '../../../../../../kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs';
|
|
2
|
+
import { Contribution2zk6842ycxn75 as Contribution } from '../../../../../../Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs';
|
|
3
|
+
//region block: imports
|
|
4
|
+
//endregion
|
|
5
|
+
//region block: pre-declaration
|
|
6
|
+
//endregion
|
|
7
|
+
function toDomain(_this__u8e3s4) {
|
|
8
|
+
var tmp0_commitCount = _this__u8e3s4.t5o_1;
|
|
9
|
+
var tmp1_createdAt = _this__u8e3s4.u5o_1;
|
|
10
|
+
var tmp2_cycleTime = _this__u8e3s4.v5o_1;
|
|
11
|
+
var tmp3_dateTime = _this__u8e3s4.w5o_1;
|
|
12
|
+
var tmp4_ease = _this__u8e3s4.x5o_1;
|
|
13
|
+
var tmp5_firstCommit = _this__u8e3s4.y5o_1;
|
|
14
|
+
var tmp6_firstCommitDateTime = _this__u8e3s4.z5o_1;
|
|
15
|
+
var tmp7_hash = _this__u8e3s4.a5p_1;
|
|
16
|
+
var tmp8_id = _this__u8e3s4.b5p_1;
|
|
17
|
+
var tmp9_integrationDateTime = _this__u8e3s4.c5p_1;
|
|
18
|
+
var tmp10_label = _this__u8e3s4.d5p_1;
|
|
19
|
+
var tmp11_link = _this__u8e3s4.e5p_1;
|
|
20
|
+
var tmp12_name = _this__u8e3s4.f5p_1;
|
|
21
|
+
var tmp13_participantEmails = toSet(_this__u8e3s4.g5p_1);
|
|
22
|
+
var tmp14_semver = _this__u8e3s4.h5p_1;
|
|
23
|
+
var tmp15_story = _this__u8e3s4.i5p_1;
|
|
24
|
+
return new (Contribution())(tmp8_id, tmp1_createdAt, tmp3_dateTime, tmp7_hash, tmp5_firstCommit, tmp6_firstCommitDateTime, tmp4_ease, tmp15_story, tmp11_link, tmp13_participantEmails, tmp10_label, tmp14_semver, tmp9_integrationDateTime, tmp2_cycleTime, tmp0_commitCount, tmp12_name);
|
|
25
|
+
}
|
|
26
|
+
//region block: exports
|
|
27
|
+
export {
|
|
28
|
+
toDomain as toDomain2nz0x6uqah3y9,
|
|
29
|
+
};
|
|
30
|
+
//endregion
|
|
31
|
+
|
|
32
|
+
//# sourceMappingURL=ContributionDetailsMapper.mjs.map
|
package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/ContributionDetailsMapper.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../sdk/src/commonMain/kotlin/com/zegreatrob/coupling/sdk/mapper/ContributionDetailsMapper.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["toDomain","<this>"],"mappings":";;;;;;iBAKAA,CAAIC,aAAJD,EAAqC;A,MACnB,sC;MACF,oC;MACA,oC;MACD,mC;MACJ,+B;MACO,sC;MACQ,8C;MACf,+B;MACF,6B;MACiB,8C;MACd,iC;MACD,gC;MACA,gC;MAC+B,gCAAlB,aAAkB,CAAlB,KAAkB,C;MAC7B,kC;MACD,iC;EACX,4BARQ,OAQR,EAfe,cAef,EAbc,aAad,EATU,SASV,EAXiB,gBAWjB,EAVyB,wBAUzB,EAZU,SAYV,EADW,WACX,EALU,UAKV,EAHyC,uBAGzC,EANW,WAMX,EAFY,YAEZ,EAPyB,wBAOzB,EAde,cAcf,EAhBiB,gBAgBjB,EAJU,UAIV,C;AAAD,C;;;;;"}
|
|
@@ -22,33 +22,33 @@ import { PairingSetux5bpf0canxq as PairingSet } from '../../../../../../Coupling
|
|
|
22
22
|
//endregion
|
|
23
23
|
function toDomain_1(_this__u8e3s4) {
|
|
24
24
|
// Inline function 'kotlin.collections.map' call
|
|
25
|
-
var this_0 = _this__u8e3s4.
|
|
25
|
+
var this_0 = _this__u8e3s4.e5q_1;
|
|
26
26
|
// Inline function 'kotlin.collections.mapTo' call
|
|
27
27
|
var destination = ArrayList().r2(collectionSizeOrDefault(this_0, 10));
|
|
28
28
|
var _iterator__ex2g4s = this_0.l1();
|
|
29
29
|
while (_iterator__ex2g4s.m1()) {
|
|
30
30
|
var item = _iterator__ex2g4s.n1();
|
|
31
31
|
// Inline function 'kotlin.collections.map' call
|
|
32
|
-
var this_1 = item.
|
|
32
|
+
var this_1 = item.j5p_1;
|
|
33
33
|
// Inline function 'kotlin.collections.mapTo' call
|
|
34
34
|
var destination_0 = ArrayList().r2(collectionSizeOrDefault(this_1, 10));
|
|
35
35
|
var _iterator__ex2g4s_0 = this_1.l1();
|
|
36
36
|
while (_iterator__ex2g4s_0.m1()) {
|
|
37
37
|
var item_0 = _iterator__ex2g4s_0.n1();
|
|
38
|
-
var tmp = toDomain(item_0.
|
|
39
|
-
var tmp0_safe_receiver = item_0.
|
|
40
|
-
var tmp$ret$5 = new (Player())(item_0.
|
|
38
|
+
var tmp = toDomain(item_0.o5p_1);
|
|
39
|
+
var tmp0_safe_receiver = item_0.p5p_1;
|
|
40
|
+
var tmp$ret$5 = new (Player())(item_0.l5p_1, tmp, item_0.m5p_1, item_0.n5p_1, item_0.q5p_1, item_0.r5p_1, item_0.s5p_1, tmp0_safe_receiver == null ? null : toDomain_0(tmp0_safe_receiver), toSet(item_0.t5p_1));
|
|
41
41
|
destination_0.o2(tmp$ret$5);
|
|
42
42
|
}
|
|
43
43
|
var tmp_0 = toCouplingPair(destination_0);
|
|
44
44
|
// Inline function 'kotlin.collections.map' call
|
|
45
|
-
var this_2 = item.
|
|
45
|
+
var this_2 = item.k5p_1;
|
|
46
46
|
// Inline function 'kotlin.collections.mapTo' call
|
|
47
47
|
var destination_1 = ArrayList().r2(collectionSizeOrDefault(this_2, 10));
|
|
48
48
|
var _iterator__ex2g4s_1 = this_2.l1();
|
|
49
49
|
while (_iterator__ex2g4s_1.m1()) {
|
|
50
50
|
var item_1 = _iterator__ex2g4s_1.n1();
|
|
51
|
-
var tmp$ret$8 = new (Pin())(item_1.
|
|
51
|
+
var tmp$ret$8 = new (Pin())(item_1.z5p_1, item_1.a5q_1, item_1.y5p_1);
|
|
52
52
|
destination_1.o2(tmp$ret$8);
|
|
53
53
|
}
|
|
54
54
|
var tmp$ret$2 = withPins(tmp_0, toSet(destination_1));
|
|
@@ -58,7 +58,7 @@ function toDomain_1(_this__u8e3s4) {
|
|
|
58
58
|
var this_3 = toNotEmptyList(destination);
|
|
59
59
|
throwOnFailure(this_3);
|
|
60
60
|
var tmp$ret$9 = _Result___get_value__impl__bjfvqg(this_3).c52_1;
|
|
61
|
-
return new (PairingSet())(_this__u8e3s4.
|
|
61
|
+
return new (PairingSet())(_this__u8e3s4.b5q_1, _this__u8e3s4.d5q_1, tmp$ret$9, _this__u8e3s4.f5q_1, _this__u8e3s4.g5q_1);
|
|
62
62
|
}
|
|
63
63
|
//region block: exports
|
|
64
64
|
export {
|
|
@@ -5,16 +5,16 @@ import { PartyDetails2ts6ys4e0d9qx as PartyDetails } from '../../../../../../Cou
|
|
|
5
5
|
//region block: pre-declaration
|
|
6
6
|
//endregion
|
|
7
7
|
function toDomain(_this__u8e3s4) {
|
|
8
|
-
var tmp0_id = _this__u8e3s4.
|
|
9
|
-
var tmp1_pairingRule = Companion_instance.
|
|
10
|
-
var tmp2_defaultBadgeName = _this__u8e3s4.
|
|
11
|
-
var tmp3_alternateBadgeName = _this__u8e3s4.
|
|
12
|
-
var tmp4_email = _this__u8e3s4.
|
|
13
|
-
var tmp5_name = _this__u8e3s4.
|
|
14
|
-
var tmp6_badgesEnabled = _this__u8e3s4.
|
|
15
|
-
var tmp7_callSignsEnabled = _this__u8e3s4.
|
|
16
|
-
var tmp8_animationEnabled = _this__u8e3s4.
|
|
17
|
-
var tmp9_animationSpeed = _this__u8e3s4.
|
|
8
|
+
var tmp0_id = _this__u8e3s4.q5q_1;
|
|
9
|
+
var tmp1_pairingRule = Companion_instance.y54(_this__u8e3s4.t5q_1);
|
|
10
|
+
var tmp2_defaultBadgeName = _this__u8e3s4.v5q_1;
|
|
11
|
+
var tmp3_alternateBadgeName = _this__u8e3s4.w5q_1;
|
|
12
|
+
var tmp4_email = _this__u8e3s4.s5q_1;
|
|
13
|
+
var tmp5_name = _this__u8e3s4.r5q_1;
|
|
14
|
+
var tmp6_badgesEnabled = _this__u8e3s4.u5q_1;
|
|
15
|
+
var tmp7_callSignsEnabled = _this__u8e3s4.x5q_1;
|
|
16
|
+
var tmp8_animationEnabled = _this__u8e3s4.y5q_1;
|
|
17
|
+
var tmp9_animationSpeed = _this__u8e3s4.z5q_1;
|
|
18
18
|
return new (PartyDetails())(tmp0_id, tmp1_pairingRule, tmp6_badgesEnabled, tmp2_defaultBadgeName, tmp3_alternateBadgeName, tmp4_email, tmp5_name, tmp7_callSignsEnabled, tmp8_animationEnabled, tmp9_animationSpeed);
|
|
19
19
|
}
|
|
20
20
|
//region block: exports
|