@continuous-excellence/coupling-cli 1.1.469 → 1.1.471
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Auth0Environment.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigCommand.mjs +32 -32
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +12 -12
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +4 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +19 -19
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +23 -23
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +30 -30
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +33 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +12 -12
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +24 -24
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +48 -48
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +18 -18
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs.map +1 -1
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +8 -8
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +8 -8
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +28 -28
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +24 -24
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +16 -16
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +11 -11
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +77 -77
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +44 -44
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +15 -15
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs +28 -28
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +41 -41
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyInput.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +201 -201
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/NetworkInterceptor.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +36 -36
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/DeferredJsonMerger.mjs +27 -27
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +42 -42
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/flows.mjs +22 -22
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +15 -15
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +12 -12
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs +102 -102
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +25 -25
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +141 -141
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +20 -20
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +13 -13
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +42 -42
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +5 -5
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +28 -28
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +110 -110
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +93 -93
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +124 -124
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +134 -134
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +48 -48
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +12 -12
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/EagerOption.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/FlagOption.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/Option.mjs +21 -21
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +206 -206
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +45 -45
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +230 -230
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +65 -65
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +25 -25
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +121 -121
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +134 -134
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +62 -62
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +19 -19
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs +34 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs.map +1 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +17 -28
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +29 -22
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +16 -7
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +33 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +7 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +13 -12
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggingClock.mjs +15 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggingClock.mjs.map +1 -0
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +63 -63
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +79 -79
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Theme.mjs +44 -44
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Whitespace.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Widget.mjs +2 -2
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/WidthRange.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Borders.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Table.mjs +233 -233
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +152 -152
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +18 -18
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +10 -10
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +56 -56
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +59 -59
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +4 -4
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +95 -95
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +37 -37
- package/package.json +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs +0 -15
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs.map +0 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +0 -34
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs.map +0 -1
package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs
CHANGED
|
@@ -22,7 +22,7 @@ function *_generator_logAsync__bwqkk0($this, action, block, $completion) {
|
|
|
22
22
|
// Inline function 'com.zegreatrob.coupling.action.ActionLoggingSyntax.logBlock' call
|
|
23
23
|
var tmp;
|
|
24
24
|
if (isInterface(action, ActionWrapper())) {
|
|
25
|
-
tmp = getKClassFromExpression(action.
|
|
25
|
+
tmp = getKClassFromExpression(action.o56()).k1();
|
|
26
26
|
} else {
|
|
27
27
|
tmp = getKClassFromExpression(action).k1();
|
|
28
28
|
}
|
|
@@ -56,24 +56,24 @@ function *_generator_logAsync__bwqkk0($this, action, block, $completion) {
|
|
|
56
56
|
}
|
|
57
57
|
function logStart($this, className) {
|
|
58
58
|
var tmp = $this.o4f();
|
|
59
|
-
return tmp.
|
|
59
|
+
return tmp.o55(ActionLoggingSyntax$logStart$lambda(className, $this));
|
|
60
60
|
}
|
|
61
61
|
function logEnd($this, className, duration) {
|
|
62
62
|
var tmp = $this.o4f();
|
|
63
|
-
return tmp.
|
|
63
|
+
return tmp.o55(ActionLoggingSyntax$logEnd$lambda(className, duration, $this));
|
|
64
64
|
}
|
|
65
65
|
function logException($this, exception, className) {
|
|
66
66
|
var tmp = $this.o4f();
|
|
67
|
-
return tmp.
|
|
67
|
+
return tmp.q55(exception, ActionLoggingSyntax$logException$lambda(className, $this));
|
|
68
68
|
}
|
|
69
69
|
function ActionLoggingSyntax$logStart$lambda($className, this$0) {
|
|
70
|
-
return () => mapOf([to('action', $className), to('type', 'Start'), to('traceId', this$0.
|
|
70
|
+
return () => mapOf([to('action', $className), to('type', 'Start'), to('traceId', this$0.w56())]);
|
|
71
71
|
}
|
|
72
72
|
function ActionLoggingSyntax$logEnd$lambda($className, $duration, this$0) {
|
|
73
|
-
return () => mapOf([to('action', $className), to('type', 'End'), to('duration', Duration__toString_impl_8d916b($duration)), to('traceId', this$0.
|
|
73
|
+
return () => mapOf([to('action', $className), to('type', 'End'), to('duration', Duration__toString_impl_8d916b($duration)), to('traceId', this$0.w56())]);
|
|
74
74
|
}
|
|
75
75
|
function ActionLoggingSyntax$logException$lambda($className, this$0) {
|
|
76
|
-
return () => mapOf([to('action', $className), to('type', 'End'), to('traceId', this$0.
|
|
76
|
+
return () => mapOf([to('action', $className), to('type', 'End'), to('traceId', this$0.w56())]);
|
|
77
77
|
}
|
|
78
78
|
function logAsync(action, block, $completion) {
|
|
79
79
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_logAsync__bwqkk0.bind(VOID, this, action, block), $completion);
|
package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs
CHANGED
|
@@ -20,7 +20,7 @@ import {
|
|
|
20
20
|
ActionLoggingSyntax2p3dfvwppstk6 as ActionLoggingSyntax,
|
|
21
21
|
} from './ActionLoggingSyntax.mjs';
|
|
22
22
|
import { protoOf180f3jzyo7rfj as protoOf } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
|
|
23
|
-
import {
|
|
23
|
+
import { KotlinLogging_getInstancewezmxjnl9a5q as KotlinLogging_getInstance } from '../../../../../kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs';
|
|
24
24
|
import { lazy2hsh8ze7j6ikd as lazy } from '../../../../../kotlin-kotlin-stdlib/kotlin/kotlin.mjs';
|
|
25
25
|
//region block: imports
|
|
26
26
|
//endregion
|
|
@@ -38,7 +38,7 @@ var theLogger$delegate;
|
|
|
38
38
|
function *_generator_execute__d6syw1($this, dispatcher, action, $completion) {
|
|
39
39
|
var tmp;
|
|
40
40
|
try {
|
|
41
|
-
var tmp_0 = $this.
|
|
41
|
+
var tmp_0 = $this.x56(action, LoggingActionPipe$execute$slambda_0($this, dispatcher, action), $completion);
|
|
42
42
|
if (tmp_0 === get_COROUTINE_SUSPENDED())
|
|
43
43
|
tmp_0 = yield tmp_0;
|
|
44
44
|
tmp = tmp_0;
|
|
@@ -46,7 +46,7 @@ function *_generator_execute__d6syw1($this, dispatcher, action, $completion) {
|
|
|
46
46
|
var tmp_1;
|
|
47
47
|
if ($p instanceof Error) {
|
|
48
48
|
var bad = $p;
|
|
49
|
-
$this.
|
|
49
|
+
$this.z56_1.s55(bad, LoggingActionPipe$execute$lambda(action));
|
|
50
50
|
throw bad;
|
|
51
51
|
} else {
|
|
52
52
|
throw $p;
|
|
@@ -59,15 +59,15 @@ function LoggingActionPipe$execute$slambda() {
|
|
|
59
59
|
if (LoggingActionPipe$execute$slambdaClass === VOID) {
|
|
60
60
|
class $ {
|
|
61
61
|
constructor(this$0, $dispatcher, $action) {
|
|
62
|
-
this.
|
|
63
|
-
this.
|
|
64
|
-
this.
|
|
62
|
+
this.a57_1 = this$0;
|
|
63
|
+
this.b57_1 = $dispatcher;
|
|
64
|
+
this.c57_1 = $action;
|
|
65
65
|
}
|
|
66
|
-
|
|
67
|
-
return execute.call(this.
|
|
66
|
+
d57(it, $completion) {
|
|
67
|
+
return execute.call(this.a57_1, this.b57_1, this.c57_1, $completion);
|
|
68
68
|
}
|
|
69
69
|
de(p1, $completion) {
|
|
70
|
-
return this.
|
|
70
|
+
return this.d57((!(p1 == null) ? isInterface(p1, SuspendAction()) : false) ? p1 : THROW_CCE(), $completion);
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -77,7 +77,7 @@ function LoggingActionPipe$execute$slambda() {
|
|
|
77
77
|
}
|
|
78
78
|
function LoggingActionPipe$execute$slambda_0(this$0, $dispatcher, $action) {
|
|
79
79
|
var i = new (LoggingActionPipe$execute$slambda())(this$0, $dispatcher, $action);
|
|
80
|
-
var l = (it, $completion) => i.
|
|
80
|
+
var l = (it, $completion) => i.d57(it, $completion);
|
|
81
81
|
l.$arity = 1;
|
|
82
82
|
return l;
|
|
83
83
|
}
|
|
@@ -89,20 +89,20 @@ function LoggingActionPipe() {
|
|
|
89
89
|
if (LoggingActionPipeClass === VOID) {
|
|
90
90
|
class $ {
|
|
91
91
|
constructor(traceId) {
|
|
92
|
-
this.
|
|
93
|
-
this.
|
|
92
|
+
this.y56_1 = traceId;
|
|
93
|
+
this.z56_1 = get_theLogger();
|
|
94
94
|
}
|
|
95
|
-
|
|
96
|
-
return this.
|
|
95
|
+
w56() {
|
|
96
|
+
return this.y56_1;
|
|
97
97
|
}
|
|
98
98
|
o4f() {
|
|
99
|
-
return this.
|
|
99
|
+
return this.z56_1;
|
|
100
100
|
}
|
|
101
|
-
|
|
101
|
+
m56(dispatcher, action, $completion) {
|
|
102
102
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_execute__d6syw1.bind(VOID, this, dispatcher, action), $completion);
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
|
-
protoOf($).
|
|
105
|
+
protoOf($).x56 = logAsync;
|
|
106
106
|
initMetadataForClass($, 'LoggingActionPipe', VOID, VOID, [ActionPipe(), ActionLoggingSyntax()], [2]);
|
|
107
107
|
LoggingActionPipeClass = $;
|
|
108
108
|
}
|
|
@@ -110,7 +110,7 @@ function LoggingActionPipe() {
|
|
|
110
110
|
}
|
|
111
111
|
function theLogger$delegate$lambda() {
|
|
112
112
|
_init_properties_LoggingActionPipe_kt__jmuje7();
|
|
113
|
-
return
|
|
113
|
+
return KotlinLogging_getInstance().z54('ActionLogger');
|
|
114
114
|
}
|
|
115
115
|
function _get_theLogger_$ref_r8fuo1() {
|
|
116
116
|
return () => get_theLogger();
|
package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../libraries/action/src/commonMain/kotlin/com/zegreatrob/coupling/action/LoggingActionPipe.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/src/kotlin/util/Lazy.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-theLogger>","<generator-execute>","dispatcher","action","$completion","bad","$dispatcher","$action","invoke","LoggingActionPipe$execute$slambda","LoggingActionPipe$execute$slambda$lambda","LoggingActionPipe$execute$lambda","LoggingActionPipe$execute$lambda$lambda","traceId","<get-traceId>","<get-logger>","execute","theLogger$delegate$lambda","<init properties LoggingActionPipe.kt>"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAOQA,CAAAA,EAAiB;A;aAAA,kB;;;EAAA,+E;EAAA,OC4CmE,S;AD5CvB,C;;oCAQhDC,CAAA,K,EAAmBC,U,EAAeC,M,EAAlCC,WAAAH,EAAoE;A;EAAA,I;QACjF,kBAAS,MAAT,EAAiB,8DAAjB,c;;;;;;;UACKI,Q;MACL,KAAO,CAAP,KAAO,KAAM,GAAN,EAAW,wCAAX,C;MACP,MAAM,G;;;;;EACT,U;AAAD,C;;;;;kBALiB,M,EAAmBC,W,EAAeC,O;;;;;SAC9BC,CAAA,E,EAAAJ,WAAAI,EAAE;A,QAAgC,OAA1B,aAAN,IAAM,CAAN,KAAM,EAAQ,IAAR,CAAQ,KAAR,EAAoB,IAApB,CAAoB,KAApB,c;MAA0B,C;SAhB3D,E,EAAAJ,W;;;;;;;;;4CAgByBK,CADJ,M,EAAmBH,W,EAAeC,OAC9BE,E;;UAAAC,CAAA,E,EAAAN,WAAAM,2B;;;C;yCAECC,CAH6BJ,OAG7BI,E;SAAAC,CAAAA,KAAG,kBAAHA,GAAmC,wBAAd,OAAc,M;C;;;;;kBAT5BC,O;QAAT,oB;QAIE,4B;;SAJOC,CAAAA,EAAA;A,QAAA,iB;MAAgB,C;SAIpCC,CAAAA,EAAA;A,QAAA,iB;MAAS,C;SAEDC,CAAmBd,U,EAAeC,M,EAAlCC,WAAAY,E;;O;;;;;;;;kCARSC,CAAAA,EAAA;A;EAAsC,OAAtB,
|
|
1
|
+
{"version":3,"sources":["../../../../../libraries/action/src/commonMain/kotlin/com/zegreatrob/coupling/action/LoggingActionPipe.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/src/kotlin/util/Lazy.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-theLogger>","<generator-execute>","dispatcher","action","$completion","bad","$dispatcher","$action","invoke","LoggingActionPipe$execute$slambda","LoggingActionPipe$execute$slambda$lambda","LoggingActionPipe$execute$lambda","LoggingActionPipe$execute$lambda$lambda","traceId","<get-traceId>","<get-logger>","execute","theLogger$delegate$lambda","<init properties LoggingActionPipe.kt>"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAOQA,CAAAA,EAAiB;A;aAAA,kB;;;EAAA,+E;EAAA,OC4CmE,S;AD5CvB,C;;oCAQhDC,CAAA,K,EAAmBC,U,EAAeC,M,EAAlCC,WAAAH,EAAoE;A;EAAA,I;QACjF,kBAAS,MAAT,EAAiB,8DAAjB,c;;;;;;;UACKI,Q;MACL,KAAO,CAAP,KAAO,KAAM,GAAN,EAAW,wCAAX,C;MACP,MAAM,G;;;;;EACT,U;AAAD,C;;;;;kBALiB,M,EAAmBC,W,EAAeC,O;;;;;SAC9BC,CAAA,E,EAAAJ,WAAAI,EAAE;A,QAAgC,OAA1B,aAAN,IAAM,CAAN,KAAM,EAAQ,IAAR,CAAQ,KAAR,EAAoB,IAApB,CAAoB,KAApB,c;MAA0B,C;SAhB3D,E,EAAAJ,W;;;;;;;;;4CAgByBK,CADJ,M,EAAmBH,W,EAAeC,OAC9BE,E;;UAAAC,CAAA,E,EAAAN,WAAAM,2B;;;C;yCAECC,CAH6BJ,OAG7BI,E;SAAAC,CAAAA,KAAG,kBAAHA,GAAmC,wBAAd,OAAc,M;C;;;;;kBAT5BC,O;QAAT,oB;QAIE,4B;;SAJOC,CAAAA,EAAA;A,QAAA,iB;MAAgB,C;SAIpCC,CAAAA,EAAA;A,QAAA,iB;MAAS,C;SAEDC,CAAmBd,U,EAAeC,M,EAAlCC,WAAAY,E;;O;;;;;;;;kCARSC,CAAAA,EAAA;A;EAAsC,OAAtB,gCAAO,cAAP,C;AAAuB,C;;eAA5C,e;;;sDAPzBC,CAAAA,E;;;yBAOyB,KAAK,yBAAL,C;;C;;;;;"}
|
|
@@ -27,15 +27,15 @@ function SaveContributionCommand() {
|
|
|
27
27
|
if (SaveContributionCommandClass === VOID) {
|
|
28
28
|
class $ {
|
|
29
29
|
constructor(partyId, contributionList) {
|
|
30
|
-
this.
|
|
31
|
-
this.
|
|
30
|
+
this.e57_1 = partyId;
|
|
31
|
+
this.f57_1 = contributionList;
|
|
32
32
|
}
|
|
33
33
|
toString() {
|
|
34
|
-
return 'SaveContributionCommand(partyId=' + this.
|
|
34
|
+
return 'SaveContributionCommand(partyId=' + this.e57_1.toString() + ', contributionList=' + toString(this.f57_1) + ')';
|
|
35
35
|
}
|
|
36
36
|
hashCode() {
|
|
37
|
-
var result = this.
|
|
38
|
-
result = imul(result, 31) + hashCode(this.
|
|
37
|
+
var result = this.e57_1.hashCode();
|
|
38
|
+
result = imul(result, 31) + hashCode(this.f57_1) | 0;
|
|
39
39
|
return result;
|
|
40
40
|
}
|
|
41
41
|
equals(other) {
|
|
@@ -43,9 +43,9 @@ function SaveContributionCommand() {
|
|
|
43
43
|
return true;
|
|
44
44
|
if (!(other instanceof SaveContributionCommand()))
|
|
45
45
|
return false;
|
|
46
|
-
if (!this.
|
|
46
|
+
if (!this.e57_1.equals(other.e57_1))
|
|
47
47
|
return false;
|
|
48
|
-
if (!equals(this.
|
|
48
|
+
if (!equals(this.f57_1, other.f57_1))
|
|
49
49
|
return false;
|
|
50
50
|
return true;
|
|
51
51
|
}
|
|
@@ -10,7 +10,7 @@ import { VOID3gxj6tk5isa35 as VOID } from '../../../../../../kotlin-kotlin-stdli
|
|
|
10
10
|
//region block: pre-declaration
|
|
11
11
|
//endregion
|
|
12
12
|
function fire(_this__u8e3s4, action, $completion) {
|
|
13
|
-
return _this__u8e3s4.
|
|
13
|
+
return _this__u8e3s4.j56(SaveContributionCommandWrapper$_init_$ref_fg1q8g()(action), $completion);
|
|
14
14
|
}
|
|
15
15
|
function _SaveContributionCommandWrapper___init__impl__g5pwdo(action) {
|
|
16
16
|
return action;
|
|
@@ -19,10 +19,10 @@ function _SaveContributionCommandWrapper___get_action__impl__h0hu6h($this) {
|
|
|
19
19
|
return $this;
|
|
20
20
|
}
|
|
21
21
|
function SaveContributionCommandWrapper__execute_impl_otfi8d($this, dispatcher, $completion) {
|
|
22
|
-
return dispatcher.
|
|
22
|
+
return dispatcher.t56(_SaveContributionCommandWrapper___get_action__impl__h0hu6h($this), $completion);
|
|
23
23
|
}
|
|
24
24
|
function SaveContributionCommandWrapper__execute_impl_otfi8d_0($this, dispatcher, $completion) {
|
|
25
|
-
return SaveContributionCommandWrapper__execute_impl_otfi8d($this.
|
|
25
|
+
return SaveContributionCommandWrapper__execute_impl_otfi8d($this.u56_1, (!(dispatcher == null) ? isInterface(dispatcher, Dispatcher()) : false) ? dispatcher : THROW_CCE(), $completion);
|
|
26
26
|
}
|
|
27
27
|
function SaveContributionCommandWrapper__toString_impl_mts1yk($this) {
|
|
28
28
|
return 'SaveContributionCommandWrapper(action=' + $this.toString() + ')';
|
|
@@ -33,7 +33,7 @@ function SaveContributionCommandWrapper__hashCode_impl_12m55p($this) {
|
|
|
33
33
|
function SaveContributionCommandWrapper__equals_impl_b2iv9j($this, other) {
|
|
34
34
|
if (!(other instanceof SaveContributionCommandWrapper()))
|
|
35
35
|
return false;
|
|
36
|
-
var tmp0_other_with_cast = other.
|
|
36
|
+
var tmp0_other_with_cast = other.u56_1;
|
|
37
37
|
if (!$this.equals(tmp0_other_with_cast))
|
|
38
38
|
return false;
|
|
39
39
|
return true;
|
|
@@ -43,25 +43,25 @@ function SaveContributionCommandWrapper() {
|
|
|
43
43
|
if (SaveContributionCommandWrapperClass === VOID) {
|
|
44
44
|
class $ {
|
|
45
45
|
constructor(action) {
|
|
46
|
-
this.
|
|
46
|
+
this.u56_1 = action;
|
|
47
47
|
}
|
|
48
|
-
|
|
49
|
-
return _SaveContributionCommandWrapper___get_action__impl__h0hu6h(this.
|
|
48
|
+
o56() {
|
|
49
|
+
return _SaveContributionCommandWrapper___get_action__impl__h0hu6h(this.u56_1);
|
|
50
50
|
}
|
|
51
|
-
|
|
52
|
-
return SaveContributionCommandWrapper__execute_impl_otfi8d(this.
|
|
51
|
+
v56(dispatcher, $completion) {
|
|
52
|
+
return SaveContributionCommandWrapper__execute_impl_otfi8d(this.u56_1, dispatcher, $completion);
|
|
53
53
|
}
|
|
54
|
-
|
|
54
|
+
n56(dispatcher, $completion) {
|
|
55
55
|
return SaveContributionCommandWrapper__execute_impl_otfi8d_0(this, dispatcher, $completion);
|
|
56
56
|
}
|
|
57
57
|
toString() {
|
|
58
|
-
return SaveContributionCommandWrapper__toString_impl_mts1yk(this.
|
|
58
|
+
return SaveContributionCommandWrapper__toString_impl_mts1yk(this.u56_1);
|
|
59
59
|
}
|
|
60
60
|
hashCode() {
|
|
61
|
-
return SaveContributionCommandWrapper__hashCode_impl_12m55p(this.
|
|
61
|
+
return SaveContributionCommandWrapper__hashCode_impl_12m55p(this.u56_1);
|
|
62
62
|
}
|
|
63
63
|
equals(other) {
|
|
64
|
-
return SaveContributionCommandWrapper__equals_impl_b2iv9j(this.
|
|
64
|
+
return SaveContributionCommandWrapper__equals_impl_b2iv9j(this.u56_1, other);
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
initMetadataForClass($, 'SaveContributionCommandWrapper', VOID, VOID, [SuspendAction(), ActionWrapper()], [1]);
|
|
@@ -30,23 +30,23 @@ import {
|
|
|
30
30
|
//endregion
|
|
31
31
|
function couplingSdk(getIdTokenFunc, httpClient, pipe) {
|
|
32
32
|
pipe = pipe === VOID ? Companion_instance : pipe;
|
|
33
|
-
return new (DispatcherPipeCannon())(new (KtorCouplingSdkDispatcher())(getIdTokenFunc, httpClient, ktorClient((new (Builder())()).
|
|
33
|
+
return new (DispatcherPipeCannon())(new (KtorCouplingSdkDispatcher())(getIdTokenFunc, httpClient, ktorClient((new (Builder())()).j5a('/api/graphql'), httpClient).z2s()), pipe);
|
|
34
34
|
}
|
|
35
35
|
var KtorCouplingSdkDispatcherClass;
|
|
36
36
|
function KtorCouplingSdkDispatcher() {
|
|
37
37
|
if (KtorCouplingSdkDispatcherClass === VOID) {
|
|
38
38
|
class $ {
|
|
39
39
|
constructor(getIdTokenFunc, httpClient, apolloClient) {
|
|
40
|
-
this.
|
|
41
|
-
this.
|
|
40
|
+
this.p5p_1 = getIdTokenFunc;
|
|
41
|
+
this.q5p_1 = new (StandardPartyGQLPerformer())(this.p5p_1, httpClient, apolloClient);
|
|
42
42
|
}
|
|
43
|
-
|
|
44
|
-
return this.
|
|
43
|
+
r5p() {
|
|
44
|
+
return this.q5p_1;
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
|
-
protoOf($).
|
|
48
|
-
protoOf($).
|
|
49
|
-
protoOf($).
|
|
47
|
+
protoOf($).s5p = perform;
|
|
48
|
+
protoOf($).t56 = perform_0;
|
|
49
|
+
protoOf($).t5p = execute;
|
|
50
50
|
initMetadataForClass($, 'KtorCouplingSdkDispatcher', VOID, VOID, [Dispatcher(), Dispatcher_0(), GqlTrait(), SdkGraphQueryDispatcher(), SdkSaveContributionCommandDispatcher()], [1]);
|
|
51
51
|
KtorCouplingSdkDispatcherClass = $;
|
|
52
52
|
}
|
|
@@ -57,19 +57,19 @@ function StandardPartyGQLPerformer() {
|
|
|
57
57
|
if (StandardPartyGQLPerformerClass === VOID) {
|
|
58
58
|
class $ {
|
|
59
59
|
constructor(getIdTokenFunc, httpClient, apolloClient) {
|
|
60
|
-
this.
|
|
61
|
-
this.
|
|
62
|
-
this.
|
|
60
|
+
this.u5p_1 = getIdTokenFunc;
|
|
61
|
+
this.v5p_1 = apolloClient;
|
|
62
|
+
this.w5p_1 = httpClient;
|
|
63
63
|
}
|
|
64
|
-
|
|
65
|
-
return this.
|
|
64
|
+
x5p() {
|
|
65
|
+
return this.v5p_1;
|
|
66
66
|
}
|
|
67
|
-
|
|
68
|
-
return this.
|
|
67
|
+
y5p($completion) {
|
|
68
|
+
return this.u5p_1($completion);
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
|
-
protoOf($).
|
|
72
|
-
protoOf($).
|
|
71
|
+
protoOf($).z5p = apolloMutation;
|
|
72
|
+
protoOf($).a5q = apolloQuery;
|
|
73
73
|
initMetadataForClass($, 'StandardPartyGQLPerformer', VOID, VOID, [KtorQueryPerformer()], [0, 1]);
|
|
74
74
|
StandardPartyGQLPerformerClass = $;
|
|
75
75
|
}
|
|
@@ -9,7 +9,7 @@ import { initMetadataForInterface1egvbzx539z91 as initMetadataForInterface } fro
|
|
|
9
9
|
//region block: pre-declaration
|
|
10
10
|
//endregion
|
|
11
11
|
function *_generator_perform__v6ng8j($this, query, $completion) {
|
|
12
|
-
var tmp = $this.
|
|
12
|
+
var tmp = $this.r5p().a5q(query.b5q_1, $completion);
|
|
13
13
|
if (tmp === get_COROUTINE_SUSPENDED())
|
|
14
14
|
tmp = yield tmp;
|
|
15
15
|
return tmp.l4r();
|
package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs
CHANGED
|
@@ -19,7 +19,7 @@ import { ContributionInput3usm1nmagoyah as ContributionInput } from './schema/ty
|
|
|
19
19
|
//region block: pre-declaration
|
|
20
20
|
//endregion
|
|
21
21
|
function *_generator_perform__v6ng8j($this, command, $completion) {
|
|
22
|
-
var tmp = $this.
|
|
22
|
+
var tmp = $this.t5p(new (SaveContributionMutation())(saveContributionInput(command)), $completion);
|
|
23
23
|
if (tmp === get_COROUTINE_SUSPENDED())
|
|
24
24
|
tmp = yield tmp;
|
|
25
25
|
tmp.l4r();
|
|
@@ -39,7 +39,7 @@ function SdkSaveContributionCommandDispatcher() {
|
|
|
39
39
|
}
|
|
40
40
|
function saveContributionInput(_this__u8e3s4) {
|
|
41
41
|
// Inline function 'kotlin.collections.map' call
|
|
42
|
-
var this_0 = _this__u8e3s4.
|
|
42
|
+
var this_0 = _this__u8e3s4.f57_1;
|
|
43
43
|
// Inline function 'kotlin.collections.mapTo' call
|
|
44
44
|
var destination = ArrayList().w2(collectionSizeOrDefault(this_0, 10));
|
|
45
45
|
var _iterator__ex2g4s = this_0.q1();
|
|
@@ -48,7 +48,7 @@ function saveContributionInput(_this__u8e3s4) {
|
|
|
48
48
|
var tmp$ret$0 = toJson(item);
|
|
49
49
|
destination.t2(tmp$ret$0);
|
|
50
50
|
}
|
|
51
|
-
return new (SaveContributionInput())(_this__u8e3s4.
|
|
51
|
+
return new (SaveContributionInput())(_this__u8e3s4.e57_1, destination);
|
|
52
52
|
}
|
|
53
53
|
function toJson(_this__u8e3s4) {
|
|
54
54
|
var tmp0_contributionId = _this__u8e3s4.t51_1;
|
|
@@ -70,17 +70,17 @@ var KotlinDurationAdapterClass;
|
|
|
70
70
|
function KotlinDurationAdapter() {
|
|
71
71
|
if (KotlinDurationAdapterClass === VOID) {
|
|
72
72
|
class $ {
|
|
73
|
-
|
|
73
|
+
d5q(reader, customScalarAdapters) {
|
|
74
74
|
return Companion_getInstance().rs(ensureNotNull(reader.d4o()));
|
|
75
75
|
}
|
|
76
76
|
t4m(reader, customScalarAdapters) {
|
|
77
|
-
return new (Duration())(this.
|
|
77
|
+
return new (Duration())(this.d5q(reader, customScalarAdapters));
|
|
78
78
|
}
|
|
79
|
-
|
|
79
|
+
e5q(writer, customScalarAdapters, value) {
|
|
80
80
|
writer.f4o(Duration__toIsoString_impl_9h6wsm(value));
|
|
81
81
|
}
|
|
82
82
|
u4m(writer, customScalarAdapters, value) {
|
|
83
|
-
return this.
|
|
83
|
+
return this.e5q(writer, customScalarAdapters, value instanceof Duration() ? value.sj_1 : THROW_CCE());
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
initMetadataForObject($, 'KotlinDurationAdapter', VOID, VOID, [Adapter()]);
|
|
@@ -165,8 +165,8 @@ function serializationAdapter$1() {
|
|
|
165
165
|
if (serializationAdapter$1Class === VOID) {
|
|
166
166
|
class $ {
|
|
167
167
|
constructor($init, $toValue) {
|
|
168
|
-
this.
|
|
169
|
-
this.
|
|
168
|
+
this.f5q_1 = $init;
|
|
169
|
+
this.g5q_1 = $toValue;
|
|
170
170
|
}
|
|
171
171
|
t4m(reader, customScalarAdapters) {
|
|
172
172
|
var tmp0_safe_receiver = reader.d4o();
|
|
@@ -196,7 +196,7 @@ function serializationAdapter$1() {
|
|
|
196
196
|
var tmp_5 = tmp2_safe_receiver;
|
|
197
197
|
var tmp0 = tmp_5 == null ? null : new (NotBlankString())(tmp_5);
|
|
198
198
|
// Inline function 'kotlin.let' call
|
|
199
|
-
tmp_3 = this.
|
|
199
|
+
tmp_3 = this.f5q_1(tmp0);
|
|
200
200
|
}
|
|
201
201
|
var tmp3_elvis_lhs = tmp_3;
|
|
202
202
|
var tmp_6;
|
|
@@ -209,7 +209,7 @@ function serializationAdapter$1() {
|
|
|
209
209
|
}
|
|
210
210
|
u4m(writer, customScalarAdapters, value) {
|
|
211
211
|
// Inline function 'kotlin.let' call
|
|
212
|
-
var it = this.
|
|
212
|
+
var it = this.g5q_1(value).m51_1;
|
|
213
213
|
writer.f4o(NotBlankString__toString_impl_5tex9r(it));
|
|
214
214
|
}
|
|
215
215
|
}
|
|
@@ -34,12 +34,12 @@ var GqlQuery$Dispatcher$perform$refClass;
|
|
|
34
34
|
function GqlQuery$Dispatcher$perform$ref() {
|
|
35
35
|
if (GqlQuery$Dispatcher$perform$refClass === VOID) {
|
|
36
36
|
class $ {
|
|
37
|
-
|
|
38
|
-
return p0.
|
|
37
|
+
h5q(p0, p1, $completion) {
|
|
38
|
+
return p0.s5p(p1, $completion);
|
|
39
39
|
}
|
|
40
40
|
ee(p1, p2, $completion) {
|
|
41
41
|
var tmp = (!(p1 == null) ? isInterface(p1, Dispatcher()) : false) ? p1 : THROW_CCE();
|
|
42
|
-
return this.
|
|
42
|
+
return this.h5q(tmp, p2 instanceof GqlQuery() ? p2 : THROW_CCE(), $completion);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
initMetadataForFunctionReference($, VOID, VOID, [2]);
|
|
@@ -49,7 +49,7 @@ function GqlQuery$Dispatcher$perform$ref() {
|
|
|
49
49
|
}
|
|
50
50
|
function GqlQuery$Dispatcher$perform$ref_0() {
|
|
51
51
|
var i = new (GqlQuery$Dispatcher$perform$ref())();
|
|
52
|
-
var l = (p0, p1, $completion) => i.
|
|
52
|
+
var l = (p0, p1, $completion) => i.h5q(p0, p1, $completion);
|
|
53
53
|
l.callableName = 'perform';
|
|
54
54
|
l.$arity = 2;
|
|
55
55
|
return l;
|
|
@@ -59,31 +59,31 @@ function GqlQuery() {
|
|
|
59
59
|
if (GqlQueryClass === VOID) {
|
|
60
60
|
class $ {
|
|
61
61
|
constructor(query) {
|
|
62
|
-
this.
|
|
62
|
+
this.b5q_1 = query;
|
|
63
63
|
var tmp = this;
|
|
64
|
-
tmp.
|
|
64
|
+
tmp.c5q_1 = this.s56(this, GqlQuery$Dispatcher$perform$ref_0());
|
|
65
65
|
}
|
|
66
|
-
|
|
67
|
-
return this.
|
|
66
|
+
r56() {
|
|
67
|
+
return this.c5q_1;
|
|
68
68
|
}
|
|
69
69
|
toString() {
|
|
70
|
-
return 'GqlQuery(query=' + toString(this.
|
|
70
|
+
return 'GqlQuery(query=' + toString(this.b5q_1) + ')';
|
|
71
71
|
}
|
|
72
72
|
hashCode() {
|
|
73
|
-
return hashCode(this.
|
|
73
|
+
return hashCode(this.b5q_1);
|
|
74
74
|
}
|
|
75
75
|
equals(other) {
|
|
76
76
|
if (this === other)
|
|
77
77
|
return true;
|
|
78
78
|
if (!(other instanceof GqlQuery()))
|
|
79
79
|
return false;
|
|
80
|
-
if (!equals(this.
|
|
80
|
+
if (!equals(this.b5q_1, other.b5q_1))
|
|
81
81
|
return false;
|
|
82
82
|
return true;
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
|
-
protoOf($).
|
|
86
|
-
protoOf($).
|
|
85
|
+
protoOf($).n56 = execute;
|
|
86
|
+
protoOf($).s56 = link;
|
|
87
87
|
initMetadataForClass($, 'GqlQuery', VOID, VOID, [SimpleSuspendAction()], [1]);
|
|
88
88
|
GqlQueryClass = $;
|
|
89
89
|
}
|
|
@@ -5,7 +5,7 @@ import { VOID3gxj6tk5isa35 as VOID } from '../../../../../../kotlin-kotlin-stdli
|
|
|
5
5
|
//region block: pre-declaration
|
|
6
6
|
//endregion
|
|
7
7
|
function execute(_this__u8e3s4, $completion) {
|
|
8
|
-
return this.
|
|
8
|
+
return this.r5p().z5p(_this__u8e3s4, $completion);
|
|
9
9
|
}
|
|
10
10
|
var GqlTraitClass;
|
|
11
11
|
function GqlTrait() {
|
|
@@ -7,8 +7,8 @@ import { initMetadataForInterface1egvbzx539z91 as initMetadataForInterface } fro
|
|
|
7
7
|
//region block: pre-declaration
|
|
8
8
|
//endregion
|
|
9
9
|
function *_generator_apolloMutation__oj308g($this, mutation, $completion) {
|
|
10
|
-
var tmp = $this.
|
|
11
|
-
var tmp_0 = $this.
|
|
10
|
+
var tmp = $this.x5p().x5b(mutation);
|
|
11
|
+
var tmp_0 = $this.y5p($completion);
|
|
12
12
|
if (tmp_0 === get_COROUTINE_SUSPENDED())
|
|
13
13
|
tmp_0 = yield tmp_0;
|
|
14
14
|
var tmp_1 = tmp.p4p('Authorization', 'Bearer ' + tmp_0).l3w($completion);
|
|
@@ -17,8 +17,8 @@ function *_generator_apolloMutation__oj308g($this, mutation, $completion) {
|
|
|
17
17
|
return tmp_1;
|
|
18
18
|
}
|
|
19
19
|
function *_generator_apolloQuery__f2xn8l($this, query, $completion) {
|
|
20
|
-
var tmp = $this.
|
|
21
|
-
var tmp_0 = $this.
|
|
20
|
+
var tmp = $this.x5p().w5b(query);
|
|
21
|
+
var tmp_0 = $this.y5p($completion);
|
|
22
22
|
if (tmp_0 === get_COROUTINE_SUSPENDED())
|
|
23
23
|
tmp_0 = yield tmp_0;
|
|
24
24
|
var tmp_1 = tmp.p4p('Authorization', 'Bearer ' + tmp_0).l3w($completion);
|
|
@@ -23,33 +23,33 @@ import { PairingSetux5bpf0canxq as PairingSet } from '../../../../../../Coupling
|
|
|
23
23
|
//endregion
|
|
24
24
|
function toDomain_1(_this__u8e3s4) {
|
|
25
25
|
// Inline function 'kotlin.collections.map' call
|
|
26
|
-
var this_0 = _this__u8e3s4.
|
|
26
|
+
var this_0 = _this__u8e3s4.c5n_1;
|
|
27
27
|
// Inline function 'kotlin.collections.mapTo' call
|
|
28
28
|
var destination = ArrayList().w2(collectionSizeOrDefault(this_0, 10));
|
|
29
29
|
var _iterator__ex2g4s = this_0.q1();
|
|
30
30
|
while (_iterator__ex2g4s.r1()) {
|
|
31
31
|
var item = _iterator__ex2g4s.s1();
|
|
32
32
|
// Inline function 'kotlin.collections.map' call
|
|
33
|
-
var this_1 = item.
|
|
33
|
+
var this_1 = item.h5m_1;
|
|
34
34
|
// Inline function 'kotlin.collections.mapTo' call
|
|
35
35
|
var destination_0 = ArrayList().w2(collectionSizeOrDefault(this_1, 10));
|
|
36
36
|
var _iterator__ex2g4s_0 = this_1.q1();
|
|
37
37
|
while (_iterator__ex2g4s_0.r1()) {
|
|
38
38
|
var item_0 = _iterator__ex2g4s_0.s1();
|
|
39
|
-
var tmp = toDomain(item_0.
|
|
40
|
-
var tmp0_safe_receiver = item_0.
|
|
41
|
-
var tmp$ret$0 = new (Player())(item_0.
|
|
39
|
+
var tmp = toDomain(item_0.m5m_1);
|
|
40
|
+
var tmp0_safe_receiver = item_0.n5m_1;
|
|
41
|
+
var tmp$ret$0 = new (Player())(item_0.j5m_1, tmp, item_0.k5m_1, item_0.l5m_1, item_0.o5m_1, item_0.p5m_1, item_0.q5m_1, tmp0_safe_receiver == null ? null : toDomain_0(tmp0_safe_receiver), toSet(item_0.r5m_1));
|
|
42
42
|
destination_0.t2(tmp$ret$0);
|
|
43
43
|
}
|
|
44
44
|
var tmp_0 = toCouplingPair(destination_0);
|
|
45
45
|
// Inline function 'kotlin.collections.map' call
|
|
46
|
-
var this_2 = item.
|
|
46
|
+
var this_2 = item.i5m_1;
|
|
47
47
|
// Inline function 'kotlin.collections.mapTo' call
|
|
48
48
|
var destination_1 = ArrayList().w2(collectionSizeOrDefault(this_2, 10));
|
|
49
49
|
var _iterator__ex2g4s_1 = this_2.q1();
|
|
50
50
|
while (_iterator__ex2g4s_1.r1()) {
|
|
51
51
|
var item_1 = _iterator__ex2g4s_1.s1();
|
|
52
|
-
var tmp$ret$3 = new (Pin())(item_1.
|
|
52
|
+
var tmp$ret$3 = new (Pin())(item_1.x5m_1, item_1.y5m_1, item_1.w5m_1);
|
|
53
53
|
destination_1.t2(tmp$ret$3);
|
|
54
54
|
}
|
|
55
55
|
var tmp$ret$6 = withPins(tmp_0, toSet(destination_1));
|
|
@@ -60,7 +60,7 @@ function toDomain_1(_this__u8e3s4) {
|
|
|
60
60
|
throwOnFailure(this_3);
|
|
61
61
|
var tmp_1 = _Result___get_value__impl__bjfvqg(this_3);
|
|
62
62
|
var tmp$ret$9 = ((tmp_1 == null ? true : !(tmp_1 == null)) ? tmp_1 : THROW_CCE()).f51_1;
|
|
63
|
-
return new (PairingSet())(_this__u8e3s4.
|
|
63
|
+
return new (PairingSet())(_this__u8e3s4.z5m_1, _this__u8e3s4.b5n_1, tmp$ret$9, _this__u8e3s4.d5n_1, _this__u8e3s4.e5n_1);
|
|
64
64
|
}
|
|
65
65
|
//region block: exports
|
|
66
66
|
export {
|
|
@@ -5,16 +5,16 @@ import { PartyDetails2ts6ys4e0d9qx as PartyDetails } from '../../../../../../Cou
|
|
|
5
5
|
//region block: pre-declaration
|
|
6
6
|
//endregion
|
|
7
7
|
function toDomain(_this__u8e3s4) {
|
|
8
|
-
var tmp0_id = _this__u8e3s4.
|
|
9
|
-
var tmp1_pairingRule = Companion_instance.l53(_this__u8e3s4.
|
|
10
|
-
var tmp2_defaultBadgeName = _this__u8e3s4.
|
|
11
|
-
var tmp3_alternateBadgeName = _this__u8e3s4.
|
|
12
|
-
var tmp4_email = _this__u8e3s4.
|
|
13
|
-
var tmp5_name = _this__u8e3s4.
|
|
14
|
-
var tmp6_badgesEnabled = _this__u8e3s4.
|
|
15
|
-
var tmp7_callSignsEnabled = _this__u8e3s4.
|
|
16
|
-
var tmp8_animationEnabled = _this__u8e3s4.
|
|
17
|
-
var tmp9_animationSpeed = _this__u8e3s4.
|
|
8
|
+
var tmp0_id = _this__u8e3s4.o5n_1;
|
|
9
|
+
var tmp1_pairingRule = Companion_instance.l53(_this__u8e3s4.r5n_1);
|
|
10
|
+
var tmp2_defaultBadgeName = _this__u8e3s4.t5n_1;
|
|
11
|
+
var tmp3_alternateBadgeName = _this__u8e3s4.u5n_1;
|
|
12
|
+
var tmp4_email = _this__u8e3s4.q5n_1;
|
|
13
|
+
var tmp5_name = _this__u8e3s4.p5n_1;
|
|
14
|
+
var tmp6_badgesEnabled = _this__u8e3s4.s5n_1;
|
|
15
|
+
var tmp7_callSignsEnabled = _this__u8e3s4.v5n_1;
|
|
16
|
+
var tmp8_animationEnabled = _this__u8e3s4.w5n_1;
|
|
17
|
+
var tmp9_animationSpeed = _this__u8e3s4.x5n_1;
|
|
18
18
|
return new (PartyDetails())(tmp0_id, tmp1_pairingRule, tmp6_badgesEnabled, tmp2_defaultBadgeName, tmp3_alternateBadgeName, tmp4_email, tmp5_name, tmp7_callSignsEnabled, tmp8_animationEnabled, tmp9_animationSpeed);
|
|
19
19
|
}
|
|
20
20
|
//region block: exports
|