@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.
Files changed (139) hide show
  1. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Auth0Environment.mjs +8 -8
  2. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigCommand.mjs +31 -31
  3. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +11 -11
  4. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +27 -9
  5. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs.map +1 -1
  6. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
  7. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +15 -15
  8. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
  9. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +4 -4
  10. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +13 -13
  11. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +193 -0
  12. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs.map +1 -0
  13. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +11 -11
  14. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +158 -0
  15. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs.map +1 -0
  16. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +37 -0
  17. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs.map +1 -0
  18. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +30 -30
  19. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +22 -22
  20. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +13 -13
  21. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +25 -25
  22. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
  23. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +29 -28
  24. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs.map +1 -1
  25. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +29 -29
  26. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +10 -10
  27. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +229 -0
  28. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs.map +1 -0
  29. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +46 -46
  30. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +15 -15
  31. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
  32. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +1 -1
  33. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +8 -8
  34. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +10 -10
  35. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
  36. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +4 -4
  37. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs +82 -0
  38. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs.map +1 -0
  39. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +173 -0
  40. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs.map +1 -0
  41. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +4 -4
  42. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +4 -4
  43. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +43 -43
  44. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyInput.mjs +41 -0
  45. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyInput.mjs.map +1 -0
  46. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs +7 -7
  47. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs +4 -4
  48. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +2 -2
  49. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +30 -30
  50. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +46 -0
  51. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs.map +1 -0
  52. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +4 -4
  53. package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +5 -5
  54. package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +28 -28
  55. package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
  56. package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
  57. package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +110 -110
  58. package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +93 -93
  59. package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +124 -124
  60. package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
  61. package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
  62. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +134 -134
  63. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +48 -48
  64. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
  65. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
  66. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
  67. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +12 -12
  68. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/EagerOption.mjs +6 -6
  69. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/FlagOption.mjs +3 -3
  70. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/Option.mjs +21 -21
  71. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +211 -211
  72. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +6 -6
  73. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
  74. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
  75. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
  76. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
  77. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +45 -45
  78. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +230 -230
  79. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
  80. package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
  81. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
  82. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +65 -65
  83. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
  84. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
  85. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
  86. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
  87. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
  88. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
  89. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
  90. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
  91. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +25 -25
  92. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
  93. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +121 -121
  94. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +134 -134
  95. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +62 -62
  96. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +19 -19
  97. package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +1 -1
  98. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
  99. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
  100. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
  101. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
  102. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
  103. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
  104. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
  105. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
  106. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +14 -14
  107. package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
  108. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +39 -39
  109. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +63 -63
  110. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
  111. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +22 -22
  112. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +79 -79
  113. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Theme.mjs +44 -44
  114. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Whitespace.mjs +4 -4
  115. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Widget.mjs +2 -2
  116. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/WidthRange.mjs +17 -17
  117. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Borders.mjs +4 -4
  118. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Table.mjs +234 -234
  119. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
  120. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +152 -152
  121. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
  122. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
  123. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
  124. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
  125. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +53 -53
  126. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
  127. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
  128. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
  129. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +18 -18
  130. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +10 -10
  131. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
  132. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
  133. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +56 -56
  134. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
  135. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +59 -59
  136. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
  137. package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +95 -95
  138. package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +37 -37
  139. package/package.json +1 -1
