@continuous-excellence/coupling-cli 1.1.438 → 1.1.439
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 +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +27 -9
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +15 -15
- 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 +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +193 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs.map +1 -0
- 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 +158 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs.map +1 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +37 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs.map +1 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +30 -30
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +25 -25
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +29 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +29 -29
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +10 -10
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +229 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs.map +1 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +46 -46
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +15 -15
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +8 -8
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +10 -10
- 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/schema/fragment/PlayerDetails.mjs +82 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs.map +1 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +173 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs.map +1 -0
- 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 +43 -43
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyInput.mjs +41 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyInput.mjs.map +1 -0
- 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 +2 -2
- 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 +46 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs.map +1 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +4 -4
- 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 +211 -211
- 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/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 +234 -234
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +152 -152
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +18 -18
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +10 -10
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +56 -56
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +59 -59
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
- package/kotlin/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
|
@@ -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.r6x_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.i6y_1.fp($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.j6y_1.fp($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.m6y_1.fp($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.p6t(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.c5p();
|
|
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).n6y_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.p6y();
|
|
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.q6y();
|
|
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.o6y_1, tmp_5, $this.h6y_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.q6y();
|
|
162
162
|
}
|
|
163
163
|
function BatchContribution$_get_label_$ref_jbf4aa_0() {
|
|
164
|
-
return (p0) => p0.
|
|
164
|
+
return (p0) => p0.q6y();
|
|
165
165
|
}
|
|
166
166
|
function BatchContribution$_get_link_$ref_arx8yi() {
|
|
167
|
-
return (p0) => p0.
|
|
167
|
+
return (p0) => p0.p6y();
|
|
168
168
|
}
|
|
169
169
|
function BatchContribution$_get_link_$ref_arx8yi_0() {
|
|
170
|
-
return (p0) => p0.
|
|
170
|
+
return (p0) => p0.p6y();
|
|
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.e5q_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.n5p(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.r6x_1 = $commands;
|
|
196
196
|
}
|
|
197
|
-
|
|
197
|
+
r6y(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.r6y((!(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.r6y(sdk, $completion);
|
|
212
212
|
l.$arity = 1;
|
|
213
213
|
return l;
|
|
214
214
|
}
|
|
@@ -219,35 +219,35 @@ function BatchContribution() {
|
|
|
219
219
|
constructor(cannon) {
|
|
220
220
|
cannon = cannon === VOID ? null : cannon;
|
|
221
221
|
super('batch');
|
|
222
|
-
this.
|
|
222
|
+
this.h6y_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.i6y_1 = tmp_0.k64(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.j6y_1 = tmp_3.k64(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.k6y_1 = tmp_6.k64(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.l6y_1 = tmp_9.k64(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.m6y_1 = tmp_12.k64(this, getPropertyCallableRef('cycleTimeFromFirstCommit', 1, tmp_13, BatchContribution$_get_cycleTimeFromFirstCommit_$ref_qjjywa(), null));
|
|
243
243
|
}
|
|
244
|
-
|
|
244
|
+
q6y() {
|
|
245
245
|
var tmp = KProperty1();
|
|
246
|
-
return this.
|
|
246
|
+
return this.k6y_1.fp(this, getPropertyCallableRef('label', 1, tmp, BatchContribution$_get_label_$ref_jbf4aa_0(), null));
|
|
247
247
|
}
|
|
248
|
-
|
|
248
|
+
p6y() {
|
|
249
249
|
var tmp = KProperty1();
|
|
250
|
-
return this.
|
|
250
|
+
return this.l6y_1.fp(this, getPropertyCallableRef('link', 1, tmp, BatchContribution$_get_link_$ref_arx8yi_0(), null));
|
|
251
251
|
}
|
|
252
252
|
k5e($completion) {
|
|
253
253
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_run__cb7u2f.bind(VOID, this), $completion);
|
|
@@ -31,15 +31,15 @@ function ContributionContext() {
|
|
|
31
31
|
if (ContributionContextClass === VOID) {
|
|
32
32
|
class $ {
|
|
33
33
|
constructor(partyId, env) {
|
|
34
|
-
this.
|
|
35
|
-
this.
|
|
34
|
+
this.n6y_1 = partyId;
|
|
35
|
+
this.o6y_1 = env;
|
|
36
36
|
}
|
|
37
37
|
toString() {
|
|
38
|
-
return 'ContributionContext(partyId=' + this.
|
|
38
|
+
return 'ContributionContext(partyId=' + this.n6y_1.toString() + ', env=' + this.o6y_1 + ')';
|
|
39
39
|
}
|
|
40
40
|
hashCode() {
|
|
41
|
-
var result = this.
|
|
42
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
41
|
+
var result = this.n6y_1.hashCode();
|
|
42
|
+
result = imul(result, 31) + getStringHashCode(this.o6y_1) | 0;
|
|
43
43
|
return result;
|
|
44
44
|
}
|
|
45
45
|
equals(other) {
|
|
@@ -47,9 +47,9 @@ function ContributionContext() {
|
|
|
47
47
|
return true;
|
|
48
48
|
if (!(other instanceof ContributionContext()))
|
|
49
49
|
return false;
|
|
50
|
-
if (!this.
|
|
50
|
+
if (!this.n6y_1.equals(other.n6y_1))
|
|
51
51
|
return false;
|
|
52
|
-
if (!(this.
|
|
52
|
+
if (!(this.o6y_1 === other.o6y_1))
|
|
53
53
|
return false;
|
|
54
54
|
return true;
|
|
55
55
|
}
|
|
@@ -61,20 +61,20 @@ function ContributionContext() {
|
|
|
61
61
|
}
|
|
62
62
|
function _get_env__e67txg($this) {
|
|
63
63
|
var tmp = KProperty1();
|
|
64
|
-
return $this.
|
|
64
|
+
return $this.h6z_1.fp($this, getPropertyCallableRef('env', 1, tmp, Contribution$_get_env_$ref_faf1oh_0(), null));
|
|
65
65
|
}
|
|
66
66
|
var sam$kotlin_properties_ReadOnlyProperty$0Class;
|
|
67
67
|
function sam$kotlin_properties_ReadOnlyProperty$0() {
|
|
68
68
|
if (sam$kotlin_properties_ReadOnlyProperty$0Class === VOID) {
|
|
69
69
|
class $ {
|
|
70
70
|
constructor(function_0) {
|
|
71
|
-
this.
|
|
71
|
+
this.j6z_1 = function_0;
|
|
72
72
|
}
|
|
73
73
|
fp(thisRef, property) {
|
|
74
|
-
return this.
|
|
74
|
+
return this.j6z_1(thisRef, property);
|
|
75
75
|
}
|
|
76
76
|
h5() {
|
|
77
|
-
return this.
|
|
77
|
+
return this.j6z_1;
|
|
78
78
|
}
|
|
79
79
|
equals(other) {
|
|
80
80
|
var tmp;
|
|
@@ -108,13 +108,13 @@ function Contribution$_get_env_$ref_faf1oh_0() {
|
|
|
108
108
|
}
|
|
109
109
|
function Contribution$partyId$delegate$lambda$lambda($key) {
|
|
110
110
|
return (it) => {
|
|
111
|
-
var tmp = it.
|
|
111
|
+
var tmp = it.e5q_1.o4($key);
|
|
112
112
|
return tmp instanceof PartyId() ? tmp : null;
|
|
113
113
|
};
|
|
114
114
|
}
|
|
115
115
|
function Contribution$partyId$delegate$lambda($key) {
|
|
116
116
|
return (thisRef, _unused_var__etf5q3) => {
|
|
117
|
-
var tmp0 = thisRef.
|
|
117
|
+
var tmp0 = thisRef.c5p();
|
|
118
118
|
// Inline function 'com.github.ajalt.clikt.core.Context.findObject' call
|
|
119
119
|
var key = $key;
|
|
120
120
|
var tmp = selfAndAncestors(tmp0);
|
|
@@ -123,11 +123,11 @@ function Contribution$partyId$delegate$lambda($key) {
|
|
|
123
123
|
};
|
|
124
124
|
}
|
|
125
125
|
function Contribution$_get_partyId_$ref_xh1jat() {
|
|
126
|
-
return (p0) => p0.
|
|
126
|
+
return (p0) => p0.k6z();
|
|
127
127
|
}
|
|
128
128
|
function Contribution$run$lambda($key) {
|
|
129
129
|
return (it) => {
|
|
130
|
-
var tmp = it.
|
|
130
|
+
var tmp = it.e5q_1.o4($key);
|
|
131
131
|
return tmp instanceof ContributionContext() ? tmp : null;
|
|
132
132
|
};
|
|
133
133
|
}
|
|
@@ -140,19 +140,19 @@ function Contribution() {
|
|
|
140
140
|
var tmp = this;
|
|
141
141
|
var tmp_0 = default_0(option(this, []), 'production');
|
|
142
142
|
var tmp_1 = KProperty1();
|
|
143
|
-
tmp.
|
|
143
|
+
tmp.h6z_1 = tmp_0.k64(this, getPropertyCallableRef('env', 1, tmp_1, Contribution$_get_env_$ref_faf1oh(), null));
|
|
144
144
|
var tmp_2 = this;
|
|
145
145
|
// Inline function 'com.github.ajalt.clikt.core.requireObject' call
|
|
146
146
|
var tmp_3 = Contribution$partyId$delegate$lambda('partyId');
|
|
147
|
-
tmp_2.
|
|
147
|
+
tmp_2.i6z_1 = new (sam$kotlin_properties_ReadOnlyProperty$0())(tmp_3);
|
|
148
148
|
}
|
|
149
|
-
|
|
149
|
+
k6z() {
|
|
150
150
|
var tmp = KProperty1();
|
|
151
|
-
return this.
|
|
151
|
+
return this.i6z_1.fp(this, getPropertyCallableRef('partyId', 1, tmp, Contribution$_get_partyId_$ref_xh1jat(), null));
|
|
152
152
|
}
|
|
153
153
|
k5e($completion) {
|
|
154
154
|
// Inline function 'com.github.ajalt.clikt.core.Context.findOrSetObject' call
|
|
155
|
-
var this_0 = this.
|
|
155
|
+
var this_0 = this.c5p();
|
|
156
156
|
var key = 'default_object';
|
|
157
157
|
// Inline function 'com.github.ajalt.clikt.core.Context.findObject' call
|
|
158
158
|
var tmp = selfAndAncestors(this_0);
|
|
@@ -160,9 +160,9 @@ function Contribution() {
|
|
|
160
160
|
var tmp_0;
|
|
161
161
|
if (tmp0_elvis_lhs == null) {
|
|
162
162
|
// Inline function 'kotlin.also' call
|
|
163
|
-
var this_1 = new (ContributionContext())(this.
|
|
163
|
+
var this_1 = new (ContributionContext())(this.k6z(), _get_env__e67txg(this));
|
|
164
164
|
// Inline function 'kotlin.collections.set' call
|
|
165
|
-
this_0.
|
|
165
|
+
this_0.e5q_1.v4(key, this_1);
|
|
166
166
|
tmp_0 = this_1;
|
|
167
167
|
} else {
|
|
168
168
|
tmp_0 = tmp0_elvis_lhs;
|
|
@@ -14,16 +14,16 @@ import { ContributionInput13asb0faxwkkm as ContributionInput } from '../../../..
|
|
|
14
14
|
//endregion
|
|
15
15
|
function contributionInput(_this__u8e3s4, cycleTime, link, label) {
|
|
16
16
|
// Inline function 'kotlin.getOrThrow' call
|
|
17
|
-
var this_0 = toNotBlankString(_this__u8e3s4.
|
|
17
|
+
var this_0 = toNotBlankString(_this__u8e3s4.d6t_1);
|
|
18
18
|
throwOnFailure(this_0);
|
|
19
19
|
var tmp = _Result___get_value__impl__bjfvqg(this_0);
|
|
20
20
|
var tmp$ret$0 = ((tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE()).b4z_1;
|
|
21
21
|
var tmp2_contributionId = new (ContributionId())(tmp$ret$0);
|
|
22
|
-
var tmp3_participantEmails = toSet(_this__u8e3s4.
|
|
23
|
-
var tmp4_hash = _this__u8e3s4.
|
|
24
|
-
var tmp5_dateTime = _this__u8e3s4.
|
|
25
|
-
var tmp6_ease = _this__u8e3s4.
|
|
26
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
22
|
+
var tmp3_participantEmails = toSet(_this__u8e3s4.e6t_1);
|
|
23
|
+
var tmp4_hash = _this__u8e3s4.c6t_1;
|
|
24
|
+
var tmp5_dateTime = _this__u8e3s4.g6t_1;
|
|
25
|
+
var tmp6_ease = _this__u8e3s4.i6t_1;
|
|
26
|
+
var tmp0_safe_receiver = _this__u8e3s4.j6t_1;
|
|
27
27
|
var tmp_0;
|
|
28
28
|
if (tmp0_safe_receiver == null) {
|
|
29
29
|
tmp_0 = null;
|
|
@@ -38,13 +38,13 @@ function contributionInput(_this__u8e3s4, cycleTime, link, label) {
|
|
|
38
38
|
tmp_0 = tmp_1;
|
|
39
39
|
}
|
|
40
40
|
var tmp7_story = tmp_0;
|
|
41
|
-
var tmp8_semver = _this__u8e3s4.
|
|
42
|
-
var tmp9_label = label == null ? _this__u8e3s4.
|
|
43
|
-
var tmp10_firstCommit = _this__u8e3s4.
|
|
44
|
-
var tmp11_firstCommitDateTime = _this__u8e3s4.
|
|
45
|
-
var tmp12_commitCount = _this__u8e3s4.
|
|
46
|
-
var tmp13_name = _this__u8e3s4.
|
|
47
|
-
var tmp14_integrationDateTime = _this__u8e3s4.
|
|
41
|
+
var tmp8_semver = _this__u8e3s4.k6t_1;
|
|
42
|
+
var tmp9_label = label == null ? _this__u8e3s4.l6t_1 : label;
|
|
43
|
+
var tmp10_firstCommit = _this__u8e3s4.d6t_1;
|
|
44
|
+
var tmp11_firstCommitDateTime = _this__u8e3s4.h6t_1;
|
|
45
|
+
var tmp12_commitCount = _this__u8e3s4.f6t_1;
|
|
46
|
+
var tmp13_name = _this__u8e3s4.m6t_1;
|
|
47
|
+
var tmp14_integrationDateTime = _this__u8e3s4.n6t_1;
|
|
48
48
|
return new (ContributionInput())(tmp2_contributionId, tmp3_participantEmails, tmp4_hash, tmp5_dateTime, tmp6_ease, tmp7_story, link, tmp8_semver, tmp9_label, tmp10_firstCommit, tmp11_firstCommitDateTime, tmp14_integrationDateTime, cycleTime, tmp12_commitCount, tmp13_name);
|
|
49
49
|
}
|
|
50
50
|
//region block: exports
|
|
@@ -48,17 +48,17 @@ import { suspendOrReturn49pspzlx5djv as suspendOrReturn } from '../../../../../.
|
|
|
48
48
|
//endregion
|
|
49
49
|
function _get_context__ps0bpe($this) {
|
|
50
50
|
var tmp = KProperty1();
|
|
51
|
-
return $this.
|
|
51
|
+
return $this.b70_1.fp($this, getPropertyCallableRef('context', 1, tmp, CurrentPairs$_get_context_$ref_mnrr03(), null));
|
|
52
52
|
}
|
|
53
53
|
function _get_partyId__g79dgw($this) {
|
|
54
54
|
var tmp = KProperty1();
|
|
55
|
-
return $this.
|
|
55
|
+
return $this.c70_1.fp($this, getPropertyCallableRef('partyId', 1, tmp, CurrentPairs$_get_partyId_$ref_31zz6j(), null));
|
|
56
56
|
}
|
|
57
57
|
function *_generator_run__cb7u2f($this, $completion) {
|
|
58
|
-
var tmp0_elvis_lhs = $this.
|
|
58
|
+
var tmp0_elvis_lhs = $this.a70_1;
|
|
59
59
|
var tmp;
|
|
60
60
|
if (tmp0_elvis_lhs == null) {
|
|
61
|
-
var tmp_0 = _get_context__ps0bpe($this).
|
|
61
|
+
var tmp_0 = _get_context__ps0bpe($this).e70_1;
|
|
62
62
|
var tmp_1 = loadSdk(tmp_0, CurrentPairs$echo$ref($this), $completion);
|
|
63
63
|
if (tmp_1 === get_COROUTINE_SUSPENDED())
|
|
64
64
|
tmp_1 = yield tmp_1;
|
|
@@ -82,14 +82,14 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
82
82
|
var tmp5_safe_receiver = tmp4_safe_receiver == null ? null : tmp4_safe_receiver.b5i_1;
|
|
83
83
|
var pairingSet = tmp5_safe_receiver == null ? null : toDomain(tmp5_safe_receiver);
|
|
84
84
|
if (pairingSet == null) {
|
|
85
|
-
throw CliktError().
|
|
85
|
+
throw CliktError().q5t('Party not found.', VOID, VOID, true);
|
|
86
86
|
}
|
|
87
|
-
$this.
|
|
88
|
-
$this.
|
|
87
|
+
$this.n5p('Current Pairs for Party ID: ' + NotBlankString__toString_impl_5tex9r(_get_partyId__g79dgw($this).m51_1));
|
|
88
|
+
$this.n5p('');
|
|
89
89
|
// Inline function 'com.zegreatrob.coupling.model.map' call
|
|
90
90
|
var this_0 = pairingSet.w50_1;
|
|
91
91
|
var pair = _NotEmptyList___get_head__impl__zp2sw(this_0);
|
|
92
|
-
$this.
|
|
92
|
+
$this.n5p('- ' + callSign(pair).toString());
|
|
93
93
|
// Inline function 'com.zegreatrob.coupling.model.map' call
|
|
94
94
|
var this_1 = get_players(pair);
|
|
95
95
|
var tmp_4 = _NotEmptyList___get_head__impl__zp2sw(this_1).g50_1;
|
|
@@ -134,7 +134,7 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
134
134
|
tmp_9 = tmp3_elvis_lhs;
|
|
135
135
|
}
|
|
136
136
|
var tmp$ret$6 = notEmptyListOf(tmp_4, tmp_9.slice());
|
|
137
|
-
$this.
|
|
137
|
+
$this.n5p(' ' + joinToString(NotEmptyList__toList_impl_nbkblo(tmp$ret$6), ' & '));
|
|
138
138
|
var tmp0_safe_receiver_0 = _NotEmptyList___get_tail__impl__3z1zi8(this_0);
|
|
139
139
|
var tmp_10;
|
|
140
140
|
var tmp_11 = tmp0_safe_receiver_0;
|
|
@@ -154,7 +154,7 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
154
154
|
var _iterator__ex2g4s_0 = tmp1_safe_receiver_0.q1();
|
|
155
155
|
while (_iterator__ex2g4s_0.r1()) {
|
|
156
156
|
var item_0 = _iterator__ex2g4s_0.s1();
|
|
157
|
-
$this.
|
|
157
|
+
$this.n5p('- ' + callSign(item_0).toString());
|
|
158
158
|
// Inline function 'com.zegreatrob.coupling.model.map' call
|
|
159
159
|
var this_2 = get_players(item_0);
|
|
160
160
|
var tmp_13 = _NotEmptyList___get_head__impl__zp2sw(this_2).g50_1;
|
|
@@ -199,7 +199,7 @@ function *_generator_run__cb7u2f($this, $completion) {
|
|
|
199
199
|
tmp_18 = tmp3_elvis_lhs_0;
|
|
200
200
|
}
|
|
201
201
|
var tmp$ret$14 = notEmptyListOf(tmp_13, tmp_18.slice());
|
|
202
|
-
$this.
|
|
202
|
+
$this.n5p(' ' + joinToString(NotEmptyList__toList_impl_nbkblo(tmp$ret$14), ' & '));
|
|
203
203
|
destination_0.t2(Unit_instance);
|
|
204
204
|
}
|
|
205
205
|
tmp_12 = destination_0;
|
|
@@ -228,13 +228,13 @@ function sam$kotlin_properties_ReadOnlyProperty$0() {
|
|
|
228
228
|
if (sam$kotlin_properties_ReadOnlyProperty$0Class === VOID) {
|
|
229
229
|
class $ {
|
|
230
230
|
constructor(function_0) {
|
|
231
|
-
this.
|
|
231
|
+
this.f70_1 = function_0;
|
|
232
232
|
}
|
|
233
233
|
fp(thisRef, property) {
|
|
234
|
-
return this.
|
|
234
|
+
return this.f70_1(thisRef, property);
|
|
235
235
|
}
|
|
236
236
|
h5() {
|
|
237
|
-
return this.
|
|
237
|
+
return this.f70_1;
|
|
238
238
|
}
|
|
239
239
|
equals(other) {
|
|
240
240
|
var tmp;
|
|
@@ -265,13 +265,13 @@ function sam$kotlin_properties_ReadOnlyProperty$0_0() {
|
|
|
265
265
|
if (sam$kotlin_properties_ReadOnlyProperty$0Class_0 === VOID) {
|
|
266
266
|
class $ {
|
|
267
267
|
constructor(function_0) {
|
|
268
|
-
this.
|
|
268
|
+
this.g70_1 = function_0;
|
|
269
269
|
}
|
|
270
270
|
fp(thisRef, property) {
|
|
271
|
-
return this.
|
|
271
|
+
return this.g70_1(thisRef, property);
|
|
272
272
|
}
|
|
273
273
|
h5() {
|
|
274
|
-
return this.
|
|
274
|
+
return this.g70_1;
|
|
275
275
|
}
|
|
276
276
|
equals(other) {
|
|
277
277
|
var tmp;
|
|
@@ -299,13 +299,13 @@ function sam$kotlin_properties_ReadOnlyProperty$0_0() {
|
|
|
299
299
|
}
|
|
300
300
|
function CurrentPairs$context$delegate$lambda$lambda($key) {
|
|
301
301
|
return (it) => {
|
|
302
|
-
var tmp = it.
|
|
302
|
+
var tmp = it.e5q_1.o4($key);
|
|
303
303
|
return tmp instanceof PartyContext() ? tmp : null;
|
|
304
304
|
};
|
|
305
305
|
}
|
|
306
306
|
function CurrentPairs$context$delegate$lambda($key) {
|
|
307
307
|
return (thisRef, _unused_var__etf5q3) => {
|
|
308
|
-
var tmp0 = thisRef.
|
|
308
|
+
var tmp0 = thisRef.c5p();
|
|
309
309
|
// Inline function 'com.github.ajalt.clikt.core.Context.findObject' call
|
|
310
310
|
var key = $key;
|
|
311
311
|
var tmp = selfAndAncestors(tmp0);
|
|
@@ -318,13 +318,13 @@ function CurrentPairs$_get_context_$ref_mnrr03() {
|
|
|
318
318
|
}
|
|
319
319
|
function CurrentPairs$partyId$delegate$lambda$lambda($key) {
|
|
320
320
|
return (it) => {
|
|
321
|
-
var tmp = it.
|
|
321
|
+
var tmp = it.e5q_1.o4($key);
|
|
322
322
|
return tmp instanceof PartyId() ? tmp : null;
|
|
323
323
|
};
|
|
324
324
|
}
|
|
325
325
|
function CurrentPairs$partyId$delegate$lambda($key) {
|
|
326
326
|
return (thisRef, _unused_var__etf5q3) => {
|
|
327
|
-
var tmp0 = thisRef.
|
|
327
|
+
var tmp0 = thisRef.c5p();
|
|
328
328
|
// Inline function 'com.github.ajalt.clikt.core.Context.findObject' call
|
|
329
329
|
var key = $key;
|
|
330
330
|
var tmp = selfAndAncestors(tmp0);
|
|
@@ -337,7 +337,7 @@ function CurrentPairs$_get_partyId_$ref_31zz6j() {
|
|
|
337
337
|
}
|
|
338
338
|
function CurrentPairs$echo$ref(p0) {
|
|
339
339
|
return (receiver) => {
|
|
340
|
-
p0.
|
|
340
|
+
p0.n5p(receiver);
|
|
341
341
|
return Unit_instance;
|
|
342
342
|
};
|
|
343
343
|
}
|
|
@@ -347,16 +347,16 @@ function CurrentPairs() {
|
|
|
347
347
|
class $ extends SuspendingCliktCommand() {
|
|
348
348
|
constructor(cannon) {
|
|
349
349
|
super('current-pairs');
|
|
350
|
-
this.
|
|
350
|
+
this.a70_1 = cannon;
|
|
351
351
|
var tmp = this;
|
|
352
352
|
// Inline function 'com.github.ajalt.clikt.core.requireObject' call
|
|
353
353
|
var key = 'default_object';
|
|
354
354
|
var tmp_0 = CurrentPairs$context$delegate$lambda(key);
|
|
355
|
-
tmp.
|
|
355
|
+
tmp.b70_1 = new (sam$kotlin_properties_ReadOnlyProperty$0())(tmp_0);
|
|
356
356
|
var tmp_1 = this;
|
|
357
357
|
// Inline function 'com.github.ajalt.clikt.core.requireObject' call
|
|
358
358
|
var tmp_2 = CurrentPairs$partyId$delegate$lambda('partyId');
|
|
359
|
-
tmp_1.
|
|
359
|
+
tmp_1.c70_1 = new (sam$kotlin_properties_ReadOnlyProperty$0_0())(tmp_2);
|
|
360
360
|
}
|
|
361
361
|
k5e($completion) {
|
|
362
362
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_run__cb7u2f.bind(VOID, this), $completion);
|
|
@@ -4,13 +4,13 @@ import { Duration5ynfiptaqcrg as Duration } from '../../../../../../kotlin-kotli
|
|
|
4
4
|
//region block: pre-declaration
|
|
5
5
|
//endregion
|
|
6
6
|
function cycleTimeFromFirstCommit(_this__u8e3s4, contribution, now) {
|
|
7
|
-
var firstCommitDateTime = contribution.
|
|
7
|
+
var firstCommitDateTime = contribution.h6t_1;
|
|
8
8
|
var tmp;
|
|
9
9
|
if (firstCommitDateTime == null) {
|
|
10
|
-
_this__u8e3s4.
|
|
10
|
+
_this__u8e3s4.n5p('Warning: could not calculate cycle time from missing firstCommitDateTime');
|
|
11
11
|
tmp = null;
|
|
12
12
|
} else {
|
|
13
|
-
var tmp0_elvis_lhs = contribution.
|
|
13
|
+
var tmp0_elvis_lhs = contribution.n6t_1;
|
|
14
14
|
var tmp1_safe_receiver = tmp0_elvis_lhs == null ? now : tmp0_elvis_lhs;
|
|
15
15
|
var tmp_0;
|
|
16
16
|
if (tmp1_safe_receiver == null) {
|