@continuous-excellence/coupling-cli 1.1.470 → 1.1.472
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Auth0Environment.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigCommand.mjs +32 -32
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +12 -12
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +4 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +19 -19
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +23 -23
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +30 -30
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +33 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +12 -12
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +24 -24
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +48 -48
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +18 -18
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs.map +1 -1
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +19 -19
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +8 -8
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +8 -8
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +28 -28
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +24 -24
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +16 -16
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +11 -11
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +77 -77
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +44 -44
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +15 -15
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs +28 -28
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +41 -41
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyInput.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +201 -201
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/NetworkInterceptor.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +36 -36
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/DeferredJsonMerger.mjs +27 -27
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +42 -42
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/flows.mjs +22 -22
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +15 -15
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +12 -12
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs +102 -102
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +25 -25
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +141 -141
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +20 -20
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +13 -13
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +42 -42
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +5 -5
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +28 -28
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +110 -110
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +93 -93
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +124 -124
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +134 -134
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +48 -48
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +12 -12
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/EagerOption.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/FlagOption.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/Option.mjs +21 -21
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +206 -206
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +45 -45
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +230 -230
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +65 -65
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +25 -25
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +121 -121
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +134 -134
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +62 -62
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +19 -19
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs +34 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs.map +1 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +17 -28
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +29 -22
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +16 -7
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +33 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +7 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +13 -12
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggingClock.mjs +15 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggingClock.mjs.map +1 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +2 -2
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +2 -2
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +63 -63
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +79 -79
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Theme.mjs +44 -44
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Whitespace.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Widget.mjs +2 -2
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/WidthRange.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Borders.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Table.mjs +233 -233
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +152 -152
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +18 -18
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +10 -10
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +56 -56
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +59 -59
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +4 -4
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +95 -95
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +37 -37
- package/package.json +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs +0 -15
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs.map +0 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +0 -34
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs.map +0 -1
|
@@ -32,17 +32,17 @@ import { suspendOrReturn49pspzlx5djv as suspendOrReturn } from '../../../../../.
|
|
|
32
32
|
//endregion
|
|
33
33
|
function _get_context__ps0bpe($this) {
|
|
34
34
|
var tmp = KProperty1();
|
|
35
|
-
return $this.
|
|
35
|
+
return $this.k74_1.hq($this, getPropertyCallableRef('context', 1, tmp, PartyDetails$_get_context_$ref_q6kw5z(), null));
|
|
36
36
|
}
|
|
37
37
|
function _get_partyId__g79dgw($this) {
|
|
38
38
|
var tmp = KProperty1();
|
|
39
|
-
return $this.
|
|
39
|
+
return $this.l74_1.hq($this, getPropertyCallableRef('partyId', 1, tmp, PartyDetails$_get_partyId_$ref_gt5zd(), null));
|
|
40
40
|
}
|
|
41
41
|
function *_generator_run__cb7u2f($this, $completion) {
|
|
42
|
-
var tmp0_elvis_lhs = $this.
|
|
42
|
+
var tmp0_elvis_lhs = $this.j74_1;
|
|
43
43
|
var tmp;
|
|
44
44
|
if (tmp0_elvis_lhs == null) {
|
|
45
|
-
var tmp_0 = _get_context__ps0bpe($this).
|
|
45
|
+
var tmp_0 = _get_context__ps0bpe($this).a73_1;
|
|
46
46
|
var tmp_1 = loadSdk(tmp_0, PartyDetails$echo$ref($this), $completion);
|
|
47
47
|
if (tmp_1 === get_COROUTINE_SUSPENDED())
|
|
48
48
|
tmp_1 = yield tmp_1;
|
|
@@ -55,28 +55,28 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
55
55
|
if (actionCannon == null) {
|
|
56
56
|
tmp_2 = null;
|
|
57
57
|
} else {
|
|
58
|
-
var tmp_3 = actionCannon.
|
|
58
|
+
var tmp_3 = actionCannon.j56(new (GqlQuery())(new (PartyDetailsQuery())(_get_partyId__g79dgw($this))), $completion);
|
|
59
59
|
if (tmp_3 === get_COROUTINE_SUSPENDED())
|
|
60
60
|
tmp_3 = yield tmp_3;
|
|
61
61
|
tmp_2 = tmp_3;
|
|
62
62
|
}
|
|
63
63
|
var tmp2_safe_receiver = tmp_2;
|
|
64
|
-
var tmp3_safe_receiver = tmp2_safe_receiver == null ? null : tmp2_safe_receiver.
|
|
65
|
-
var tmp4_safe_receiver = tmp3_safe_receiver == null ? null : tmp3_safe_receiver.
|
|
64
|
+
var tmp3_safe_receiver = tmp2_safe_receiver == null ? null : tmp2_safe_receiver.f5l_1;
|
|
65
|
+
var tmp4_safe_receiver = tmp3_safe_receiver == null ? null : tmp3_safe_receiver.h5l_1;
|
|
66
66
|
var partyDetails = tmp4_safe_receiver == null ? null : toDomain(tmp4_safe_receiver);
|
|
67
67
|
if (partyDetails == null) {
|
|
68
|
-
throw CliktError().
|
|
68
|
+
throw CliktError().m5w('Party not found.', VOID, VOID, true);
|
|
69
69
|
}
|
|
70
|
-
$this.
|
|
71
|
-
$this.
|
|
72
|
-
$this.
|
|
73
|
-
$this.
|
|
74
|
-
$this.
|
|
75
|
-
$this.
|
|
76
|
-
$this.
|
|
77
|
-
$this.
|
|
78
|
-
$this.
|
|
79
|
-
$this.
|
|
70
|
+
$this.j5s('Party ID: ' + partyDetails.m53_1.toString());
|
|
71
|
+
$this.j5s('Name: ' + partyDetails.s53_1);
|
|
72
|
+
$this.j5s('Email: ' + partyDetails.r53_1);
|
|
73
|
+
$this.j5s('PairingRule: ' + partyDetails.n53_1.toString());
|
|
74
|
+
$this.j5s('BadgesEnabled: ' + partyDetails.o53_1);
|
|
75
|
+
$this.j5s('DefaultBadgeName: ' + partyDetails.p53_1);
|
|
76
|
+
$this.j5s('AlternateBadgeName: ' + partyDetails.q53_1);
|
|
77
|
+
$this.j5s('CallSignsEnabled: ' + partyDetails.t53_1);
|
|
78
|
+
$this.j5s('AnimationEnabled: ' + partyDetails.u53_1);
|
|
79
|
+
$this.j5s('AnimationSpeed: ' + partyDetails.v53_1);
|
|
80
80
|
return Unit_instance;
|
|
81
81
|
}
|
|
82
82
|
var sam$kotlin_properties_ReadOnlyProperty$0Class;
|
|
@@ -84,13 +84,13 @@ function sam$kotlin_properties_ReadOnlyProperty$0() {
|
|
|
84
84
|
if (sam$kotlin_properties_ReadOnlyProperty$0Class === VOID) {
|
|
85
85
|
class $ {
|
|
86
86
|
constructor(function_0) {
|
|
87
|
-
this.
|
|
87
|
+
this.m74_1 = function_0;
|
|
88
88
|
}
|
|
89
89
|
hq(thisRef, property) {
|
|
90
|
-
return this.
|
|
90
|
+
return this.m74_1(thisRef, property);
|
|
91
91
|
}
|
|
92
92
|
h5() {
|
|
93
|
-
return this.
|
|
93
|
+
return this.m74_1;
|
|
94
94
|
}
|
|
95
95
|
equals(other) {
|
|
96
96
|
var tmp;
|
|
@@ -121,13 +121,13 @@ function sam$kotlin_properties_ReadOnlyProperty$0_0() {
|
|
|
121
121
|
if (sam$kotlin_properties_ReadOnlyProperty$0Class_0 === VOID) {
|
|
122
122
|
class $ {
|
|
123
123
|
constructor(function_0) {
|
|
124
|
-
this.
|
|
124
|
+
this.n74_1 = function_0;
|
|
125
125
|
}
|
|
126
126
|
hq(thisRef, property) {
|
|
127
|
-
return this.
|
|
127
|
+
return this.n74_1(thisRef, property);
|
|
128
128
|
}
|
|
129
129
|
h5() {
|
|
130
|
-
return this.
|
|
130
|
+
return this.n74_1;
|
|
131
131
|
}
|
|
132
132
|
equals(other) {
|
|
133
133
|
var tmp;
|
|
@@ -155,13 +155,13 @@ function sam$kotlin_properties_ReadOnlyProperty$0_0() {
|
|
|
155
155
|
}
|
|
156
156
|
function PartyDetails$context$delegate$lambda$lambda($key) {
|
|
157
157
|
return (it) => {
|
|
158
|
-
var tmp = it.
|
|
158
|
+
var tmp = it.a5t_1.o4($key);
|
|
159
159
|
return tmp instanceof PartyContext() ? tmp : null;
|
|
160
160
|
};
|
|
161
161
|
}
|
|
162
162
|
function PartyDetails$context$delegate$lambda($key) {
|
|
163
163
|
return (thisRef, _unused_var__etf5q3) => {
|
|
164
|
-
var tmp0 = thisRef.
|
|
164
|
+
var tmp0 = thisRef.y5r();
|
|
165
165
|
// Inline function 'com.github.ajalt.clikt.core.Context.findObject' call
|
|
166
166
|
var key = $key;
|
|
167
167
|
var tmp = selfAndAncestors(tmp0);
|
|
@@ -174,13 +174,13 @@ function PartyDetails$_get_context_$ref_q6kw5z() {
|
|
|
174
174
|
}
|
|
175
175
|
function PartyDetails$partyId$delegate$lambda$lambda($key) {
|
|
176
176
|
return (it) => {
|
|
177
|
-
var tmp = it.
|
|
177
|
+
var tmp = it.a5t_1.o4($key);
|
|
178
178
|
return tmp instanceof PartyId() ? tmp : null;
|
|
179
179
|
};
|
|
180
180
|
}
|
|
181
181
|
function PartyDetails$partyId$delegate$lambda($key) {
|
|
182
182
|
return (thisRef, _unused_var__etf5q3) => {
|
|
183
|
-
var tmp0 = thisRef.
|
|
183
|
+
var tmp0 = thisRef.y5r();
|
|
184
184
|
// Inline function 'com.github.ajalt.clikt.core.Context.findObject' call
|
|
185
185
|
var key = $key;
|
|
186
186
|
var tmp = selfAndAncestors(tmp0);
|
|
@@ -193,7 +193,7 @@ function PartyDetails$_get_partyId_$ref_gt5zd() {
|
|
|
193
193
|
}
|
|
194
194
|
function PartyDetails$echo$ref(p0) {
|
|
195
195
|
return (receiver) => {
|
|
196
|
-
p0.
|
|
196
|
+
p0.j5s(receiver);
|
|
197
197
|
return Unit_instance;
|
|
198
198
|
};
|
|
199
199
|
}
|
|
@@ -203,18 +203,18 @@ function PartyDetails() {
|
|
|
203
203
|
class $ extends SuspendingCliktCommand() {
|
|
204
204
|
constructor(cannon) {
|
|
205
205
|
super('details');
|
|
206
|
-
this.
|
|
206
|
+
this.j74_1 = cannon;
|
|
207
207
|
var tmp = this;
|
|
208
208
|
// Inline function 'com.github.ajalt.clikt.core.requireObject' call
|
|
209
209
|
var key = 'default_object';
|
|
210
210
|
var tmp_0 = PartyDetails$context$delegate$lambda(key);
|
|
211
|
-
tmp.
|
|
211
|
+
tmp.k74_1 = new (sam$kotlin_properties_ReadOnlyProperty$0())(tmp_0);
|
|
212
212
|
var tmp_1 = this;
|
|
213
213
|
// Inline function 'com.github.ajalt.clikt.core.requireObject' call
|
|
214
214
|
var tmp_2 = PartyDetails$partyId$delegate$lambda('partyId');
|
|
215
|
-
tmp_1.
|
|
215
|
+
tmp_1.l74_1 = new (sam$kotlin_properties_ReadOnlyProperty$0_0())(tmp_2);
|
|
216
216
|
}
|
|
217
|
-
|
|
217
|
+
g5h($completion) {
|
|
218
218
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_run__cb7u2f.bind(VOID, this), $completion);
|
|
219
219
|
}
|
|
220
220
|
}
|
|
@@ -27,11 +27,11 @@ import { default2v6m45aspyoyr as default_0 } from '../../../../../../clikt-clikt
|
|
|
27
27
|
//region block: pre-declaration
|
|
28
28
|
//endregion
|
|
29
29
|
function *_generator_invoke__zhh2q8($this, sdk, $completion) {
|
|
30
|
-
var tmp = sdk.
|
|
30
|
+
var tmp = sdk.j56(new (GqlQuery())(new (PartyListQuery())()), $completion);
|
|
31
31
|
if (tmp === get_COROUTINE_SUSPENDED())
|
|
32
32
|
tmp = yield tmp;
|
|
33
33
|
var tmp0_safe_receiver = tmp;
|
|
34
|
-
var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.
|
|
34
|
+
var tmp1_safe_receiver = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.e6x_1;
|
|
35
35
|
var tmp_0;
|
|
36
36
|
if (tmp1_safe_receiver == null) {
|
|
37
37
|
tmp_0 = null;
|
|
@@ -42,7 +42,7 @@ function *_generator_invoke__zhh2q8($this, sdk, $completion) {
|
|
|
42
42
|
var _iterator__ex2g4s = tmp1_safe_receiver.q1();
|
|
43
43
|
while (_iterator__ex2g4s.r1()) {
|
|
44
44
|
var item = _iterator__ex2g4s.s1();
|
|
45
|
-
var tmp$ret$0 = toDomain(item.
|
|
45
|
+
var tmp$ret$0 = toDomain(item.g6x_1);
|
|
46
46
|
destination.t2(tmp$ret$0);
|
|
47
47
|
}
|
|
48
48
|
tmp_0 = destination;
|
|
@@ -58,7 +58,7 @@ function *_generator_invoke__zhh2q8($this, sdk, $completion) {
|
|
|
58
58
|
var tmp0_elvis_lhs = tmp_1;
|
|
59
59
|
// Inline function 'kotlin.let' call
|
|
60
60
|
var it = tmp0_elvis_lhs == null ? '' : tmp0_elvis_lhs;
|
|
61
|
-
$this.
|
|
61
|
+
$this.o74_1.j5s(it);
|
|
62
62
|
return Unit_instance;
|
|
63
63
|
}
|
|
64
64
|
function PartyList$run$slambda$lambda(it) {
|
|
@@ -66,7 +66,7 @@ function PartyList$run$slambda$lambda(it) {
|
|
|
66
66
|
}
|
|
67
67
|
function _get_env__e67txg($this) {
|
|
68
68
|
var tmp = KProperty1();
|
|
69
|
-
return $this.
|
|
69
|
+
return $this.e75_1.hq($this, getPropertyCallableRef('env', 1, tmp, PartyList$_get_env_$ref_drep03_0(), null));
|
|
70
70
|
}
|
|
71
71
|
function *_generator_run__cb7u2f($this, $completion) {
|
|
72
72
|
var tmp = _get_env__e67txg($this);
|
|
@@ -84,7 +84,7 @@ function PartyList$_get_env_$ref_drep03_0() {
|
|
|
84
84
|
}
|
|
85
85
|
function PartyList$echo$ref(p0) {
|
|
86
86
|
return (receiver) => {
|
|
87
|
-
p0.
|
|
87
|
+
p0.j5s(receiver);
|
|
88
88
|
return Unit_instance;
|
|
89
89
|
};
|
|
90
90
|
}
|
|
@@ -93,13 +93,13 @@ function PartyList$run$slambda() {
|
|
|
93
93
|
if (PartyList$run$slambdaClass === VOID) {
|
|
94
94
|
class $ {
|
|
95
95
|
constructor(this$0) {
|
|
96
|
-
this.
|
|
96
|
+
this.o74_1 = this$0;
|
|
97
97
|
}
|
|
98
|
-
|
|
98
|
+
n71(sdk, $completion) {
|
|
99
99
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_invoke__zhh2q8.bind(VOID, this, sdk), $completion);
|
|
100
100
|
}
|
|
101
101
|
de(p1, $completion) {
|
|
102
|
-
return this.
|
|
102
|
+
return this.n71((!(p1 == null) ? isInterface(p1, ActionCannon()) : false) ? p1 : THROW_CCE(), $completion);
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -109,7 +109,7 @@ function PartyList$run$slambda() {
|
|
|
109
109
|
}
|
|
110
110
|
function PartyList$run$slambda_0(this$0) {
|
|
111
111
|
var i = new (PartyList$run$slambda())(this$0);
|
|
112
|
-
var l = (sdk, $completion) => i.
|
|
112
|
+
var l = (sdk, $completion) => i.n71(sdk, $completion);
|
|
113
113
|
l.$arity = 1;
|
|
114
114
|
return l;
|
|
115
115
|
}
|
|
@@ -122,9 +122,9 @@ function PartyList() {
|
|
|
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.e75_1 = tmp_0.g67(this, getPropertyCallableRef('env', 1, tmp_1, PartyList$_get_env_$ref_drep03(), null));
|
|
126
126
|
}
|
|
127
|
-
|
|
127
|
+
g5h($completion) {
|
|
128
128
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_run__cb7u2f.bind(VOID, this), $completion);
|
|
129
129
|
}
|
|
130
130
|
}
|
|
@@ -32,17 +32,17 @@ import { suspendOrReturn49pspzlx5djv as suspendOrReturn } from '../../../../../.
|
|
|
32
32
|
//endregion
|
|
33
33
|
function _get_context__ps0bpe($this) {
|
|
34
34
|
var tmp = KProperty1();
|
|
35
|
-
return $this.
|
|
35
|
+
return $this.v75_1.hq($this, getPropertyCallableRef('context', 1, tmp, Players$_get_context_$ref_7m15sv(), null));
|
|
36
36
|
}
|
|
37
37
|
function _get_partyId__g79dgw($this) {
|
|
38
38
|
var tmp = KProperty1();
|
|
39
|
-
return $this.
|
|
39
|
+
return $this.w75_1.hq($this, getPropertyCallableRef('partyId', 1, tmp, Players$_get_partyId_$ref_xbsvzh(), null));
|
|
40
40
|
}
|
|
41
41
|
function *_generator_run__cb7u2f($this, $completion) {
|
|
42
|
-
var tmp0_elvis_lhs = $this.
|
|
42
|
+
var tmp0_elvis_lhs = $this.u75_1;
|
|
43
43
|
var tmp;
|
|
44
44
|
if (tmp0_elvis_lhs == null) {
|
|
45
|
-
var tmp_0 = _get_context__ps0bpe($this).
|
|
45
|
+
var tmp_0 = _get_context__ps0bpe($this).a73_1;
|
|
46
46
|
var tmp_1 = loadSdk(tmp_0, Players$echo$ref($this), $completion);
|
|
47
47
|
if (tmp_1 === get_COROUTINE_SUSPENDED())
|
|
48
48
|
tmp_1 = yield tmp_1;
|
|
@@ -55,15 +55,15 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
55
55
|
if (actionCannon == null) {
|
|
56
56
|
tmp_2 = null;
|
|
57
57
|
} else {
|
|
58
|
-
var tmp_3 = actionCannon.
|
|
58
|
+
var tmp_3 = actionCannon.j56(new (GqlQuery())(new (PlayersQuery())(new (PartyInput())(_get_partyId__g79dgw($this)))), $completion);
|
|
59
59
|
if (tmp_3 === get_COROUTINE_SUSPENDED())
|
|
60
60
|
tmp_3 = yield tmp_3;
|
|
61
61
|
tmp_2 = tmp_3;
|
|
62
62
|
}
|
|
63
63
|
var result = tmp_2;
|
|
64
|
-
$this.
|
|
65
|
-
var tmp3_safe_receiver = result == null ? null : result.
|
|
66
|
-
var tmp4_safe_receiver = tmp3_safe_receiver == null ? null : tmp3_safe_receiver.
|
|
64
|
+
$this.j5s('Players for Party ID: ' + NotBlankString__toString_impl_5tex9r(_get_partyId__g79dgw($this).x53_1));
|
|
65
|
+
var tmp3_safe_receiver = result == null ? null : result.j6x_1;
|
|
66
|
+
var tmp4_safe_receiver = tmp3_safe_receiver == null ? null : tmp3_safe_receiver.k6x_1;
|
|
67
67
|
if (tmp4_safe_receiver == null)
|
|
68
68
|
null;
|
|
69
69
|
else {
|
|
@@ -71,7 +71,7 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
71
71
|
var _iterator__ex2g4s = tmp4_safe_receiver.q1();
|
|
72
72
|
while (_iterator__ex2g4s.r1()) {
|
|
73
73
|
var element = _iterator__ex2g4s.s1();
|
|
74
|
-
$this.
|
|
74
|
+
$this.j5s(' - ' + element.m6x_1.a5o_1 + ' ' + element.m6x_1.b5o_1);
|
|
75
75
|
}
|
|
76
76
|
}
|
|
77
77
|
return Unit_instance;
|
|
@@ -81,13 +81,13 @@ function sam$kotlin_properties_ReadOnlyProperty$0() {
|
|
|
81
81
|
if (sam$kotlin_properties_ReadOnlyProperty$0Class === VOID) {
|
|
82
82
|
class $ {
|
|
83
83
|
constructor(function_0) {
|
|
84
|
-
this.
|
|
84
|
+
this.x75_1 = function_0;
|
|
85
85
|
}
|
|
86
86
|
hq(thisRef, property) {
|
|
87
|
-
return this.
|
|
87
|
+
return this.x75_1(thisRef, property);
|
|
88
88
|
}
|
|
89
89
|
h5() {
|
|
90
|
-
return this.
|
|
90
|
+
return this.x75_1;
|
|
91
91
|
}
|
|
92
92
|
equals(other) {
|
|
93
93
|
var tmp;
|
|
@@ -118,13 +118,13 @@ function sam$kotlin_properties_ReadOnlyProperty$0_0() {
|
|
|
118
118
|
if (sam$kotlin_properties_ReadOnlyProperty$0Class_0 === VOID) {
|
|
119
119
|
class $ {
|
|
120
120
|
constructor(function_0) {
|
|
121
|
-
this.
|
|
121
|
+
this.y75_1 = function_0;
|
|
122
122
|
}
|
|
123
123
|
hq(thisRef, property) {
|
|
124
|
-
return this.
|
|
124
|
+
return this.y75_1(thisRef, property);
|
|
125
125
|
}
|
|
126
126
|
h5() {
|
|
127
|
-
return this.
|
|
127
|
+
return this.y75_1;
|
|
128
128
|
}
|
|
129
129
|
equals(other) {
|
|
130
130
|
var tmp;
|
|
@@ -152,13 +152,13 @@ function sam$kotlin_properties_ReadOnlyProperty$0_0() {
|
|
|
152
152
|
}
|
|
153
153
|
function Players$context$delegate$lambda$lambda($key) {
|
|
154
154
|
return (it) => {
|
|
155
|
-
var tmp = it.
|
|
155
|
+
var tmp = it.a5t_1.o4($key);
|
|
156
156
|
return tmp instanceof PartyContext() ? tmp : null;
|
|
157
157
|
};
|
|
158
158
|
}
|
|
159
159
|
function Players$context$delegate$lambda($key) {
|
|
160
160
|
return (thisRef, _unused_var__etf5q3) => {
|
|
161
|
-
var tmp0 = thisRef.
|
|
161
|
+
var tmp0 = thisRef.y5r();
|
|
162
162
|
// Inline function 'com.github.ajalt.clikt.core.Context.findObject' call
|
|
163
163
|
var key = $key;
|
|
164
164
|
var tmp = selfAndAncestors(tmp0);
|
|
@@ -171,13 +171,13 @@ function Players$_get_context_$ref_7m15sv() {
|
|
|
171
171
|
}
|
|
172
172
|
function Players$partyId$delegate$lambda$lambda($key) {
|
|
173
173
|
return (it) => {
|
|
174
|
-
var tmp = it.
|
|
174
|
+
var tmp = it.a5t_1.o4($key);
|
|
175
175
|
return tmp instanceof PartyId() ? tmp : null;
|
|
176
176
|
};
|
|
177
177
|
}
|
|
178
178
|
function Players$partyId$delegate$lambda($key) {
|
|
179
179
|
return (thisRef, _unused_var__etf5q3) => {
|
|
180
|
-
var tmp0 = thisRef.
|
|
180
|
+
var tmp0 = thisRef.y5r();
|
|
181
181
|
// Inline function 'com.github.ajalt.clikt.core.Context.findObject' call
|
|
182
182
|
var key = $key;
|
|
183
183
|
var tmp = selfAndAncestors(tmp0);
|
|
@@ -190,7 +190,7 @@ function Players$_get_partyId_$ref_xbsvzh() {
|
|
|
190
190
|
}
|
|
191
191
|
function Players$echo$ref(p0) {
|
|
192
192
|
return (receiver) => {
|
|
193
|
-
p0.
|
|
193
|
+
p0.j5s(receiver);
|
|
194
194
|
return Unit_instance;
|
|
195
195
|
};
|
|
196
196
|
}
|
|
@@ -200,18 +200,18 @@ function Players() {
|
|
|
200
200
|
class $ extends SuspendingCliktCommand() {
|
|
201
201
|
constructor(cannon) {
|
|
202
202
|
super();
|
|
203
|
-
this.
|
|
203
|
+
this.u75_1 = cannon;
|
|
204
204
|
var tmp = this;
|
|
205
205
|
// Inline function 'com.github.ajalt.clikt.core.requireObject' call
|
|
206
206
|
var key = 'default_object';
|
|
207
207
|
var tmp_0 = Players$context$delegate$lambda(key);
|
|
208
|
-
tmp.
|
|
208
|
+
tmp.v75_1 = new (sam$kotlin_properties_ReadOnlyProperty$0())(tmp_0);
|
|
209
209
|
var tmp_1 = this;
|
|
210
210
|
// Inline function 'com.github.ajalt.clikt.core.requireObject' call
|
|
211
211
|
var tmp_2 = Players$partyId$delegate$lambda('partyId');
|
|
212
|
-
tmp_1.
|
|
212
|
+
tmp_1.w75_1 = new (sam$kotlin_properties_ReadOnlyProperty$0_0())(tmp_2);
|
|
213
213
|
}
|
|
214
|
-
|
|
214
|
+
g5h($completion) {
|
|
215
215
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_run__cb7u2f.bind(VOID, this), $completion);
|
|
216
216
|
}
|
|
217
217
|
}
|
|
@@ -62,67 +62,67 @@ import { flag3dod1qr8no54f as flag } from '../../../../../../clikt-clikt/com/git
|
|
|
62
62
|
//region block: pre-declaration
|
|
63
63
|
//endregion
|
|
64
64
|
function *_generator_invoke__zhh2q8($this, sdk, $completion) {
|
|
65
|
-
var tmp = fire(sdk, $this.
|
|
65
|
+
var tmp = fire(sdk, $this.z75_1, $completion);
|
|
66
66
|
if (tmp === get_COROUTINE_SUSPENDED())
|
|
67
67
|
tmp = yield tmp;
|
|
68
68
|
return Unit_instance;
|
|
69
69
|
}
|
|
70
70
|
function _get_inputJson__zeyf3($this) {
|
|
71
71
|
var tmp = KProperty1();
|
|
72
|
-
return $this.
|
|
72
|
+
return $this.r76_1.hq($this, getPropertyCallableRef('inputJson', 1, tmp, SaveContribution$_get_inputJson_$ref_unof55_0(), null));
|
|
73
73
|
}
|
|
74
74
|
function _get_contributionId__8s6i8w($this) {
|
|
75
75
|
var tmp = KProperty1();
|
|
76
|
-
return $this.
|
|
76
|
+
return $this.s76_1.hq($this, getPropertyCallableRef('contributionId', 1, tmp, SaveContribution$_get_contributionId_$ref_6u0ayi_0(), null));
|
|
77
77
|
}
|
|
78
78
|
function _get_participantEmail__9itsn2($this) {
|
|
79
79
|
var tmp = KProperty1();
|
|
80
|
-
return $this.
|
|
80
|
+
return $this.t76_1.hq($this, getPropertyCallableRef('participantEmail', 1, tmp, SaveContribution$_get_participantEmail_$ref_8y823c_0(), null));
|
|
81
81
|
}
|
|
82
82
|
function _get_hash__d7hhq5($this) {
|
|
83
83
|
var tmp = KProperty1();
|
|
84
|
-
return $this.
|
|
84
|
+
return $this.u76_1.hq($this, getPropertyCallableRef('hash', 1, tmp, SaveContribution$_get_hash_$ref_wkneql_0(), null));
|
|
85
85
|
}
|
|
86
86
|
function _get_dateTime__k7u9ow($this) {
|
|
87
87
|
var tmp = KProperty1();
|
|
88
|
-
return $this.
|
|
88
|
+
return $this.v76_1.hq($this, getPropertyCallableRef('dateTime', 1, tmp, SaveContribution$_get_dateTime_$ref_1986a2_0(), null));
|
|
89
89
|
}
|
|
90
90
|
function _get_ease__d5u3vh($this) {
|
|
91
91
|
var tmp = KProperty1();
|
|
92
|
-
return $this.
|
|
92
|
+
return $this.w76_1.hq($this, getPropertyCallableRef('ease', 1, tmp, SaveContribution$_get_ease_$ref_fck9j1_0(), null));
|
|
93
93
|
}
|
|
94
94
|
function _get_story__b8qft0($this) {
|
|
95
95
|
var tmp = KProperty1();
|
|
96
|
-
return $this.
|
|
96
|
+
return $this.x76_1.hq($this, getPropertyCallableRef('story', 1, tmp, SaveContribution$_get_story_$ref_8z989g_0(), null));
|
|
97
97
|
}
|
|
98
98
|
function _get_cycleTimeFromFirstCommit__2fkwv5($this) {
|
|
99
99
|
var tmp = KProperty1();
|
|
100
|
-
return $this.
|
|
100
|
+
return $this.y76_1.hq($this, getPropertyCallableRef('cycleTimeFromFirstCommit', 1, tmp, SaveContribution$_get_cycleTimeFromFirstCommit_$ref_f3z9fr_0(), null));
|
|
101
101
|
}
|
|
102
102
|
function _get_cycleTime__uahmu6($this) {
|
|
103
103
|
var tmp = KProperty1();
|
|
104
|
-
return $this.
|
|
104
|
+
return $this.z76_1.hq($this, getPropertyCallableRef('cycleTime', 1, tmp, SaveContribution$_get_cycleTime_$ref_b0lgcq_0(), null));
|
|
105
105
|
}
|
|
106
106
|
function *_generator_run__cb7u2f($this, $completion) {
|
|
107
107
|
// Inline function 'com.github.ajalt.clikt.core.Context.findObject' call
|
|
108
|
-
var this_0 = $this.
|
|
108
|
+
var this_0 = $this.y5r();
|
|
109
109
|
var key = 'default_object';
|
|
110
110
|
var tmp = selfAndAncestors(this_0);
|
|
111
111
|
var contributionContext = firstOrNull(mapNotNull(tmp, SaveContribution$run$lambda(key)));
|
|
112
|
-
var partyId = ensureNotNull(contributionContext).
|
|
112
|
+
var partyId = ensureNotNull(contributionContext).j71_1;
|
|
113
113
|
// Inline function 'kotlin.text.trim' call
|
|
114
114
|
var this_1 = _get_inputJson__zeyf3($this);
|
|
115
115
|
var data = toString(trim(isCharSequence(this_1) ? this_1 : THROW_CCE()));
|
|
116
116
|
var tmp_0;
|
|
117
117
|
// Inline function 'kotlin.text.isNotBlank' call
|
|
118
118
|
if (!isBlank(data)) {
|
|
119
|
-
var contribution = ContributionParser_getInstance().
|
|
119
|
+
var contribution = ContributionParser_getInstance().m6w(data);
|
|
120
120
|
var tmp_1;
|
|
121
121
|
if (contribution == null) {
|
|
122
122
|
tmp_1 = null;
|
|
123
123
|
} else {
|
|
124
124
|
// Inline function 'kotlin.takeIf' call
|
|
125
|
-
var this_2 = $this.
|
|
125
|
+
var this_2 = $this.l71();
|
|
126
126
|
var tmp_2;
|
|
127
127
|
// Inline function 'kotlin.text.isNotBlank' call
|
|
128
128
|
if (!isBlank(this_2)) {
|
|
@@ -132,7 +132,7 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
132
132
|
}
|
|
133
133
|
var tmp3_link = tmp_2;
|
|
134
134
|
// Inline function 'kotlin.takeIf' call
|
|
135
|
-
var this_3 = $this.
|
|
135
|
+
var this_3 = $this.m71();
|
|
136
136
|
var tmp_3;
|
|
137
137
|
// Inline function 'kotlin.text.isNotBlank' call
|
|
138
138
|
if (!isBlank(this_3)) {
|
|
@@ -143,7 +143,7 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
143
143
|
var tmp4_label = tmp_3;
|
|
144
144
|
var tmp_4;
|
|
145
145
|
if (_get_cycleTimeFromFirstCommit__2fkwv5($this)) {
|
|
146
|
-
tmp_4 = cycleTimeFromFirstCommit($this, contribution, $this.
|
|
146
|
+
tmp_4 = cycleTimeFromFirstCommit($this, contribution, $this.q76_1.ps());
|
|
147
147
|
} else {
|
|
148
148
|
// Inline function 'kotlin.text.ifBlank' call
|
|
149
149
|
var this_4 = _get_cycleTime__uahmu6($this);
|
|
@@ -213,7 +213,7 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
213
213
|
}
|
|
214
214
|
var tmp_17 = tmp_16;
|
|
215
215
|
// Inline function 'kotlin.text.ifBlank' call
|
|
216
|
-
var this_9 = $this.
|
|
216
|
+
var this_9 = $this.l71();
|
|
217
217
|
var tmp_18;
|
|
218
218
|
if (isBlank(this_9)) {
|
|
219
219
|
tmp_18 = null;
|
|
@@ -224,11 +224,11 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
224
224
|
tmp_0 = new (ContributionInput())(tmp_8, tmp_9, tmp_10, tmp_13, tmp_15, tmp_17, tmp$ret$23, VOID, VOID, VOID, VOID, VOID, VOID, null, null);
|
|
225
225
|
}
|
|
226
226
|
var action = new (SaveContributionCommand())(partyId, listOfNotNull(tmp_0));
|
|
227
|
-
if (action.
|
|
228
|
-
$this.
|
|
227
|
+
if (action.f57_1.o1()) {
|
|
228
|
+
$this.j5s('Could not parse contribution', VOID, true);
|
|
229
229
|
} else {
|
|
230
230
|
var tmp_19 = SaveContribution$echo$ref($this);
|
|
231
|
-
var tmp_20 = withSdk(contributionContext.
|
|
231
|
+
var tmp_20 = withSdk(contributionContext.k71_1, tmp_19, $this.p76_1, SaveContribution$run$slambda_0(action), $completion);
|
|
232
232
|
if (tmp_20 === get_COROUTINE_SUSPENDED())
|
|
233
233
|
tmp_20 = yield tmp_20;
|
|
234
234
|
}
|
|
@@ -289,26 +289,26 @@ function SaveContribution$_get_cycleTime_$ref_b0lgcq_0() {
|
|
|
289
289
|
return (p0) => _get_cycleTime__uahmu6(p0);
|
|
290
290
|
}
|
|
291
291
|
function SaveContribution$_get_link_$ref_6h1qnr() {
|
|
292
|
-
return (p0) => p0.
|
|
292
|
+
return (p0) => p0.l71();
|
|
293
293
|
}
|
|
294
294
|
function SaveContribution$_get_link_$ref_6h1qnr_0() {
|
|
295
|
-
return (p0) => p0.
|
|
295
|
+
return (p0) => p0.l71();
|
|
296
296
|
}
|
|
297
297
|
function SaveContribution$_get_label_$ref_s0igz9() {
|
|
298
|
-
return (p0) => p0.
|
|
298
|
+
return (p0) => p0.m71();
|
|
299
299
|
}
|
|
300
300
|
function SaveContribution$_get_label_$ref_s0igz9_0() {
|
|
301
|
-
return (p0) => p0.
|
|
301
|
+
return (p0) => p0.m71();
|
|
302
302
|
}
|
|
303
303
|
function SaveContribution$run$lambda($key) {
|
|
304
304
|
return (it) => {
|
|
305
|
-
var tmp = it.
|
|
305
|
+
var tmp = it.a5t_1.o4($key);
|
|
306
306
|
return tmp instanceof ContributionContext() ? tmp : null;
|
|
307
307
|
};
|
|
308
308
|
}
|
|
309
309
|
function SaveContribution$echo$ref(p0) {
|
|
310
310
|
return (receiver) => {
|
|
311
|
-
p0.
|
|
311
|
+
p0.j5s(receiver);
|
|
312
312
|
return Unit_instance;
|
|
313
313
|
};
|
|
314
314
|
}
|
|
@@ -317,13 +317,13 @@ function SaveContribution$run$slambda() {
|
|
|
317
317
|
if (SaveContribution$run$slambdaClass === VOID) {
|
|
318
318
|
class $ {
|
|
319
319
|
constructor($action) {
|
|
320
|
-
this.
|
|
320
|
+
this.z75_1 = $action;
|
|
321
321
|
}
|
|
322
|
-
|
|
322
|
+
n71(sdk, $completion) {
|
|
323
323
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_invoke__zhh2q8.bind(VOID, this, sdk), $completion);
|
|
324
324
|
}
|
|
325
325
|
de(p1, $completion) {
|
|
326
|
-
return this.
|
|
326
|
+
return this.n71((!(p1 == null) ? isInterface(p1, ActionCannon()) : false) ? p1 : THROW_CCE(), $completion);
|
|
327
327
|
}
|
|
328
328
|
}
|
|
329
329
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -333,7 +333,7 @@ function SaveContribution$run$slambda() {
|
|
|
333
333
|
}
|
|
334
334
|
function SaveContribution$run$slambda_0($action) {
|
|
335
335
|
var i = new (SaveContribution$run$slambda())($action);
|
|
336
|
-
var l = (sdk, $completion) => i.
|
|
336
|
+
var l = (sdk, $completion) => i.n71(sdk, $completion);
|
|
337
337
|
l.$arity = 1;
|
|
338
338
|
return l;
|
|
339
339
|
}
|
|
@@ -344,62 +344,62 @@ function SaveContribution() {
|
|
|
344
344
|
constructor(cannon, clock) {
|
|
345
345
|
cannon = cannon === VOID ? null : cannon;
|
|
346
346
|
super('save');
|
|
347
|
-
this.
|
|
348
|
-
this.
|
|
347
|
+
this.p76_1 = cannon;
|
|
348
|
+
this.q76_1 = clock;
|
|
349
349
|
var tmp = this;
|
|
350
350
|
var tmp_0 = prompt(option(this, []));
|
|
351
351
|
var tmp_1 = KProperty1();
|
|
352
|
-
tmp.
|
|
352
|
+
tmp.r76_1 = tmp_0.g67(this, getPropertyCallableRef('inputJson', 1, tmp_1, SaveContribution$_get_inputJson_$ref_unof55(), null));
|
|
353
353
|
var tmp_2 = this;
|
|
354
354
|
var tmp_3 = default_0(option(this, []), '');
|
|
355
355
|
var tmp_4 = KProperty1();
|
|
356
|
-
tmp_2.
|
|
356
|
+
tmp_2.s76_1 = tmp_3.g67(this, getPropertyCallableRef('contributionId', 1, tmp_4, SaveContribution$_get_contributionId_$ref_6u0ayi(), null));
|
|
357
357
|
var tmp_5 = this;
|
|
358
358
|
var tmp_6 = multiple(option(this, []));
|
|
359
359
|
var tmp_7 = KProperty1();
|
|
360
|
-
tmp_5.
|
|
360
|
+
tmp_5.t76_1 = tmp_6.g67(this, getPropertyCallableRef('participantEmail', 1, tmp_7, SaveContribution$_get_participantEmail_$ref_8y823c(), null));
|
|
361
361
|
var tmp_8 = this;
|
|
362
362
|
var tmp_9 = default_0(option(this, []), '');
|
|
363
363
|
var tmp_10 = KProperty1();
|
|
364
|
-
tmp_8.
|
|
364
|
+
tmp_8.u76_1 = tmp_9.g67(this, getPropertyCallableRef('hash', 1, tmp_10, SaveContribution$_get_hash_$ref_wkneql(), null));
|
|
365
365
|
var tmp_11 = this;
|
|
366
366
|
var tmp_12 = default_0(option(this, []), '');
|
|
367
367
|
var tmp_13 = KProperty1();
|
|
368
|
-
tmp_11.
|
|
368
|
+
tmp_11.v76_1 = tmp_12.g67(this, getPropertyCallableRef('dateTime', 1, tmp_13, SaveContribution$_get_dateTime_$ref_1986a2(), null));
|
|
369
369
|
var tmp_14 = this;
|
|
370
370
|
var tmp_15 = default_0(option(this, []), '');
|
|
371
371
|
var tmp_16 = KProperty1();
|
|
372
|
-
tmp_14.
|
|
372
|
+
tmp_14.w76_1 = tmp_15.g67(this, getPropertyCallableRef('ease', 1, tmp_16, SaveContribution$_get_ease_$ref_fck9j1(), null));
|
|
373
373
|
var tmp_17 = this;
|
|
374
374
|
var tmp_18 = default_0(option(this, []), '');
|
|
375
375
|
var tmp_19 = KProperty1();
|
|
376
|
-
tmp_17.
|
|
376
|
+
tmp_17.x76_1 = tmp_18.g67(this, getPropertyCallableRef('story', 1, tmp_19, SaveContribution$_get_story_$ref_8z989g(), null));
|
|
377
377
|
var tmp_20 = this;
|
|
378
378
|
var tmp_21 = flag(option(this, []), []);
|
|
379
379
|
var tmp_22 = KProperty1();
|
|
380
|
-
tmp_20.
|
|
380
|
+
tmp_20.y76_1 = tmp_21.g67(this, getPropertyCallableRef('cycleTimeFromFirstCommit', 1, tmp_22, SaveContribution$_get_cycleTimeFromFirstCommit_$ref_f3z9fr(), null));
|
|
381
381
|
var tmp_23 = this;
|
|
382
382
|
var tmp_24 = default_0(option(this, []), '');
|
|
383
383
|
var tmp_25 = KProperty1();
|
|
384
|
-
tmp_23.
|
|
384
|
+
tmp_23.z76_1 = tmp_24.g67(this, getPropertyCallableRef('cycleTime', 1, tmp_25, SaveContribution$_get_cycleTime_$ref_b0lgcq(), null));
|
|
385
385
|
var tmp_26 = this;
|
|
386
386
|
var tmp_27 = default_0(option(this, []), '');
|
|
387
387
|
var tmp_28 = KProperty1();
|
|
388
|
-
tmp_26.
|
|
388
|
+
tmp_26.a77_1 = tmp_27.g67(this, getPropertyCallableRef('link', 1, tmp_28, SaveContribution$_get_link_$ref_6h1qnr(), null));
|
|
389
389
|
var tmp_29 = this;
|
|
390
390
|
var tmp_30 = default_0(option(this, []), '');
|
|
391
391
|
var tmp_31 = KProperty1();
|
|
392
|
-
tmp_29.
|
|
392
|
+
tmp_29.b77_1 = tmp_30.g67(this, getPropertyCallableRef('label', 1, tmp_31, SaveContribution$_get_label_$ref_s0igz9(), null));
|
|
393
393
|
}
|
|
394
|
-
|
|
394
|
+
l71() {
|
|
395
395
|
var tmp = KProperty1();
|
|
396
|
-
return this.
|
|
396
|
+
return this.a77_1.hq(this, getPropertyCallableRef('link', 1, tmp, SaveContribution$_get_link_$ref_6h1qnr_0(), null));
|
|
397
397
|
}
|
|
398
|
-
|
|
398
|
+
m71() {
|
|
399
399
|
var tmp = KProperty1();
|
|
400
|
-
return this.
|
|
400
|
+
return this.b77_1.hq(this, getPropertyCallableRef('label', 1, tmp, SaveContribution$_get_label_$ref_s0igz9_0(), null));
|
|
401
401
|
}
|
|
402
|
-
|
|
402
|
+
g5h($completion) {
|
|
403
403
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_run__cb7u2f.bind(VOID, this), $completion);
|
|
404
404
|
}
|
|
405
405
|
}
|