@@ -0,0 +1,173 @@
1
+ import { listOf1jh22dvmctj1r as listOf } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs';
2
+ import { get_playerIdAdapter2h87xjwribaa as get_playerIdAdapter } from '../../adapter/Adapter.mjs';
3
+ import {
4
+ get_StringAdapter1plpsgiy8rwhj as get_StringAdapter,
5
+ get_NullableStringAdapter3fffxc67fmluc as get_NullableStringAdapter,
6
+ nullable1in0t8o94jx9t as nullable,
7
+ list2lpjhmv1d2k19 as list,
8
+ } from '../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs';
9
+ import { Badge_ResponseAdapter_instancekqccuusv4qnz as Badge_ResponseAdapter_instance } from '../type/adapter/Badge_ResponseAdapter.mjs';
10
+ import { AvatarType_ResponseAdapter_instance1zw7eyb2rptos as AvatarType_ResponseAdapter_instance } from '../type/adapter/AvatarType_ResponseAdapter.mjs';
11
+ import { missingField4n9ldh7pi82p as missingField } from '../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/Assertions.mjs';
12
+ import { PlayerDetails9bavkl2s30p3 as PlayerDetails } from './PlayerDetails.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
+ //region block: imports
19
+ //endregion
20
+ //region block: pre-declaration
21
+ //endregion
22
+ var PlayerDetailsClass;
23
+ function PlayerDetails_0() {
24
+ if (PlayerDetailsClass === VOID) {
25
+ class $ {
26
+ constructor() {
27
+ PlayerDetails_instance = this;
28
+ this.m5l_1 = listOf(['id', 'name', 'email', 'badge', 'callSignAdjective', 'callSignNoun', 'imageURL', 'avatarType', 'unvalidatedEmails']);
29
+ }
30
+ i4k(reader, customScalarAdapters) {
31
+ var _id = null;
32
+ var _name = null;
33
+ var _email = null;
34
+ var _badge = null;
35
+ var _callSignAdjective = null;
36
+ var _callSignNoun = null;
37
+ var _imageURL = null;
38
+ var _avatarType = null;
39
+ var _unvalidatedEmails = null;
40
+ $l$loop: while (true) {
41
+ switch (reader.x4w(this.m5l_1)) {
42
+ case 0:
43
+ _id = get_playerIdAdapter().i4k(reader, customScalarAdapters);
44
+ break;
45
+ case 1:
46
+ _name = get_StringAdapter().i4k(reader, customScalarAdapters);
47
+ break;
48
+ case 2:
49
+ _email = get_StringAdapter().i4k(reader, customScalarAdapters);
50
+ break;
51
+ case 3:
52
+ _badge = Badge_ResponseAdapter_instance.i4k(reader, customScalarAdapters);
53
+ break;
54
+ case 4:
55
+ _callSignAdjective = get_StringAdapter().i4k(reader, customScalarAdapters);
56
+ break;
57
+ case 5:
58
+ _callSignNoun = get_StringAdapter().i4k(reader, customScalarAdapters);
59
+ break;
60
+ case 6:
61
+ _imageURL = get_NullableStringAdapter().i4k(reader, customScalarAdapters);
62
+ break;
63
+ case 7:
64
+ _avatarType = nullable(AvatarType_ResponseAdapter_instance).i4k(reader, customScalarAdapters);
65
+ break;
66
+ case 8:
67
+ _unvalidatedEmails = list(get_StringAdapter()).i4k(reader, customScalarAdapters);
68
+ break;
69
+ default:
70
+ break $l$loop;
71
+ }
72
+ }
73
+ var tmp1_elvis_lhs = _id;
74
+ var tmp;
75
+ if (tmp1_elvis_lhs == null) {
76
+ missingField(reader, 'id');
77
+ } else {
78
+ tmp = tmp1_elvis_lhs;
79
+ }
80
+ var tmp_0 = tmp;
81
+ var tmp2_elvis_lhs = _name;
82
+ var tmp_1;
83
+ if (tmp2_elvis_lhs == null) {
84
+ missingField(reader, 'name');
85
+ } else {
86
+ tmp_1 = tmp2_elvis_lhs;
87
+ }
88
+ var tmp_2 = tmp_1;
89
+ var tmp3_elvis_lhs = _email;
90
+ var tmp_3;
91
+ if (tmp3_elvis_lhs == null) {
92
+ missingField(reader, 'email');
93
+ } else {
94
+ tmp_3 = tmp3_elvis_lhs;
95
+ }
96
+ var tmp_4 = tmp_3;
97
+ var tmp4_elvis_lhs = _badge;
98
+ var tmp_5;
99
+ if (tmp4_elvis_lhs == null) {
100
+ missingField(reader, 'badge');
101
+ } else {
102
+ tmp_5 = tmp4_elvis_lhs;
103
+ }
104
+ var tmp_6 = tmp_5;
105
+ var tmp5_elvis_lhs = _callSignAdjective;
106
+ var tmp_7;
107
+ if (tmp5_elvis_lhs == null) {
108
+ missingField(reader, 'callSignAdjective');
109
+ } else {
110
+ tmp_7 = tmp5_elvis_lhs;
111
+ }
112
+ var tmp_8 = tmp_7;
113
+ var tmp6_elvis_lhs = _callSignNoun;
114
+ var tmp_9;
115
+ if (tmp6_elvis_lhs == null) {
116
+ missingField(reader, 'callSignNoun');
117
+ } else {
118
+ tmp_9 = tmp6_elvis_lhs;
119
+ }
120
+ var tmp_10 = tmp_9;
121
+ var tmp_11 = _imageURL;
122
+ var tmp_12 = _avatarType;
123
+ var tmp7_elvis_lhs = _unvalidatedEmails;
124
+ var tmp_13;
125
+ if (tmp7_elvis_lhs == null) {
126
+ missingField(reader, 'unvalidatedEmails');
127
+ } else {
128
+ tmp_13 = tmp7_elvis_lhs;
129
+ }
130
+ return new (PlayerDetails())(tmp_0, tmp_2, tmp_4, tmp_6, tmp_8, tmp_10, tmp_11, tmp_12, tmp_13);
131
+ }
132
+ n5l(writer, customScalarAdapters, value) {
133
+ writer.h4s('id');
134
+ get_playerIdAdapter().j4k(writer, customScalarAdapters, value.d5l_1);
135
+ writer.h4s('name');
136
+ get_StringAdapter().j4k(writer, customScalarAdapters, value.e5l_1);
137
+ writer.h4s('email');
138
+ get_StringAdapter().j4k(writer, customScalarAdapters, value.f5l_1);
139
+ writer.h4s('badge');
140
+ Badge_ResponseAdapter_instance.n5k(writer, customScalarAdapters, value.g5l_1);
141
+ writer.h4s('callSignAdjective');
142
+ get_StringAdapter().j4k(writer, customScalarAdapters, value.h5l_1);
143
+ writer.h4s('callSignNoun');
144
+ get_StringAdapter().j4k(writer, customScalarAdapters, value.i5l_1);
145
+ writer.h4s('imageURL');
146
+ get_NullableStringAdapter().m4k(writer, customScalarAdapters, value.j5l_1);
147
+ writer.h4s('avatarType');
148
+ nullable(AvatarType_ResponseAdapter_instance).m4k(writer, customScalarAdapters, value.k5l_1);
149
+ writer.h4s('unvalidatedEmails');
150
+ list(get_StringAdapter()).o4l(writer, customScalarAdapters, value.l5l_1);
151
+ }
152
+ j4k(writer, customScalarAdapters, value) {
153
+ return this.n5l(writer, customScalarAdapters, value instanceof PlayerDetails() ? value : THROW_CCE());
154
+ }
155
+ }
156
+ initMetadataForObject($, 'PlayerDetails', VOID, VOID, [Adapter()]);
157
+ PlayerDetailsClass = $;
158
+ }
159
+ return PlayerDetailsClass;
160
+ }
161
+ var PlayerDetails_instance;
162
+ function PlayerDetails_getInstance() {
163
+ if (PlayerDetails_instance === VOID)
164
+ new (PlayerDetails_0())();
165
+ return PlayerDetails_instance;
166
+ }
167
+ //region block: exports
168
+ export {
169
+ PlayerDetails_getInstance as PlayerDetails_getInstance1oo4fr85z1co1,
170
+ };
171
+ //endregion
172
+
173
+ //# sourceMappingURL=PlayerDetailsImpl_ResponseAdapter.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["fromJson","reader","customScalarAdapters","_id","_name","_email","_badge","_callSignAdjective","_callSignNoun","_imageURL","_avatarType","_unvalidatedEmails","toJson","writer","value"],"mappings":"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"}
@@ -31,9 +31,9 @@ function Companion() {
31
31
  class $ {
32
32
  constructor() {
33
33
  Companion_instance = this;
34
- this.d5l_1 = new (EnumType())('AvatarType', listOf(['Retro', 'RobohashSet1', 'RobohashSet2', 'RobohashSet3', 'RobohashSet4', 'RobohashSet5', 'Multiavatar', 'DicebearPixelArt', 'DicebearAdventurer', 'DicebearCroodles', 'DicebearThumbs', 'DicebearLorelei']));
34
+ this.o5l_1 = new (EnumType())('AvatarType', listOf(['Retro', 'RobohashSet1', 'RobohashSet2', 'RobohashSet3', 'RobohashSet4', 'RobohashSet5', 'Multiavatar', 'DicebearPixelArt', 'DicebearAdventurer', 'DicebearCroodles', 'DicebearThumbs', 'DicebearLorelei']));
35
35
  }
36
- e5l(rawValue) {
36
+ p5l(rawValue) {
37
37
  // Inline function 'kotlin.collections.find' call
38
38
  var tmp0 = get_entries();
39
39
  var tmp$ret$1;
@@ -42,7 +42,7 @@ function Companion() {
42
42
  var _iterator__ex2g4s = tmp0.q1();
43
43
  while (_iterator__ex2g4s.r1()) {
44
44
  var element = _iterator__ex2g4s.s1();
45
- if (element.h5l_1 === rawValue) {
45
+ if (element.s5l_1 === rawValue) {
46
46
  tmp$ret$1 = element;
47
47
  break $l$block;
48
48
  }
@@ -100,7 +100,7 @@ function AvatarType() {
100
100
  class $ extends Enum() {
101
101
  constructor(name, ordinal, rawValue) {
102
102
  super(name, ordinal);
103
- this.h5l_1 = rawValue;
103
+ this.s5l_1 = rawValue;
104
104
  }
105
105
  }
106
106
  initMetadataForClass($, 'AvatarType');
@@ -21,9 +21,9 @@ function Companion() {
21
21
  class $ {
22
22
  constructor() {
23
23
  Companion_instance = this;
24
- this.i5l_1 = new (EnumType())('Badge', listOf(['Default', 'Alternate']));
24
+ this.t5l_1 = new (EnumType())('Badge', listOf(['Default', 'Alternate']));
25
25
  }
26
- e5l(rawValue) {
26
+ p5l(rawValue) {
27
27
  // Inline function 'kotlin.collections.find' call
28
28
  var tmp0 = get_entries();
29
29
  var tmp$ret$1;
@@ -32,7 +32,7 @@ function Companion() {
32
32
  var _iterator__ex2g4s = tmp0.q1();
33
33
  while (_iterator__ex2g4s.r1()) {
34
34
  var element = _iterator__ex2g4s.s1();
35
- if (element.l5l_1 === rawValue) {
35
+ if (element.w5l_1 === rawValue) {
36
36
  tmp$ret$1 = element;
37
37
  break $l$block;
38
38
  }
@@ -80,7 +80,7 @@ function Badge() {
80
80
  class $ extends Enum() {
81
81
  constructor(name, ordinal, rawValue) {
82
82
  super(name, ordinal);
83
- this.l5l_1 = rawValue;
83
+ this.w5l_1 = rawValue;
84
84
  }
85
85
  }
86
86
  initMetadataForClass($, 'Badge');
@@ -29,41 +29,41 @@ function ContributionInput() {
29
29
  cycleTime = cycleTime === VOID ? Absent_getInstance() : cycleTime;
30
30
  name = name === VOID ? Absent_getInstance() : name;
31
31
  commitCount = commitCount === VOID ? Absent_getInstance() : commitCount;
32
- this.m5l_1 = contributionId;
33
- this.n5l_1 = hash;
34
- this.o5l_1 = dateTime;
35
- this.p5l_1 = ease;
36
- this.q5l_1 = story;
37
- this.r5l_1 = link;
38
- this.s5l_1 = label;
39
- this.t5l_1 = semver;
40
- this.u5l_1 = firstCommit;
41
- this.v5l_1 = firstCommitDateTime;
42
- this.w5l_1 = integrationDateTime;
43
- this.x5l_1 = cycleTime;
44
- this.y5l_1 = participantEmails;
45
- this.z5l_1 = name;
46
- this.a5m_1 = commitCount;
32
+ this.x5l_1 = contributionId;
33
+ this.y5l_1 = hash;
34
+ this.z5l_1 = dateTime;
35
+ this.a5m_1 = ease;
36
+ this.b5m_1 = story;
37
+ this.c5m_1 = link;
38
+ this.d5m_1 = label;
39
+ this.e5m_1 = semver;
40
+ this.f5m_1 = firstCommit;
41
+ this.g5m_1 = firstCommitDateTime;
42
+ this.h5m_1 = integrationDateTime;
43
+ this.i5m_1 = cycleTime;
44
+ this.j5m_1 = participantEmails;
45
+ this.k5m_1 = name;
46
+ this.l5m_1 = commitCount;
47
47
  }
48
48
  toString() {
49
- return 'ContributionInput(contributionId=' + this.m5l_1.toString() + ', hash=' + toString(this.n5l_1) + ', dateTime=' + toString(this.o5l_1) + ', ease=' + toString(this.p5l_1) + ', story=' + toString(this.q5l_1) + ', link=' + toString(this.r5l_1) + ', label=' + toString(this.s5l_1) + ', semver=' + toString(this.t5l_1) + ', firstCommit=' + toString(this.u5l_1) + ', firstCommitDateTime=' + toString(this.v5l_1) + ', integrationDateTime=' + toString(this.w5l_1) + ', cycleTime=' + toString(this.x5l_1) + ', participantEmails=' + toString(this.y5l_1) + ', name=' + toString(this.z5l_1) + ', commitCount=' + toString(this.a5m_1) + ')';
49
+ return 'ContributionInput(contributionId=' + this.x5l_1.toString() + ', hash=' + toString(this.y5l_1) + ', dateTime=' + toString(this.z5l_1) + ', ease=' + toString(this.a5m_1) + ', story=' + toString(this.b5m_1) + ', link=' + toString(this.c5m_1) + ', label=' + toString(this.d5m_1) + ', semver=' + toString(this.e5m_1) + ', firstCommit=' + toString(this.f5m_1) + ', firstCommitDateTime=' + toString(this.g5m_1) + ', integrationDateTime=' + toString(this.h5m_1) + ', cycleTime=' + toString(this.i5m_1) + ', participantEmails=' + toString(this.j5m_1) + ', name=' + toString(this.k5m_1) + ', commitCount=' + toString(this.l5m_1) + ')';
50
50
  }
51
51
  hashCode() {
52
- var result = this.m5l_1.hashCode();
53
- result = imul(result, 31) + hashCode(this.n5l_1) | 0;
54
- result = imul(result, 31) + hashCode(this.o5l_1) | 0;
55
- result = imul(result, 31) + hashCode(this.p5l_1) | 0;
56
- result = imul(result, 31) + hashCode(this.q5l_1) | 0;
57
- result = imul(result, 31) + hashCode(this.r5l_1) | 0;
58
- result = imul(result, 31) + hashCode(this.s5l_1) | 0;
59
- result = imul(result, 31) + hashCode(this.t5l_1) | 0;
60
- result = imul(result, 31) + hashCode(this.u5l_1) | 0;
61
- result = imul(result, 31) + hashCode(this.v5l_1) | 0;
62
- result = imul(result, 31) + hashCode(this.w5l_1) | 0;
63
- result = imul(result, 31) + hashCode(this.x5l_1) | 0;
52
+ var result = this.x5l_1.hashCode();
64
53
  result = imul(result, 31) + hashCode(this.y5l_1) | 0;
65
54
  result = imul(result, 31) + hashCode(this.z5l_1) | 0;
66
55
  result = imul(result, 31) + hashCode(this.a5m_1) | 0;
56
+ result = imul(result, 31) + hashCode(this.b5m_1) | 0;
57
+ result = imul(result, 31) + hashCode(this.c5m_1) | 0;
58
+ result = imul(result, 31) + hashCode(this.d5m_1) | 0;
59
+ result = imul(result, 31) + hashCode(this.e5m_1) | 0;
60
+ result = imul(result, 31) + hashCode(this.f5m_1) | 0;
61
+ result = imul(result, 31) + hashCode(this.g5m_1) | 0;
62
+ result = imul(result, 31) + hashCode(this.h5m_1) | 0;
63
+ result = imul(result, 31) + hashCode(this.i5m_1) | 0;
64
+ result = imul(result, 31) + hashCode(this.j5m_1) | 0;
65
+ result = imul(result, 31) + hashCode(this.k5m_1) | 0;
66
+ result = imul(result, 31) + hashCode(this.l5m_1) | 0;
67
67
  return result;
68
68
  }
69
69
  equals(other) {
@@ -71,35 +71,35 @@ function ContributionInput() {
71
71
  return true;
72
72
  if (!(other instanceof ContributionInput()))
73
73
  return false;
74
- if (!this.m5l_1.equals(other.m5l_1))
74
+ if (!this.x5l_1.equals(other.x5l_1))
75
75
  return false;
76
- if (!equals(this.n5l_1, other.n5l_1))
76
+ if (!equals(this.y5l_1, other.y5l_1))
77
77
  return false;
78
- if (!equals(this.o5l_1, other.o5l_1))
78
+ if (!equals(this.z5l_1, other.z5l_1))
79
79
  return false;
80
- if (!equals(this.p5l_1, other.p5l_1))
80
+ if (!equals(this.a5m_1, other.a5m_1))
81
81
  return false;
82
- if (!equals(this.q5l_1, other.q5l_1))
82
+ if (!equals(this.b5m_1, other.b5m_1))
83
83
  return false;
84
- if (!equals(this.r5l_1, other.r5l_1))
84
+ if (!equals(this.c5m_1, other.c5m_1))
85
85
  return false;
86
- if (!equals(this.s5l_1, other.s5l_1))
86
+ if (!equals(this.d5m_1, other.d5m_1))
87
87
  return false;
88
- if (!equals(this.t5l_1, other.t5l_1))
88
+ if (!equals(this.e5m_1, other.e5m_1))
89
89
  return false;
90
- if (!equals(this.u5l_1, other.u5l_1))
90
+ if (!equals(this.f5m_1, other.f5m_1))
91
91
  return false;
92
- if (!equals(this.v5l_1, other.v5l_1))
92
+ if (!equals(this.g5m_1, other.g5m_1))
93
93
  return false;
94
- if (!equals(this.w5l_1, other.w5l_1))
94
+ if (!equals(this.h5m_1, other.h5m_1))
95
95
  return false;
96
- if (!equals(this.x5l_1, other.x5l_1))
96
+ if (!equals(this.i5m_1, other.i5m_1))
97
97
  return false;
98
- if (!equals(this.y5l_1, other.y5l_1))
98
+ if (!equals(this.j5m_1, other.j5m_1))
99
99
  return false;
100
- if (!equals(this.z5l_1, other.z5l_1))
100
+ if (!equals(this.k5m_1, other.k5m_1))
101
101
  return false;
102
- if (!equals(this.a5m_1, other.a5m_1))
102
+ if (!equals(this.l5m_1, other.l5m_1))
103
103
  return false;
104
104
  return true;
105
105
  }
@@ -0,0 +1,41 @@
1
+ import { initMetadataForClassbxx6q50dy2s7 as initMetadataForClass } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
2
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
3
+ //region block: imports
4
+ //endregion
5
+ //region block: pre-declaration
6
+ //endregion
7
+ var PartyInputClass;
8
+ function PartyInput() {
9
+ if (PartyInputClass === VOID) {
10
+ class $ {
11
+ constructor(partyId) {
12
+ this.m5m_1 = partyId;
13
+ }
14
+ toString() {
15
+ return 'PartyInput(partyId=' + this.m5m_1.toString() + ')';
16
+ }
17
+ hashCode() {
18
+ return this.m5m_1.hashCode();
19
+ }
20
+ equals(other) {
21
+ if (this === other)
22
+ return true;
23
+ if (!(other instanceof PartyInput()))
24
+ return false;
25
+ if (!this.m5m_1.equals(other.m5m_1))
26
+ return false;
27
+ return true;
28
+ }
29
+ }
30
+ initMetadataForClass($, 'PartyInput');
31
+ PartyInputClass = $;
32
+ }
33
+ return PartyInputClass;
34
+ }
35
+ //region block: exports
36
+ export {
37
+ PartyInput as PartyInput51qtwhl4r59s,
38
+ };
39
+ //endregion
40
+
41
+ //# sourceMappingURL=PartyInput.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/type/PartyInput.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["partyId"],"mappings":";;;;;;;;;;kBAUSA,O;QAAP,oB;;iBAVF;A,QAAA,0D;MAAA,C;iBAAA;A,QAAA,4B;MAAA,C;oBAAA;A,QAAA,mB;UAAA,W;QAAA,qC;UAAA,Y;QAAA,oC;UAAA,Y;QAAA,W;MAAA,C;;;;;;;;;;;"}
@@ -15,15 +15,15 @@ function SaveContributionInput() {
15
15
  if (SaveContributionInputClass === VOID) {
16
16
  class $ {
17
17
  constructor(partyId, contributionList) {
18
- this.b5m_1 = partyId;
19
- this.c5m_1 = contributionList;
18
+ this.n5m_1 = partyId;
19
+ this.o5m_1 = contributionList;
20
20
  }
21
21
  toString() {
22
- return 'SaveContributionInput(partyId=' + this.b5m_1.toString() + ', contributionList=' + toString(this.c5m_1) + ')';
22
+ return 'SaveContributionInput(partyId=' + this.n5m_1.toString() + ', contributionList=' + toString(this.o5m_1) + ')';
23
23
  }
24
24
  hashCode() {
25
- var result = this.b5m_1.hashCode();
26
- result = imul(result, 31) + hashCode(this.c5m_1) | 0;
25
+ var result = this.n5m_1.hashCode();
26
+ result = imul(result, 31) + hashCode(this.o5m_1) | 0;
27
27
  return result;
28
28
  }
29
29
  equals(other) {
@@ -31,9 +31,9 @@ function SaveContributionInput() {
31
31
  return true;
32
32
  if (!(other instanceof SaveContributionInput()))
33
33
  return false;
34
- if (!this.b5m_1.equals(other.b5m_1))
34
+ if (!this.n5m_1.equals(other.n5m_1))
35
35
  return false;
36
- if (!equals(this.c5m_1, other.c5m_1))
36
+ if (!equals(this.o5m_1, other.o5m_1))
37
37
  return false;
38
38
  return true;
39
39
  }
@@ -20,13 +20,13 @@ function AvatarType_ResponseAdapter() {
20
20
  class $ {
21
21
  i4k(reader, customScalarAdapters) {
22
22
  var rawValue = ensureNotNull(reader.r4l());
23
- return Companion_getInstance().e5l(rawValue);
23
+ return Companion_getInstance().p5l(rawValue);
24
24
  }
25
- d5m(writer, customScalarAdapters, value) {
26
- writer.t4l(value.h5l_1);
25
+ p5m(writer, customScalarAdapters, value) {
26
+ writer.t4l(value.s5l_1);
27
27
  }
28
28
  j4k(writer, customScalarAdapters, value) {
29
- return this.d5m(writer, customScalarAdapters, value instanceof AvatarType() ? value : THROW_CCE());
29
+ return this.p5m(writer, customScalarAdapters, value instanceof AvatarType() ? value : THROW_CCE());
30
30
  }
31
31
  }
32
32
  initMetadataForObject($, 'AvatarType_ResponseAdapter', VOID, VOID, [Adapter()]);
@@ -20,10 +20,10 @@ function Badge_ResponseAdapter() {
20
20
  class $ {
21
21
  i4k(reader, customScalarAdapters) {
22
22
  var rawValue = ensureNotNull(reader.r4l());
23
- return Companion_getInstance().e5l(rawValue);
23
+ return Companion_getInstance().p5l(rawValue);
24
24
  }
25
25
  n5k(writer, customScalarAdapters, value) {
26
- writer.t4l(value.l5l_1);
26
+ writer.t4l(value.w5l_1);
27
27
  }
28
28
  j4k(writer, customScalarAdapters, value) {
29
29
  return this.n5k(writer, customScalarAdapters, value instanceof Badge() ? value : THROW_CCE());
@@ -30,79 +30,79 @@ function ContributionInput_InputAdapter() {
30
30
  i4k(reader, customScalarAdapters) {
31
31
  throw IllegalStateException().o('Input type used in output position');
32
32
  }
33
- e5m(writer, customScalarAdapters, value) {
33
+ q5m(writer, customScalarAdapters, value) {
34
34
  writer.h4s('contributionId');
35
- get_contributionAdapter().j4k(writer, customScalarAdapters, value.m5l_1);
36
- var tmp = value.n5l_1;
35
+ get_contributionAdapter().j4k(writer, customScalarAdapters, value.x5l_1);
36
+ var tmp = value.y5l_1;
37
37
  if (tmp instanceof Present()) {
38
38
  writer.h4s('hash');
39
- present(get_NullableStringAdapter()).q4l(writer, customScalarAdapters, value.n5l_1);
39
+ present(get_NullableStringAdapter()).q4l(writer, customScalarAdapters, value.y5l_1);
40
40
  }
41
- var tmp_0 = value.o5l_1;
41
+ var tmp_0 = value.z5l_1;
42
42
  if (tmp_0 instanceof Present()) {
43
43
  writer.h4s('dateTime');
44
- present(nullable(KotlinInstantAdapter_instance)).q4l(writer, customScalarAdapters, value.o5l_1);
44
+ present(nullable(KotlinInstantAdapter_instance)).q4l(writer, customScalarAdapters, value.z5l_1);
45
45
  }
46
- var tmp_1 = value.p5l_1;
46
+ var tmp_1 = value.a5m_1;
47
47
  if (tmp_1 instanceof Present()) {
48
48
  writer.h4s('ease');
49
- present(get_NullableIntAdapter()).q4l(writer, customScalarAdapters, value.p5l_1);
49
+ present(get_NullableIntAdapter()).q4l(writer, customScalarAdapters, value.a5m_1);
50
50
  }
51
- var tmp_2 = value.q5l_1;
51
+ var tmp_2 = value.b5m_1;
52
52
  if (tmp_2 instanceof Present()) {
53
53
  writer.h4s('story');
54
- present(get_NullableStringAdapter()).q4l(writer, customScalarAdapters, value.q5l_1);
54
+ present(get_NullableStringAdapter()).q4l(writer, customScalarAdapters, value.b5m_1);
55
55
  }
56
- var tmp_3 = value.r5l_1;
56
+ var tmp_3 = value.c5m_1;
57
57
  if (tmp_3 instanceof Present()) {
58
58
  writer.h4s('link');
59
- present(get_NullableStringAdapter()).q4l(writer, customScalarAdapters, value.r5l_1);
59
+ present(get_NullableStringAdapter()).q4l(writer, customScalarAdapters, value.c5m_1);
60
60
  }
61
- var tmp_4 = value.s5l_1;
61
+ var tmp_4 = value.d5m_1;
62
62
  if (tmp_4 instanceof Present()) {
63
63
  writer.h4s('label');
64
- present(get_NullableStringAdapter()).q4l(writer, customScalarAdapters, value.s5l_1);
64
+ present(get_NullableStringAdapter()).q4l(writer, customScalarAdapters, value.d5m_1);
65
65
  }
66
- var tmp_5 = value.t5l_1;
66
+ var tmp_5 = value.e5m_1;
67
67
  if (tmp_5 instanceof Present()) {
68
68
  writer.h4s('semver');
69
- present(get_NullableStringAdapter()).q4l(writer, customScalarAdapters, value.t5l_1);
69
+ present(get_NullableStringAdapter()).q4l(writer, customScalarAdapters, value.e5m_1);
70
70
  }
71
- var tmp_6 = value.u5l_1;
71
+ var tmp_6 = value.f5m_1;
72
72
  if (tmp_6 instanceof Present()) {
73
73
  writer.h4s('firstCommit');
74
- present(get_NullableStringAdapter()).q4l(writer, customScalarAdapters, value.u5l_1);
74
+ present(get_NullableStringAdapter()).q4l(writer, customScalarAdapters, value.f5m_1);
75
75
  }
76
- var tmp_7 = value.v5l_1;
76
+ var tmp_7 = value.g5m_1;
77
77
  if (tmp_7 instanceof Present()) {
78
78
  writer.h4s('firstCommitDateTime');
79
- present(nullable(KotlinInstantAdapter_instance)).q4l(writer, customScalarAdapters, value.v5l_1);
79
+ present(nullable(KotlinInstantAdapter_instance)).q4l(writer, customScalarAdapters, value.g5m_1);
80
80
  }
81
- var tmp_8 = value.w5l_1;
81
+ var tmp_8 = value.h5m_1;
82
82
  if (tmp_8 instanceof Present()) {
83
83
  writer.h4s('integrationDateTime');
84
- present(nullable(KotlinInstantAdapter_instance)).q4l(writer, customScalarAdapters, value.w5l_1);
84
+ present(nullable(KotlinInstantAdapter_instance)).q4l(writer, customScalarAdapters, value.h5m_1);
85
85
  }
86
- var tmp_9 = value.x5l_1;
86
+ var tmp_9 = value.i5m_1;
87
87
  if (tmp_9 instanceof Present()) {
88
88
  writer.h4s('cycleTime');
89
- present(nullable(KotlinDurationAdapter_instance)).q4l(writer, customScalarAdapters, value.x5l_1);
89
+ present(nullable(KotlinDurationAdapter_instance)).q4l(writer, customScalarAdapters, value.i5m_1);
90
90
  }
91
91
  writer.h4s('participantEmails');
92
- list(get_StringAdapter()).o4l(writer, customScalarAdapters, value.y5l_1);
93
- var tmp_10 = value.z5l_1;
92
+ list(get_StringAdapter()).o4l(writer, customScalarAdapters, value.j5m_1);
93
+ var tmp_10 = value.k5m_1;
94
94
  if (tmp_10 instanceof Present()) {
95
95
  writer.h4s('name');
96
- present(get_NullableStringAdapter()).q4l(writer, customScalarAdapters, value.z5l_1);
96
+ present(get_NullableStringAdapter()).q4l(writer, customScalarAdapters, value.k5m_1);
97
97
  }
98
- var tmp_11 = value.a5m_1;
98
+ var tmp_11 = value.l5m_1;
99
99
  if (tmp_11 instanceof Present()) {
100
100
  writer.h4s('commitCount');
101
- present(get_NullableIntAdapter()).q4l(writer, customScalarAdapters, value.a5m_1);
101
+ present(get_NullableIntAdapter()).q4l(writer, customScalarAdapters, value.l5m_1);
102
102
  }
103
103
  }
104
104
  j4k(writer, customScalarAdapters, value) {
105
- return this.e5m(writer, customScalarAdapters, value instanceof ContributionInput() ? value : THROW_CCE());
105
+ return this.q5m(writer, customScalarAdapters, value instanceof ContributionInput() ? value : THROW_CCE());
106
106
  }
107
107
  }
108
108
  initMetadataForObject($, 'ContributionInput_InputAdapter', VOID, VOID, [Adapter()]);
@@ -0,0 +1,46 @@
1
+ import { IllegalStateExceptionkoljg5n0nrlr as IllegalStateException } from '../../../../../../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
2
+ import { Unit_instance28fytmsmm6r23 as Unit_instance } from '../../../../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
3
+ import { get_partyIdAdapter2v7zx778kk10s as get_partyIdAdapter } from '../../../adapter/Adapter.mjs';
4
+ import { THROW_CCE2g6jy02ryeudk as THROW_CCE } from '../../../../../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
5
+ import { PartyInput51qtwhl4r59s as PartyInput } from '../PartyInput.mjs';
6
+ import { Adapter1t72m9xaryzfb as Adapter } from '../../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapter.mjs';
7
+ import { initMetadataForObject1cxne3s9w65el as initMetadataForObject } from '../../../../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
8
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
9
+ //region block: imports
10
+ //endregion
11
+ //region block: pre-declaration
12
+ //endregion
13
+ var PartyInput_InputAdapterClass;
14
+ function PartyInput_InputAdapter() {
15
+ if (PartyInput_InputAdapterClass === VOID) {
16
+ class $ {
17
+ i4k(reader, customScalarAdapters) {
18
+ throw IllegalStateException().o('Input type used in output position');
19
+ }
20
+ r5m(writer, customScalarAdapters, value) {
21
+ writer.h4s('partyId');
22
+ get_partyIdAdapter().j4k(writer, customScalarAdapters, value.m5m_1);
23
+ }
24
+ j4k(writer, customScalarAdapters, value) {
25
+ return this.r5m(writer, customScalarAdapters, value instanceof PartyInput() ? value : THROW_CCE());
26
+ }
27
+ }
28
+ initMetadataForObject($, 'PartyInput_InputAdapter', VOID, VOID, [Adapter()]);
29
+ PartyInput_InputAdapterClass = $;
30
+ }
31
+ return PartyInput_InputAdapterClass;
32
+ }
33
+ var PartyInput_InputAdapter_instance;
34
+ function PartyInput_InputAdapter_getInstance() {
35
+ return PartyInput_InputAdapter_instance;
36
+ }
37
+ //region block: init
38
+ PartyInput_InputAdapter_instance = new (PartyInput_InputAdapter())();
39
+ //endregion
40
+ //region block: exports
41
+ export {
42
+ PartyInput_InputAdapter_instance as PartyInput_InputAdapter_instance3pummlf7lu8nf,
43
+ };
44
+ //endregion
45
+
46
+ //# sourceMappingURL=PartyInput_InputAdapter.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["fromJson","reader","customScalarAdapters","toJson","writer","value"],"mappings":";;;;;;;;;;;;;;;;SAeWA,CAAaC,M,EAAoBC,oBAAjCF,EAA2F;A,QAAA,gCAA4B,oCAA5B,C;MAAgE,C;SAE3JG,CACPC,M,EACAF,oB,EACAG,KAHOF,EAIP;A,QACA,MAAO,KAAK,SAAL,C;QAC6B,oBAAe,KAAO,MAAP,EAAe,oBAAf,EAAqC,KAArC,CAA2C,KAA3C,C;MACrD,C;UAE2mCC,M,EAAoBF,oB,EAA4CG,K;;;;;;;;;;;;;;;;;;;;"}