@continuous-excellence/coupling-cli 1.1.517 → 1.1.519
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-kotlin-stdlib/kotlin/text/stringJs.mjs +6 -6
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/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
|
@@ -37,28 +37,28 @@ import { withSdk224uta8ich308 as withSdk } from '../WithSdk.mjs';
|
|
|
37
37
|
//region block: pre-declaration
|
|
38
38
|
//endregion
|
|
39
39
|
function formatPartyDetails(details) {
|
|
40
|
-
return trimIndent('\n Party ID: ' + details.
|
|
40
|
+
return trimIndent('\n Party ID: ' + details.z54_1.toString() + '\n Name: ' + details.f55_1 + '\n Email: ' + details.e55_1 + '\n PairingRule: ' + details.a55_1.toString() + '\n BadgesEnabled: ' + details.b55_1 + '\n DefaultBadgeName: ' + details.c55_1 + '\n AlternateBadgeName: ' + details.d55_1 + '\n CallSignsEnabled: ' + details.g55_1 + '\n AnimationEnabled: ' + details.h55_1 + '\n AnimationSpeed: ' + details.i55_1 + '\n');
|
|
41
41
|
}
|
|
42
42
|
function _get_context__ps0bpe($this) {
|
|
43
43
|
var tmp = KProperty1();
|
|
44
|
-
return $this.
|
|
44
|
+
return $this.p7a_1.zp($this, getPropertyCallableRef('context', 1, tmp, PartyDetails$_get_context_$ref_q6kw5z(), null));
|
|
45
45
|
}
|
|
46
46
|
function _get_partyId__g79dgw($this) {
|
|
47
47
|
var tmp = KProperty1();
|
|
48
|
-
return $this.
|
|
48
|
+
return $this.q7a_1.zp($this, getPropertyCallableRef('partyId', 1, tmp, PartyDetails$_get_partyId_$ref_gt5zd(), null));
|
|
49
49
|
}
|
|
50
50
|
var sam$kotlin_properties_ReadOnlyProperty$0Class;
|
|
51
51
|
function sam$kotlin_properties_ReadOnlyProperty$0() {
|
|
52
52
|
if (sam$kotlin_properties_ReadOnlyProperty$0Class === VOID) {
|
|
53
53
|
class $ {
|
|
54
54
|
constructor(function_0) {
|
|
55
|
-
this.
|
|
55
|
+
this.p7c_1 = function_0;
|
|
56
56
|
}
|
|
57
57
|
zp(thisRef, property) {
|
|
58
|
-
return this.
|
|
58
|
+
return this.p7c_1(thisRef, property);
|
|
59
59
|
}
|
|
60
60
|
c5() {
|
|
61
|
-
return this.
|
|
61
|
+
return this.p7c_1;
|
|
62
62
|
}
|
|
63
63
|
equals(other) {
|
|
64
64
|
var tmp;
|
|
@@ -89,13 +89,13 @@ function sam$kotlin_properties_ReadOnlyProperty$0_0() {
|
|
|
89
89
|
if (sam$kotlin_properties_ReadOnlyProperty$0Class_0 === VOID) {
|
|
90
90
|
class $ {
|
|
91
91
|
constructor(function_0) {
|
|
92
|
-
this.
|
|
92
|
+
this.q7c_1 = function_0;
|
|
93
93
|
}
|
|
94
94
|
zp(thisRef, property) {
|
|
95
|
-
return this.
|
|
95
|
+
return this.q7c_1(thisRef, property);
|
|
96
96
|
}
|
|
97
97
|
c5() {
|
|
98
|
-
return this.
|
|
98
|
+
return this.q7c_1;
|
|
99
99
|
}
|
|
100
100
|
equals(other) {
|
|
101
101
|
var tmp;
|
|
@@ -123,13 +123,13 @@ function sam$kotlin_properties_ReadOnlyProperty$0_0() {
|
|
|
123
123
|
}
|
|
124
124
|
function PartyDetails$context$delegate$lambda$lambda($key) {
|
|
125
125
|
return (it) => {
|
|
126
|
-
var tmp = it.
|
|
126
|
+
var tmp = it.m5w_1.j4($key);
|
|
127
127
|
return tmp instanceof PartyContext() ? tmp : null;
|
|
128
128
|
};
|
|
129
129
|
}
|
|
130
130
|
function PartyDetails$context$delegate$lambda($key) {
|
|
131
131
|
return (thisRef, _unused_var__etf5q3) => {
|
|
132
|
-
var tmp0 = thisRef.
|
|
132
|
+
var tmp0 = thisRef.k5v();
|
|
133
133
|
// Inline function 'com.github.ajalt.clikt.core.Context.findObject' call
|
|
134
134
|
var key = $key;
|
|
135
135
|
var tmp = selfAndAncestors(tmp0);
|
|
@@ -142,13 +142,13 @@ function PartyDetails$_get_context_$ref_q6kw5z() {
|
|
|
142
142
|
}
|
|
143
143
|
function PartyDetails$partyId$delegate$lambda$lambda($key) {
|
|
144
144
|
return (it) => {
|
|
145
|
-
var tmp = it.
|
|
145
|
+
var tmp = it.m5w_1.j4($key);
|
|
146
146
|
return tmp instanceof PartyId() ? tmp : null;
|
|
147
147
|
};
|
|
148
148
|
}
|
|
149
149
|
function PartyDetails$partyId$delegate$lambda($key) {
|
|
150
150
|
return (thisRef, _unused_var__etf5q3) => {
|
|
151
|
-
var tmp0 = thisRef.
|
|
151
|
+
var tmp0 = thisRef.k5v();
|
|
152
152
|
// Inline function 'com.github.ajalt.clikt.core.Context.findObject' call
|
|
153
153
|
var key = $key;
|
|
154
154
|
var tmp = selfAndAncestors(tmp0);
|
|
@@ -161,7 +161,7 @@ function PartyDetails$_get_partyId_$ref_gt5zd() {
|
|
|
161
161
|
}
|
|
162
162
|
function PartyDetails$echo$ref(p0) {
|
|
163
163
|
return (receiver) => {
|
|
164
|
-
p0.
|
|
164
|
+
p0.v5v(receiver);
|
|
165
165
|
return Unit_instance;
|
|
166
166
|
};
|
|
167
167
|
}
|
|
@@ -170,21 +170,21 @@ function PartyDetails$run$slambda() {
|
|
|
170
170
|
if (PartyDetails$run$slambdaClass === VOID) {
|
|
171
171
|
class $ {
|
|
172
172
|
constructor(this$0) {
|
|
173
|
-
this.
|
|
173
|
+
this.r7c_1 = this$0;
|
|
174
174
|
}
|
|
175
|
-
*
|
|
176
|
-
var tmp0_safe_receiver = yield* sdk.
|
|
177
|
-
var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
178
|
-
var tmp2_safe_receiver = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.
|
|
175
|
+
*u75(sdk, $completion) {
|
|
176
|
+
var tmp0_safe_receiver = yield* sdk.w57(new (GqlQuery())(new (PartyDetailsQuery())(_get_partyId__g79dgw(this.r7c_1))), $completion);
|
|
177
|
+
var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.h5n_1;
|
|
178
|
+
var tmp2_safe_receiver = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.j5n_1;
|
|
179
179
|
var partyDetails = tmp2_safe_receiver == null ? null : toDomain(tmp2_safe_receiver);
|
|
180
180
|
if (partyDetails == null) {
|
|
181
|
-
throw CliktError().
|
|
181
|
+
throw CliktError().z5z('Party not found.', VOID, VOID, true);
|
|
182
182
|
}
|
|
183
|
-
this.
|
|
183
|
+
this.r7c_1.v5v(formatPartyDetails(partyDetails));
|
|
184
184
|
return Unit_instance;
|
|
185
185
|
}
|
|
186
186
|
vd(p1, $completion) {
|
|
187
|
-
return this.
|
|
187
|
+
return this.u75((!(p1 == null) ? isInterface(p1, ActionCannon()) : false) ? p1 : THROW_CCE(), $completion);
|
|
188
188
|
}
|
|
189
189
|
}
|
|
190
190
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -194,7 +194,7 @@ function PartyDetails$run$slambda() {
|
|
|
194
194
|
}
|
|
195
195
|
function PartyDetails$run$slambda_0(this$0) {
|
|
196
196
|
var i = new (PartyDetails$run$slambda())(this$0);
|
|
197
|
-
var l = (sdk, $completion) => i.
|
|
197
|
+
var l = (sdk, $completion) => i.u75(sdk, $completion);
|
|
198
198
|
l.$arity = 1;
|
|
199
199
|
return l;
|
|
200
200
|
}
|
|
@@ -202,24 +202,24 @@ var PartyDetailsClass;
|
|
|
202
202
|
function PartyDetails() {
|
|
203
203
|
if (PartyDetailsClass === VOID) {
|
|
204
204
|
class $ extends SuspendingCliktCommand() {
|
|
205
|
-
static
|
|
206
|
-
var $this = this.
|
|
207
|
-
$this.
|
|
205
|
+
static r7a(sdkProvider) {
|
|
206
|
+
var $this = this.h6z('details');
|
|
207
|
+
$this.o7a_1 = sdkProvider;
|
|
208
208
|
var tmp = $this;
|
|
209
209
|
// Inline function 'com.github.ajalt.clikt.core.requireObject' call
|
|
210
210
|
var key = 'default_object';
|
|
211
211
|
var tmp_0 = PartyDetails$context$delegate$lambda(key);
|
|
212
|
-
tmp.
|
|
212
|
+
tmp.p7a_1 = new (sam$kotlin_properties_ReadOnlyProperty$0())(tmp_0);
|
|
213
213
|
var tmp_1 = $this;
|
|
214
214
|
// Inline function 'com.github.ajalt.clikt.core.requireObject' call
|
|
215
215
|
var tmp_2 = PartyDetails$partyId$delegate$lambda('partyId');
|
|
216
|
-
tmp_1.
|
|
216
|
+
tmp_1.q7a_1 = new (sam$kotlin_properties_ReadOnlyProperty$0_0())(tmp_2);
|
|
217
217
|
return $this;
|
|
218
218
|
}
|
|
219
|
-
*
|
|
220
|
-
var tmp = _get_context__ps0bpe(this).
|
|
219
|
+
*w5i($completion) {
|
|
220
|
+
var tmp = _get_context__ps0bpe(this).q77_1;
|
|
221
221
|
var tmp_0 = PartyDetails$echo$ref(this);
|
|
222
|
-
yield* withSdk(tmp, tmp_0, this.
|
|
222
|
+
yield* withSdk(tmp, tmp_0, this.o7a_1, PartyDetails$run$slambda_0(this), $completion);
|
|
223
223
|
return Unit_instance;
|
|
224
224
|
}
|
|
225
225
|
}
|
|
@@ -29,7 +29,7 @@ function formatPartyList(parties) {
|
|
|
29
29
|
}
|
|
30
30
|
function _get_env__e67txg($this) {
|
|
31
31
|
var tmp = KProperty1();
|
|
32
|
-
return $this.
|
|
32
|
+
return $this.x79_1.zp($this, getPropertyCallableRef('env', 1, tmp, PartyList$_get_env_$ref_drep03_0(), null));
|
|
33
33
|
}
|
|
34
34
|
function PartyList$_get_env_$ref_drep03() {
|
|
35
35
|
return (p0) => _get_env__e67txg(p0);
|
|
@@ -39,7 +39,7 @@ function PartyList$_get_env_$ref_drep03_0() {
|
|
|
39
39
|
}
|
|
40
40
|
function PartyList$echo$ref(p0) {
|
|
41
41
|
return (receiver) => {
|
|
42
|
-
p0.
|
|
42
|
+
p0.v5v(receiver);
|
|
43
43
|
return Unit_instance;
|
|
44
44
|
};
|
|
45
45
|
}
|
|
@@ -48,11 +48,11 @@ function PartyList$run$slambda() {
|
|
|
48
48
|
if (PartyList$run$slambdaClass === VOID) {
|
|
49
49
|
class $ {
|
|
50
50
|
constructor(this$0) {
|
|
51
|
-
this.
|
|
51
|
+
this.s7c_1 = this$0;
|
|
52
52
|
}
|
|
53
|
-
*
|
|
54
|
-
var tmp0_safe_receiver = yield* sdk.
|
|
55
|
-
var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
53
|
+
*u75(sdk, $completion) {
|
|
54
|
+
var tmp0_safe_receiver = yield* sdk.w57(new (GqlQuery())(new (PartyListQuery())()), $completion);
|
|
55
|
+
var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.g71_1;
|
|
56
56
|
var tmp;
|
|
57
57
|
if (tmp1_safe_receiver == null) {
|
|
58
58
|
tmp = null;
|
|
@@ -63,7 +63,7 @@ function PartyList$run$slambda() {
|
|
|
63
63
|
var _iterator__ex2g4s = tmp1_safe_receiver.l1();
|
|
64
64
|
while (_iterator__ex2g4s.m1()) {
|
|
65
65
|
var item = _iterator__ex2g4s.n1();
|
|
66
|
-
var tmp$ret$2 = toDomain(item.
|
|
66
|
+
var tmp$ret$2 = toDomain(item.i71_1);
|
|
67
67
|
destination.o2(tmp$ret$2);
|
|
68
68
|
}
|
|
69
69
|
tmp = destination;
|
|
@@ -79,7 +79,7 @@ function PartyList$run$slambda() {
|
|
|
79
79
|
var _iterator__ex2g4s_0 = tmp2_safe_receiver.l1();
|
|
80
80
|
while (_iterator__ex2g4s_0.m1()) {
|
|
81
81
|
var item_0 = _iterator__ex2g4s_0.n1();
|
|
82
|
-
var tmp$ret$5 = 'Party: id = ' + NotBlankString__toString_impl_5tex9r(item_0.
|
|
82
|
+
var tmp$ret$5 = 'Party: id = ' + NotBlankString__toString_impl_5tex9r(item_0.z54_1.k55_1) + ', name = ' + item_0.f55_1;
|
|
83
83
|
destination_0.o2(tmp$ret$5);
|
|
84
84
|
}
|
|
85
85
|
tmp_0 = destination_0;
|
|
@@ -94,11 +94,11 @@ function PartyList$run$slambda() {
|
|
|
94
94
|
}
|
|
95
95
|
var tmp4_elvis_lhs = tmp_1;
|
|
96
96
|
var output = tmp4_elvis_lhs == null ? '' : tmp4_elvis_lhs;
|
|
97
|
-
this.
|
|
97
|
+
this.s7c_1.v5v(output);
|
|
98
98
|
return Unit_instance;
|
|
99
99
|
}
|
|
100
100
|
vd(p1, $completion) {
|
|
101
|
-
return this.
|
|
101
|
+
return this.u75((!(p1 == null) ? isInterface(p1, ActionCannon()) : false) ? p1 : THROW_CCE(), $completion);
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
104
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -108,7 +108,7 @@ function PartyList$run$slambda() {
|
|
|
108
108
|
}
|
|
109
109
|
function PartyList$run$slambda_0(this$0) {
|
|
110
110
|
var i = new (PartyList$run$slambda())(this$0);
|
|
111
|
-
var l = (sdk, $completion) => i.
|
|
111
|
+
var l = (sdk, $completion) => i.u75(sdk, $completion);
|
|
112
112
|
l.$arity = 1;
|
|
113
113
|
return l;
|
|
114
114
|
}
|
|
@@ -116,19 +116,19 @@ var PartyListClass;
|
|
|
116
116
|
function PartyList() {
|
|
117
117
|
if (PartyListClass === VOID) {
|
|
118
118
|
class $ extends SuspendingCliktCommand() {
|
|
119
|
-
static
|
|
120
|
-
var $this = this.
|
|
121
|
-
$this.
|
|
119
|
+
static y79(sdkProvider) {
|
|
120
|
+
var $this = this.h6z('list');
|
|
121
|
+
$this.w79_1 = sdkProvider;
|
|
122
122
|
var tmp = $this;
|
|
123
123
|
var tmp_0 = default_0(option($this, []), 'production');
|
|
124
124
|
var tmp_1 = KProperty1();
|
|
125
|
-
tmp.
|
|
125
|
+
tmp.x79_1 = tmp_0.t6a($this, getPropertyCallableRef('env', 1, tmp_1, PartyList$_get_env_$ref_drep03(), null));
|
|
126
126
|
return $this;
|
|
127
127
|
}
|
|
128
|
-
*
|
|
128
|
+
*w5i($completion) {
|
|
129
129
|
var tmp = _get_env__e67txg(this);
|
|
130
130
|
var tmp_0 = PartyList$echo$ref(this);
|
|
131
|
-
yield* withSdk(tmp, tmp_0, this.
|
|
131
|
+
yield* withSdk(tmp, tmp_0, this.w79_1, PartyList$run$slambda_0(this), $completion);
|
|
132
132
|
return Unit_instance;
|
|
133
133
|
}
|
|
134
134
|
}
|
|
@@ -44,32 +44,32 @@ function formatPlayers(partyId, players) {
|
|
|
44
44
|
var body = joinToString(players, '\n', VOID, VOID, VOID, VOID, formatPlayers$lambda);
|
|
45
45
|
var tmp;
|
|
46
46
|
if (isBlank(body)) {
|
|
47
|
-
tmp = 'Players for Party ID: ' + NotBlankString__toString_impl_5tex9r(partyId.
|
|
47
|
+
tmp = 'Players for Party ID: ' + NotBlankString__toString_impl_5tex9r(partyId.k55_1);
|
|
48
48
|
} else {
|
|
49
|
-
tmp = 'Players for Party ID: ' + NotBlankString__toString_impl_5tex9r(partyId.
|
|
49
|
+
tmp = 'Players for Party ID: ' + NotBlankString__toString_impl_5tex9r(partyId.k55_1) + '\n' + body;
|
|
50
50
|
}
|
|
51
51
|
return tmp;
|
|
52
52
|
}
|
|
53
53
|
function _get_context__ps0bpe($this) {
|
|
54
54
|
var tmp = KProperty1();
|
|
55
|
-
return $this.
|
|
55
|
+
return $this.i7b_1.zp($this, getPropertyCallableRef('context', 1, tmp, Players$_get_context_$ref_7m15sv(), null));
|
|
56
56
|
}
|
|
57
57
|
function _get_partyId__g79dgw($this) {
|
|
58
58
|
var tmp = KProperty1();
|
|
59
|
-
return $this.
|
|
59
|
+
return $this.j7b_1.zp($this, getPropertyCallableRef('partyId', 1, tmp, Players$_get_partyId_$ref_xbsvzh(), null));
|
|
60
60
|
}
|
|
61
61
|
var sam$kotlin_properties_ReadOnlyProperty$0Class;
|
|
62
62
|
function sam$kotlin_properties_ReadOnlyProperty$0() {
|
|
63
63
|
if (sam$kotlin_properties_ReadOnlyProperty$0Class === VOID) {
|
|
64
64
|
class $ {
|
|
65
65
|
constructor(function_0) {
|
|
66
|
-
this.
|
|
66
|
+
this.t7c_1 = function_0;
|
|
67
67
|
}
|
|
68
68
|
zp(thisRef, property) {
|
|
69
|
-
return this.
|
|
69
|
+
return this.t7c_1(thisRef, property);
|
|
70
70
|
}
|
|
71
71
|
c5() {
|
|
72
|
-
return this.
|
|
72
|
+
return this.t7c_1;
|
|
73
73
|
}
|
|
74
74
|
equals(other) {
|
|
75
75
|
var tmp;
|
|
@@ -100,13 +100,13 @@ function sam$kotlin_properties_ReadOnlyProperty$0_0() {
|
|
|
100
100
|
if (sam$kotlin_properties_ReadOnlyProperty$0Class_0 === VOID) {
|
|
101
101
|
class $ {
|
|
102
102
|
constructor(function_0) {
|
|
103
|
-
this.
|
|
103
|
+
this.u7c_1 = function_0;
|
|
104
104
|
}
|
|
105
105
|
zp(thisRef, property) {
|
|
106
|
-
return this.
|
|
106
|
+
return this.u7c_1(thisRef, property);
|
|
107
107
|
}
|
|
108
108
|
c5() {
|
|
109
|
-
return this.
|
|
109
|
+
return this.u7c_1;
|
|
110
110
|
}
|
|
111
111
|
equals(other) {
|
|
112
112
|
var tmp;
|
|
@@ -134,13 +134,13 @@ function sam$kotlin_properties_ReadOnlyProperty$0_0() {
|
|
|
134
134
|
}
|
|
135
135
|
function Players$context$delegate$lambda$lambda($key) {
|
|
136
136
|
return (it) => {
|
|
137
|
-
var tmp = it.
|
|
137
|
+
var tmp = it.m5w_1.j4($key);
|
|
138
138
|
return tmp instanceof PartyContext() ? tmp : null;
|
|
139
139
|
};
|
|
140
140
|
}
|
|
141
141
|
function Players$context$delegate$lambda($key) {
|
|
142
142
|
return (thisRef, _unused_var__etf5q3) => {
|
|
143
|
-
var tmp0 = thisRef.
|
|
143
|
+
var tmp0 = thisRef.k5v();
|
|
144
144
|
// Inline function 'com.github.ajalt.clikt.core.Context.findObject' call
|
|
145
145
|
var key = $key;
|
|
146
146
|
var tmp = selfAndAncestors(tmp0);
|
|
@@ -153,13 +153,13 @@ function Players$_get_context_$ref_7m15sv() {
|
|
|
153
153
|
}
|
|
154
154
|
function Players$partyId$delegate$lambda$lambda($key) {
|
|
155
155
|
return (it) => {
|
|
156
|
-
var tmp = it.
|
|
156
|
+
var tmp = it.m5w_1.j4($key);
|
|
157
157
|
return tmp instanceof PartyId() ? tmp : null;
|
|
158
158
|
};
|
|
159
159
|
}
|
|
160
160
|
function Players$partyId$delegate$lambda($key) {
|
|
161
161
|
return (thisRef, _unused_var__etf5q3) => {
|
|
162
|
-
var tmp0 = thisRef.
|
|
162
|
+
var tmp0 = thisRef.k5v();
|
|
163
163
|
// Inline function 'com.github.ajalt.clikt.core.Context.findObject' call
|
|
164
164
|
var key = $key;
|
|
165
165
|
var tmp = selfAndAncestors(tmp0);
|
|
@@ -172,7 +172,7 @@ function Players$_get_partyId_$ref_xbsvzh() {
|
|
|
172
172
|
}
|
|
173
173
|
function Players$echo$ref(p0) {
|
|
174
174
|
return (receiver) => {
|
|
175
|
-
p0.
|
|
175
|
+
p0.v5v(receiver);
|
|
176
176
|
return Unit_instance;
|
|
177
177
|
};
|
|
178
178
|
}
|
|
@@ -181,12 +181,12 @@ function Players$run$slambda() {
|
|
|
181
181
|
if (Players$run$slambdaClass === VOID) {
|
|
182
182
|
class $ {
|
|
183
183
|
constructor(this$0) {
|
|
184
|
-
this.
|
|
184
|
+
this.v7c_1 = this$0;
|
|
185
185
|
}
|
|
186
|
-
*
|
|
187
|
-
var tmp0_safe_receiver = yield* sdk.
|
|
188
|
-
var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
189
|
-
var tmp2_safe_receiver = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.
|
|
186
|
+
*u75(sdk, $completion) {
|
|
187
|
+
var tmp0_safe_receiver = yield* sdk.w57(new (GqlQuery())(new (PlayersQuery())(new (PartyInput())(_get_partyId__g79dgw(this.v7c_1)))), $completion);
|
|
188
|
+
var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.l71_1;
|
|
189
|
+
var tmp2_safe_receiver = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.m71_1;
|
|
190
190
|
var tmp;
|
|
191
191
|
if (tmp2_safe_receiver == null) {
|
|
192
192
|
tmp = null;
|
|
@@ -197,18 +197,18 @@ function Players$run$slambda() {
|
|
|
197
197
|
var _iterator__ex2g4s = tmp2_safe_receiver.l1();
|
|
198
198
|
while (_iterator__ex2g4s.m1()) {
|
|
199
199
|
var item = _iterator__ex2g4s.n1();
|
|
200
|
-
var tmp$ret$2 = item.
|
|
200
|
+
var tmp$ret$2 = item.o71_1.c5r_1 + ' ' + item.o71_1.d5r_1;
|
|
201
201
|
destination.o2(tmp$ret$2);
|
|
202
202
|
}
|
|
203
203
|
tmp = destination;
|
|
204
204
|
}
|
|
205
205
|
var tmp3_elvis_lhs = tmp;
|
|
206
206
|
var players = tmp3_elvis_lhs == null ? emptyList() : tmp3_elvis_lhs;
|
|
207
|
-
this.
|
|
207
|
+
this.v7c_1.v5v(formatPlayers(_get_partyId__g79dgw(this.v7c_1), players));
|
|
208
208
|
return Unit_instance;
|
|
209
209
|
}
|
|
210
210
|
vd(p1, $completion) {
|
|
211
|
-
return this.
|
|
211
|
+
return this.u75((!(p1 == null) ? isInterface(p1, ActionCannon()) : false) ? p1 : THROW_CCE(), $completion);
|
|
212
212
|
}
|
|
213
213
|
}
|
|
214
214
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -218,7 +218,7 @@ function Players$run$slambda() {
|
|
|
218
218
|
}
|
|
219
219
|
function Players$run$slambda_0(this$0) {
|
|
220
220
|
var i = new (Players$run$slambda())(this$0);
|
|
221
|
-
var l = (sdk, $completion) => i.
|
|
221
|
+
var l = (sdk, $completion) => i.u75(sdk, $completion);
|
|
222
222
|
l.$arity = 1;
|
|
223
223
|
return l;
|
|
224
224
|
}
|
|
@@ -226,24 +226,24 @@ var PlayersClass;
|
|
|
226
226
|
function Players() {
|
|
227
227
|
if (PlayersClass === VOID) {
|
|
228
228
|
class $ extends SuspendingCliktCommand() {
|
|
229
|
-
static
|
|
230
|
-
var $this = this.
|
|
231
|
-
$this.
|
|
229
|
+
static k7b(sdkProvider) {
|
|
230
|
+
var $this = this.h6z();
|
|
231
|
+
$this.h7b_1 = sdkProvider;
|
|
232
232
|
var tmp = $this;
|
|
233
233
|
// Inline function 'com.github.ajalt.clikt.core.requireObject' call
|
|
234
234
|
var key = 'default_object';
|
|
235
235
|
var tmp_0 = Players$context$delegate$lambda(key);
|
|
236
|
-
tmp.
|
|
236
|
+
tmp.i7b_1 = new (sam$kotlin_properties_ReadOnlyProperty$0())(tmp_0);
|
|
237
237
|
var tmp_1 = $this;
|
|
238
238
|
// Inline function 'com.github.ajalt.clikt.core.requireObject' call
|
|
239
239
|
var tmp_2 = Players$partyId$delegate$lambda('partyId');
|
|
240
|
-
tmp_1.
|
|
240
|
+
tmp_1.j7b_1 = new (sam$kotlin_properties_ReadOnlyProperty$0_0())(tmp_2);
|
|
241
241
|
return $this;
|
|
242
242
|
}
|
|
243
|
-
*
|
|
244
|
-
var tmp = _get_context__ps0bpe(this).
|
|
243
|
+
*w5i($completion) {
|
|
244
|
+
var tmp = _get_context__ps0bpe(this).q77_1;
|
|
245
245
|
var tmp_0 = Players$echo$ref(this);
|
|
246
|
-
yield* withSdk(tmp, tmp_0, this.
|
|
246
|
+
yield* withSdk(tmp, tmp_0, this.h7b_1, Players$run$slambda_0(this), $completion);
|
|
247
247
|
return Unit_instance;
|
|
248
248
|
}
|
|
249
249
|
}
|