@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
|
@@ -62,11 +62,11 @@ function ContributionParser() {
|
|
|
62
62
|
constructor() {
|
|
63
63
|
ContributionParser_instance = this;
|
|
64
64
|
var tmp = this;
|
|
65
|
-
tmp.
|
|
65
|
+
tmp.o6t_1 = Json(VOID, ContributionParser$json$lambda);
|
|
66
66
|
}
|
|
67
|
-
|
|
67
|
+
p6t(jsonString) {
|
|
68
68
|
// Inline function 'kotlinx.serialization.json.Json.decodeFromString' call
|
|
69
|
-
var this_0 = this.
|
|
69
|
+
var this_0 = this.o6t_1;
|
|
70
70
|
// Inline function 'kotlinx.serialization.serializer' call
|
|
71
71
|
var this_1 = this_0.a21();
|
|
72
72
|
// Inline function 'kotlinx.serialization.internal.cast' call
|
|
@@ -86,9 +86,9 @@ function ContributionParser() {
|
|
|
86
86
|
}
|
|
87
87
|
return destination;
|
|
88
88
|
}
|
|
89
|
-
|
|
89
|
+
q6t(jsonString) {
|
|
90
90
|
// Inline function 'kotlinx.serialization.json.Json.decodeFromString' call
|
|
91
|
-
var this_0 = this.
|
|
91
|
+
var this_0 = this.o6t_1;
|
|
92
92
|
// Inline function 'kotlinx.serialization.serializer' call
|
|
93
93
|
var this_1 = this_0.a21();
|
|
94
94
|
// Inline function 'kotlinx.serialization.internal.cast' call
|
|
@@ -123,7 +123,7 @@ function Companion() {
|
|
|
123
123
|
// Inline function 'kotlin.arrayOf' call
|
|
124
124
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
125
125
|
// Inline function 'kotlin.js.asDynamic' call
|
|
126
|
-
tmp.
|
|
126
|
+
tmp.r6t_1 = [null, null, lazy(tmp_0, ContributionJson$Companion$$childSerializers$_anonymous__js8jrm), null, null, null, null, null, null, null, null, null];
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
129
|
initMetadataForCompanion($);
|
|
@@ -156,47 +156,47 @@ function $serializer() {
|
|
|
156
156
|
tmp0_serialDesc.c28('label', true);
|
|
157
157
|
tmp0_serialDesc.c28('tagName', true);
|
|
158
158
|
tmp0_serialDesc.c28('tagDateTime', true);
|
|
159
|
-
this.
|
|
159
|
+
this.s6t_1 = tmp0_serialDesc;
|
|
160
160
|
}
|
|
161
|
-
|
|
162
|
-
var tmp0_desc = this.
|
|
161
|
+
t6t(encoder, value) {
|
|
162
|
+
var tmp0_desc = this.s6t_1;
|
|
163
163
|
var tmp1_output = encoder.l20(tmp0_desc);
|
|
164
|
-
var tmp2_cached = Companion_getInstance().
|
|
165
|
-
tmp1_output.b22(tmp0_desc, 0, value.
|
|
166
|
-
tmp1_output.b22(tmp0_desc, 1, value.
|
|
167
|
-
tmp1_output.d22(tmp0_desc, 2, tmp2_cached[2].h3(), value.
|
|
168
|
-
if (tmp1_output.j22(tmp0_desc, 3) ? true : !(value.
|
|
169
|
-
tmp1_output.f22(tmp0_desc, 3, InstantSerializer_getInstance(), value.
|
|
164
|
+
var tmp2_cached = Companion_getInstance().r6t_1;
|
|
165
|
+
tmp1_output.b22(tmp0_desc, 0, value.u6t_1);
|
|
166
|
+
tmp1_output.b22(tmp0_desc, 1, value.v6t_1);
|
|
167
|
+
tmp1_output.d22(tmp0_desc, 2, tmp2_cached[2].h3(), value.w6t_1);
|
|
168
|
+
if (tmp1_output.j22(tmp0_desc, 3) ? true : !(value.x6t_1 == null)) {
|
|
169
|
+
tmp1_output.f22(tmp0_desc, 3, InstantSerializer_getInstance(), value.x6t_1);
|
|
170
170
|
}
|
|
171
|
-
if (tmp1_output.j22(tmp0_desc, 4) ? true : !(value.
|
|
172
|
-
tmp1_output.f22(tmp0_desc, 4, InstantSerializer_getInstance(), value.
|
|
171
|
+
if (tmp1_output.j22(tmp0_desc, 4) ? true : !(value.y6t_1 == null)) {
|
|
172
|
+
tmp1_output.f22(tmp0_desc, 4, InstantSerializer_getInstance(), value.y6t_1);
|
|
173
173
|
}
|
|
174
|
-
tmp1_output.w21(tmp0_desc, 5, value.
|
|
175
|
-
if (tmp1_output.j22(tmp0_desc, 6) ? true : !(value.
|
|
176
|
-
tmp1_output.f22(tmp0_desc, 6, IntSerializer_getInstance(), value.
|
|
174
|
+
tmp1_output.w21(tmp0_desc, 5, value.z6t_1);
|
|
175
|
+
if (tmp1_output.j22(tmp0_desc, 6) ? true : !(value.a6u_1 == null)) {
|
|
176
|
+
tmp1_output.f22(tmp0_desc, 6, IntSerializer_getInstance(), value.a6u_1);
|
|
177
177
|
}
|
|
178
|
-
if (tmp1_output.j22(tmp0_desc, 7) ? true : !(value.
|
|
179
|
-
tmp1_output.f22(tmp0_desc, 7, StringSerializer_getInstance(), value.
|
|
178
|
+
if (tmp1_output.j22(tmp0_desc, 7) ? true : !(value.b6u_1 == null)) {
|
|
179
|
+
tmp1_output.f22(tmp0_desc, 7, StringSerializer_getInstance(), value.b6u_1);
|
|
180
180
|
}
|
|
181
|
-
if (tmp1_output.j22(tmp0_desc, 8) ? true : !(value.
|
|
182
|
-
tmp1_output.f22(tmp0_desc, 8, StringSerializer_getInstance(), value.
|
|
181
|
+
if (tmp1_output.j22(tmp0_desc, 8) ? true : !(value.c6u_1 == null)) {
|
|
182
|
+
tmp1_output.f22(tmp0_desc, 8, StringSerializer_getInstance(), value.c6u_1);
|
|
183
183
|
}
|
|
184
|
-
if (tmp1_output.j22(tmp0_desc, 9) ? true : !(value.
|
|
185
|
-
tmp1_output.f22(tmp0_desc, 9, StringSerializer_getInstance(), value.
|
|
184
|
+
if (tmp1_output.j22(tmp0_desc, 9) ? true : !(value.d6u_1 == null)) {
|
|
185
|
+
tmp1_output.f22(tmp0_desc, 9, StringSerializer_getInstance(), value.d6u_1);
|
|
186
186
|
}
|
|
187
|
-
if (tmp1_output.j22(tmp0_desc, 10) ? true : !(value.
|
|
188
|
-
tmp1_output.f22(tmp0_desc, 10, StringSerializer_getInstance(), value.
|
|
187
|
+
if (tmp1_output.j22(tmp0_desc, 10) ? true : !(value.e6u_1 == null)) {
|
|
188
|
+
tmp1_output.f22(tmp0_desc, 10, StringSerializer_getInstance(), value.e6u_1);
|
|
189
189
|
}
|
|
190
|
-
if (tmp1_output.j22(tmp0_desc, 11) ? true : !(value.
|
|
191
|
-
tmp1_output.f22(tmp0_desc, 11, InstantSerializer_getInstance(), value.
|
|
190
|
+
if (tmp1_output.j22(tmp0_desc, 11) ? true : !(value.f6u_1 == null)) {
|
|
191
|
+
tmp1_output.f22(tmp0_desc, 11, InstantSerializer_getInstance(), value.f6u_1);
|
|
192
192
|
}
|
|
193
193
|
tmp1_output.m20(tmp0_desc);
|
|
194
194
|
}
|
|
195
195
|
k1w(encoder, value) {
|
|
196
|
-
return this.
|
|
196
|
+
return this.t6t(encoder, value instanceof ContributionJson() ? value : THROW_CCE());
|
|
197
197
|
}
|
|
198
198
|
l1w(decoder) {
|
|
199
|
-
var tmp0_desc = this.
|
|
199
|
+
var tmp0_desc = this.s6t_1;
|
|
200
200
|
var tmp1_flag = true;
|
|
201
201
|
var tmp2_index = 0;
|
|
202
202
|
var tmp3_bitMask0 = 0;
|
|
@@ -213,7 +213,7 @@ function $serializer() {
|
|
|
213
213
|
var tmp14_local10 = null;
|
|
214
214
|
var tmp15_local11 = null;
|
|
215
215
|
var tmp16_input = decoder.l20(tmp0_desc);
|
|
216
|
-
var tmp17_cached = Companion_getInstance().
|
|
216
|
+
var tmp17_cached = Companion_getInstance().r6t_1;
|
|
217
217
|
if (tmp16_input.b21()) {
|
|
218
218
|
tmp4_local0 = tmp16_input.v20(tmp0_desc, 0);
|
|
219
219
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -299,13 +299,13 @@ function $serializer() {
|
|
|
299
299
|
}
|
|
300
300
|
}
|
|
301
301
|
tmp16_input.m20(tmp0_desc);
|
|
302
|
-
return ContributionJson().
|
|
302
|
+
return ContributionJson().g6u(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, tmp13_local9, tmp14_local10, tmp15_local11, null);
|
|
303
303
|
}
|
|
304
304
|
j1w() {
|
|
305
|
-
return this.
|
|
305
|
+
return this.s6t_1;
|
|
306
306
|
}
|
|
307
307
|
r28() {
|
|
308
|
-
var tmp0_cached = Companion_getInstance().
|
|
308
|
+
var tmp0_cached = Companion_getInstance().r6t_1;
|
|
309
309
|
// Inline function 'kotlin.arrayOf' call
|
|
310
310
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
311
311
|
// Inline function 'kotlin.js.asDynamic' call
|
|
@@ -329,21 +329,21 @@ function ContributionJson() {
|
|
|
329
329
|
if (ContributionJsonClass === VOID) {
|
|
330
330
|
class $ {
|
|
331
331
|
toString() {
|
|
332
|
-
return 'ContributionJson(lastCommit=' + this.
|
|
332
|
+
return 'ContributionJson(lastCommit=' + this.u6t_1 + ', firstCommit=' + this.v6t_1 + ', authors=' + toString_0(this.w6t_1) + ', dateTime=' + toString(this.x6t_1) + ', firstCommitDateTime=' + toString(this.y6t_1) + ', commitCount=' + this.z6t_1 + ', ease=' + this.a6u_1 + ', storyId=' + this.b6u_1 + ', semver=' + this.c6u_1 + ', label=' + this.d6u_1 + ', tagName=' + this.e6u_1 + ', tagDateTime=' + toString(this.f6u_1) + ')';
|
|
333
333
|
}
|
|
334
334
|
hashCode() {
|
|
335
|
-
var result = getStringHashCode(this.
|
|
336
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
337
|
-
result = imul(result, 31) + hashCode(this.
|
|
338
|
-
result = imul(result, 31) + (this.
|
|
339
|
-
result = imul(result, 31) + (this.
|
|
340
|
-
result = imul(result, 31) + this.
|
|
341
|
-
result = imul(result, 31) + (this.
|
|
342
|
-
result = imul(result, 31) + (this.
|
|
343
|
-
result = imul(result, 31) + (this.
|
|
344
|
-
result = imul(result, 31) + (this.
|
|
345
|
-
result = imul(result, 31) + (this.
|
|
346
|
-
result = imul(result, 31) + (this.
|
|
335
|
+
var result = getStringHashCode(this.u6t_1);
|
|
336
|
+
result = imul(result, 31) + getStringHashCode(this.v6t_1) | 0;
|
|
337
|
+
result = imul(result, 31) + hashCode(this.w6t_1) | 0;
|
|
338
|
+
result = imul(result, 31) + (this.x6t_1 == null ? 0 : this.x6t_1.hashCode()) | 0;
|
|
339
|
+
result = imul(result, 31) + (this.y6t_1 == null ? 0 : this.y6t_1.hashCode()) | 0;
|
|
340
|
+
result = imul(result, 31) + this.z6t_1 | 0;
|
|
341
|
+
result = imul(result, 31) + (this.a6u_1 == null ? 0 : this.a6u_1) | 0;
|
|
342
|
+
result = imul(result, 31) + (this.b6u_1 == null ? 0 : getStringHashCode(this.b6u_1)) | 0;
|
|
343
|
+
result = imul(result, 31) + (this.c6u_1 == null ? 0 : getStringHashCode(this.c6u_1)) | 0;
|
|
344
|
+
result = imul(result, 31) + (this.d6u_1 == null ? 0 : getStringHashCode(this.d6u_1)) | 0;
|
|
345
|
+
result = imul(result, 31) + (this.e6u_1 == null ? 0 : getStringHashCode(this.e6u_1)) | 0;
|
|
346
|
+
result = imul(result, 31) + (this.f6u_1 == null ? 0 : this.f6u_1.hashCode()) | 0;
|
|
347
347
|
return result;
|
|
348
348
|
}
|
|
349
349
|
equals(other) {
|
|
@@ -351,74 +351,74 @@ function ContributionJson() {
|
|
|
351
351
|
return true;
|
|
352
352
|
if (!(other instanceof ContributionJson()))
|
|
353
353
|
return false;
|
|
354
|
-
if (!(this.
|
|
354
|
+
if (!(this.u6t_1 === other.u6t_1))
|
|
355
355
|
return false;
|
|
356
|
-
if (!(this.
|
|
356
|
+
if (!(this.v6t_1 === other.v6t_1))
|
|
357
357
|
return false;
|
|
358
|
-
if (!equals(this.
|
|
358
|
+
if (!equals(this.w6t_1, other.w6t_1))
|
|
359
359
|
return false;
|
|
360
|
-
if (!equals(this.
|
|
360
|
+
if (!equals(this.x6t_1, other.x6t_1))
|
|
361
361
|
return false;
|
|
362
|
-
if (!equals(this.
|
|
362
|
+
if (!equals(this.y6t_1, other.y6t_1))
|
|
363
363
|
return false;
|
|
364
|
-
if (!(this.
|
|
364
|
+
if (!(this.z6t_1 === other.z6t_1))
|
|
365
365
|
return false;
|
|
366
|
-
if (!(this.
|
|
366
|
+
if (!(this.a6u_1 == other.a6u_1))
|
|
367
367
|
return false;
|
|
368
|
-
if (!(this.
|
|
368
|
+
if (!(this.b6u_1 == other.b6u_1))
|
|
369
369
|
return false;
|
|
370
|
-
if (!(this.
|
|
370
|
+
if (!(this.c6u_1 == other.c6u_1))
|
|
371
371
|
return false;
|
|
372
|
-
if (!(this.
|
|
372
|
+
if (!(this.d6u_1 == other.d6u_1))
|
|
373
373
|
return false;
|
|
374
|
-
if (!(this.
|
|
374
|
+
if (!(this.e6u_1 == other.e6u_1))
|
|
375
375
|
return false;
|
|
376
|
-
if (!equals(this.
|
|
376
|
+
if (!equals(this.f6u_1, other.f6u_1))
|
|
377
377
|
return false;
|
|
378
378
|
return true;
|
|
379
379
|
}
|
|
380
|
-
static
|
|
380
|
+
static g6u(seen0, lastCommit, firstCommit, authors, dateTime, firstCommitDateTime, commitCount, ease, storyId, semver, label, tagName, tagDateTime, serializationConstructorMarker) {
|
|
381
381
|
Companion_getInstance();
|
|
382
382
|
if (!(39 === (39 & seen0))) {
|
|
383
|
-
throwMissingFieldException(seen0, 39, $serializer_getInstance().
|
|
383
|
+
throwMissingFieldException(seen0, 39, $serializer_getInstance().s6t_1);
|
|
384
384
|
}
|
|
385
385
|
var $this = createThis(this);
|
|
386
|
-
$this.
|
|
387
|
-
$this.
|
|
388
|
-
$this.
|
|
386
|
+
$this.u6t_1 = lastCommit;
|
|
387
|
+
$this.v6t_1 = firstCommit;
|
|
388
|
+
$this.w6t_1 = authors;
|
|
389
389
|
if (0 === (seen0 & 8))
|
|
390
|
-
$this.
|
|
390
|
+
$this.x6t_1 = null;
|
|
391
391
|
else
|
|
392
|
-
$this.
|
|
392
|
+
$this.x6t_1 = dateTime;
|
|
393
393
|
if (0 === (seen0 & 16))
|
|
394
|
-
$this.
|
|
394
|
+
$this.y6t_1 = null;
|
|
395
395
|
else
|
|
396
|
-
$this.
|
|
397
|
-
$this.
|
|
396
|
+
$this.y6t_1 = firstCommitDateTime;
|
|
397
|
+
$this.z6t_1 = commitCount;
|
|
398
398
|
if (0 === (seen0 & 64))
|
|
399
|
-
$this.
|
|
399
|
+
$this.a6u_1 = null;
|
|
400
400
|
else
|
|
401
|
-
$this.
|
|
401
|
+
$this.a6u_1 = ease;
|
|
402
402
|
if (0 === (seen0 & 128))
|
|
403
|
-
$this.
|
|
403
|
+
$this.b6u_1 = null;
|
|
404
404
|
else
|
|
405
|
-
$this.
|
|
405
|
+
$this.b6u_1 = storyId;
|
|
406
406
|
if (0 === (seen0 & 256))
|
|
407
|
-
$this.
|
|
407
|
+
$this.c6u_1 = null;
|
|
408
408
|
else
|
|
409
|
-
$this.
|
|
409
|
+
$this.c6u_1 = semver;
|
|
410
410
|
if (0 === (seen0 & 512))
|
|
411
|
-
$this.
|
|
411
|
+
$this.d6u_1 = null;
|
|
412
412
|
else
|
|
413
|
-
$this.
|
|
413
|
+
$this.d6u_1 = label;
|
|
414
414
|
if (0 === (seen0 & 1024))
|
|
415
|
-
$this.
|
|
415
|
+
$this.e6u_1 = null;
|
|
416
416
|
else
|
|
417
|
-
$this.
|
|
417
|
+
$this.e6u_1 = tagName;
|
|
418
418
|
if (0 === (seen0 & 2048))
|
|
419
|
-
$this.
|
|
419
|
+
$this.f6u_1 = null;
|
|
420
420
|
else
|
|
421
|
-
$this.
|
|
421
|
+
$this.f6u_1 = tagDateTime;
|
|
422
422
|
return $this;
|
|
423
423
|
}
|
|
424
424
|
}
|
|
@@ -428,18 +428,18 @@ function ContributionJson() {
|
|
|
428
428
|
return ContributionJsonClass;
|
|
429
429
|
}
|
|
430
430
|
function toModel(_this__u8e3s4) {
|
|
431
|
-
var tmp0_lastCommit = _this__u8e3s4.
|
|
432
|
-
var tmp1_firstCommit = _this__u8e3s4.
|
|
433
|
-
var tmp2_authors = _this__u8e3s4.
|
|
434
|
-
var tmp3_dateTime = _this__u8e3s4.
|
|
435
|
-
var tmp4_firstCommitDateTime = _this__u8e3s4.
|
|
436
|
-
var tmp5_ease = _this__u8e3s4.
|
|
437
|
-
var tmp6_storyId = _this__u8e3s4.
|
|
438
|
-
var tmp7_semver = _this__u8e3s4.
|
|
439
|
-
var tmp8_label = _this__u8e3s4.
|
|
440
|
-
var tmp9_tagName = _this__u8e3s4.
|
|
441
|
-
var tmp10_tagDateTime = _this__u8e3s4.
|
|
442
|
-
var tmp11_commitCount = _this__u8e3s4.
|
|
431
|
+
var tmp0_lastCommit = _this__u8e3s4.u6t_1;
|
|
432
|
+
var tmp1_firstCommit = _this__u8e3s4.v6t_1;
|
|
433
|
+
var tmp2_authors = _this__u8e3s4.w6t_1;
|
|
434
|
+
var tmp3_dateTime = _this__u8e3s4.x6t_1;
|
|
435
|
+
var tmp4_firstCommitDateTime = _this__u8e3s4.y6t_1;
|
|
436
|
+
var tmp5_ease = _this__u8e3s4.a6u_1;
|
|
437
|
+
var tmp6_storyId = _this__u8e3s4.b6u_1;
|
|
438
|
+
var tmp7_semver = _this__u8e3s4.c6u_1;
|
|
439
|
+
var tmp8_label = _this__u8e3s4.d6u_1;
|
|
440
|
+
var tmp9_tagName = _this__u8e3s4.e6u_1;
|
|
441
|
+
var tmp10_tagDateTime = _this__u8e3s4.f6u_1;
|
|
442
|
+
var tmp11_commitCount = _this__u8e3s4.z6t_1;
|
|
443
443
|
return new (Contribution())(tmp0_lastCommit, tmp1_firstCommit, tmp2_authors, tmp11_commitCount, tmp3_dateTime, tmp4_firstCommitDateTime, tmp5_ease, tmp6_storyId, tmp7_semver, tmp8_label, tmp9_tagName, tmp10_tagDateTime);
|
|
444
444
|
}
|
|
445
445
|
//region block: exports
|
|
@@ -17,35 +17,35 @@ function Contribution() {
|
|
|
17
17
|
if (ContributionClass === VOID) {
|
|
18
18
|
class $ {
|
|
19
19
|
constructor(lastCommit, firstCommit, authors, commitCount, dateTime, firstCommitDateTime, ease, storyId, semver, label, tagName, tagDateTime) {
|
|
20
|
-
this.
|
|
21
|
-
this.
|
|
22
|
-
this.
|
|
23
|
-
this.
|
|
24
|
-
this.
|
|
25
|
-
this.
|
|
26
|
-
this.
|
|
27
|
-
this.
|
|
28
|
-
this.
|
|
29
|
-
this.
|
|
30
|
-
this.
|
|
31
|
-
this.
|
|
20
|
+
this.c6t_1 = lastCommit;
|
|
21
|
+
this.d6t_1 = firstCommit;
|
|
22
|
+
this.e6t_1 = authors;
|
|
23
|
+
this.f6t_1 = commitCount;
|
|
24
|
+
this.g6t_1 = dateTime;
|
|
25
|
+
this.h6t_1 = firstCommitDateTime;
|
|
26
|
+
this.i6t_1 = ease;
|
|
27
|
+
this.j6t_1 = storyId;
|
|
28
|
+
this.k6t_1 = semver;
|
|
29
|
+
this.l6t_1 = label;
|
|
30
|
+
this.m6t_1 = tagName;
|
|
31
|
+
this.n6t_1 = tagDateTime;
|
|
32
32
|
}
|
|
33
33
|
toString() {
|
|
34
|
-
return 'Contribution(lastCommit=' + this.
|
|
34
|
+
return 'Contribution(lastCommit=' + this.c6t_1 + ', firstCommit=' + this.d6t_1 + ', authors=' + toString(this.e6t_1) + ', commitCount=' + this.f6t_1 + ', dateTime=' + toString_0(this.g6t_1) + ', firstCommitDateTime=' + toString_0(this.h6t_1) + ', ease=' + this.i6t_1 + ', storyId=' + this.j6t_1 + ', semver=' + this.k6t_1 + ', label=' + this.l6t_1 + ', tagName=' + this.m6t_1 + ', tagDateTime=' + toString_0(this.n6t_1) + ')';
|
|
35
35
|
}
|
|
36
36
|
hashCode() {
|
|
37
|
-
var result = getStringHashCode(this.
|
|
38
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
39
|
-
result = imul(result, 31) + hashCode(this.
|
|
40
|
-
result = imul(result, 31) + this.
|
|
41
|
-
result = imul(result, 31) + (this.
|
|
42
|
-
result = imul(result, 31) + (this.
|
|
43
|
-
result = imul(result, 31) + (this.
|
|
44
|
-
result = imul(result, 31) + (this.
|
|
45
|
-
result = imul(result, 31) + (this.
|
|
46
|
-
result = imul(result, 31) + (this.
|
|
47
|
-
result = imul(result, 31) + (this.
|
|
48
|
-
result = imul(result, 31) + (this.
|
|
37
|
+
var result = getStringHashCode(this.c6t_1);
|
|
38
|
+
result = imul(result, 31) + getStringHashCode(this.d6t_1) | 0;
|
|
39
|
+
result = imul(result, 31) + hashCode(this.e6t_1) | 0;
|
|
40
|
+
result = imul(result, 31) + this.f6t_1 | 0;
|
|
41
|
+
result = imul(result, 31) + (this.g6t_1 == null ? 0 : this.g6t_1.hashCode()) | 0;
|
|
42
|
+
result = imul(result, 31) + (this.h6t_1 == null ? 0 : this.h6t_1.hashCode()) | 0;
|
|
43
|
+
result = imul(result, 31) + (this.i6t_1 == null ? 0 : this.i6t_1) | 0;
|
|
44
|
+
result = imul(result, 31) + (this.j6t_1 == null ? 0 : getStringHashCode(this.j6t_1)) | 0;
|
|
45
|
+
result = imul(result, 31) + (this.k6t_1 == null ? 0 : getStringHashCode(this.k6t_1)) | 0;
|
|
46
|
+
result = imul(result, 31) + (this.l6t_1 == null ? 0 : getStringHashCode(this.l6t_1)) | 0;
|
|
47
|
+
result = imul(result, 31) + (this.m6t_1 == null ? 0 : getStringHashCode(this.m6t_1)) | 0;
|
|
48
|
+
result = imul(result, 31) + (this.n6t_1 == null ? 0 : this.n6t_1.hashCode()) | 0;
|
|
49
49
|
return result;
|
|
50
50
|
}
|
|
51
51
|
equals(other) {
|
|
@@ -53,29 +53,29 @@ function Contribution() {
|
|
|
53
53
|
return true;
|
|
54
54
|
if (!(other instanceof Contribution()))
|
|
55
55
|
return false;
|
|
56
|
-
if (!(this.
|
|
56
|
+
if (!(this.c6t_1 === other.c6t_1))
|
|
57
57
|
return false;
|
|
58
|
-
if (!(this.
|
|
58
|
+
if (!(this.d6t_1 === other.d6t_1))
|
|
59
59
|
return false;
|
|
60
|
-
if (!equals(this.
|
|
60
|
+
if (!equals(this.e6t_1, other.e6t_1))
|
|
61
61
|
return false;
|
|
62
|
-
if (!(this.
|
|
62
|
+
if (!(this.f6t_1 === other.f6t_1))
|
|
63
63
|
return false;
|
|
64
|
-
if (!equals(this.
|
|
64
|
+
if (!equals(this.g6t_1, other.g6t_1))
|
|
65
65
|
return false;
|
|
66
|
-
if (!equals(this.
|
|
66
|
+
if (!equals(this.h6t_1, other.h6t_1))
|
|
67
67
|
return false;
|
|
68
|
-
if (!(this.
|
|
68
|
+
if (!(this.i6t_1 == other.i6t_1))
|
|
69
69
|
return false;
|
|
70
|
-
if (!(this.
|
|
70
|
+
if (!(this.j6t_1 == other.j6t_1))
|
|
71
71
|
return false;
|
|
72
|
-
if (!(this.
|
|
72
|
+
if (!(this.k6t_1 == other.k6t_1))
|
|
73
73
|
return false;
|
|
74
|
-
if (!(this.
|
|
74
|
+
if (!(this.l6t_1 == other.l6t_1))
|
|
75
75
|
return false;
|
|
76
|
-
if (!(this.
|
|
76
|
+
if (!(this.m6t_1 == other.m6t_1))
|
|
77
77
|
return false;
|
|
78
|
-
if (!equals(this.
|
|
78
|
+
if (!equals(this.n6t_1, other.n6t_1))
|
|
79
79
|
return false;
|
|
80
80
|
return true;
|
|
81
81
|
}
|