@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
|
@@ -29,34 +29,27 @@ function ContributionInput() {
|
|
|
29
29
|
cycleTime = cycleTime === VOID ? Absent_getInstance() : cycleTime;
|
|
30
30
|
name = name === VOID ? Absent_getInstance() : name;
|
|
31
31
|
commitCount = commitCount === VOID ? Absent_getInstance() : commitCount;
|
|
32
|
-
this.
|
|
33
|
-
this.
|
|
34
|
-
this.
|
|
35
|
-
this.
|
|
36
|
-
this.
|
|
37
|
-
this.
|
|
38
|
-
this.
|
|
39
|
-
this.
|
|
40
|
-
this.
|
|
41
|
-
this.
|
|
42
|
-
this.
|
|
43
|
-
this.
|
|
44
|
-
this.
|
|
45
|
-
this.
|
|
46
|
-
this.
|
|
32
|
+
this.u5s_1 = contributionId;
|
|
33
|
+
this.v5s_1 = hash;
|
|
34
|
+
this.w5s_1 = dateTime;
|
|
35
|
+
this.x5s_1 = ease;
|
|
36
|
+
this.y5s_1 = story;
|
|
37
|
+
this.z5s_1 = link;
|
|
38
|
+
this.a5t_1 = label;
|
|
39
|
+
this.b5t_1 = semver;
|
|
40
|
+
this.c5t_1 = firstCommit;
|
|
41
|
+
this.d5t_1 = firstCommitDateTime;
|
|
42
|
+
this.e5t_1 = integrationDateTime;
|
|
43
|
+
this.f5t_1 = cycleTime;
|
|
44
|
+
this.g5t_1 = participantEmails;
|
|
45
|
+
this.h5t_1 = name;
|
|
46
|
+
this.i5t_1 = commitCount;
|
|
47
47
|
}
|
|
48
48
|
toString() {
|
|
49
|
-
return 'ContributionInput(contributionId=' + this.
|
|
49
|
+
return 'ContributionInput(contributionId=' + this.u5s_1.toString() + ', hash=' + toString(this.v5s_1) + ', dateTime=' + toString(this.w5s_1) + ', ease=' + toString(this.x5s_1) + ', story=' + toString(this.y5s_1) + ', link=' + toString(this.z5s_1) + ', label=' + toString(this.a5t_1) + ', semver=' + toString(this.b5t_1) + ', firstCommit=' + toString(this.c5t_1) + ', firstCommitDateTime=' + toString(this.d5t_1) + ', integrationDateTime=' + toString(this.e5t_1) + ', cycleTime=' + toString(this.f5t_1) + ', participantEmails=' + toString(this.g5t_1) + ', name=' + toString(this.h5t_1) + ', commitCount=' + toString(this.i5t_1) + ')';
|
|
50
50
|
}
|
|
51
51
|
hashCode() {
|
|
52
|
-
var result = this.
|
|
53
|
-
result = imul(result, 31) + hashCode(this.o5s_1) | 0;
|
|
54
|
-
result = imul(result, 31) + hashCode(this.p5s_1) | 0;
|
|
55
|
-
result = imul(result, 31) + hashCode(this.q5s_1) | 0;
|
|
56
|
-
result = imul(result, 31) + hashCode(this.r5s_1) | 0;
|
|
57
|
-
result = imul(result, 31) + hashCode(this.s5s_1) | 0;
|
|
58
|
-
result = imul(result, 31) + hashCode(this.t5s_1) | 0;
|
|
59
|
-
result = imul(result, 31) + hashCode(this.u5s_1) | 0;
|
|
52
|
+
var result = this.u5s_1.hashCode();
|
|
60
53
|
result = imul(result, 31) + hashCode(this.v5s_1) | 0;
|
|
61
54
|
result = imul(result, 31) + hashCode(this.w5s_1) | 0;
|
|
62
55
|
result = imul(result, 31) + hashCode(this.x5s_1) | 0;
|
|
@@ -64,6 +57,13 @@ function ContributionInput() {
|
|
|
64
57
|
result = imul(result, 31) + hashCode(this.z5s_1) | 0;
|
|
65
58
|
result = imul(result, 31) + hashCode(this.a5t_1) | 0;
|
|
66
59
|
result = imul(result, 31) + hashCode(this.b5t_1) | 0;
|
|
60
|
+
result = imul(result, 31) + hashCode(this.c5t_1) | 0;
|
|
61
|
+
result = imul(result, 31) + hashCode(this.d5t_1) | 0;
|
|
62
|
+
result = imul(result, 31) + hashCode(this.e5t_1) | 0;
|
|
63
|
+
result = imul(result, 31) + hashCode(this.f5t_1) | 0;
|
|
64
|
+
result = imul(result, 31) + hashCode(this.g5t_1) | 0;
|
|
65
|
+
result = imul(result, 31) + hashCode(this.h5t_1) | 0;
|
|
66
|
+
result = imul(result, 31) + hashCode(this.i5t_1) | 0;
|
|
67
67
|
return result;
|
|
68
68
|
}
|
|
69
69
|
equals(other) {
|
|
@@ -71,21 +71,7 @@ function ContributionInput() {
|
|
|
71
71
|
return true;
|
|
72
72
|
if (!(other instanceof ContributionInput()))
|
|
73
73
|
return false;
|
|
74
|
-
if (!this.
|
|
75
|
-
return false;
|
|
76
|
-
if (!equals(this.o5s_1, other.o5s_1))
|
|
77
|
-
return false;
|
|
78
|
-
if (!equals(this.p5s_1, other.p5s_1))
|
|
79
|
-
return false;
|
|
80
|
-
if (!equals(this.q5s_1, other.q5s_1))
|
|
81
|
-
return false;
|
|
82
|
-
if (!equals(this.r5s_1, other.r5s_1))
|
|
83
|
-
return false;
|
|
84
|
-
if (!equals(this.s5s_1, other.s5s_1))
|
|
85
|
-
return false;
|
|
86
|
-
if (!equals(this.t5s_1, other.t5s_1))
|
|
87
|
-
return false;
|
|
88
|
-
if (!equals(this.u5s_1, other.u5s_1))
|
|
74
|
+
if (!this.u5s_1.equals(other.u5s_1))
|
|
89
75
|
return false;
|
|
90
76
|
if (!equals(this.v5s_1, other.v5s_1))
|
|
91
77
|
return false;
|
|
@@ -101,6 +87,20 @@ function ContributionInput() {
|
|
|
101
87
|
return false;
|
|
102
88
|
if (!equals(this.b5t_1, other.b5t_1))
|
|
103
89
|
return false;
|
|
90
|
+
if (!equals(this.c5t_1, other.c5t_1))
|
|
91
|
+
return false;
|
|
92
|
+
if (!equals(this.d5t_1, other.d5t_1))
|
|
93
|
+
return false;
|
|
94
|
+
if (!equals(this.e5t_1, other.e5t_1))
|
|
95
|
+
return false;
|
|
96
|
+
if (!equals(this.f5t_1, other.f5t_1))
|
|
97
|
+
return false;
|
|
98
|
+
if (!equals(this.g5t_1, other.g5t_1))
|
|
99
|
+
return false;
|
|
100
|
+
if (!equals(this.h5t_1, other.h5t_1))
|
|
101
|
+
return false;
|
|
102
|
+
if (!equals(this.i5t_1, other.i5t_1))
|
|
103
|
+
return false;
|
|
104
104
|
return true;
|
|
105
105
|
}
|
|
106
106
|
}
|
|
@@ -5,7 +5,6 @@ import {
|
|
|
5
5
|
initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
|
|
6
6
|
} from '../../../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
7
7
|
import { VOID3gxj6tk5isa35 as VOID } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
8
|
-
import { enumEntries20mr21zbe3az4 as enumEntries } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs';
|
|
9
8
|
import { Unit_instance3vdlo4e4f5ggx as Unit_instance } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
10
9
|
import { Enum3alwj03lh1n41 as Enum } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/Enum.mjs';
|
|
11
10
|
//region block: imports
|
|
@@ -25,26 +24,25 @@ function Companion() {
|
|
|
25
24
|
class $ {
|
|
26
25
|
constructor() {
|
|
27
26
|
Companion_instance = this;
|
|
28
|
-
this.
|
|
27
|
+
this.j5t_1 = new (EnumType())('ContributionWindow', listOf(['All', 'Year', 'HalfYear', 'Quarter', 'Month', 'Week']));
|
|
29
28
|
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
29
|
+
n5s(rawValue) {
|
|
30
|
+
switch (rawValue) {
|
|
31
|
+
case 'All':
|
|
32
|
+
return ContributionWindow_All_getInstance();
|
|
33
|
+
case 'Year':
|
|
34
|
+
return ContributionWindow_Year_getInstance();
|
|
35
|
+
case 'HalfYear':
|
|
36
|
+
return ContributionWindow_HalfYear_getInstance();
|
|
37
|
+
case 'Quarter':
|
|
38
|
+
return ContributionWindow_Quarter_getInstance();
|
|
39
|
+
case 'Month':
|
|
40
|
+
return ContributionWindow_Month_getInstance();
|
|
41
|
+
case 'Week':
|
|
42
|
+
return ContributionWindow_Week_getInstance();
|
|
43
|
+
default:
|
|
44
|
+
return ContributionWindow_UNKNOWN___getInstance();
|
|
45
45
|
}
|
|
46
|
-
var tmp0_elvis_lhs = tmp$ret$1;
|
|
47
|
-
return tmp0_elvis_lhs == null ? ContributionWindow_UNKNOWN___getInstance() : tmp0_elvis_lhs;
|
|
48
46
|
}
|
|
49
47
|
}
|
|
50
48
|
initMetadataForCompanion($);
|
|
@@ -59,14 +57,6 @@ function Companion_getInstance() {
|
|
|
59
57
|
new (Companion())();
|
|
60
58
|
return Companion_instance;
|
|
61
59
|
}
|
|
62
|
-
function values() {
|
|
63
|
-
return [ContributionWindow_All_getInstance(), ContributionWindow_Year_getInstance(), ContributionWindow_HalfYear_getInstance(), ContributionWindow_Quarter_getInstance(), ContributionWindow_Month_getInstance(), ContributionWindow_Week_getInstance(), ContributionWindow_UNKNOWN___getInstance()];
|
|
64
|
-
}
|
|
65
|
-
function get_entries() {
|
|
66
|
-
if ($ENTRIES == null)
|
|
67
|
-
$ENTRIES = enumEntries(values());
|
|
68
|
-
return $ENTRIES;
|
|
69
|
-
}
|
|
70
60
|
var ContributionWindow_entriesInitialized;
|
|
71
61
|
function ContributionWindow_initEntries() {
|
|
72
62
|
if (ContributionWindow_entriesInitialized)
|
|
@@ -81,14 +71,13 @@ function ContributionWindow_initEntries() {
|
|
|
81
71
|
ContributionWindow_UNKNOWN___instance = new (ContributionWindow())('UNKNOWN__', 6, 'UNKNOWN__');
|
|
82
72
|
Companion_getInstance();
|
|
83
73
|
}
|
|
84
|
-
var $ENTRIES;
|
|
85
74
|
var ContributionWindowClass;
|
|
86
75
|
function ContributionWindow() {
|
|
87
76
|
if (ContributionWindowClass === VOID) {
|
|
88
77
|
class $ extends Enum() {
|
|
89
78
|
constructor(name, ordinal, rawValue) {
|
|
90
79
|
super(name, ordinal);
|
|
91
|
-
this.
|
|
80
|
+
this.m5t_1 = rawValue;
|
|
92
81
|
}
|
|
93
82
|
}
|
|
94
83
|
initMetadataForClass($, 'ContributionWindow');
|
package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.kt"
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["safeValueOf","rawValue"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;QA8BQ,8BAAS,oBAAT,EAA+B,OAAO,QAAO,MAAP,EAAe,UAAf,EAA2B,SAA3B,EAAsC,OAAtC,EAA+C,MAA/C,CAAP,CAA/B,C;;SAqBGA,CAAgBC,QAAhBD,EAAwD;A,QAQ9D,QARmE,QAQnE,C;eAPC,K;mBAAS,oC;eACT,M;mBAAU,qC;eACV,U;mBAAc,yC;eACd,S;mBAAa,wC;eACb,O;mBAAW,sC;eACX,M;mBAAU,qC;;mBACF,0C;;MACV,C;;;;;;;;;;;;;;;;;;;+DA3DJ,K,EAAA,C,EAgBM,K;gEAhBN,M,EAAA,C,EAiBO,M;oEAjBP,U,EAAA,C,EAkBW,U;mEAlBX,S,EAAA,C,EAmBU,S;iEAnBV,O,EAAA,C,EAoBQ,O;gEApBR,M,EAAA,C,EAqBO,M;qEArBP,W,EAAA,C,EAyBY,W;;;;;;;iCAXHC,Q;;QAAP,qB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -11,7 +11,7 @@ function Companion() {
|
|
|
11
11
|
class $ {
|
|
12
12
|
constructor() {
|
|
13
13
|
Companion_instance = this;
|
|
14
|
-
this.
|
|
14
|
+
this.l5r_1 = new (CustomScalarType())('DateTimeISO', 'kotlin.time.Instant');
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
initMetadataForCompanion($);
|
|
@@ -11,7 +11,7 @@ function Companion() {
|
|
|
11
11
|
class $ {
|
|
12
12
|
constructor() {
|
|
13
13
|
Companion_instance = this;
|
|
14
|
-
this.
|
|
14
|
+
this.m5r_1 = new (CustomScalarType())('Duration', 'kotlin.time.Duration');
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
initMetadataForCompanion($);
|
|
@@ -11,7 +11,7 @@ function Companion() {
|
|
|
11
11
|
class $ {
|
|
12
12
|
constructor() {
|
|
13
13
|
Companion_instance = this;
|
|
14
|
-
this.
|
|
14
|
+
this.e5s_1 = new (CustomScalarType())('Boolean', 'kotlin.Boolean');
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
initMetadataForCompanion($);
|
|
@@ -11,7 +11,7 @@ function Companion() {
|
|
|
11
11
|
class $ {
|
|
12
12
|
constructor() {
|
|
13
13
|
Companion_instance = this;
|
|
14
|
-
this.
|
|
14
|
+
this.x5q_1 = new (CustomScalarType())('Float', 'kotlin.Double');
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
initMetadataForCompanion($);
|
|
@@ -11,7 +11,7 @@ function Companion() {
|
|
|
11
11
|
class $ {
|
|
12
12
|
constructor() {
|
|
13
13
|
Companion_instance = this;
|
|
14
|
-
this.
|
|
14
|
+
this.n5r_1 = new (CustomScalarType())('String', 'kotlin.String');
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
initMetadataForCompanion($);
|
|
@@ -14,13 +14,6 @@ function Companion() {
|
|
|
14
14
|
class $ {
|
|
15
15
|
constructor() {
|
|
16
16
|
Companion_instance = this;
|
|
17
|
-
this.m5m_1 = (new (Builder())('input')).f2t();
|
|
18
|
-
this.n5m_1 = (new (Builder())('input')).f2t();
|
|
19
|
-
this.o5m_1 = (new (Builder())('input')).f2t();
|
|
20
|
-
this.p5m_1 = (new (Builder())('input')).f2t();
|
|
21
|
-
this.q5m_1 = (new (Builder())('input')).f2t();
|
|
22
|
-
this.r5m_1 = (new (Builder())('input')).f2t();
|
|
23
|
-
this.s5m_1 = (new (Builder())('input')).f2t();
|
|
24
17
|
this.t5m_1 = (new (Builder())('input')).f2t();
|
|
25
18
|
this.u5m_1 = (new (Builder())('input')).f2t();
|
|
26
19
|
this.v5m_1 = (new (Builder())('input')).f2t();
|
|
@@ -33,7 +26,14 @@ function Companion() {
|
|
|
33
26
|
this.c5n_1 = (new (Builder())('input')).f2t();
|
|
34
27
|
this.d5n_1 = (new (Builder())('input')).f2t();
|
|
35
28
|
this.e5n_1 = (new (Builder())('input')).f2t();
|
|
36
|
-
this.f5n_1 = (new (
|
|
29
|
+
this.f5n_1 = (new (Builder())('input')).f2t();
|
|
30
|
+
this.g5n_1 = (new (Builder())('input')).f2t();
|
|
31
|
+
this.h5n_1 = (new (Builder())('input')).f2t();
|
|
32
|
+
this.i5n_1 = (new (Builder())('input')).f2t();
|
|
33
|
+
this.j5n_1 = (new (Builder())('input')).f2t();
|
|
34
|
+
this.k5n_1 = (new (Builder())('input')).f2t();
|
|
35
|
+
this.l5n_1 = (new (Builder())('input')).f2t();
|
|
36
|
+
this.m5n_1 = (new (Builder_0())('Mutation')).f2t();
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
initMetadataForCompanion($);
|
|
@@ -11,7 +11,7 @@ function Companion() {
|
|
|
11
11
|
class $ {
|
|
12
12
|
constructor() {
|
|
13
13
|
Companion_instance = this;
|
|
14
|
-
this.
|
|
14
|
+
this.a5s_1 = new (CustomScalarType())('PairingSetId', 'com.zegreatrob.coupling.json.PairingSetIdString');
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
initMetadataForCompanion($);
|
|
@@ -14,10 +14,10 @@ function Companion() {
|
|
|
14
14
|
class $ {
|
|
15
15
|
constructor() {
|
|
16
16
|
Companion_instance = this;
|
|
17
|
-
this.
|
|
18
|
-
this.
|
|
19
|
-
this.
|
|
20
|
-
this.
|
|
17
|
+
this.h5s_1 = (new (Builder())('input')).f2t();
|
|
18
|
+
this.i5s_1 = (new (Builder())('input')).f2t();
|
|
19
|
+
this.j5s_1 = (new (Builder())('input')).f2t();
|
|
20
|
+
this.k5s_1 = (new (Builder_0())('Party')).f2t();
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
initMetadataForCompanion($);
|
|
@@ -11,7 +11,7 @@ function Companion() {
|
|
|
11
11
|
class $ {
|
|
12
12
|
constructor() {
|
|
13
13
|
Companion_instance = this;
|
|
14
|
-
this.
|
|
14
|
+
this.b5s_1 = new (CustomScalarType())('PartyId', 'com.zegreatrob.coupling.json.PartyIdString');
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
initMetadataForCompanion($);
|
|
@@ -9,20 +9,20 @@ function PartyInput() {
|
|
|
9
9
|
if (PartyInputClass === VOID) {
|
|
10
10
|
class $ {
|
|
11
11
|
constructor(partyId) {
|
|
12
|
-
this.
|
|
12
|
+
this.n5t_1 = partyId;
|
|
13
13
|
}
|
|
14
14
|
toString() {
|
|
15
|
-
return 'PartyInput(partyId=' + this.
|
|
15
|
+
return 'PartyInput(partyId=' + this.n5t_1.toString() + ')';
|
|
16
16
|
}
|
|
17
17
|
hashCode() {
|
|
18
|
-
return this.
|
|
18
|
+
return this.n5t_1.hashCode();
|
|
19
19
|
}
|
|
20
20
|
equals(other) {
|
|
21
21
|
if (this === other)
|
|
22
22
|
return true;
|
|
23
23
|
if (!(other instanceof PartyInput()))
|
|
24
24
|
return false;
|
|
25
|
-
if (!this.
|
|
25
|
+
if (!this.n5t_1.equals(other.n5t_1))
|
|
26
26
|
return false;
|
|
27
27
|
return true;
|
|
28
28
|
}
|
|
@@ -11,7 +11,7 @@ function Companion() {
|
|
|
11
11
|
class $ {
|
|
12
12
|
constructor() {
|
|
13
13
|
Companion_instance = this;
|
|
14
|
-
this.
|
|
14
|
+
this.u5r_1 = new (CustomScalarType())('PinId', 'com.zegreatrob.coupling.json.PinIdString');
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
initMetadataForCompanion($);
|
|
@@ -11,7 +11,7 @@ function Companion() {
|
|
|
11
11
|
class $ {
|
|
12
12
|
constructor() {
|
|
13
13
|
Companion_instance = this;
|
|
14
|
-
this.
|
|
14
|
+
this.v5r_1 = new (CustomScalarType())('PlayerId', 'com.zegreatrob.coupling.json.PlayerIdString');
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
initMetadataForCompanion($);
|
|
@@ -14,10 +14,10 @@ function Companion() {
|
|
|
14
14
|
class $ {
|
|
15
15
|
constructor() {
|
|
16
16
|
Companion_instance = this;
|
|
17
|
-
this.
|
|
18
|
-
this.
|
|
19
|
-
this.
|
|
20
|
-
this.
|
|
17
|
+
this.b5l_1 = (new (Builder())('input')).f2t();
|
|
18
|
+
this.c5l_1 = (new (Builder())('input')).f2t();
|
|
19
|
+
this.d5l_1 = (new (Builder())('name')).f2t();
|
|
20
|
+
this.e5l_1 = (new (Builder_0())('Query')).f2t();
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
initMetadataForCompanion($);
|
package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs
CHANGED
|
@@ -15,15 +15,15 @@ function SaveContributionInput() {
|
|
|
15
15
|
if (SaveContributionInputClass === VOID) {
|
|
16
16
|
class $ {
|
|
17
17
|
constructor(partyId, contributionList) {
|
|
18
|
-
this.
|
|
19
|
-
this.
|
|
18
|
+
this.p5t_1 = partyId;
|
|
19
|
+
this.q5t_1 = contributionList;
|
|
20
20
|
}
|
|
21
21
|
toString() {
|
|
22
|
-
return 'SaveContributionInput(partyId=' + this.
|
|
22
|
+
return 'SaveContributionInput(partyId=' + this.p5t_1.toString() + ', contributionList=' + toString(this.q5t_1) + ')';
|
|
23
23
|
}
|
|
24
24
|
hashCode() {
|
|
25
|
-
var result = this.
|
|
26
|
-
result = imul(result, 31) + hashCode(this.
|
|
25
|
+
var result = this.p5t_1.hashCode();
|
|
26
|
+
result = imul(result, 31) + hashCode(this.q5t_1) | 0;
|
|
27
27
|
return result;
|
|
28
28
|
}
|
|
29
29
|
equals(other) {
|
|
@@ -31,9 +31,9 @@ function SaveContributionInput() {
|
|
|
31
31
|
return true;
|
|
32
32
|
if (!(other instanceof SaveContributionInput()))
|
|
33
33
|
return false;
|
|
34
|
-
if (!this.
|
|
34
|
+
if (!this.p5t_1.equals(other.p5t_1))
|
|
35
35
|
return false;
|
|
36
|
-
if (!equals(this.
|
|
36
|
+
if (!equals(this.q5t_1, other.q5t_1))
|
|
37
37
|
return false;
|
|
38
38
|
return true;
|
|
39
39
|
}
|
|
@@ -20,13 +20,13 @@ function AvatarType_ResponseAdapter() {
|
|
|
20
20
|
class $ {
|
|
21
21
|
y4h(reader, customScalarAdapters) {
|
|
22
22
|
var rawValue = ensureNotNull(reader.x4i());
|
|
23
|
-
return Companion_getInstance().
|
|
23
|
+
return Companion_getInstance().n5s(rawValue);
|
|
24
24
|
}
|
|
25
|
-
|
|
26
|
-
writer.z4i(value.
|
|
25
|
+
r5t(writer, customScalarAdapters, value) {
|
|
26
|
+
writer.z4i(value.q5s_1);
|
|
27
27
|
}
|
|
28
28
|
z4h(writer, customScalarAdapters, value) {
|
|
29
|
-
return this.
|
|
29
|
+
return this.r5t(writer, customScalarAdapters, value instanceof AvatarType() ? value : THROW_CCE());
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
initMetadataForObject($, 'AvatarType_ResponseAdapter', VOID, VOID, [Adapter()]);
|
|
@@ -20,13 +20,13 @@ function Badge_ResponseAdapter() {
|
|
|
20
20
|
class $ {
|
|
21
21
|
y4h(reader, customScalarAdapters) {
|
|
22
22
|
var rawValue = ensureNotNull(reader.x4i());
|
|
23
|
-
return Companion_getInstance().
|
|
23
|
+
return Companion_getInstance().n5s(rawValue);
|
|
24
24
|
}
|
|
25
|
-
|
|
26
|
-
writer.z4i(value.
|
|
25
|
+
i5q(writer, customScalarAdapters, value) {
|
|
26
|
+
writer.z4i(value.t5s_1);
|
|
27
27
|
}
|
|
28
28
|
z4h(writer, customScalarAdapters, value) {
|
|
29
|
-
return this.
|
|
29
|
+
return this.i5q(writer, customScalarAdapters, value instanceof Badge() ? value : THROW_CCE());
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
initMetadataForObject($, 'Badge_ResponseAdapter', VOID, VOID, [Adapter()]);
|
|
@@ -30,79 +30,79 @@ function ContributionInput_InputAdapter() {
|
|
|
30
30
|
y4h(reader, customScalarAdapters) {
|
|
31
31
|
throw IllegalStateException().o('Input type used in output position');
|
|
32
32
|
}
|
|
33
|
-
|
|
33
|
+
s5t(writer, customScalarAdapters, value) {
|
|
34
34
|
writer.q4u('contributionId');
|
|
35
|
-
get_contributionAdapter().z4h(writer, customScalarAdapters, value.
|
|
36
|
-
var tmp = value.
|
|
35
|
+
get_contributionAdapter().z4h(writer, customScalarAdapters, value.u5s_1);
|
|
36
|
+
var tmp = value.v5s_1;
|
|
37
37
|
if (tmp instanceof Present()) {
|
|
38
38
|
writer.q4u('hash');
|
|
39
|
-
present(get_NullableStringAdapter()).w4i(writer, customScalarAdapters, value.
|
|
39
|
+
present(get_NullableStringAdapter()).w4i(writer, customScalarAdapters, value.v5s_1);
|
|
40
40
|
}
|
|
41
|
-
var tmp_0 = value.
|
|
41
|
+
var tmp_0 = value.w5s_1;
|
|
42
42
|
if (tmp_0 instanceof Present()) {
|
|
43
43
|
writer.q4u('dateTime');
|
|
44
|
-
present(nullable(KotlinInstantAdapter_instance)).w4i(writer, customScalarAdapters, value.
|
|
44
|
+
present(nullable(KotlinInstantAdapter_instance)).w4i(writer, customScalarAdapters, value.w5s_1);
|
|
45
45
|
}
|
|
46
|
-
var tmp_1 = value.
|
|
46
|
+
var tmp_1 = value.x5s_1;
|
|
47
47
|
if (tmp_1 instanceof Present()) {
|
|
48
48
|
writer.q4u('ease');
|
|
49
|
-
present(get_NullableIntAdapter()).w4i(writer, customScalarAdapters, value.
|
|
49
|
+
present(get_NullableIntAdapter()).w4i(writer, customScalarAdapters, value.x5s_1);
|
|
50
50
|
}
|
|
51
|
-
var tmp_2 = value.
|
|
51
|
+
var tmp_2 = value.y5s_1;
|
|
52
52
|
if (tmp_2 instanceof Present()) {
|
|
53
53
|
writer.q4u('story');
|
|
54
|
-
present(get_NullableStringAdapter()).w4i(writer, customScalarAdapters, value.
|
|
54
|
+
present(get_NullableStringAdapter()).w4i(writer, customScalarAdapters, value.y5s_1);
|
|
55
55
|
}
|
|
56
|
-
var tmp_3 = value.
|
|
56
|
+
var tmp_3 = value.z5s_1;
|
|
57
57
|
if (tmp_3 instanceof Present()) {
|
|
58
58
|
writer.q4u('link');
|
|
59
|
-
present(get_NullableStringAdapter()).w4i(writer, customScalarAdapters, value.
|
|
59
|
+
present(get_NullableStringAdapter()).w4i(writer, customScalarAdapters, value.z5s_1);
|
|
60
60
|
}
|
|
61
|
-
var tmp_4 = value.
|
|
61
|
+
var tmp_4 = value.a5t_1;
|
|
62
62
|
if (tmp_4 instanceof Present()) {
|
|
63
63
|
writer.q4u('label');
|
|
64
|
-
present(get_NullableStringAdapter()).w4i(writer, customScalarAdapters, value.
|
|
64
|
+
present(get_NullableStringAdapter()).w4i(writer, customScalarAdapters, value.a5t_1);
|
|
65
65
|
}
|
|
66
|
-
var tmp_5 = value.
|
|
66
|
+
var tmp_5 = value.b5t_1;
|
|
67
67
|
if (tmp_5 instanceof Present()) {
|
|
68
68
|
writer.q4u('semver');
|
|
69
|
-
present(get_NullableStringAdapter()).w4i(writer, customScalarAdapters, value.
|
|
69
|
+
present(get_NullableStringAdapter()).w4i(writer, customScalarAdapters, value.b5t_1);
|
|
70
70
|
}
|
|
71
|
-
var tmp_6 = value.
|
|
71
|
+
var tmp_6 = value.c5t_1;
|
|
72
72
|
if (tmp_6 instanceof Present()) {
|
|
73
73
|
writer.q4u('firstCommit');
|
|
74
|
-
present(get_NullableStringAdapter()).w4i(writer, customScalarAdapters, value.
|
|
74
|
+
present(get_NullableStringAdapter()).w4i(writer, customScalarAdapters, value.c5t_1);
|
|
75
75
|
}
|
|
76
|
-
var tmp_7 = value.
|
|
76
|
+
var tmp_7 = value.d5t_1;
|
|
77
77
|
if (tmp_7 instanceof Present()) {
|
|
78
78
|
writer.q4u('firstCommitDateTime');
|
|
79
|
-
present(nullable(KotlinInstantAdapter_instance)).w4i(writer, customScalarAdapters, value.
|
|
79
|
+
present(nullable(KotlinInstantAdapter_instance)).w4i(writer, customScalarAdapters, value.d5t_1);
|
|
80
80
|
}
|
|
81
|
-
var tmp_8 = value.
|
|
81
|
+
var tmp_8 = value.e5t_1;
|
|
82
82
|
if (tmp_8 instanceof Present()) {
|
|
83
83
|
writer.q4u('integrationDateTime');
|
|
84
|
-
present(nullable(KotlinInstantAdapter_instance)).w4i(writer, customScalarAdapters, value.
|
|
84
|
+
present(nullable(KotlinInstantAdapter_instance)).w4i(writer, customScalarAdapters, value.e5t_1);
|
|
85
85
|
}
|
|
86
|
-
var tmp_9 = value.
|
|
86
|
+
var tmp_9 = value.f5t_1;
|
|
87
87
|
if (tmp_9 instanceof Present()) {
|
|
88
88
|
writer.q4u('cycleTime');
|
|
89
|
-
present(nullable(KotlinDurationAdapter_instance)).w4i(writer, customScalarAdapters, value.
|
|
89
|
+
present(nullable(KotlinDurationAdapter_instance)).w4i(writer, customScalarAdapters, value.f5t_1);
|
|
90
90
|
}
|
|
91
91
|
writer.q4u('participantEmails');
|
|
92
|
-
list(get_StringAdapter()).u4i(writer, customScalarAdapters, value.
|
|
93
|
-
var tmp_10 = value.
|
|
92
|
+
list(get_StringAdapter()).u4i(writer, customScalarAdapters, value.g5t_1);
|
|
93
|
+
var tmp_10 = value.h5t_1;
|
|
94
94
|
if (tmp_10 instanceof Present()) {
|
|
95
95
|
writer.q4u('name');
|
|
96
|
-
present(get_NullableStringAdapter()).w4i(writer, customScalarAdapters, value.
|
|
96
|
+
present(get_NullableStringAdapter()).w4i(writer, customScalarAdapters, value.h5t_1);
|
|
97
97
|
}
|
|
98
|
-
var tmp_11 = value.
|
|
98
|
+
var tmp_11 = value.i5t_1;
|
|
99
99
|
if (tmp_11 instanceof Present()) {
|
|
100
100
|
writer.q4u('commitCount');
|
|
101
|
-
present(get_NullableIntAdapter()).w4i(writer, customScalarAdapters, value.
|
|
101
|
+
present(get_NullableIntAdapter()).w4i(writer, customScalarAdapters, value.i5t_1);
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
104
|
z4h(writer, customScalarAdapters, value) {
|
|
105
|
-
return this.
|
|
105
|
+
return this.s5t(writer, customScalarAdapters, value instanceof ContributionInput() ? value : THROW_CCE());
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
initMetadataForObject($, 'ContributionInput_InputAdapter', VOID, VOID, [Adapter()]);
|