@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
|
@@ -23,20 +23,20 @@ function Data() {
|
|
|
23
23
|
if (DataClass === VOID) {
|
|
24
24
|
class $ {
|
|
25
25
|
constructor(partyList) {
|
|
26
|
-
this.
|
|
26
|
+
this.i6u_1 = partyList;
|
|
27
27
|
}
|
|
28
28
|
toString() {
|
|
29
|
-
return 'Data(partyList=' + toString(this.
|
|
29
|
+
return 'Data(partyList=' + toString(this.i6u_1) + ')';
|
|
30
30
|
}
|
|
31
31
|
hashCode() {
|
|
32
|
-
return hashCode(this.
|
|
32
|
+
return hashCode(this.i6u_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.i6u_1, other.i6u_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.j6u_1 = __typename;
|
|
55
|
+
this.k6u_1 = partyDetails;
|
|
56
56
|
}
|
|
57
57
|
toString() {
|
|
58
|
-
return 'PartyList(__typename=' + this.
|
|
58
|
+
return 'PartyList(__typename=' + this.j6u_1 + ', partyDetails=' + this.k6u_1.toString() + ')';
|
|
59
59
|
}
|
|
60
60
|
hashCode() {
|
|
61
|
-
var result = getStringHashCode(this.
|
|
62
|
-
result = imul(result, 31) + this.
|
|
61
|
+
var result = getStringHashCode(this.j6u_1);
|
|
62
|
+
result = imul(result, 31) + this.k6u_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.j6u_1 === other.j6u_1))
|
|
71
71
|
return false;
|
|
72
|
-
if (!this.
|
|
72
|
+
if (!this.k6u_1.equals(other.k6u_1))
|
|
73
73
|
return false;
|
|
74
74
|
return true;
|
|
75
75
|
}
|
|
@@ -84,8 +84,8 @@ function Companion() {
|
|
|
84
84
|
if (CompanionClass === VOID) {
|
|
85
85
|
class $ {
|
|
86
86
|
constructor() {
|
|
87
|
-
this.
|
|
88
|
-
this.
|
|
87
|
+
this.l6u_1 = '4f3dd94849aec46c63247323851c79a17e0dc9822385331bb7f50b02e7cb1b7f';
|
|
88
|
+
this.m6u_1 = 'partyListQuery';
|
|
89
89
|
}
|
|
90
90
|
e5i() {
|
|
91
91
|
return 'query partyListQuery { partyList { __typename ...PartyDetails } } fragment PartyDetails on Party { id name email pairingRule badgesEnabled defaultBadgeName alternateBadgeName callSignsEnabled animationsEnabled animationSpeed }';
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
import { toString30pk9tzaqopn as toString } from '../../../../../../kotlin-kotlin-stdlib/kotlin/Library.mjs';
|
|
2
|
+
import {
|
|
3
|
+
equals2au1ep9vhcato as equals,
|
|
4
|
+
toString1pkumu07cwy4m as toString_0,
|
|
5
|
+
hashCodeq5arwsb9dgti as hashCode,
|
|
6
|
+
getStringHashCode26igk1bx568vk as getStringHashCode,
|
|
7
|
+
} from '../../../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
|
|
8
|
+
import { Data_getInstancepfp68877wdbw as Data_getInstance } from './adapter/PlayersQuery_ResponseAdapter.mjs';
|
|
9
|
+
import {
|
|
10
|
+
initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
|
|
11
|
+
initMetadataForCompanion1wyw17z38v6ac as initMetadataForCompanion,
|
|
12
|
+
} from '../../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
13
|
+
import { VOID3gxj6tk5isa35 as VOID } from '../../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
14
|
+
import { PlayersQuery_VariablesAdapter_instance3knxfk0ab8kas as PlayersQuery_VariablesAdapter_instance } from './adapter/PlayersQuery_VariablesAdapter.mjs';
|
|
15
|
+
import { obj2vqjd1bjrpmyg as obj } from '../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs';
|
|
16
|
+
import { Query2hw717wsl0l5r as Query } from '../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/Query.mjs';
|
|
17
|
+
//region block: imports
|
|
18
|
+
var imul = Math.imul;
|
|
19
|
+
//endregion
|
|
20
|
+
//region block: pre-declaration
|
|
21
|
+
//endregion
|
|
22
|
+
var DataClass;
|
|
23
|
+
function Data() {
|
|
24
|
+
if (DataClass === VOID) {
|
|
25
|
+
class $ {
|
|
26
|
+
constructor(party) {
|
|
27
|
+
this.n6u_1 = party;
|
|
28
|
+
}
|
|
29
|
+
toString() {
|
|
30
|
+
return 'Data(party=' + toString(this.n6u_1) + ')';
|
|
31
|
+
}
|
|
32
|
+
hashCode() {
|
|
33
|
+
return this.n6u_1 == null ? 0 : this.n6u_1.hashCode();
|
|
34
|
+
}
|
|
35
|
+
equals(other) {
|
|
36
|
+
if (this === other)
|
|
37
|
+
return true;
|
|
38
|
+
if (!(other instanceof Data()))
|
|
39
|
+
return false;
|
|
40
|
+
if (!equals(this.n6u_1, other.n6u_1))
|
|
41
|
+
return false;
|
|
42
|
+
return true;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
initMetadataForClass($, 'Data', VOID, VOID, VOID, VOID, VOID, {1: Data_getInstance});
|
|
46
|
+
DataClass = $;
|
|
47
|
+
}
|
|
48
|
+
return DataClass;
|
|
49
|
+
}
|
|
50
|
+
var PartyClass;
|
|
51
|
+
function Party() {
|
|
52
|
+
if (PartyClass === VOID) {
|
|
53
|
+
class $ {
|
|
54
|
+
constructor(playerList) {
|
|
55
|
+
this.o6u_1 = playerList;
|
|
56
|
+
}
|
|
57
|
+
toString() {
|
|
58
|
+
return 'Party(playerList=' + toString_0(this.o6u_1) + ')';
|
|
59
|
+
}
|
|
60
|
+
hashCode() {
|
|
61
|
+
return hashCode(this.o6u_1);
|
|
62
|
+
}
|
|
63
|
+
equals(other) {
|
|
64
|
+
if (this === other)
|
|
65
|
+
return true;
|
|
66
|
+
if (!(other instanceof Party()))
|
|
67
|
+
return false;
|
|
68
|
+
if (!equals(this.o6u_1, other.o6u_1))
|
|
69
|
+
return false;
|
|
70
|
+
return true;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
initMetadataForClass($, 'Party');
|
|
74
|
+
PartyClass = $;
|
|
75
|
+
}
|
|
76
|
+
return PartyClass;
|
|
77
|
+
}
|
|
78
|
+
var PlayerListClass;
|
|
79
|
+
function PlayerList() {
|
|
80
|
+
if (PlayerListClass === VOID) {
|
|
81
|
+
class $ {
|
|
82
|
+
constructor(__typename, playerDetails) {
|
|
83
|
+
this.p6u_1 = __typename;
|
|
84
|
+
this.q6u_1 = playerDetails;
|
|
85
|
+
}
|
|
86
|
+
toString() {
|
|
87
|
+
return 'PlayerList(__typename=' + this.p6u_1 + ', playerDetails=' + this.q6u_1.toString() + ')';
|
|
88
|
+
}
|
|
89
|
+
hashCode() {
|
|
90
|
+
var result = getStringHashCode(this.p6u_1);
|
|
91
|
+
result = imul(result, 31) + this.q6u_1.hashCode() | 0;
|
|
92
|
+
return result;
|
|
93
|
+
}
|
|
94
|
+
equals(other) {
|
|
95
|
+
if (this === other)
|
|
96
|
+
return true;
|
|
97
|
+
if (!(other instanceof PlayerList()))
|
|
98
|
+
return false;
|
|
99
|
+
if (!(this.p6u_1 === other.p6u_1))
|
|
100
|
+
return false;
|
|
101
|
+
if (!this.q6u_1.equals(other.q6u_1))
|
|
102
|
+
return false;
|
|
103
|
+
return true;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
initMetadataForClass($, 'PlayerList');
|
|
107
|
+
PlayerListClass = $;
|
|
108
|
+
}
|
|
109
|
+
return PlayerListClass;
|
|
110
|
+
}
|
|
111
|
+
var CompanionClass;
|
|
112
|
+
function Companion() {
|
|
113
|
+
if (CompanionClass === VOID) {
|
|
114
|
+
class $ {
|
|
115
|
+
constructor() {
|
|
116
|
+
this.r6u_1 = '2470fab9120a545b0fdd866f456fe353ecaf9c55139b85bf385a58c6447cdee2';
|
|
117
|
+
this.s6u_1 = 'playersQuery';
|
|
118
|
+
}
|
|
119
|
+
e5i() {
|
|
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
|
+
}
|
|
122
|
+
}
|
|
123
|
+
initMetadataForCompanion($);
|
|
124
|
+
CompanionClass = $;
|
|
125
|
+
}
|
|
126
|
+
return CompanionClass;
|
|
127
|
+
}
|
|
128
|
+
var Companion_instance;
|
|
129
|
+
function Companion_getInstance() {
|
|
130
|
+
return Companion_instance;
|
|
131
|
+
}
|
|
132
|
+
var PlayersQueryClass;
|
|
133
|
+
function PlayersQuery() {
|
|
134
|
+
if (PlayersQueryClass === VOID) {
|
|
135
|
+
class $ {
|
|
136
|
+
constructor(input) {
|
|
137
|
+
this.t6u_1 = input;
|
|
138
|
+
}
|
|
139
|
+
g5i() {
|
|
140
|
+
return '2470fab9120a545b0fdd866f456fe353ecaf9c55139b85bf385a58c6447cdee2';
|
|
141
|
+
}
|
|
142
|
+
operationId() {
|
|
143
|
+
return this.g5i();
|
|
144
|
+
}
|
|
145
|
+
l4s() {
|
|
146
|
+
return Companion_instance.e5i();
|
|
147
|
+
}
|
|
148
|
+
h5i() {
|
|
149
|
+
return 'playersQuery';
|
|
150
|
+
}
|
|
151
|
+
operationName() {
|
|
152
|
+
return this.h5i();
|
|
153
|
+
}
|
|
154
|
+
i4r(writer, customScalarAdapters, withDefaultValues) {
|
|
155
|
+
PlayersQuery_VariablesAdapter_instance.u6u(writer, this, customScalarAdapters, withDefaultValues);
|
|
156
|
+
}
|
|
157
|
+
h4r() {
|
|
158
|
+
return obj(Data_getInstance());
|
|
159
|
+
}
|
|
160
|
+
toString() {
|
|
161
|
+
return 'PlayersQuery(input=' + this.t6u_1.toString() + ')';
|
|
162
|
+
}
|
|
163
|
+
hashCode() {
|
|
164
|
+
return this.t6u_1.hashCode();
|
|
165
|
+
}
|
|
166
|
+
equals(other) {
|
|
167
|
+
if (this === other)
|
|
168
|
+
return true;
|
|
169
|
+
if (!(other instanceof PlayersQuery()))
|
|
170
|
+
return false;
|
|
171
|
+
if (!this.t6u_1.equals(other.t6u_1))
|
|
172
|
+
return false;
|
|
173
|
+
return true;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
initMetadataForClass($, 'PlayersQuery', VOID, VOID, [Query()]);
|
|
177
|
+
PlayersQueryClass = $;
|
|
178
|
+
}
|
|
179
|
+
return PlayersQueryClass;
|
|
180
|
+
}
|
|
181
|
+
//region block: init
|
|
182
|
+
Companion_instance = new (Companion())();
|
|
183
|
+
//endregion
|
|
184
|
+
//region block: exports
|
|
185
|
+
export {
|
|
186
|
+
Data as Data2xfq98fwou1cm,
|
|
187
|
+
Party as Party2zmjayrz1p64g,
|
|
188
|
+
PlayerList as PlayerListpl78qjckhn5r,
|
|
189
|
+
PlayersQuery as PlayersQuery3ov6tbgz63uc4,
|
|
190
|
+
};
|
|
191
|
+
//endregion
|
|
192
|
+
|
|
193
|
+
//# sourceMappingURL=PlayersQuery.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../cli/build/generated/source/apollo/service/com/zegreatrob/coupling/cli/gql/PlayersQuery.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["party","playerList","__typename","playerDetails","result","<get-OPERATION_DOCUMENT>","input","id","document","name","serializeVariables","writer","customScalarAdapters","withDefaultValues","adapter"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;kBA2DWA,K;QAAP,kB;;iBA3DJ;A,QAAA,iD;MAAA,C;iBAAA;A,QAAA,qD;MAAA,C;oBAAA;A,QAAA,mB;UAAA,W;QAAA,+B;UAAA,Y;QAAA,qC;UAAA,Y;QAAA,W;MAAA,C;;;;;;;;;;;kBA+DWC,U;QAAP,uB;;iBA/DJ;A,QAAA,yD;MAAA,C;iBAAA;A,QAAA,2B;MAAA,C;oBAAA;A,QAAA,mB;UAAA,W;QAAA,gC;UAAA,Y;QAAA,qC;UAAA,Y;QAAA,W;MAAA,C;;;;;;;;;;;kBAmEWC,U,EAIAC,a;QAJP,uB;QAIA,0B;;iBAvEJ;A,QAAA,+F;MAAA,C;iBAAA;A,YAAAC,sC;QAAA,qD;QAAA,a;MAAA,C;oBAAA;A,QAAA,mB;UAAA,W;QAAA,qC;UAAA,Y;QAAA,kC;UAAA,Y;QAAA,oC;UAAA,Y;QAAA,W;MAAA,C;;;;;;;;;;;;QA4EQ,+E;QAgCsC,2B;;SAFxCC,CAAAA,EAAQ;A,QAA0P,OAA1P,gP;MAAyP,C;;;;;;;;;;;;;;;kBA1E9PC,K;QAAP,kB;;SAESC,CAAAA,EAAmB;A,QAAY,OAAZ,kE;MAAW,C;;;;SAE9BC,CAAAA,EAAyB;A,QAAkB,OAAlB,wB;MAAiB,C;SAE1CC,CAAAA,EAAqB;A,QAAc,OAAd,c;MAAa,C;;;;SAElCC,CACPC,M,EACAC,oB,EACAC,iBAHOH,EAIP;A,QAC8B,2CAAmB,MAAnB,EAA2B,IAA3B,EAAiC,oBAAjC,EAAuD,iBAAvD,C;MAChC,C;SAESI,CAAAA,EAA+B;A,QAAuC,OAAL,uB;MAAI,C;iBAhDhF;A,QAAA,0D;MAAA,C;iBAAA;A,QAAA,4B;MAAA,C;oBAAA;A,QAAA,mB;UAAA,W;QAAA,uC;UAAA,Y;QAAA,oC;UAAA,Y;QAAA,W;MAAA,C;;;;;;;;;;;;;;"}
|
|
@@ -25,12 +25,12 @@ function Data_0() {
|
|
|
25
25
|
class $ {
|
|
26
26
|
constructor() {
|
|
27
27
|
Data_instance = this;
|
|
28
|
-
this.
|
|
28
|
+
this.v6u_1 = listOf('partyList');
|
|
29
29
|
}
|
|
30
30
|
i4k(reader, customScalarAdapters) {
|
|
31
31
|
var _partyList = null;
|
|
32
32
|
$l$loop: while (true) {
|
|
33
|
-
if (reader.x4w(this.
|
|
33
|
+
if (reader.x4w(this.v6u_1) === 0)
|
|
34
34
|
_partyList = list(obj(PartyList_getInstance(), true)).i4k(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
|
+
w6u(writer, customScalarAdapters, value) {
|
|
48
48
|
writer.h4s('partyList');
|
|
49
|
-
list(obj(PartyList_getInstance(), true)).o4l(writer, customScalarAdapters, value.
|
|
49
|
+
list(obj(PartyList_getInstance(), true)).o4l(writer, customScalarAdapters, value.i6u_1);
|
|
50
50
|
}
|
|
51
51
|
j4k(writer, customScalarAdapters, value) {
|
|
52
|
-
return this.
|
|
52
|
+
return this.w6u(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.x6u_1 = listOf('__typename');
|
|
73
73
|
}
|
|
74
74
|
i4k(reader, customScalarAdapters) {
|
|
75
75
|
var __typename = null;
|
|
76
76
|
$l$loop: while (true) {
|
|
77
|
-
if (reader.x4w(this.
|
|
77
|
+
if (reader.x4w(this.x6u_1) === 0)
|
|
78
78
|
__typename = get_StringAdapter().i4k(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
|
+
y6u(writer, customScalarAdapters, value) {
|
|
94
94
|
writer.h4s('__typename');
|
|
95
|
-
get_StringAdapter().j4k(writer, customScalarAdapters, value.
|
|
96
|
-
PartyDetails_getInstance().i5j(writer, customScalarAdapters, value.
|
|
95
|
+
get_StringAdapter().j4k(writer, customScalarAdapters, value.j6u_1);
|
|
96
|
+
PartyDetails_getInstance().i5j(writer, customScalarAdapters, value.k6u_1);
|
|
97
97
|
}
|
|
98
98
|
j4k(writer, customScalarAdapters, value) {
|
|
99
|
-
return this.
|
|
99
|
+
return this.y6u(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
ADDED
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import { listOfvhqybd2zx248 as listOf } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs';
|
|
2
|
+
import {
|
|
3
|
+
obj2vqjd1bjrpmyg as obj,
|
|
4
|
+
nullable1in0t8o94jx9t as nullable,
|
|
5
|
+
list2lpjhmv1d2k19 as list,
|
|
6
|
+
get_StringAdapter1plpsgiy8rwhj as get_StringAdapter,
|
|
7
|
+
} from '../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs';
|
|
8
|
+
import {
|
|
9
|
+
Data2xfq98fwou1cm as Data,
|
|
10
|
+
Party2zmjayrz1p64g as Party,
|
|
11
|
+
PlayerListpl78qjckhn5r as PlayerList,
|
|
12
|
+
} from '../PlayersQuery.mjs';
|
|
13
|
+
import { Unit_instance28fytmsmm6r23 as Unit_instance } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
14
|
+
import { THROW_CCE2g6jy02ryeudk as THROW_CCE } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
|
|
15
|
+
import { Adapter1t72m9xaryzfb as Adapter } from '../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapter.mjs';
|
|
16
|
+
import { initMetadataForObject1cxne3s9w65el as initMetadataForObject } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
17
|
+
import { VOID3gxj6tk5isa35 as VOID } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
18
|
+
import { missingField4n9ldh7pi82p as missingField } from '../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/Assertions.mjs';
|
|
19
|
+
import { PlayerDetails_getInstance1oo4fr85z1co1 as PlayerDetails_getInstance } from '../../../../../../../Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs';
|
|
20
|
+
//region block: imports
|
|
21
|
+
//endregion
|
|
22
|
+
//region block: pre-declaration
|
|
23
|
+
//endregion
|
|
24
|
+
var DataClass;
|
|
25
|
+
function Data_0() {
|
|
26
|
+
if (DataClass === VOID) {
|
|
27
|
+
class $ {
|
|
28
|
+
constructor() {
|
|
29
|
+
Data_instance = this;
|
|
30
|
+
this.z6u_1 = listOf('party');
|
|
31
|
+
}
|
|
32
|
+
i4k(reader, customScalarAdapters) {
|
|
33
|
+
var _party = null;
|
|
34
|
+
$l$loop: while (true) {
|
|
35
|
+
if (reader.x4w(this.z6u_1) === 0)
|
|
36
|
+
_party = nullable(obj(Party_getInstance())).i4k(reader, customScalarAdapters);
|
|
37
|
+
else
|
|
38
|
+
break $l$loop;
|
|
39
|
+
}
|
|
40
|
+
return new (Data())(_party);
|
|
41
|
+
}
|
|
42
|
+
a6v(writer, customScalarAdapters, value) {
|
|
43
|
+
writer.h4s('party');
|
|
44
|
+
nullable(obj(Party_getInstance())).m4k(writer, customScalarAdapters, value.n6u_1);
|
|
45
|
+
}
|
|
46
|
+
j4k(writer, customScalarAdapters, value) {
|
|
47
|
+
return this.a6v(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
|
|
51
|
+
DataClass = $;
|
|
52
|
+
}
|
|
53
|
+
return DataClass;
|
|
54
|
+
}
|
|
55
|
+
var Data_instance;
|
|
56
|
+
function Data_getInstance() {
|
|
57
|
+
if (Data_instance === VOID)
|
|
58
|
+
new (Data_0())();
|
|
59
|
+
return Data_instance;
|
|
60
|
+
}
|
|
61
|
+
var PartyClass;
|
|
62
|
+
function Party_0() {
|
|
63
|
+
if (PartyClass === VOID) {
|
|
64
|
+
class $ {
|
|
65
|
+
constructor() {
|
|
66
|
+
Party_instance = this;
|
|
67
|
+
this.b6v_1 = listOf('playerList');
|
|
68
|
+
}
|
|
69
|
+
i4k(reader, customScalarAdapters) {
|
|
70
|
+
var _playerList = null;
|
|
71
|
+
$l$loop: while (true) {
|
|
72
|
+
if (reader.x4w(this.b6v_1) === 0)
|
|
73
|
+
_playerList = list(obj(PlayerList_getInstance(), true)).i4k(reader, customScalarAdapters);
|
|
74
|
+
else
|
|
75
|
+
break $l$loop;
|
|
76
|
+
}
|
|
77
|
+
var tmp1_elvis_lhs = _playerList;
|
|
78
|
+
var tmp;
|
|
79
|
+
if (tmp1_elvis_lhs == null) {
|
|
80
|
+
missingField(reader, 'playerList');
|
|
81
|
+
} else {
|
|
82
|
+
tmp = tmp1_elvis_lhs;
|
|
83
|
+
}
|
|
84
|
+
return new (Party())(tmp);
|
|
85
|
+
}
|
|
86
|
+
c6v(writer, customScalarAdapters, value) {
|
|
87
|
+
writer.h4s('playerList');
|
|
88
|
+
list(obj(PlayerList_getInstance(), true)).o4l(writer, customScalarAdapters, value.o6u_1);
|
|
89
|
+
}
|
|
90
|
+
j4k(writer, customScalarAdapters, value) {
|
|
91
|
+
return this.c6v(writer, customScalarAdapters, value instanceof Party() ? value : THROW_CCE());
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
initMetadataForObject($, 'Party', VOID, VOID, [Adapter()]);
|
|
95
|
+
PartyClass = $;
|
|
96
|
+
}
|
|
97
|
+
return PartyClass;
|
|
98
|
+
}
|
|
99
|
+
var Party_instance;
|
|
100
|
+
function Party_getInstance() {
|
|
101
|
+
if (Party_instance === VOID)
|
|
102
|
+
new (Party_0())();
|
|
103
|
+
return Party_instance;
|
|
104
|
+
}
|
|
105
|
+
var PlayerListClass;
|
|
106
|
+
function PlayerList_0() {
|
|
107
|
+
if (PlayerListClass === VOID) {
|
|
108
|
+
class $ {
|
|
109
|
+
constructor() {
|
|
110
|
+
PlayerList_instance = this;
|
|
111
|
+
this.d6v_1 = listOf('__typename');
|
|
112
|
+
}
|
|
113
|
+
i4k(reader, customScalarAdapters) {
|
|
114
|
+
var __typename = null;
|
|
115
|
+
$l$loop: while (true) {
|
|
116
|
+
if (reader.x4w(this.d6v_1) === 0)
|
|
117
|
+
__typename = get_StringAdapter().i4k(reader, customScalarAdapters);
|
|
118
|
+
else
|
|
119
|
+
break $l$loop;
|
|
120
|
+
}
|
|
121
|
+
reader.y4w();
|
|
122
|
+
var _playerDetails = PlayerDetails_getInstance().i4k(reader, customScalarAdapters);
|
|
123
|
+
var tmp1_elvis_lhs = __typename;
|
|
124
|
+
var tmp;
|
|
125
|
+
if (tmp1_elvis_lhs == null) {
|
|
126
|
+
missingField(reader, '__typename');
|
|
127
|
+
} else {
|
|
128
|
+
tmp = tmp1_elvis_lhs;
|
|
129
|
+
}
|
|
130
|
+
return new (PlayerList())(tmp, _playerDetails);
|
|
131
|
+
}
|
|
132
|
+
e6v(writer, customScalarAdapters, value) {
|
|
133
|
+
writer.h4s('__typename');
|
|
134
|
+
get_StringAdapter().j4k(writer, customScalarAdapters, value.p6u_1);
|
|
135
|
+
PlayerDetails_getInstance().n5l(writer, customScalarAdapters, value.q6u_1);
|
|
136
|
+
}
|
|
137
|
+
j4k(writer, customScalarAdapters, value) {
|
|
138
|
+
return this.e6v(writer, customScalarAdapters, value instanceof PlayerList() ? value : THROW_CCE());
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
initMetadataForObject($, 'PlayerList', VOID, VOID, [Adapter()]);
|
|
142
|
+
PlayerListClass = $;
|
|
143
|
+
}
|
|
144
|
+
return PlayerListClass;
|
|
145
|
+
}
|
|
146
|
+
var PlayerList_instance;
|
|
147
|
+
function PlayerList_getInstance() {
|
|
148
|
+
if (PlayerList_instance === VOID)
|
|
149
|
+
new (PlayerList_0())();
|
|
150
|
+
return PlayerList_instance;
|
|
151
|
+
}
|
|
152
|
+
//region block: exports
|
|
153
|
+
export {
|
|
154
|
+
Data_getInstance as Data_getInstancepfp68877wdbw,
|
|
155
|
+
};
|
|
156
|
+
//endregion
|
|
157
|
+
|
|
158
|
+
//# sourceMappingURL=PlayersQuery_ResponseAdapter.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../cli/build/generated/source/apollo/service/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["fromJson","reader","customScalarAdapters","_party","toJson","writer","value","_playerList","__typename","_playerDetails"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAuB8C,oBAAO,OAAP,C;;SAEjCA,CAAaC,M,EAAoBC,oBAAjCF,EAAgG;A,YACvGG,SAAkC,I;wBAE3B,I,EACL;A,UACE,IADI,MAAO,KAAW,IAAX,CAAW,KAAX,CACX,O;YAAK,SAAqB,SAAN,wBAAM,CAAW,KAAS,MAAT,EAAiB,oBAAjB,C;;YAC7B,a;QACV,C;QAGF,oBACU,MADV,C;MAGF,C;SAESC,CACPC,M,EACAH,oB,EACAI,KAHOF,EAIP;A,QACA,MAAO,KAAK,OAAL,C;QACK,SAAN,wBAAM,CAAW,KAAO,MAAP,EAAe,oBAAf,EAAqC,KAArC,CAA2C,KAA3C,C;MACzB,C;UAYEC,M,EACJH,oB,EAGyBI,K;;;;;;;;;;;;;;;;;;;;;QAZmB,oBAAO,YAAP,C;;SAEjCN,CAAaC,M,EAAoBC,oBAAjCF,EAAiG;A,YACxGO,cAAkD,I;wBAE3C,I,EACL;A,UACE,IADI,MAAO,KAAW,IAAX,CAAW,KAAX,CACX,O;YAAK,cAAmC,KAAV,8BAAI,IAAJ,CAAU,CAAO,KAAS,MAAT,EAAiB,oBAAjB,C;;YACvC,a;QACV,C;YAIa,4B;;QAAA,2B;UAAe,aAAa,MAAb,EAAqB,YAArB,C;;gBAAf,c;;QADf,yB;MAGF,C;SAESH,CACPC,M,EACAH,oB,EACAI,KAHOF,EAIP;A,QACA,MAAO,KAAK,YAAL,C;QACc,KAAV,8BAAI,IAAJ,CAAU,CAAO,KAAO,MAAP,EAAe,oBAAf,EAAqC,KAArC,CAA2C,KAA3C,C;MAC9B,C;UAhBEC,M,EACJH,oB,EAGyBI,K;;;;;;;;;;;;;;;;;;;;;QAgBmB,oBAAO,YAAP,C;;SAEjCN,CAAaC,M,EAAoBC,oBAAjCF,EAAsG;A,YAC7GQ,aAA0B,I;wBAEnB,I,EACL;A,UACE,IADI,MAAO,KAAW,IAAX,CAAW,KAAX,CACX,O;YAAK,aAAa,mBAAc,KAAS,MAAT,EAAiB,oBAAjB,C;;YACxB,a;QACV,C;QAGF,MAAO,M;YACPC,iBAAiH,gCAAS,MAAT,EAAiB,oBAAjB,C;YAGlG,2B;;QAAA,2B;UAAc,aAAa,MAAb,EAAqB,YAArB,C;;gBAAd,c;;QADf,+BAEkB,cAFlB,C;MAIF,C;SAESL,CACPC,M,EACAH,oB,EACAI,KAHOF,EAIP;A,QACA,MAAO,KAAK,YAAL,C;QACP,mBAAc,KAAO,MAAP,EAAe,oBAAf,EAAqC,KAArC,CAA2C,KAA3C,C;QAEkC,gCAAO,MAAP,EAAe,oBAAf,EAAqC,KAArC,CAA2C,KAA3C,C;MAClD,C;UAlDEC,M,EACJH,oB,EAGyBI,K;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Unit_instance28fytmsmm6r23 as Unit_instance } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
2
|
+
import { PartyInput_InputAdapter_instance3pummlf7lu8nf as PartyInput_InputAdapter_instance } from '../../../../../../../Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs';
|
|
3
|
+
import { obj2vqjd1bjrpmyg as obj } from '../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs';
|
|
4
|
+
import { initMetadataForObject1cxne3s9w65el as initMetadataForObject } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
5
|
+
import { VOID3gxj6tk5isa35 as VOID } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
6
|
+
//region block: imports
|
|
7
|
+
//endregion
|
|
8
|
+
//region block: pre-declaration
|
|
9
|
+
//endregion
|
|
10
|
+
var PlayersQuery_VariablesAdapterClass;
|
|
11
|
+
function PlayersQuery_VariablesAdapter() {
|
|
12
|
+
if (PlayersQuery_VariablesAdapterClass === VOID) {
|
|
13
|
+
class $ {
|
|
14
|
+
u6u(writer, value, customScalarAdapters, withDefaultValues) {
|
|
15
|
+
writer.h4s('input');
|
|
16
|
+
obj(PartyInput_InputAdapter_instance).j4k(writer, customScalarAdapters, value.t6u_1);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
initMetadataForObject($, 'PlayersQuery_VariablesAdapter');
|
|
20
|
+
PlayersQuery_VariablesAdapterClass = $;
|
|
21
|
+
}
|
|
22
|
+
return PlayersQuery_VariablesAdapterClass;
|
|
23
|
+
}
|
|
24
|
+
var PlayersQuery_VariablesAdapter_instance;
|
|
25
|
+
function PlayersQuery_VariablesAdapter_getInstance() {
|
|
26
|
+
return PlayersQuery_VariablesAdapter_instance;
|
|
27
|
+
}
|
|
28
|
+
//region block: init
|
|
29
|
+
PlayersQuery_VariablesAdapter_instance = new (PlayersQuery_VariablesAdapter())();
|
|
30
|
+
//endregion
|
|
31
|
+
//region block: exports
|
|
32
|
+
export {
|
|
33
|
+
PlayersQuery_VariablesAdapter_instance as PlayersQuery_VariablesAdapter_instance3knxfk0ab8kas,
|
|
34
|
+
};
|
|
35
|
+
//endregion
|
|
36
|
+
|
|
37
|
+
//# sourceMappingURL=PlayersQuery_VariablesAdapter.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../cli/build/generated/source/apollo/service/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["serializeVariables","writer","value","customScalarAdapters","withDefaultValues"],"mappings":";;;;;;;;;;;;;SAoBSA,CACLC,M,EACAC,K,EACAC,oB,EACAC,iBAJKJ,EAKL;A,QACA,MAAO,KAAK,OAAL,C;QACiB,qCAAM,KAAO,MAAP,EAAe,oBAAf,EAAqC,KAArC,CAA2C,KAA3C,C;MAChC,C;;;;;;;;;;;;;;;;;;"}
|