@continuous-excellence/coupling-cli 1.1.469 → 1.1.471
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Auth0Environment.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigCommand.mjs +32 -32
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +12 -12
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +4 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +19 -19
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +23 -23
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +30 -30
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +33 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +12 -12
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +24 -24
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +48 -48
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +18 -18
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs.map +1 -1
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +8 -8
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +8 -8
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +28 -28
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +24 -24
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +16 -16
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +11 -11
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +77 -77
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +44 -44
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +15 -15
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs +28 -28
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +41 -41
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyInput.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +201 -201
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/NetworkInterceptor.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +36 -36
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/DeferredJsonMerger.mjs +27 -27
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +42 -42
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/flows.mjs +22 -22
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +15 -15
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +12 -12
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs +102 -102
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +25 -25
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +141 -141
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +20 -20
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +13 -13
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +42 -42
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +5 -5
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +28 -28
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +110 -110
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +93 -93
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +124 -124
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +134 -134
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +48 -48
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +12 -12
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/EagerOption.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/FlagOption.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/Option.mjs +21 -21
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +206 -206
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +45 -45
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +230 -230
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +65 -65
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +25 -25
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +121 -121
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +134 -134
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +62 -62
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +19 -19
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs +34 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs.map +1 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +17 -28
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +29 -22
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +16 -7
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +33 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +7 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +13 -12
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggingClock.mjs +15 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggingClock.mjs.map +1 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +1 -1
- 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
|
@@ -23,20 +23,20 @@ function Data() {
|
|
|
23
23
|
if (DataClass === VOID) {
|
|
24
24
|
class $ {
|
|
25
25
|
constructor(partyList) {
|
|
26
|
-
this.
|
|
26
|
+
this.e6x_1 = partyList;
|
|
27
27
|
}
|
|
28
28
|
toString() {
|
|
29
|
-
return 'Data(partyList=' + toString(this.
|
|
29
|
+
return 'Data(partyList=' + toString(this.e6x_1) + ')';
|
|
30
30
|
}
|
|
31
31
|
hashCode() {
|
|
32
|
-
return hashCode(this.
|
|
32
|
+
return hashCode(this.e6x_1);
|
|
33
33
|
}
|
|
34
34
|
equals(other) {
|
|
35
35
|
if (this === other)
|
|
36
36
|
return true;
|
|
37
37
|
if (!(other instanceof Data()))
|
|
38
38
|
return false;
|
|
39
|
-
if (!equals(this.
|
|
39
|
+
if (!equals(this.e6x_1, other.e6x_1))
|
|
40
40
|
return false;
|
|
41
41
|
return true;
|
|
42
42
|
}
|
|
@@ -51,15 +51,15 @@ function PartyList() {
|
|
|
51
51
|
if (PartyListClass === VOID) {
|
|
52
52
|
class $ {
|
|
53
53
|
constructor(__typename, partyDetails) {
|
|
54
|
-
this.
|
|
55
|
-
this.
|
|
54
|
+
this.f6x_1 = __typename;
|
|
55
|
+
this.g6x_1 = partyDetails;
|
|
56
56
|
}
|
|
57
57
|
toString() {
|
|
58
|
-
return 'PartyList(__typename=' + this.
|
|
58
|
+
return 'PartyList(__typename=' + this.f6x_1 + ', partyDetails=' + this.g6x_1.toString() + ')';
|
|
59
59
|
}
|
|
60
60
|
hashCode() {
|
|
61
|
-
var result = getStringHashCode(this.
|
|
62
|
-
result = imul(result, 31) + this.
|
|
61
|
+
var result = getStringHashCode(this.f6x_1);
|
|
62
|
+
result = imul(result, 31) + this.g6x_1.hashCode() | 0;
|
|
63
63
|
return result;
|
|
64
64
|
}
|
|
65
65
|
equals(other) {
|
|
@@ -67,9 +67,9 @@ function PartyList() {
|
|
|
67
67
|
return true;
|
|
68
68
|
if (!(other instanceof PartyList()))
|
|
69
69
|
return false;
|
|
70
|
-
if (!(this.
|
|
70
|
+
if (!(this.f6x_1 === other.f6x_1))
|
|
71
71
|
return false;
|
|
72
|
-
if (!this.
|
|
72
|
+
if (!this.g6x_1.equals(other.g6x_1))
|
|
73
73
|
return false;
|
|
74
74
|
return true;
|
|
75
75
|
}
|
|
@@ -84,10 +84,10 @@ function Companion() {
|
|
|
84
84
|
if (CompanionClass === VOID) {
|
|
85
85
|
class $ {
|
|
86
86
|
constructor() {
|
|
87
|
-
this.
|
|
88
|
-
this.
|
|
87
|
+
this.h6x_1 = '4f3dd94849aec46c63247323851c79a17e0dc9822385331bb7f50b02e7cb1b7f';
|
|
88
|
+
this.i6x_1 = 'partyListQuery';
|
|
89
89
|
}
|
|
90
|
-
|
|
90
|
+
a5l() {
|
|
91
91
|
return 'query partyListQuery { partyList { __typename ...PartyDetails } } fragment PartyDetails on Party { id name email pairingRule badgesEnabled defaultBadgeName alternateBadgeName callSignsEnabled animationsEnabled animationSpeed }';
|
|
92
92
|
}
|
|
93
93
|
}
|
|
@@ -110,20 +110,20 @@ function PartyListQuery() {
|
|
|
110
110
|
hashCode() {
|
|
111
111
|
return getKClassFromExpression(this).hashCode();
|
|
112
112
|
}
|
|
113
|
-
|
|
113
|
+
c5l() {
|
|
114
114
|
return '4f3dd94849aec46c63247323851c79a17e0dc9822385331bb7f50b02e7cb1b7f';
|
|
115
115
|
}
|
|
116
116
|
operationId() {
|
|
117
|
-
return this.
|
|
117
|
+
return this.c5l();
|
|
118
118
|
}
|
|
119
119
|
x4u() {
|
|
120
|
-
return Companion_instance.
|
|
120
|
+
return Companion_instance.a5l();
|
|
121
121
|
}
|
|
122
|
-
|
|
122
|
+
d5l() {
|
|
123
123
|
return 'partyListQuery';
|
|
124
124
|
}
|
|
125
125
|
operationName() {
|
|
126
|
-
return this.
|
|
126
|
+
return this.d5l();
|
|
127
127
|
}
|
|
128
128
|
u4t(writer, customScalarAdapters, withDefaultValues) {
|
|
129
129
|
}
|
|
@@ -24,20 +24,20 @@ function Data() {
|
|
|
24
24
|
if (DataClass === VOID) {
|
|
25
25
|
class $ {
|
|
26
26
|
constructor(party) {
|
|
27
|
-
this.
|
|
27
|
+
this.j6x_1 = party;
|
|
28
28
|
}
|
|
29
29
|
toString() {
|
|
30
|
-
return 'Data(party=' + toString(this.
|
|
30
|
+
return 'Data(party=' + toString(this.j6x_1) + ')';
|
|
31
31
|
}
|
|
32
32
|
hashCode() {
|
|
33
|
-
return this.
|
|
33
|
+
return this.j6x_1 == null ? 0 : this.j6x_1.hashCode();
|
|
34
34
|
}
|
|
35
35
|
equals(other) {
|
|
36
36
|
if (this === other)
|
|
37
37
|
return true;
|
|
38
38
|
if (!(other instanceof Data()))
|
|
39
39
|
return false;
|
|
40
|
-
if (!equals(this.
|
|
40
|
+
if (!equals(this.j6x_1, other.j6x_1))
|
|
41
41
|
return false;
|
|
42
42
|
return true;
|
|
43
43
|
}
|
|
@@ -52,20 +52,20 @@ function Party() {
|
|
|
52
52
|
if (PartyClass === VOID) {
|
|
53
53
|
class $ {
|
|
54
54
|
constructor(playerList) {
|
|
55
|
-
this.
|
|
55
|
+
this.k6x_1 = playerList;
|
|
56
56
|
}
|
|
57
57
|
toString() {
|
|
58
|
-
return 'Party(playerList=' + toString_0(this.
|
|
58
|
+
return 'Party(playerList=' + toString_0(this.k6x_1) + ')';
|
|
59
59
|
}
|
|
60
60
|
hashCode() {
|
|
61
|
-
return hashCode(this.
|
|
61
|
+
return hashCode(this.k6x_1);
|
|
62
62
|
}
|
|
63
63
|
equals(other) {
|
|
64
64
|
if (this === other)
|
|
65
65
|
return true;
|
|
66
66
|
if (!(other instanceof Party()))
|
|
67
67
|
return false;
|
|
68
|
-
if (!equals(this.
|
|
68
|
+
if (!equals(this.k6x_1, other.k6x_1))
|
|
69
69
|
return false;
|
|
70
70
|
return true;
|
|
71
71
|
}
|
|
@@ -80,15 +80,15 @@ function PlayerList() {
|
|
|
80
80
|
if (PlayerListClass === VOID) {
|
|
81
81
|
class $ {
|
|
82
82
|
constructor(__typename, playerDetails) {
|
|
83
|
-
this.
|
|
84
|
-
this.
|
|
83
|
+
this.l6x_1 = __typename;
|
|
84
|
+
this.m6x_1 = playerDetails;
|
|
85
85
|
}
|
|
86
86
|
toString() {
|
|
87
|
-
return 'PlayerList(__typename=' + this.
|
|
87
|
+
return 'PlayerList(__typename=' + this.l6x_1 + ', playerDetails=' + this.m6x_1.toString() + ')';
|
|
88
88
|
}
|
|
89
89
|
hashCode() {
|
|
90
|
-
var result = getStringHashCode(this.
|
|
91
|
-
result = imul(result, 31) + this.
|
|
90
|
+
var result = getStringHashCode(this.l6x_1);
|
|
91
|
+
result = imul(result, 31) + this.m6x_1.hashCode() | 0;
|
|
92
92
|
return result;
|
|
93
93
|
}
|
|
94
94
|
equals(other) {
|
|
@@ -96,9 +96,9 @@ function PlayerList() {
|
|
|
96
96
|
return true;
|
|
97
97
|
if (!(other instanceof PlayerList()))
|
|
98
98
|
return false;
|
|
99
|
-
if (!(this.
|
|
99
|
+
if (!(this.l6x_1 === other.l6x_1))
|
|
100
100
|
return false;
|
|
101
|
-
if (!this.
|
|
101
|
+
if (!this.m6x_1.equals(other.m6x_1))
|
|
102
102
|
return false;
|
|
103
103
|
return true;
|
|
104
104
|
}
|
|
@@ -113,10 +113,10 @@ function Companion() {
|
|
|
113
113
|
if (CompanionClass === VOID) {
|
|
114
114
|
class $ {
|
|
115
115
|
constructor() {
|
|
116
|
-
this.
|
|
117
|
-
this.
|
|
116
|
+
this.n6x_1 = '2470fab9120a545b0fdd866f456fe353ecaf9c55139b85bf385a58c6447cdee2';
|
|
117
|
+
this.o6x_1 = 'playersQuery';
|
|
118
118
|
}
|
|
119
|
-
|
|
119
|
+
a5l() {
|
|
120
120
|
return 'query playersQuery($input: PartyInput!) { party(input: $input) { playerList { __typename ...PlayerDetails } } } fragment PlayerDetails on Player { id name email badge callSignAdjective callSignNoun imageURL avatarType unvalidatedEmails }';
|
|
121
121
|
}
|
|
122
122
|
}
|
|
@@ -134,41 +134,41 @@ function PlayersQuery() {
|
|
|
134
134
|
if (PlayersQueryClass === VOID) {
|
|
135
135
|
class $ {
|
|
136
136
|
constructor(input) {
|
|
137
|
-
this.
|
|
137
|
+
this.p6x_1 = input;
|
|
138
138
|
}
|
|
139
|
-
|
|
139
|
+
c5l() {
|
|
140
140
|
return '2470fab9120a545b0fdd866f456fe353ecaf9c55139b85bf385a58c6447cdee2';
|
|
141
141
|
}
|
|
142
142
|
operationId() {
|
|
143
|
-
return this.
|
|
143
|
+
return this.c5l();
|
|
144
144
|
}
|
|
145
145
|
x4u() {
|
|
146
|
-
return Companion_instance.
|
|
146
|
+
return Companion_instance.a5l();
|
|
147
147
|
}
|
|
148
|
-
|
|
148
|
+
d5l() {
|
|
149
149
|
return 'playersQuery';
|
|
150
150
|
}
|
|
151
151
|
operationName() {
|
|
152
|
-
return this.
|
|
152
|
+
return this.d5l();
|
|
153
153
|
}
|
|
154
154
|
u4t(writer, customScalarAdapters, withDefaultValues) {
|
|
155
|
-
PlayersQuery_VariablesAdapter_instance.
|
|
155
|
+
PlayersQuery_VariablesAdapter_instance.q6x(writer, this, customScalarAdapters, withDefaultValues);
|
|
156
156
|
}
|
|
157
157
|
t4t() {
|
|
158
158
|
return obj(Data_getInstance());
|
|
159
159
|
}
|
|
160
160
|
toString() {
|
|
161
|
-
return 'PlayersQuery(input=' + this.
|
|
161
|
+
return 'PlayersQuery(input=' + this.p6x_1.toString() + ')';
|
|
162
162
|
}
|
|
163
163
|
hashCode() {
|
|
164
|
-
return this.
|
|
164
|
+
return this.p6x_1.hashCode();
|
|
165
165
|
}
|
|
166
166
|
equals(other) {
|
|
167
167
|
if (this === other)
|
|
168
168
|
return true;
|
|
169
169
|
if (!(other instanceof PlayersQuery()))
|
|
170
170
|
return false;
|
|
171
|
-
if (!this.
|
|
171
|
+
if (!this.p6x_1.equals(other.p6x_1))
|
|
172
172
|
return false;
|
|
173
173
|
return true;
|
|
174
174
|
}
|
|
@@ -25,12 +25,12 @@ function Data_0() {
|
|
|
25
25
|
class $ {
|
|
26
26
|
constructor() {
|
|
27
27
|
Data_instance = this;
|
|
28
|
-
this.
|
|
28
|
+
this.r6x_1 = listOf('partyList');
|
|
29
29
|
}
|
|
30
30
|
t4m(reader, customScalarAdapters) {
|
|
31
31
|
var _partyList = null;
|
|
32
32
|
$l$loop: while (true) {
|
|
33
|
-
if (reader.i4z(this.
|
|
33
|
+
if (reader.i4z(this.r6x_1) === 0)
|
|
34
34
|
_partyList = list(obj(PartyList_getInstance(), true)).t4m(reader, customScalarAdapters);
|
|
35
35
|
else
|
|
36
36
|
break $l$loop;
|
|
@@ -44,12 +44,12 @@ function Data_0() {
|
|
|
44
44
|
}
|
|
45
45
|
return new (Data())(tmp);
|
|
46
46
|
}
|
|
47
|
-
|
|
47
|
+
s6x(writer, customScalarAdapters, value) {
|
|
48
48
|
writer.t4u('partyList');
|
|
49
|
-
list(obj(PartyList_getInstance(), true)).a4o(writer, customScalarAdapters, value.
|
|
49
|
+
list(obj(PartyList_getInstance(), true)).a4o(writer, customScalarAdapters, value.e6x_1);
|
|
50
50
|
}
|
|
51
51
|
u4m(writer, customScalarAdapters, value) {
|
|
52
|
-
return this.
|
|
52
|
+
return this.s6x(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
|
|
@@ -69,12 +69,12 @@ function PartyList_0() {
|
|
|
69
69
|
class $ {
|
|
70
70
|
constructor() {
|
|
71
71
|
PartyList_instance = this;
|
|
72
|
-
this.
|
|
72
|
+
this.t6x_1 = listOf('__typename');
|
|
73
73
|
}
|
|
74
74
|
t4m(reader, customScalarAdapters) {
|
|
75
75
|
var __typename = null;
|
|
76
76
|
$l$loop: while (true) {
|
|
77
|
-
if (reader.i4z(this.
|
|
77
|
+
if (reader.i4z(this.t6x_1) === 0)
|
|
78
78
|
__typename = get_StringAdapter().t4m(reader, customScalarAdapters);
|
|
79
79
|
else
|
|
80
80
|
break $l$loop;
|
|
@@ -90,13 +90,13 @@ function PartyList_0() {
|
|
|
90
90
|
}
|
|
91
91
|
return new (PartyList())(tmp, _partyDetails);
|
|
92
92
|
}
|
|
93
|
-
|
|
93
|
+
u6x(writer, customScalarAdapters, value) {
|
|
94
94
|
writer.t4u('__typename');
|
|
95
|
-
get_StringAdapter().u4m(writer, customScalarAdapters, value.
|
|
96
|
-
PartyDetails_getInstance().
|
|
95
|
+
get_StringAdapter().u4m(writer, customScalarAdapters, value.f6x_1);
|
|
96
|
+
PartyDetails_getInstance().e5m(writer, customScalarAdapters, value.g6x_1);
|
|
97
97
|
}
|
|
98
98
|
u4m(writer, customScalarAdapters, value) {
|
|
99
|
-
return this.
|
|
99
|
+
return this.u6x(writer, customScalarAdapters, value instanceof PartyList() ? value : THROW_CCE());
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
102
|
initMetadataForObject($, 'PartyList', VOID, VOID, [Adapter()]);
|
package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs
CHANGED
|
@@ -27,24 +27,24 @@ function Data_0() {
|
|
|
27
27
|
class $ {
|
|
28
28
|
constructor() {
|
|
29
29
|
Data_instance = this;
|
|
30
|
-
this.
|
|
30
|
+
this.v6x_1 = listOf('party');
|
|
31
31
|
}
|
|
32
32
|
t4m(reader, customScalarAdapters) {
|
|
33
33
|
var _party = null;
|
|
34
34
|
$l$loop: while (true) {
|
|
35
|
-
if (reader.i4z(this.
|
|
35
|
+
if (reader.i4z(this.v6x_1) === 0)
|
|
36
36
|
_party = nullable(obj(Party_getInstance())).t4m(reader, customScalarAdapters);
|
|
37
37
|
else
|
|
38
38
|
break $l$loop;
|
|
39
39
|
}
|
|
40
40
|
return new (Data())(_party);
|
|
41
41
|
}
|
|
42
|
-
|
|
42
|
+
w6x(writer, customScalarAdapters, value) {
|
|
43
43
|
writer.t4u('party');
|
|
44
|
-
nullable(obj(Party_getInstance())).x4m(writer, customScalarAdapters, value.
|
|
44
|
+
nullable(obj(Party_getInstance())).x4m(writer, customScalarAdapters, value.j6x_1);
|
|
45
45
|
}
|
|
46
46
|
u4m(writer, customScalarAdapters, value) {
|
|
47
|
-
return this.
|
|
47
|
+
return this.w6x(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
|
|
@@ -64,12 +64,12 @@ function Party_0() {
|
|
|
64
64
|
class $ {
|
|
65
65
|
constructor() {
|
|
66
66
|
Party_instance = this;
|
|
67
|
-
this.
|
|
67
|
+
this.x6x_1 = listOf('playerList');
|
|
68
68
|
}
|
|
69
69
|
t4m(reader, customScalarAdapters) {
|
|
70
70
|
var _playerList = null;
|
|
71
71
|
$l$loop: while (true) {
|
|
72
|
-
if (reader.i4z(this.
|
|
72
|
+
if (reader.i4z(this.x6x_1) === 0)
|
|
73
73
|
_playerList = list(obj(PlayerList_getInstance(), true)).t4m(reader, customScalarAdapters);
|
|
74
74
|
else
|
|
75
75
|
break $l$loop;
|
|
@@ -83,12 +83,12 @@ function Party_0() {
|
|
|
83
83
|
}
|
|
84
84
|
return new (Party())(tmp);
|
|
85
85
|
}
|
|
86
|
-
|
|
86
|
+
y6x(writer, customScalarAdapters, value) {
|
|
87
87
|
writer.t4u('playerList');
|
|
88
|
-
list(obj(PlayerList_getInstance(), true)).a4o(writer, customScalarAdapters, value.
|
|
88
|
+
list(obj(PlayerList_getInstance(), true)).a4o(writer, customScalarAdapters, value.k6x_1);
|
|
89
89
|
}
|
|
90
90
|
u4m(writer, customScalarAdapters, value) {
|
|
91
|
-
return this.
|
|
91
|
+
return this.y6x(writer, customScalarAdapters, value instanceof Party() ? value : THROW_CCE());
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
initMetadataForObject($, 'Party', VOID, VOID, [Adapter()]);
|
|
@@ -108,12 +108,12 @@ function PlayerList_0() {
|
|
|
108
108
|
class $ {
|
|
109
109
|
constructor() {
|
|
110
110
|
PlayerList_instance = this;
|
|
111
|
-
this.
|
|
111
|
+
this.z6x_1 = listOf('__typename');
|
|
112
112
|
}
|
|
113
113
|
t4m(reader, customScalarAdapters) {
|
|
114
114
|
var __typename = null;
|
|
115
115
|
$l$loop: while (true) {
|
|
116
|
-
if (reader.i4z(this.
|
|
116
|
+
if (reader.i4z(this.z6x_1) === 0)
|
|
117
117
|
__typename = get_StringAdapter().t4m(reader, customScalarAdapters);
|
|
118
118
|
else
|
|
119
119
|
break $l$loop;
|
|
@@ -129,13 +129,13 @@ function PlayerList_0() {
|
|
|
129
129
|
}
|
|
130
130
|
return new (PlayerList())(tmp, _playerDetails);
|
|
131
131
|
}
|
|
132
|
-
|
|
132
|
+
a6y(writer, customScalarAdapters, value) {
|
|
133
133
|
writer.t4u('__typename');
|
|
134
|
-
get_StringAdapter().u4m(writer, customScalarAdapters, value.
|
|
135
|
-
PlayerDetails_getInstance().
|
|
134
|
+
get_StringAdapter().u4m(writer, customScalarAdapters, value.l6x_1);
|
|
135
|
+
PlayerDetails_getInstance().j5o(writer, customScalarAdapters, value.m6x_1);
|
|
136
136
|
}
|
|
137
137
|
u4m(writer, customScalarAdapters, value) {
|
|
138
|
-
return this.
|
|
138
|
+
return this.a6y(writer, customScalarAdapters, value instanceof PlayerList() ? value : THROW_CCE());
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
141
|
initMetadataForObject($, 'PlayerList', VOID, VOID, [Adapter()]);
|
|
@@ -11,9 +11,9 @@ var PlayersQuery_VariablesAdapterClass;
|
|
|
11
11
|
function PlayersQuery_VariablesAdapter() {
|
|
12
12
|
if (PlayersQuery_VariablesAdapterClass === VOID) {
|
|
13
13
|
class $ {
|
|
14
|
-
|
|
14
|
+
q6x(writer, value, customScalarAdapters, withDefaultValues) {
|
|
15
15
|
writer.t4u('input');
|
|
16
|
-
obj(PartyInput_InputAdapter_instance).u4m(writer, customScalarAdapters, value.
|
|
16
|
+
obj(PartyInput_InputAdapter_instance).u4m(writer, customScalarAdapters, value.p6x_1);
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
initMetadataForObject($, 'PlayersQuery_VariablesAdapter');
|
|
@@ -49,7 +49,7 @@ import { flag3dod1qr8no54f as flag } from '../../../../../../clikt-clikt/com/git
|
|
|
49
49
|
//endregion
|
|
50
50
|
function *_generator_invoke__zhh2q8($this, sdk, $completion) {
|
|
51
51
|
// Inline function 'kotlin.collections.forEach' call
|
|
52
|
-
var _iterator__ex2g4s = $this.
|
|
52
|
+
var _iterator__ex2g4s = $this.n70_1.q1();
|
|
53
53
|
while (_iterator__ex2g4s.r1()) {
|
|
54
54
|
var element = _iterator__ex2g4s.s1();
|
|
55
55
|
var tmp = fire(sdk, element, $completion);
|
|
@@ -60,15 +60,15 @@ function *_generator_invoke__zhh2q8($this, sdk, $completion) {
|
|
|
60
60
|
}
|
|
61
61
|
function _get_file__d6iv67($this) {
|
|
62
62
|
var tmp = KProperty1();
|
|
63
|
-
return $this.
|
|
63
|
+
return $this.e71_1.hq($this, getPropertyCallableRef('file', 1, tmp, BatchContribution$_get_file_$ref_fvayxk_0(), null));
|
|
64
64
|
}
|
|
65
65
|
function _get_inputJson__zeyf3($this) {
|
|
66
66
|
var tmp = KProperty1();
|
|
67
|
-
return $this.
|
|
67
|
+
return $this.f71_1.hq($this, getPropertyCallableRef('inputJson', 1, tmp, BatchContribution$_get_inputJson_$ref_uxucks_0(), null));
|
|
68
68
|
}
|
|
69
69
|
function _get_cycleTimeFromFirstCommit__2fkwv5($this) {
|
|
70
70
|
var tmp = KProperty1();
|
|
71
|
-
return $this.
|
|
71
|
+
return $this.i71_1.hq($this, getPropertyCallableRef('cycleTimeFromFirstCommit', 1, tmp, BatchContribution$_get_cycleTimeFromFirstCommit_$ref_qjjywa_0(), null));
|
|
72
72
|
}
|
|
73
73
|
function *_generator_run__cb7u2f($this, $completion) {
|
|
74
74
|
var tmp0_elvis_lhs = _get_inputJson__zeyf3($this);
|
|
@@ -84,13 +84,13 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
84
84
|
var tmp_0 = ContributionParser_getInstance();
|
|
85
85
|
// Inline function 'kotlin.text.trim' call
|
|
86
86
|
var tmp$ret$0 = toString(trim(isCharSequence(inputJson) ? inputJson : THROW_CCE()));
|
|
87
|
-
var contributions = tmp_0.
|
|
87
|
+
var contributions = tmp_0.l6w(tmp$ret$0);
|
|
88
88
|
// Inline function 'com.github.ajalt.clikt.core.Context.findObject' call
|
|
89
|
-
var this_0 = $this.
|
|
89
|
+
var this_0 = $this.y5r();
|
|
90
90
|
var key = 'default_object';
|
|
91
91
|
var tmp_1 = selfAndAncestors(this_0);
|
|
92
92
|
var contributionContext = firstOrNull(mapNotNull(tmp_1, BatchContribution$run$lambda(key)));
|
|
93
|
-
var partyId = ensureNotNull(contributionContext).
|
|
93
|
+
var partyId = ensureNotNull(contributionContext).j71_1;
|
|
94
94
|
// Inline function 'kotlin.collections.map' call
|
|
95
95
|
// Inline function 'kotlin.collections.mapTo' call
|
|
96
96
|
var destination = ArrayList().w2(collectionSizeOrDefault(contributions, 10));
|
|
@@ -98,7 +98,7 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
98
98
|
while (_iterator__ex2g4s.r1()) {
|
|
99
99
|
var item = _iterator__ex2g4s.s1();
|
|
100
100
|
// Inline function 'kotlin.takeIf' call
|
|
101
|
-
var this_1 = $this.
|
|
101
|
+
var this_1 = $this.l71();
|
|
102
102
|
var tmp_2;
|
|
103
103
|
// Inline function 'kotlin.text.isNotBlank' call
|
|
104
104
|
if (!isBlank(this_1)) {
|
|
@@ -108,7 +108,7 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
108
108
|
}
|
|
109
109
|
var tmp0_link = tmp_2;
|
|
110
110
|
// Inline function 'kotlin.takeIf' call
|
|
111
|
-
var this_2 = $this.
|
|
111
|
+
var this_2 = $this.m71();
|
|
112
112
|
var tmp_3;
|
|
113
113
|
// Inline function 'kotlin.text.isNotBlank' call
|
|
114
114
|
if (!isBlank(this_2)) {
|
|
@@ -140,7 +140,7 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
140
140
|
}
|
|
141
141
|
var commands = destination_0;
|
|
142
142
|
var tmp_5 = BatchContribution$echo$ref($this);
|
|
143
|
-
var tmp_6 = withSdk(contributionContext.
|
|
143
|
+
var tmp_6 = withSdk(contributionContext.k71_1, tmp_5, $this.d71_1, BatchContribution$run$slambda_0(commands), $completion);
|
|
144
144
|
if (tmp_6 === get_COROUTINE_SUSPENDED())
|
|
145
145
|
tmp_6 = yield tmp_6;
|
|
146
146
|
return Unit_instance;
|
|
@@ -158,16 +158,16 @@ function BatchContribution$_get_inputJson_$ref_uxucks_0() {
|
|
|
158
158
|
return (p0) => _get_inputJson__zeyf3(p0);
|
|
159
159
|
}
|
|
160
160
|
function BatchContribution$_get_label_$ref_jbf4aa() {
|
|
161
|
-
return (p0) => p0.
|
|
161
|
+
return (p0) => p0.m71();
|
|
162
162
|
}
|
|
163
163
|
function BatchContribution$_get_label_$ref_jbf4aa_0() {
|
|
164
|
-
return (p0) => p0.
|
|
164
|
+
return (p0) => p0.m71();
|
|
165
165
|
}
|
|
166
166
|
function BatchContribution$_get_link_$ref_arx8yi() {
|
|
167
|
-
return (p0) => p0.
|
|
167
|
+
return (p0) => p0.l71();
|
|
168
168
|
}
|
|
169
169
|
function BatchContribution$_get_link_$ref_arx8yi_0() {
|
|
170
|
-
return (p0) => p0.
|
|
170
|
+
return (p0) => p0.l71();
|
|
171
171
|
}
|
|
172
172
|
function BatchContribution$_get_cycleTimeFromFirstCommit_$ref_qjjywa() {
|
|
173
173
|
return (p0) => _get_cycleTimeFromFirstCommit__2fkwv5(p0);
|
|
@@ -177,13 +177,13 @@ function BatchContribution$_get_cycleTimeFromFirstCommit_$ref_qjjywa_0() {
|
|
|
177
177
|
}
|
|
178
178
|
function BatchContribution$run$lambda($key) {
|
|
179
179
|
return (it) => {
|
|
180
|
-
var tmp = it.
|
|
180
|
+
var tmp = it.a5t_1.o4($key);
|
|
181
181
|
return tmp instanceof ContributionContext() ? tmp : null;
|
|
182
182
|
};
|
|
183
183
|
}
|
|
184
184
|
function BatchContribution$echo$ref(p0) {
|
|
185
185
|
return (receiver) => {
|
|
186
|
-
p0.
|
|
186
|
+
p0.j5s(receiver);
|
|
187
187
|
return Unit_instance;
|
|
188
188
|
};
|
|
189
189
|
}
|
|
@@ -192,13 +192,13 @@ function BatchContribution$run$slambda() {
|
|
|
192
192
|
if (BatchContribution$run$slambdaClass === VOID) {
|
|
193
193
|
class $ {
|
|
194
194
|
constructor($commands) {
|
|
195
|
-
this.
|
|
195
|
+
this.n70_1 = $commands;
|
|
196
196
|
}
|
|
197
|
-
|
|
197
|
+
n71(sdk, $completion) {
|
|
198
198
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_invoke__zhh2q8.bind(VOID, this, sdk), $completion);
|
|
199
199
|
}
|
|
200
200
|
de(p1, $completion) {
|
|
201
|
-
return this.
|
|
201
|
+
return this.n71((!(p1 == null) ? isInterface(p1, ActionCannon()) : false) ? p1 : THROW_CCE(), $completion);
|
|
202
202
|
}
|
|
203
203
|
}
|
|
204
204
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -208,7 +208,7 @@ function BatchContribution$run$slambda() {
|
|
|
208
208
|
}
|
|
209
209
|
function BatchContribution$run$slambda_0($commands) {
|
|
210
210
|
var i = new (BatchContribution$run$slambda())($commands);
|
|
211
|
-
var l = (sdk, $completion) => i.
|
|
211
|
+
var l = (sdk, $completion) => i.n71(sdk, $completion);
|
|
212
212
|
l.$arity = 1;
|
|
213
213
|
return l;
|
|
214
214
|
}
|
|
@@ -219,37 +219,37 @@ function BatchContribution() {
|
|
|
219
219
|
constructor(cannon) {
|
|
220
220
|
cannon = cannon === VOID ? null : cannon;
|
|
221
221
|
super('batch');
|
|
222
|
-
this.
|
|
222
|
+
this.d71_1 = cannon;
|
|
223
223
|
var tmp = this;
|
|
224
224
|
var tmp_0 = default_0(option(this, []), '');
|
|
225
225
|
var tmp_1 = KProperty1();
|
|
226
|
-
tmp.
|
|
226
|
+
tmp.e71_1 = tmp_0.g67(this, getPropertyCallableRef('file', 1, tmp_1, BatchContribution$_get_file_$ref_fvayxk(), null));
|
|
227
227
|
var tmp_2 = this;
|
|
228
228
|
var tmp_3 = option(this, []);
|
|
229
229
|
var tmp_4 = KProperty1();
|
|
230
|
-
tmp_2.
|
|
230
|
+
tmp_2.f71_1 = tmp_3.g67(this, getPropertyCallableRef('inputJson', 1, tmp_4, BatchContribution$_get_inputJson_$ref_uxucks(), null));
|
|
231
231
|
var tmp_5 = this;
|
|
232
232
|
var tmp_6 = default_0(option(this, []), '');
|
|
233
233
|
var tmp_7 = KProperty1();
|
|
234
|
-
tmp_5.
|
|
234
|
+
tmp_5.g71_1 = tmp_6.g67(this, getPropertyCallableRef('label', 1, tmp_7, BatchContribution$_get_label_$ref_jbf4aa(), null));
|
|
235
235
|
var tmp_8 = this;
|
|
236
236
|
var tmp_9 = default_0(option(this, []), '');
|
|
237
237
|
var tmp_10 = KProperty1();
|
|
238
|
-
tmp_8.
|
|
238
|
+
tmp_8.h71_1 = tmp_9.g67(this, getPropertyCallableRef('link', 1, tmp_10, BatchContribution$_get_link_$ref_arx8yi(), null));
|
|
239
239
|
var tmp_11 = this;
|
|
240
240
|
var tmp_12 = flag(option(this, []), []);
|
|
241
241
|
var tmp_13 = KProperty1();
|
|
242
|
-
tmp_11.
|
|
242
|
+
tmp_11.i71_1 = tmp_12.g67(this, getPropertyCallableRef('cycleTimeFromFirstCommit', 1, tmp_13, BatchContribution$_get_cycleTimeFromFirstCommit_$ref_qjjywa(), null));
|
|
243
243
|
}
|
|
244
|
-
|
|
244
|
+
m71() {
|
|
245
245
|
var tmp = KProperty1();
|
|
246
|
-
return this.
|
|
246
|
+
return this.g71_1.hq(this, getPropertyCallableRef('label', 1, tmp, BatchContribution$_get_label_$ref_jbf4aa_0(), null));
|
|
247
247
|
}
|
|
248
|
-
|
|
248
|
+
l71() {
|
|
249
249
|
var tmp = KProperty1();
|
|
250
|
-
return this.
|
|
250
|
+
return this.h71_1.hq(this, getPropertyCallableRef('link', 1, tmp, BatchContribution$_get_link_$ref_arx8yi_0(), null));
|
|
251
251
|
}
|
|
252
|
-
|
|
252
|
+
g5h($completion) {
|
|
253
253
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_run__cb7u2f.bind(VOID, this), $completion);
|
|
254
254
|
}
|
|
255
255
|
}
|