@continuous-excellence/coupling-cli 1.1.755 → 1.1.756
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 +38 -38
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +17 -17
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +22 -22
- 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 +7 -7
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +31 -31
- 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/gql/selections/PartyListQuerySelections.mjs +6 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.mjs +7 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +42 -42
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
- 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.mjs +51 -51
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +40 -40
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +32 -32
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +62 -62
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +10 -10
- 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 +95 -95
- 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 +55 -55
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +14 -14
- 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 +27 -27
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +5 -5
- 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 +16 -16
- 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 +21 -21
- 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 +18 -18
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +23 -23
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +11 -11
- 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 +16 -16
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyContributionReportContributionsQuery.mjs +38 -38
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +27 -27
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +20 -20
- 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 +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_VariablesAdapter.mjs +4 -4
- 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 +51 -51
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.mjs +20 -20
- 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/fragment/selections/ContributionDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PairingSetDetailsSelections.mjs +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PartyDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PlayerDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/CurrentPairAssignmentsQuerySelections.mjs +4 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/CurrentPairAssignmentsQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyContributionReportContributionsQuerySelections.mjs +5 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyContributionReportContributionsQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyDetailsQuerySelections.mjs +4 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyDetailsQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/SaveContributionMutationSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +30 -29
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +10 -29
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Contribution.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +39 -39
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionReport.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs +18 -29
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/DateTimeISO.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Duration.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLBoolean.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLInt.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLString.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Mutation.mjs +8 -8
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairingSet.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairingSetId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Party.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyId.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/PinId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PinSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Player.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PlayerId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PlayerSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Query.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 +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionsInput_InputAdapter.mjs +6 -6
- 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-api/com/apollographql/apollo/api/Adapters.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs +15 -6
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +72 -66
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Error.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs +33 -15
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Operations.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/RequestParameters.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs +42 -0
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs +49 -0
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonWriter.mjs +18 -18
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/Utils.mjs +19 -4
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/Utils.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs +76 -76
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +11 -11
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +201 -180
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs.map +1 -1
- 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 +35 -35
- 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 +14 -14
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/IncrementalDeliveryProtocolImpl.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_1IncrementalResultsMerger.mjs +32 -32
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_2IncrementalResultsMerger.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/is-node.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +10 -10
- 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 +79 -79
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ClientMessage.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/GraphQLWsProtocol.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ServerMessage.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/WebSocketEngine.js.mjs +39 -39
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/WebSocketNetworkTransport.mjs +58 -58
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/SubscribableWebSocket.mjs +196 -96
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/SubscribableWebSocket.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/WebSocketPool.mjs +20 -20
- 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 +24 -24
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +105 -105
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +19 -19
- 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 +14 -14
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +28 -28
- 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 +138 -138
- 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 +132 -132
- 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 +13 -13
- 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 +204 -204
- 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 +35 -35
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +231 -231
- 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 +20 -20
- 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 +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +4 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +11 -11
- 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/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 +15 -15
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +40 -40
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +61 -61
- 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 +54 -54
- 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 +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +68 -68
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs +29 -29
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs.map +1 -1
- 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 +1 -1
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +118 -118
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +36 -36
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +22 -22
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +26 -26
- package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +4 -4
- package/package.json +1 -1
package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs
CHANGED
|
@@ -43,24 +43,24 @@ function LoggingActionPipe() {
|
|
|
43
43
|
if (LoggingActionPipeClass === VOID) {
|
|
44
44
|
class $ {
|
|
45
45
|
constructor(traceId) {
|
|
46
|
-
this.
|
|
47
|
-
this.
|
|
46
|
+
this.o55_1 = traceId;
|
|
47
|
+
this.p55_1 = get_theLogger();
|
|
48
48
|
}
|
|
49
|
-
|
|
50
|
-
return this.
|
|
49
|
+
m55() {
|
|
50
|
+
return this.o55_1;
|
|
51
51
|
}
|
|
52
52
|
d4b() {
|
|
53
|
-
return this.
|
|
53
|
+
return this.p55_1;
|
|
54
54
|
}
|
|
55
|
-
*
|
|
55
|
+
*e55(dispatcher, action, $completion) {
|
|
56
56
|
var tmp;
|
|
57
57
|
try {
|
|
58
|
-
tmp = yield* this.
|
|
58
|
+
tmp = yield* this.n55(action, LoggingActionPipe$execute$slambda(this, dispatcher, action), $completion);
|
|
59
59
|
} catch ($p) {
|
|
60
60
|
var tmp_0;
|
|
61
61
|
if ($p instanceof Error) {
|
|
62
62
|
var bad = $p;
|
|
63
|
-
this.
|
|
63
|
+
this.p55_1.k54(bad, LoggingActionPipe$execute$lambda(action));
|
|
64
64
|
throw bad;
|
|
65
65
|
} else {
|
|
66
66
|
throw $p;
|
|
@@ -69,7 +69,7 @@ function LoggingActionPipe() {
|
|
|
69
69
|
return tmp;
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
|
-
protoOf($).
|
|
72
|
+
protoOf($).n55 = logAsync;
|
|
73
73
|
initMetadataForClass($, 'LoggingActionPipe', VOID, VOID, [ActionPipe(), ActionLoggingSyntax()], [2]);
|
|
74
74
|
LoggingActionPipeClass = $;
|
|
75
75
|
}
|
|
@@ -77,7 +77,7 @@ function LoggingActionPipe() {
|
|
|
77
77
|
}
|
|
78
78
|
function theLogger$delegate$lambda() {
|
|
79
79
|
_init_properties_LoggingActionPipe_kt__jmuje7();
|
|
80
|
-
return KotlinLogging_getInstance().
|
|
80
|
+
return KotlinLogging_getInstance().r53('ActionLogger');
|
|
81
81
|
}
|
|
82
82
|
function _get_theLogger_$ref_r8fuo1() {
|
|
83
83
|
return constructCallableReference(() => get_theLogger(), 0, 0, 46);
|
|
@@ -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.q55_1 = partyId;
|
|
31
|
+
this.r55_1 = contributionList;
|
|
32
32
|
}
|
|
33
33
|
toString() {
|
|
34
|
-
return 'SaveContributionCommand(partyId=' + this.
|
|
34
|
+
return 'SaveContributionCommand(partyId=' + this.q55_1.toString() + ', contributionList=' + toString(this.r55_1) + ')';
|
|
35
35
|
}
|
|
36
36
|
hashCode() {
|
|
37
|
-
var result = this.
|
|
38
|
-
result = imul(result, 31) + hashCode(this.
|
|
37
|
+
var result = this.q55_1.hashCode();
|
|
38
|
+
result = imul(result, 31) + hashCode(this.r55_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.q55_1.equals(other.q55_1))
|
|
47
47
|
return false;
|
|
48
|
-
if (!equals(this.
|
|
48
|
+
if (!equals(this.r55_1, other.r55_1))
|
|
49
49
|
return false;
|
|
50
50
|
return true;
|
|
51
51
|
}
|
|
@@ -10,7 +10,7 @@ import { constructCallableReference23y65rf941mch as constructCallableReference }
|
|
|
10
10
|
//region block: pre-declaration
|
|
11
11
|
//endregion
|
|
12
12
|
function *fire(_this__u8e3s4, action, $completion) {
|
|
13
|
-
return yield* _this__u8e3s4.
|
|
13
|
+
return yield* _this__u8e3s4.d55(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 yield* dispatcher.
|
|
22
|
+
return yield* dispatcher.j55(_SaveContributionCommandWrapper___get_action__impl__h0hu6h($this), $completion);
|
|
23
23
|
}
|
|
24
24
|
function SaveContributionCommandWrapper__execute_impl_otfi8d_0($this, dispatcher, $completion) {
|
|
25
|
-
return /*#__NOINLINE__*/SaveContributionCommandWrapper__execute_impl_otfi8d($this.
|
|
25
|
+
return /*#__NOINLINE__*/SaveContributionCommandWrapper__execute_impl_otfi8d($this.k55_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.k55_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.k55_1 = action;
|
|
47
47
|
}
|
|
48
|
-
|
|
49
|
-
return _SaveContributionCommandWrapper___get_action__impl__h0hu6h(this.
|
|
48
|
+
g55() {
|
|
49
|
+
return _SaveContributionCommandWrapper___get_action__impl__h0hu6h(this.k55_1);
|
|
50
50
|
}
|
|
51
|
-
|
|
52
|
-
return /*#__NOINLINE__*/SaveContributionCommandWrapper__execute_impl_otfi8d(this.
|
|
51
|
+
l55(dispatcher, $completion) {
|
|
52
|
+
return /*#__NOINLINE__*/SaveContributionCommandWrapper__execute_impl_otfi8d(this.k55_1, dispatcher, $completion);
|
|
53
53
|
}
|
|
54
|
-
|
|
54
|
+
f55(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.k55_1);
|
|
59
59
|
}
|
|
60
60
|
hashCode() {
|
|
61
|
-
return SaveContributionCommandWrapper__hashCode_impl_12m55p(this.
|
|
61
|
+
return SaveContributionCommandWrapper__hashCode_impl_12m55p(this.k55_1);
|
|
62
62
|
}
|
|
63
63
|
equals(other) {
|
|
64
|
-
return SaveContributionCommandWrapper__equals_impl_b2iv9j(this.
|
|
64
|
+
return SaveContributionCommandWrapper__equals_impl_b2iv9j(this.k55_1, other);
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
initMetadataForClass($, 'SaveContributionCommandWrapper', VOID, VOID, [ActionWrapper()], [1]);
|
|
@@ -18,20 +18,20 @@ function PartyIdSerializer() {
|
|
|
18
18
|
class $ {
|
|
19
19
|
constructor() {
|
|
20
20
|
PartyIdSerializer_instance = this;
|
|
21
|
-
this.
|
|
22
|
-
this.
|
|
21
|
+
this.h53_1 = Companion_instance.u3x();
|
|
22
|
+
this.i53_1 = SerialDescriptor('com.zegreatrob.coupling.model.party.PartyId', this.h53_1.i1x());
|
|
23
23
|
}
|
|
24
24
|
i1x() {
|
|
25
|
-
return this.
|
|
25
|
+
return this.i53_1;
|
|
26
26
|
}
|
|
27
|
-
|
|
28
|
-
return this.
|
|
27
|
+
j53(encoder, value) {
|
|
28
|
+
return this.h53_1.j1x(encoder, new (NotBlankString())(value.q52_1));
|
|
29
29
|
}
|
|
30
30
|
j1x(encoder, value) {
|
|
31
|
-
return this.
|
|
31
|
+
return this.j53(encoder, value instanceof PartyId() ? value : THROW_CCE());
|
|
32
32
|
}
|
|
33
33
|
k1x(decoder) {
|
|
34
|
-
return new (PartyId())(this.
|
|
34
|
+
return new (PartyId())(this.h53_1.k1x(decoder).p4z_1);
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
initMetadataForObject($, 'PartyIdSerializer', VOID, VOID, [KSerializer()]);
|
|
@@ -34,55 +34,55 @@ function ContributionInput() {
|
|
|
34
34
|
cycleTime = cycleTime === VOID ? null : cycleTime;
|
|
35
35
|
commitCount = commitCount === VOID ? null : commitCount;
|
|
36
36
|
name = name === VOID ? null : name;
|
|
37
|
-
this.
|
|
38
|
-
this.
|
|
39
|
-
this.
|
|
40
|
-
this.
|
|
41
|
-
this.
|
|
42
|
-
this.
|
|
43
|
-
this.
|
|
44
|
-
this.
|
|
45
|
-
this.
|
|
46
|
-
this.
|
|
47
|
-
this.
|
|
48
|
-
this.
|
|
49
|
-
this.
|
|
50
|
-
this.
|
|
51
|
-
this.
|
|
37
|
+
this.w4z_1 = contributionId;
|
|
38
|
+
this.x4z_1 = participantEmails;
|
|
39
|
+
this.y4z_1 = hash;
|
|
40
|
+
this.z4z_1 = dateTime;
|
|
41
|
+
this.a50_1 = ease;
|
|
42
|
+
this.b50_1 = story;
|
|
43
|
+
this.c50_1 = link;
|
|
44
|
+
this.d50_1 = semver;
|
|
45
|
+
this.e50_1 = label;
|
|
46
|
+
this.f50_1 = firstCommit;
|
|
47
|
+
this.g50_1 = firstCommitDateTime;
|
|
48
|
+
this.h50_1 = integrationDateTime;
|
|
49
|
+
this.i50_1 = cycleTime;
|
|
50
|
+
this.j50_1 = commitCount;
|
|
51
|
+
this.k50_1 = name;
|
|
52
52
|
}
|
|
53
53
|
toString() {
|
|
54
|
-
var tmp = this.
|
|
55
|
-
var tmp_0 = toString(this.
|
|
56
|
-
var tmp_1 = toString_0(this.
|
|
57
|
-
var tmp_2 = toString_0(this.
|
|
58
|
-
var tmp_3 = toString_0(this.
|
|
59
|
-
var tmp_4 = this.
|
|
60
|
-
return 'ContributionInput(contributionId=' + tmp + ', participantEmails=' + tmp_0 + ', hash=' + this.
|
|
54
|
+
var tmp = this.w4z_1.toString();
|
|
55
|
+
var tmp_0 = toString(this.x4z_1);
|
|
56
|
+
var tmp_1 = toString_0(this.z4z_1);
|
|
57
|
+
var tmp_2 = toString_0(this.g50_1);
|
|
58
|
+
var tmp_3 = toString_0(this.h50_1);
|
|
59
|
+
var tmp_4 = this.i50_1;
|
|
60
|
+
return 'ContributionInput(contributionId=' + tmp + ', participantEmails=' + tmp_0 + ', hash=' + this.y4z_1 + ', dateTime=' + tmp_1 + ', ease=' + this.a50_1 + ', story=' + this.b50_1 + ', link=' + this.c50_1 + ', semver=' + this.d50_1 + ', label=' + this.e50_1 + ', firstCommit=' + this.f50_1 + ', firstCommitDateTime=' + tmp_2 + ', integrationDateTime=' + tmp_3 + ', cycleTime=' + toString_0(tmp_4 == null ? null : new (Duration())(tmp_4)) + ', commitCount=' + this.j50_1 + ', name=' + this.k50_1 + ')';
|
|
61
61
|
}
|
|
62
62
|
hashCode() {
|
|
63
|
-
var result = this.
|
|
64
|
-
result = imul(result, 31) + hashCode(this.
|
|
65
|
-
result = imul(result, 31) + (this.
|
|
66
|
-
result = imul(result, 31) + (this.
|
|
67
|
-
result = imul(result, 31) + (this.
|
|
68
|
-
result = imul(result, 31) + (this.a50_1 == null ? 0 : getStringHashCode(this.a50_1)) | 0;
|
|
63
|
+
var result = this.w4z_1.hashCode();
|
|
64
|
+
result = imul(result, 31) + hashCode(this.x4z_1) | 0;
|
|
65
|
+
result = imul(result, 31) + (this.y4z_1 == null ? 0 : getStringHashCode(this.y4z_1)) | 0;
|
|
66
|
+
result = imul(result, 31) + (this.z4z_1 == null ? 0 : this.z4z_1.hashCode()) | 0;
|
|
67
|
+
result = imul(result, 31) + (this.a50_1 == null ? 0 : this.a50_1) | 0;
|
|
69
68
|
result = imul(result, 31) + (this.b50_1 == null ? 0 : getStringHashCode(this.b50_1)) | 0;
|
|
70
69
|
result = imul(result, 31) + (this.c50_1 == null ? 0 : getStringHashCode(this.c50_1)) | 0;
|
|
71
70
|
result = imul(result, 31) + (this.d50_1 == null ? 0 : getStringHashCode(this.d50_1)) | 0;
|
|
72
71
|
result = imul(result, 31) + (this.e50_1 == null ? 0 : getStringHashCode(this.e50_1)) | 0;
|
|
73
|
-
result = imul(result, 31) + (this.f50_1 == null ? 0 : this.f50_1
|
|
72
|
+
result = imul(result, 31) + (this.f50_1 == null ? 0 : getStringHashCode(this.f50_1)) | 0;
|
|
74
73
|
result = imul(result, 31) + (this.g50_1 == null ? 0 : this.g50_1.hashCode()) | 0;
|
|
74
|
+
result = imul(result, 31) + (this.h50_1 == null ? 0 : this.h50_1.hashCode()) | 0;
|
|
75
75
|
var tmp = imul(result, 31);
|
|
76
76
|
var tmp_0;
|
|
77
|
-
var tmp_1 = this.
|
|
77
|
+
var tmp_1 = this.i50_1;
|
|
78
78
|
if ((tmp_1 == null ? null : new (Duration())(tmp_1)) == null) {
|
|
79
79
|
tmp_0 = 0;
|
|
80
80
|
} else {
|
|
81
|
-
tmp_0 = Duration__hashCode_impl_u4exz6(this.
|
|
81
|
+
tmp_0 = Duration__hashCode_impl_u4exz6(this.i50_1);
|
|
82
82
|
}
|
|
83
83
|
result = tmp + tmp_0 | 0;
|
|
84
|
-
result = imul(result, 31) + (this.
|
|
85
|
-
result = imul(result, 31) + (this.
|
|
84
|
+
result = imul(result, 31) + (this.j50_1 == null ? 0 : this.j50_1) | 0;
|
|
85
|
+
result = imul(result, 31) + (this.k50_1 == null ? 0 : getStringHashCode(this.k50_1)) | 0;
|
|
86
86
|
return result;
|
|
87
87
|
}
|
|
88
88
|
equals(other) {
|
|
@@ -90,15 +90,13 @@ function ContributionInput() {
|
|
|
90
90
|
return true;
|
|
91
91
|
if (!(other instanceof ContributionInput()))
|
|
92
92
|
return false;
|
|
93
|
-
if (!this.
|
|
93
|
+
if (!this.w4z_1.equals(other.w4z_1))
|
|
94
94
|
return false;
|
|
95
|
-
if (!equals(this.
|
|
95
|
+
if (!equals(this.x4z_1, other.x4z_1))
|
|
96
96
|
return false;
|
|
97
|
-
if (!(this.
|
|
97
|
+
if (!(this.y4z_1 == other.y4z_1))
|
|
98
98
|
return false;
|
|
99
|
-
if (!equals(this.
|
|
100
|
-
return false;
|
|
101
|
-
if (!(this.z4z_1 == other.z4z_1))
|
|
99
|
+
if (!equals(this.z4z_1, other.z4z_1))
|
|
102
100
|
return false;
|
|
103
101
|
if (!(this.a50_1 == other.a50_1))
|
|
104
102
|
return false;
|
|
@@ -110,19 +108,21 @@ function ContributionInput() {
|
|
|
110
108
|
return false;
|
|
111
109
|
if (!(this.e50_1 == other.e50_1))
|
|
112
110
|
return false;
|
|
113
|
-
if (!
|
|
111
|
+
if (!(this.f50_1 == other.f50_1))
|
|
114
112
|
return false;
|
|
115
113
|
if (!equals(this.g50_1, other.g50_1))
|
|
116
114
|
return false;
|
|
117
|
-
|
|
115
|
+
if (!equals(this.h50_1, other.h50_1))
|
|
116
|
+
return false;
|
|
117
|
+
var tmp = this.i50_1;
|
|
118
118
|
var tmp_0 = tmp == null ? null : new (Duration())(tmp);
|
|
119
|
-
var tmp_1 = other.
|
|
119
|
+
var tmp_1 = other.i50_1;
|
|
120
120
|
if (!equals(tmp_0, tmp_1 == null ? null : new (Duration())(tmp_1)))
|
|
121
121
|
return false;
|
|
122
|
-
if (!(this.i50_1 == other.i50_1))
|
|
123
|
-
return false;
|
|
124
122
|
if (!(this.j50_1 == other.j50_1))
|
|
125
123
|
return false;
|
|
124
|
+
if (!(this.k50_1 == other.k50_1))
|
|
125
|
+
return false;
|
|
126
126
|
return true;
|
|
127
127
|
}
|
|
128
128
|
}
|
|
@@ -136,58 +136,58 @@ function Contribution() {
|
|
|
136
136
|
if (ContributionClass === VOID) {
|
|
137
137
|
class $ {
|
|
138
138
|
constructor(id, createdAt, dateTime, hash, firstCommit, firstCommitDateTime, ease, story, link, participantEmails, label, semver, integrationDateTime, cycleTime, commitCount, name) {
|
|
139
|
-
this.
|
|
140
|
-
this.
|
|
141
|
-
this.
|
|
142
|
-
this.
|
|
143
|
-
this.
|
|
144
|
-
this.
|
|
145
|
-
this.
|
|
146
|
-
this.
|
|
147
|
-
this.
|
|
148
|
-
this.
|
|
149
|
-
this.
|
|
150
|
-
this.
|
|
151
|
-
this.
|
|
152
|
-
this.
|
|
153
|
-
this.
|
|
154
|
-
this.
|
|
139
|
+
this.l50_1 = id;
|
|
140
|
+
this.m50_1 = createdAt;
|
|
141
|
+
this.n50_1 = dateTime;
|
|
142
|
+
this.o50_1 = hash;
|
|
143
|
+
this.p50_1 = firstCommit;
|
|
144
|
+
this.q50_1 = firstCommitDateTime;
|
|
145
|
+
this.r50_1 = ease;
|
|
146
|
+
this.s50_1 = story;
|
|
147
|
+
this.t50_1 = link;
|
|
148
|
+
this.u50_1 = participantEmails;
|
|
149
|
+
this.v50_1 = label;
|
|
150
|
+
this.w50_1 = semver;
|
|
151
|
+
this.x50_1 = integrationDateTime;
|
|
152
|
+
this.y50_1 = cycleTime;
|
|
153
|
+
this.z50_1 = commitCount;
|
|
154
|
+
this.a51_1 = name;
|
|
155
155
|
}
|
|
156
156
|
toString() {
|
|
157
|
-
var tmp = this.
|
|
158
|
-
var tmp_0 = this.
|
|
159
|
-
var tmp_1 = toString_0(this.
|
|
160
|
-
var tmp_2 = toString_0(this.
|
|
161
|
-
var tmp_3 = toString(this.
|
|
162
|
-
var tmp_4 = toString_0(this.
|
|
163
|
-
var tmp_5 = this.
|
|
164
|
-
return 'Contribution(id=' + tmp + ', createdAt=' + tmp_0 + ', dateTime=' + tmp_1 + ', hash=' + this.
|
|
157
|
+
var tmp = this.l50_1.toString();
|
|
158
|
+
var tmp_0 = this.m50_1.toString();
|
|
159
|
+
var tmp_1 = toString_0(this.n50_1);
|
|
160
|
+
var tmp_2 = toString_0(this.q50_1);
|
|
161
|
+
var tmp_3 = toString(this.u50_1);
|
|
162
|
+
var tmp_4 = toString_0(this.x50_1);
|
|
163
|
+
var tmp_5 = this.y50_1;
|
|
164
|
+
return 'Contribution(id=' + tmp + ', createdAt=' + tmp_0 + ', dateTime=' + tmp_1 + ', hash=' + this.o50_1 + ', firstCommit=' + this.p50_1 + ', firstCommitDateTime=' + tmp_2 + ', ease=' + this.r50_1 + ', story=' + this.s50_1 + ', link=' + this.t50_1 + ', participantEmails=' + tmp_3 + ', label=' + this.v50_1 + ', semver=' + this.w50_1 + ', integrationDateTime=' + tmp_4 + ', cycleTime=' + toString_0(tmp_5 == null ? null : new (Duration())(tmp_5)) + ', commitCount=' + this.z50_1 + ', name=' + this.a51_1 + ')';
|
|
165
165
|
}
|
|
166
166
|
hashCode() {
|
|
167
|
-
var result = this.
|
|
168
|
-
result = imul(result, 31) + this.
|
|
169
|
-
result = imul(result, 31) + (this.
|
|
170
|
-
result = imul(result, 31) + (this.n50_1 == null ? 0 : getStringHashCode(this.n50_1)) | 0;
|
|
167
|
+
var result = this.l50_1.hashCode();
|
|
168
|
+
result = imul(result, 31) + this.m50_1.hashCode() | 0;
|
|
169
|
+
result = imul(result, 31) + (this.n50_1 == null ? 0 : this.n50_1.hashCode()) | 0;
|
|
171
170
|
result = imul(result, 31) + (this.o50_1 == null ? 0 : getStringHashCode(this.o50_1)) | 0;
|
|
172
|
-
result = imul(result, 31) + (this.p50_1 == null ? 0 : this.p50_1
|
|
173
|
-
result = imul(result, 31) + (this.q50_1 == null ? 0 : this.q50_1) | 0;
|
|
174
|
-
result = imul(result, 31) + (this.r50_1 == null ? 0 :
|
|
171
|
+
result = imul(result, 31) + (this.p50_1 == null ? 0 : getStringHashCode(this.p50_1)) | 0;
|
|
172
|
+
result = imul(result, 31) + (this.q50_1 == null ? 0 : this.q50_1.hashCode()) | 0;
|
|
173
|
+
result = imul(result, 31) + (this.r50_1 == null ? 0 : this.r50_1) | 0;
|
|
175
174
|
result = imul(result, 31) + (this.s50_1 == null ? 0 : getStringHashCode(this.s50_1)) | 0;
|
|
176
|
-
result = imul(result, 31) +
|
|
177
|
-
result = imul(result, 31) + (this.u50_1
|
|
175
|
+
result = imul(result, 31) + (this.t50_1 == null ? 0 : getStringHashCode(this.t50_1)) | 0;
|
|
176
|
+
result = imul(result, 31) + hashCode(this.u50_1) | 0;
|
|
178
177
|
result = imul(result, 31) + (this.v50_1 == null ? 0 : getStringHashCode(this.v50_1)) | 0;
|
|
179
|
-
result = imul(result, 31) + (this.w50_1 == null ? 0 : this.w50_1
|
|
178
|
+
result = imul(result, 31) + (this.w50_1 == null ? 0 : getStringHashCode(this.w50_1)) | 0;
|
|
179
|
+
result = imul(result, 31) + (this.x50_1 == null ? 0 : this.x50_1.hashCode()) | 0;
|
|
180
180
|
var tmp = imul(result, 31);
|
|
181
181
|
var tmp_0;
|
|
182
|
-
var tmp_1 = this.
|
|
182
|
+
var tmp_1 = this.y50_1;
|
|
183
183
|
if ((tmp_1 == null ? null : new (Duration())(tmp_1)) == null) {
|
|
184
184
|
tmp_0 = 0;
|
|
185
185
|
} else {
|
|
186
|
-
tmp_0 = Duration__hashCode_impl_u4exz6(this.
|
|
186
|
+
tmp_0 = Duration__hashCode_impl_u4exz6(this.y50_1);
|
|
187
187
|
}
|
|
188
188
|
result = tmp + tmp_0 | 0;
|
|
189
|
-
result = imul(result, 31) + (this.
|
|
190
|
-
result = imul(result, 31) + (this.
|
|
189
|
+
result = imul(result, 31) + (this.z50_1 == null ? 0 : this.z50_1) | 0;
|
|
190
|
+
result = imul(result, 31) + (this.a51_1 == null ? 0 : getStringHashCode(this.a51_1)) | 0;
|
|
191
191
|
return result;
|
|
192
192
|
}
|
|
193
193
|
equals(other) {
|
|
@@ -195,41 +195,41 @@ function Contribution() {
|
|
|
195
195
|
return true;
|
|
196
196
|
if (!(other instanceof Contribution()))
|
|
197
197
|
return false;
|
|
198
|
-
if (!this.k50_1.equals(other.k50_1))
|
|
199
|
-
return false;
|
|
200
198
|
if (!this.l50_1.equals(other.l50_1))
|
|
201
199
|
return false;
|
|
202
|
-
if (!
|
|
200
|
+
if (!this.m50_1.equals(other.m50_1))
|
|
203
201
|
return false;
|
|
204
|
-
if (!(this.n50_1
|
|
202
|
+
if (!equals(this.n50_1, other.n50_1))
|
|
205
203
|
return false;
|
|
206
204
|
if (!(this.o50_1 == other.o50_1))
|
|
207
205
|
return false;
|
|
208
|
-
if (!
|
|
206
|
+
if (!(this.p50_1 == other.p50_1))
|
|
209
207
|
return false;
|
|
210
|
-
if (!(this.q50_1
|
|
208
|
+
if (!equals(this.q50_1, other.q50_1))
|
|
211
209
|
return false;
|
|
212
210
|
if (!(this.r50_1 == other.r50_1))
|
|
213
211
|
return false;
|
|
214
212
|
if (!(this.s50_1 == other.s50_1))
|
|
215
213
|
return false;
|
|
216
|
-
if (!
|
|
214
|
+
if (!(this.t50_1 == other.t50_1))
|
|
217
215
|
return false;
|
|
218
|
-
if (!(this.u50_1
|
|
216
|
+
if (!equals(this.u50_1, other.u50_1))
|
|
219
217
|
return false;
|
|
220
218
|
if (!(this.v50_1 == other.v50_1))
|
|
221
219
|
return false;
|
|
222
|
-
if (!
|
|
220
|
+
if (!(this.w50_1 == other.w50_1))
|
|
221
|
+
return false;
|
|
222
|
+
if (!equals(this.x50_1, other.x50_1))
|
|
223
223
|
return false;
|
|
224
|
-
var tmp = this.
|
|
224
|
+
var tmp = this.y50_1;
|
|
225
225
|
var tmp_0 = tmp == null ? null : new (Duration())(tmp);
|
|
226
|
-
var tmp_1 = other.
|
|
226
|
+
var tmp_1 = other.y50_1;
|
|
227
227
|
if (!equals(tmp_0, tmp_1 == null ? null : new (Duration())(tmp_1)))
|
|
228
228
|
return false;
|
|
229
|
-
if (!(this.y50_1 == other.y50_1))
|
|
230
|
-
return false;
|
|
231
229
|
if (!(this.z50_1 == other.z50_1))
|
|
232
230
|
return false;
|
|
231
|
+
if (!(this.a51_1 == other.a51_1))
|
|
232
|
+
return false;
|
|
233
233
|
return true;
|
|
234
234
|
}
|
|
235
235
|
}
|
|
@@ -29,20 +29,20 @@ function ContributionId() {
|
|
|
29
29
|
if (ContributionIdClass === VOID) {
|
|
30
30
|
class $ {
|
|
31
31
|
constructor(value) {
|
|
32
|
-
this.
|
|
32
|
+
this.b51_1 = value;
|
|
33
33
|
}
|
|
34
34
|
toString() {
|
|
35
|
-
return 'ContributionId(value=' + NotBlankString__toString_impl_5tex9r(this.
|
|
35
|
+
return 'ContributionId(value=' + NotBlankString__toString_impl_5tex9r(this.b51_1) + ')';
|
|
36
36
|
}
|
|
37
37
|
hashCode() {
|
|
38
|
-
return NotBlankString__hashCode_impl_fxqzj4(this.
|
|
38
|
+
return NotBlankString__hashCode_impl_fxqzj4(this.b51_1);
|
|
39
39
|
}
|
|
40
40
|
equals(other) {
|
|
41
41
|
if (this === other)
|
|
42
42
|
return true;
|
|
43
43
|
if (!(other instanceof ContributionId()))
|
|
44
44
|
return false;
|
|
45
|
-
if (!(this.
|
|
45
|
+
if (!(this.b51_1 === other.b51_1))
|
|
46
46
|
return false;
|
|
47
47
|
return true;
|
|
48
48
|
}
|