@continuous-excellence/coupling-cli 1.1.518 → 1.1.520
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 +35 -35
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +15 -15
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +19 -19
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +12 -12
- 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 +43 -43
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +26 -26
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +38 -38
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.js.mjs +15 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.js.mjs.map +1 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.mjs +328 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.mjs.map +1 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +38 -37
- 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 +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +17 -17
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +32 -32
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +56 -56
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +17 -17
- 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-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +108 -0
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs.map +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/ContributionId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs +57 -57
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +16 -16
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSetId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PairingRule.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyDetails.mjs +34 -34
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/SecretId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs +17 -17
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs +28 -28
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/PlayerId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/callsign/CallSign.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/user/UserId.mjs +4 -4
- 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 +15 -15
- 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 +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/ContributionDetailsMapper.mjs +32 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/ContributionDetailsMapper.mjs.map +1 -0
- 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/PartyContributionReportContributionsQuery.mjs +229 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyContributionReportContributionsQuery.mjs.map +1 -0
- 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/PartyContributionReportContributionsQuery_ResponseAdapter.mjs +196 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_ResponseAdapter.mjs.map +1 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_VariablesAdapter.mjs +48 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_VariablesAdapter.mjs.map +1 -0
- 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/ContributionDetails.mjs +127 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetails.mjs.map +1 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.mjs +199 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.mjs.map +1 -0
- 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 +46 -46
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs +134 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs.map +1 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionsInput.mjs +22 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionsInput.mjs.map +1 -0
- 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/ContributionWindow_ResponseAdapter.mjs +50 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionWindow_ResponseAdapter.mjs.map +1 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionsInput_InputAdapter.mjs +60 -0
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionsInput_InputAdapter.mjs.map +1 -0
- 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-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +208 -208
- 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 +11 -11
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +31 -31
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +144 -144
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +18 -18
- 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 +43 -43
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +7 -7
- 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 +111 -111
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +95 -95
- 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 +209 -209
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +5 -5
- 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/command/SuspendingCliktCommand.mjs +2 -2
- 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/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +9 -9
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +25 -25
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +4 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +12 -12
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +11 -11
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +2 -2
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +2 -2
- 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 +60 -60
- 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/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 +7 -7
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +148 -108
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs.map +1 -1
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +37 -37
- package/package.json +1 -1
|
@@ -14,26 +14,26 @@ function HelpTransformContext() {
|
|
|
14
14
|
if (HelpTransformContextClass === VOID) {
|
|
15
15
|
class $ {
|
|
16
16
|
constructor(context) {
|
|
17
|
-
this.
|
|
17
|
+
this.g6c_1 = context;
|
|
18
18
|
}
|
|
19
19
|
wc() {
|
|
20
|
-
return this.
|
|
20
|
+
return this.g6c_1;
|
|
21
21
|
}
|
|
22
|
-
|
|
23
|
-
throw UsageError().
|
|
22
|
+
r6a(message) {
|
|
23
|
+
throw UsageError().y5z(message);
|
|
24
24
|
}
|
|
25
25
|
toString() {
|
|
26
|
-
return 'HelpTransformContext(context=' + this.
|
|
26
|
+
return 'HelpTransformContext(context=' + this.g6c_1.toString() + ')';
|
|
27
27
|
}
|
|
28
28
|
hashCode() {
|
|
29
|
-
return hashCode(this.
|
|
29
|
+
return hashCode(this.g6c_1);
|
|
30
30
|
}
|
|
31
31
|
equals(other) {
|
|
32
32
|
if (this === other)
|
|
33
33
|
return true;
|
|
34
34
|
if (!(other instanceof HelpTransformContext()))
|
|
35
35
|
return false;
|
|
36
|
-
if (!equals(this.
|
|
36
|
+
if (!equals(this.g6c_1, other.g6c_1))
|
|
37
37
|
return false;
|
|
38
38
|
return true;
|
|
39
39
|
}
|
|
@@ -21,10 +21,10 @@ function boolean(_this__u8e3s4) {
|
|
|
21
21
|
var tmp = defaultEachProcessor();
|
|
22
22
|
var tmp_0 = defaultAllProcessor();
|
|
23
23
|
var tmp_1 = defaultValidator();
|
|
24
|
-
var tmp0_elvis_lhs = _this__u8e3s4.
|
|
24
|
+
var tmp0_elvis_lhs = _this__u8e3s4.b6b();
|
|
25
25
|
var tmp_2 = tmp0_elvis_lhs == null ? metavar_0 : tmp0_elvis_lhs;
|
|
26
|
-
var tmp1_elvis_lhs = _this__u8e3s4.
|
|
27
|
-
return _this__u8e3s4.
|
|
26
|
+
var tmp1_elvis_lhs = _this__u8e3s4.a6b();
|
|
27
|
+
return _this__u8e3s4.m6a(valueTransform, tmp, tmp_0, tmp_1, VOID, tmp_2, VOID, VOID, VOID, VOID, VOID, VOID, VOID, tmp1_elvis_lhs == null ? null : tmp1_elvis_lhs);
|
|
28
28
|
}
|
|
29
29
|
function valueToBool(_this__u8e3s4, value) {
|
|
30
30
|
// Inline function 'kotlin.text.lowercase' call
|
|
@@ -48,7 +48,7 @@ function valueToBool(_this__u8e3s4, value) {
|
|
|
48
48
|
tmp = false;
|
|
49
49
|
break;
|
|
50
50
|
default:
|
|
51
|
-
_this__u8e3s4.
|
|
51
|
+
_this__u8e3s4.r6a(_this__u8e3s4.wc().k5w_1.o69(value));
|
|
52
52
|
break;
|
|
53
53
|
}
|
|
54
54
|
return tmp;
|
|
@@ -60,18 +60,18 @@ function boolean$lambda_0($this) {
|
|
|
60
60
|
return (_this__u8e3s4, it) => {
|
|
61
61
|
var tmp;
|
|
62
62
|
try {
|
|
63
|
-
var it_0 = $this.
|
|
63
|
+
var it_0 = $this.j6a()(_this__u8e3s4, it);
|
|
64
64
|
tmp = valueToBool(_this__u8e3s4, it_0);
|
|
65
65
|
} catch ($p) {
|
|
66
66
|
var tmp_0;
|
|
67
67
|
if ($p instanceof UsageError()) {
|
|
68
68
|
var err = $p;
|
|
69
69
|
var tmp_1 = err;
|
|
70
|
-
var tmp0_elvis_lhs = err.
|
|
70
|
+
var tmp0_elvis_lhs = err.v5z_1;
|
|
71
71
|
var tmp_2;
|
|
72
72
|
if (tmp0_elvis_lhs == null) {
|
|
73
73
|
// Inline function 'kotlin.takeUnless' call
|
|
74
|
-
var this_0 = _this__u8e3s4.
|
|
74
|
+
var this_0 = _this__u8e3s4.o6a_1;
|
|
75
75
|
var tmp_3;
|
|
76
76
|
// Inline function 'kotlin.text.isEmpty' call
|
|
77
77
|
if (!(charSequenceLength(this_0) === 0)) {
|
|
@@ -84,13 +84,13 @@ function boolean$lambda_0($this) {
|
|
|
84
84
|
tmp_2 = tmp0_elvis_lhs;
|
|
85
85
|
}
|
|
86
86
|
var tmp1_elvis_lhs = tmp_2;
|
|
87
|
-
tmp_1.
|
|
87
|
+
tmp_1.v5z_1 = tmp1_elvis_lhs == null ? longestName(_this__u8e3s4.p6a_1) : tmp1_elvis_lhs;
|
|
88
88
|
throw err;
|
|
89
89
|
} else {
|
|
90
90
|
if ($p instanceof Exception()) {
|
|
91
91
|
var err_0 = $p;
|
|
92
92
|
var tmp2_elvis_lhs = err_0.message;
|
|
93
|
-
_this__u8e3s4.
|
|
93
|
+
_this__u8e3s4.r6a(tmp2_elvis_lhs == null ? '' : tmp2_elvis_lhs);
|
|
94
94
|
} else {
|
|
95
95
|
throw $p;
|
|
96
96
|
}
|
|
@@ -37,13 +37,13 @@ import { NoSuchElementException679xzhnp5bpj as NoSuchElementException } from '..
|
|
|
37
37
|
//endregion
|
|
38
38
|
function getInvs($this, invocation) {
|
|
39
39
|
// Inline function 'kotlin.collections.partition' call
|
|
40
|
-
var this_0 = invocation.
|
|
40
|
+
var this_0 = invocation.g5x_1.a3();
|
|
41
41
|
var first = ArrayList().i2();
|
|
42
42
|
var second = ArrayList().i2();
|
|
43
43
|
var _iterator__ex2g4s = this_0.l1();
|
|
44
44
|
while (_iterator__ex2g4s.m1()) {
|
|
45
45
|
var element = _iterator__ex2g4s.n1();
|
|
46
|
-
if (element.b3().
|
|
46
|
+
if (element.b3().m5z()) {
|
|
47
47
|
first.o2(element);
|
|
48
48
|
} else {
|
|
49
49
|
second.o2(element);
|
|
@@ -78,13 +78,13 @@ function getInvs($this, invocation) {
|
|
|
78
78
|
}
|
|
79
79
|
function getOpts($this, command) {
|
|
80
80
|
// Inline function 'kotlin.collections.partition' call
|
|
81
|
-
var this_0 = command.
|
|
81
|
+
var this_0 = command.m5v();
|
|
82
82
|
var first = ArrayList().i2();
|
|
83
83
|
var second = ArrayList().i2();
|
|
84
84
|
var _iterator__ex2g4s = this_0.l1();
|
|
85
85
|
while (_iterator__ex2g4s.m1()) {
|
|
86
86
|
var element = _iterator__ex2g4s.n1();
|
|
87
|
-
if (element.
|
|
87
|
+
if (element.m5z()) {
|
|
88
88
|
first.o2(element);
|
|
89
89
|
} else {
|
|
90
90
|
second.o2(element);
|
|
@@ -96,12 +96,12 @@ var CommandLineParserClass;
|
|
|
96
96
|
function CommandLineParser() {
|
|
97
97
|
if (CommandLineParserClass === VOID) {
|
|
98
98
|
class $ {
|
|
99
|
-
|
|
99
|
+
y5w(command, argv) {
|
|
100
100
|
return parseArgv(command, argv);
|
|
101
101
|
}
|
|
102
|
-
|
|
103
|
-
var command = invocation.
|
|
104
|
-
var context = command.
|
|
102
|
+
h6c(invocation) {
|
|
103
|
+
var command = invocation.f5x_1;
|
|
104
|
+
var context = command.k5v();
|
|
105
105
|
throwCompletionMessageIfRequested(context, command);
|
|
106
106
|
var eagerOpts = getOpts(this, command).ml();
|
|
107
107
|
// Inline function 'kotlin.collections.component1' call
|
|
@@ -109,11 +109,11 @@ function CommandLineParser() {
|
|
|
109
109
|
finalizeOptions(context, eagerOpts, eagerInvs);
|
|
110
110
|
throwErrors(validateParameters(context, eagerInvs.k4()));
|
|
111
111
|
}
|
|
112
|
-
|
|
113
|
-
var command = invocation.
|
|
114
|
-
var context = command.
|
|
115
|
-
var groups = command.
|
|
116
|
-
var arguments_0 = command.
|
|
112
|
+
i6c(invocation) {
|
|
113
|
+
var command = invocation.f5x_1;
|
|
114
|
+
var context = command.k5v();
|
|
115
|
+
var groups = command.o5v();
|
|
116
|
+
var arguments_0 = command.n5v();
|
|
117
117
|
var nonEagerOpts = getOpts(this, command).nl();
|
|
118
118
|
// Inline function 'kotlin.collections.component2' call
|
|
119
119
|
var nonEagerInvs = getInvs(this, invocation).p2(1);
|
|
@@ -129,39 +129,39 @@ function CommandLineParser() {
|
|
|
129
129
|
}
|
|
130
130
|
}
|
|
131
131
|
var nonEagerNonGroupOpts = destination;
|
|
132
|
-
var argumentInvocations = invocation.
|
|
132
|
+
var argumentInvocations = invocation.h5x_1;
|
|
133
133
|
var finalizationErrors = finalizeParameters(context, nonEagerNonGroupOpts, groups, arguments_0, nonEagerInvs, argumentInvocations);
|
|
134
134
|
throwErrors(plus(usageErrors, finalizationErrors));
|
|
135
135
|
throwErrors(validateParameters(context, nonEagerNonGroupOpts, groups, arguments_0));
|
|
136
136
|
var tmp;
|
|
137
137
|
var tmp_0;
|
|
138
|
-
if (invocation.
|
|
138
|
+
if (invocation.i5x_1.j1()) {
|
|
139
139
|
// Inline function 'kotlin.collections.isNotEmpty' call
|
|
140
|
-
tmp_0 = !command.
|
|
140
|
+
tmp_0 = !command.q5u_1.j1();
|
|
141
141
|
} else {
|
|
142
142
|
tmp_0 = false;
|
|
143
143
|
}
|
|
144
144
|
if (tmp_0) {
|
|
145
|
-
tmp = !command.
|
|
145
|
+
tmp = !command.a5v();
|
|
146
146
|
} else {
|
|
147
147
|
tmp = false;
|
|
148
148
|
}
|
|
149
149
|
if (tmp) {
|
|
150
|
-
throw PrintHelpMessage().
|
|
150
|
+
throw PrintHelpMessage().i5y(context, true);
|
|
151
151
|
}
|
|
152
152
|
var tmp_1 = context;
|
|
153
|
-
var tmp_2 = context.
|
|
153
|
+
var tmp_2 = context.p5w_1;
|
|
154
154
|
// Inline function 'kotlin.collections.map' call
|
|
155
|
-
var this_0 = invocation.
|
|
155
|
+
var this_0 = invocation.i5x_1;
|
|
156
156
|
// Inline function 'kotlin.collections.mapTo' call
|
|
157
157
|
var destination_0 = ArrayList().r2(collectionSizeOrDefault(this_0, 10));
|
|
158
158
|
var _iterator__ex2g4s_0 = this_0.l1();
|
|
159
159
|
while (_iterator__ex2g4s_0.m1()) {
|
|
160
160
|
var item = _iterator__ex2g4s_0.n1();
|
|
161
|
-
var tmp$ret$7 = item.
|
|
161
|
+
var tmp$ret$7 = item.f5x_1;
|
|
162
162
|
destination_0.o2(tmp$ret$7);
|
|
163
163
|
}
|
|
164
|
-
tmp_1.
|
|
164
|
+
tmp_1.p5w_1 = plus(tmp_2, destination_0);
|
|
165
165
|
}
|
|
166
166
|
}
|
|
167
167
|
initMetadataForObject($, 'CommandLineParser');
|
|
@@ -174,7 +174,7 @@ function CommandLineParser_getInstance() {
|
|
|
174
174
|
return CommandLineParser_instance;
|
|
175
175
|
}
|
|
176
176
|
function throwCompletionMessageIfRequested(context, command) {
|
|
177
|
-
var tmp0_elvis_lhs = command.
|
|
177
|
+
var tmp0_elvis_lhs = command.d5v();
|
|
178
178
|
var tmp;
|
|
179
179
|
if (tmp0_elvis_lhs == null) {
|
|
180
180
|
return Unit_instance;
|
|
@@ -186,12 +186,12 @@ function throwCompletionMessageIfRequested(context, command) {
|
|
|
186
186
|
if (isBlank(commandEnvvar)) {
|
|
187
187
|
// Inline function 'kotlin.text.uppercase' call
|
|
188
188
|
// Inline function 'kotlin.js.asDynamic' call
|
|
189
|
-
tmp_0 = '_' + replace(command.
|
|
189
|
+
tmp_0 = '_' + replace(command.i5u_1, '-', '_').toUpperCase() + '_COMPLETE';
|
|
190
190
|
} else {
|
|
191
191
|
tmp_0 = commandEnvvar;
|
|
192
192
|
}
|
|
193
193
|
var envvar = tmp_0;
|
|
194
|
-
var tmp1_elvis_lhs = context.
|
|
194
|
+
var tmp1_elvis_lhs = context.l5w_1(envvar);
|
|
195
195
|
var tmp_1;
|
|
196
196
|
if (tmp1_elvis_lhs == null) {
|
|
197
197
|
return Unit_instance;
|
|
@@ -199,11 +199,11 @@ function throwCompletionMessageIfRequested(context, command) {
|
|
|
199
199
|
tmp_1 = tmp1_elvis_lhs;
|
|
200
200
|
}
|
|
201
201
|
var envval = tmp_1;
|
|
202
|
-
throw PrintCompletionMessage().
|
|
202
|
+
throw PrintCompletionMessage().d64(CompletionGenerator_instance.s5x(command, envval));
|
|
203
203
|
}
|
|
204
204
|
function getUsageErrorsOrThrow(_this__u8e3s4) {
|
|
205
205
|
// Inline function 'kotlin.collections.filterIsInstance' call
|
|
206
|
-
var tmp0 = _this__u8e3s4.
|
|
206
|
+
var tmp0 = _this__u8e3s4.j5x_1;
|
|
207
207
|
// Inline function 'kotlin.collections.filterIsInstanceTo' call
|
|
208
208
|
var destination = ArrayList().i2();
|
|
209
209
|
var _iterator__ex2g4s = tmp0.l1();
|
|
@@ -214,9 +214,9 @@ function getUsageErrorsOrThrow(_this__u8e3s4) {
|
|
|
214
214
|
}
|
|
215
215
|
}
|
|
216
216
|
var usageErrors = destination;
|
|
217
|
-
if (usageErrors.q2() === _this__u8e3s4.
|
|
217
|
+
if (usageErrors.q2() === _this__u8e3s4.j5x_1.q2())
|
|
218
218
|
return usageErrors;
|
|
219
|
-
var tmp0_0 = _this__u8e3s4.
|
|
219
|
+
var tmp0_0 = _this__u8e3s4.j5x_1;
|
|
220
220
|
var tmp$ret$2;
|
|
221
221
|
$l$block: {
|
|
222
222
|
// Inline function 'kotlin.collections.first' call
|
|
@@ -31,23 +31,23 @@ function OptionInvocation() {
|
|
|
31
31
|
if (OptionInvocationClass === VOID) {
|
|
32
32
|
class $ {
|
|
33
33
|
constructor(name, values) {
|
|
34
|
-
this.
|
|
35
|
-
this.
|
|
34
|
+
this.c6c_1 = name;
|
|
35
|
+
this.d6c_1 = values;
|
|
36
36
|
}
|
|
37
|
-
|
|
37
|
+
j6c(name, values) {
|
|
38
38
|
return new (OptionInvocation())(name, values);
|
|
39
39
|
}
|
|
40
|
-
|
|
41
|
-
name = name === VOID ? this.
|
|
42
|
-
values = values === VOID ? this.
|
|
43
|
-
return $super === VOID ? this.
|
|
40
|
+
e6c(name, values, $super) {
|
|
41
|
+
name = name === VOID ? this.c6c_1 : name;
|
|
42
|
+
values = values === VOID ? this.d6c_1 : values;
|
|
43
|
+
return $super === VOID ? this.j6c(name, values) : $super.j6c.call(this, name, values);
|
|
44
44
|
}
|
|
45
45
|
toString() {
|
|
46
|
-
return 'OptionInvocation(name=' + this.
|
|
46
|
+
return 'OptionInvocation(name=' + this.c6c_1 + ', values=' + toString(this.d6c_1) + ')';
|
|
47
47
|
}
|
|
48
48
|
hashCode() {
|
|
49
|
-
var result = getStringHashCode(this.
|
|
50
|
-
result = imul(result, 31) + hashCode(this.
|
|
49
|
+
var result = getStringHashCode(this.c6c_1);
|
|
50
|
+
result = imul(result, 31) + hashCode(this.d6c_1) | 0;
|
|
51
51
|
return result;
|
|
52
52
|
}
|
|
53
53
|
equals(other) {
|
|
@@ -55,9 +55,9 @@ function OptionInvocation() {
|
|
|
55
55
|
return true;
|
|
56
56
|
if (!(other instanceof OptionInvocation()))
|
|
57
57
|
return false;
|
|
58
|
-
if (!(this.
|
|
58
|
+
if (!(this.c6c_1 === other.c6c_1))
|
|
59
59
|
return false;
|
|
60
|
-
if (!equals(this.
|
|
60
|
+
if (!equals(this.d6c_1, other.d6c_1))
|
|
61
61
|
return false;
|
|
62
62
|
return true;
|
|
63
63
|
}
|
|
@@ -72,9 +72,9 @@ function CommandLineParseResult() {
|
|
|
72
72
|
if (CommandLineParseResultClass === VOID) {
|
|
73
73
|
class $ {
|
|
74
74
|
constructor(invocation, originalArgv, expandedArgv) {
|
|
75
|
-
this.
|
|
76
|
-
this.
|
|
77
|
-
this.
|
|
75
|
+
this.z5w_1 = invocation;
|
|
76
|
+
this.a5x_1 = originalArgv;
|
|
77
|
+
this.b5x_1 = expandedArgv;
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
initMetadataForClass($, 'CommandLineParseResult');
|
|
@@ -87,11 +87,11 @@ function CommandInvocation() {
|
|
|
87
87
|
if (CommandInvocationClass === VOID) {
|
|
88
88
|
class $ {
|
|
89
89
|
constructor(command, optionInvocations, argumentInvocations, subcommandInvocations, errors) {
|
|
90
|
-
this.
|
|
91
|
-
this.
|
|
92
|
-
this.
|
|
93
|
-
this.
|
|
94
|
-
this.
|
|
90
|
+
this.f5x_1 = command;
|
|
91
|
+
this.g5x_1 = optionInvocations;
|
|
92
|
+
this.h5x_1 = argumentInvocations;
|
|
93
|
+
this.i5x_1 = subcommandInvocations;
|
|
94
|
+
this.j5x_1 = errors;
|
|
95
95
|
}
|
|
96
96
|
}
|
|
97
97
|
initMetadataForClass($, 'CommandInvocation');
|
|
@@ -100,18 +100,18 @@ function CommandInvocation() {
|
|
|
100
100
|
return CommandInvocationClass;
|
|
101
101
|
}
|
|
102
102
|
function *invoke$yieldSubs(_this__u8e3s4, this$0, inv, $completion) {
|
|
103
|
-
this$0.
|
|
103
|
+
this$0.d5x_1.o2(inv.f5x_1.k5v());
|
|
104
104
|
yield* _this__u8e3s4.lm(inv, $completion);
|
|
105
|
-
var _iterator__ex2g4s = inv.
|
|
105
|
+
var _iterator__ex2g4s = inv.i5x_1.l1();
|
|
106
106
|
while (_iterator__ex2g4s.m1()) {
|
|
107
107
|
var sub = _iterator__ex2g4s.n1();
|
|
108
108
|
yield* invoke$yieldSubs(_this__u8e3s4, this$0, sub, $completion);
|
|
109
109
|
}
|
|
110
|
-
removeLast(this$0.
|
|
110
|
+
removeLast(this$0.d5x_1).j6();
|
|
111
111
|
return Unit_instance;
|
|
112
112
|
}
|
|
113
113
|
function FlatInvocations$iterator$slambda$lambda(it) {
|
|
114
|
-
CommandLineParser_instance.
|
|
114
|
+
CommandLineParser_instance.i6c(it);
|
|
115
115
|
return Unit_instance;
|
|
116
116
|
}
|
|
117
117
|
var FlatInvocations$seq$slambdaClass;
|
|
@@ -119,15 +119,15 @@ function FlatInvocations$seq$slambda() {
|
|
|
119
119
|
if (FlatInvocations$seq$slambdaClass === VOID) {
|
|
120
120
|
class $ {
|
|
121
121
|
constructor($root, this$0) {
|
|
122
|
-
this.
|
|
123
|
-
this.
|
|
122
|
+
this.k6c_1 = $root;
|
|
123
|
+
this.l6c_1 = this$0;
|
|
124
124
|
}
|
|
125
|
-
*
|
|
126
|
-
yield* /*#__NOINLINE__*/invoke$yieldSubs($this$sequence, this.
|
|
125
|
+
*m6c($this$sequence, $completion) {
|
|
126
|
+
yield* /*#__NOINLINE__*/invoke$yieldSubs($this$sequence, this.l6c_1, this.k6c_1, $completion);
|
|
127
127
|
return Unit_instance;
|
|
128
128
|
}
|
|
129
129
|
vd(p1, $completion) {
|
|
130
|
-
return this.
|
|
130
|
+
return this.m6c(p1 instanceof SequenceScope() ? p1 : THROW_CCE(), $completion);
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
133
|
initMetadataForLambda($, VOID, VOID, [1, 3]);
|
|
@@ -137,7 +137,7 @@ function FlatInvocations$seq$slambda() {
|
|
|
137
137
|
}
|
|
138
138
|
function FlatInvocations$seq$slambda_0($root, this$0) {
|
|
139
139
|
var i = new (FlatInvocations$seq$slambda())($root, this$0);
|
|
140
|
-
var l = ($this$sequence, $completion) => i.
|
|
140
|
+
var l = ($this$sequence, $completion) => i.m6c($this$sequence, $completion);
|
|
141
141
|
l.$arity = 1;
|
|
142
142
|
return l;
|
|
143
143
|
}
|
|
@@ -146,21 +146,21 @@ function FlatInvocations$iterator$slambda() {
|
|
|
146
146
|
if (FlatInvocations$iterator$slambdaClass === VOID) {
|
|
147
147
|
class $ {
|
|
148
148
|
constructor(this$0) {
|
|
149
|
-
this.
|
|
149
|
+
this.n6c_1 = this$0;
|
|
150
150
|
}
|
|
151
|
-
*
|
|
151
|
+
*m6c($this$sequence, $completion) {
|
|
152
152
|
// Inline function 'kotlin.collections.forEach' call
|
|
153
153
|
// Inline function 'kotlin.collections.iterator' call
|
|
154
|
-
var _iterator__ex2g4s = this.
|
|
154
|
+
var _iterator__ex2g4s = this.n6c_1.e5x_1.l1();
|
|
155
155
|
while (_iterator__ex2g4s.m1()) {
|
|
156
156
|
var element = _iterator__ex2g4s.n1();
|
|
157
|
-
CommandLineParser_instance.
|
|
157
|
+
CommandLineParser_instance.h6c(element);
|
|
158
158
|
}
|
|
159
|
-
yield* $this$sequence.nm(onEach(this.
|
|
159
|
+
yield* $this$sequence.nm(onEach(this.n6c_1.e5x_1, FlatInvocations$iterator$slambda$lambda), $completion);
|
|
160
160
|
return Unit_instance;
|
|
161
161
|
}
|
|
162
162
|
vd(p1, $completion) {
|
|
163
|
-
return this.
|
|
163
|
+
return this.m6c(p1 instanceof SequenceScope() ? p1 : THROW_CCE(), $completion);
|
|
164
164
|
}
|
|
165
165
|
}
|
|
166
166
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -170,7 +170,7 @@ function FlatInvocations$iterator$slambda() {
|
|
|
170
170
|
}
|
|
171
171
|
function FlatInvocations$iterator$slambda_0(this$0) {
|
|
172
172
|
var i = new (FlatInvocations$iterator$slambda())(this$0);
|
|
173
|
-
var l = ($this$sequence, $completion) => i.
|
|
173
|
+
var l = ($this$sequence, $completion) => i.m6c($this$sequence, $completion);
|
|
174
174
|
l.$arity = 1;
|
|
175
175
|
return l;
|
|
176
176
|
}
|
|
@@ -179,25 +179,25 @@ function FlatInvocations() {
|
|
|
179
179
|
if (FlatInvocationsClass === VOID) {
|
|
180
180
|
class $ {
|
|
181
181
|
constructor(root, finalize) {
|
|
182
|
-
this.
|
|
182
|
+
this.c5x_1 = finalize;
|
|
183
183
|
var tmp = this;
|
|
184
184
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
185
|
-
tmp.
|
|
185
|
+
tmp.d5x_1 = ArrayList().i2();
|
|
186
186
|
var tmp_0 = this;
|
|
187
|
-
tmp_0.
|
|
187
|
+
tmp_0.e5x_1 = sequence(FlatInvocations$seq$slambda_0(root, this));
|
|
188
188
|
}
|
|
189
189
|
l1() {
|
|
190
190
|
var tmp;
|
|
191
|
-
if (this.
|
|
191
|
+
if (this.c5x_1) {
|
|
192
192
|
tmp = sequence(FlatInvocations$iterator$slambda_0(this));
|
|
193
193
|
} else {
|
|
194
|
-
tmp = this.
|
|
194
|
+
tmp = this.e5x_1;
|
|
195
195
|
}
|
|
196
196
|
return tmp.l1();
|
|
197
197
|
}
|
|
198
198
|
j6() {
|
|
199
199
|
// Inline function 'kotlin.collections.forEach' call
|
|
200
|
-
var _iterator__ex2g4s = this.
|
|
200
|
+
var _iterator__ex2g4s = this.d5x_1.l1();
|
|
201
201
|
while (_iterator__ex2g4s.m1()) {
|
|
202
202
|
var element = _iterator__ex2g4s.n1();
|
|
203
203
|
element.j6();
|
|
@@ -218,8 +218,8 @@ function ArgumentInvocation() {
|
|
|
218
218
|
if (ArgumentInvocationClass === VOID) {
|
|
219
219
|
class $ {
|
|
220
220
|
constructor(argument, values) {
|
|
221
|
-
this.
|
|
222
|
-
this.
|
|
221
|
+
this.z65_1 = argument;
|
|
222
|
+
this.a66_1 = values;
|
|
223
223
|
}
|
|
224
224
|
}
|
|
225
225
|
initMetadataForClass($, 'ArgumentInvocation');
|