@continuous-excellence/coupling-cli 1.1.755 → 1.1.757
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-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +2 -2
- 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/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
|
@@ -21,7 +21,7 @@ var DefaultSdkProviderClass;
|
|
|
21
21
|
function DefaultSdkProvider() {
|
|
22
22
|
if (DefaultSdkProviderClass === VOID) {
|
|
23
23
|
class $ {
|
|
24
|
-
*
|
|
24
|
+
*v75(env, echo, $completion) {
|
|
25
25
|
return yield* loadSdk(env, echo, $completion);
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -39,7 +39,7 @@ function cannonSdkProvider(cannon) {
|
|
|
39
39
|
}
|
|
40
40
|
function *withSdk(env, echo, sdkProvider, doWork, $completion) {
|
|
41
41
|
sdkProvider = sdkProvider === VOID ? DefaultSdkProvider_instance : sdkProvider;
|
|
42
|
-
var tmp0_safe_receiver = yield* sdkProvider.
|
|
42
|
+
var tmp0_safe_receiver = yield* sdkProvider.v75(env, echo, $completion);
|
|
43
43
|
var tmp;
|
|
44
44
|
if (tmp0_safe_receiver == null) {
|
|
45
45
|
tmp = null;
|
|
@@ -51,7 +51,7 @@ function *withSdk(env, echo, sdkProvider, doWork, $completion) {
|
|
|
51
51
|
return tmp;
|
|
52
52
|
}
|
|
53
53
|
function *loadSdk(env, echo, $completion) {
|
|
54
|
-
var environment = Companion_getInstance().
|
|
54
|
+
var environment = Companion_getInstance().h73_1.j4(env);
|
|
55
55
|
if (!(environment == null)) {
|
|
56
56
|
var accessToken = yield* getAccessToken($completion);
|
|
57
57
|
if (accessToken == null) {
|
|
@@ -71,17 +71,17 @@ function actionCannon(accessToken, environment) {
|
|
|
71
71
|
return sdk;
|
|
72
72
|
}
|
|
73
73
|
function audienceHost(_this__u8e3s4) {
|
|
74
|
-
return 'https://' + getHost(_this__u8e3s4.
|
|
74
|
+
return 'https://' + getHost(_this__u8e3s4.j73_1);
|
|
75
75
|
}
|
|
76
76
|
var cannonSdkProvider$1Class;
|
|
77
77
|
function cannonSdkProvider$1() {
|
|
78
78
|
if (cannonSdkProvider$1Class === VOID) {
|
|
79
79
|
class $ {
|
|
80
80
|
constructor($cannon) {
|
|
81
|
-
this.
|
|
81
|
+
this.w75_1 = $cannon;
|
|
82
82
|
}
|
|
83
|
-
*
|
|
84
|
-
var tmp0_elvis_lhs = this.
|
|
83
|
+
*v75(env, echo, $completion) {
|
|
84
|
+
var tmp0_elvis_lhs = this.w75_1;
|
|
85
85
|
return tmp0_elvis_lhs == null ? (yield* /*#__NOINLINE__*/loadSdk(env, echo, $completion)) : tmp0_elvis_lhs;
|
|
86
86
|
}
|
|
87
87
|
}
|
|
@@ -27,20 +27,20 @@ function Data() {
|
|
|
27
27
|
if (DataClass === VOID) {
|
|
28
28
|
class $ {
|
|
29
29
|
constructor(partyList) {
|
|
30
|
-
this.
|
|
30
|
+
this.b72_1 = partyList;
|
|
31
31
|
}
|
|
32
32
|
toString() {
|
|
33
|
-
return 'Data(partyList=' + toString(this.
|
|
33
|
+
return 'Data(partyList=' + toString(this.b72_1) + ')';
|
|
34
34
|
}
|
|
35
35
|
hashCode() {
|
|
36
|
-
return hashCode(this.
|
|
36
|
+
return hashCode(this.b72_1);
|
|
37
37
|
}
|
|
38
38
|
equals(other) {
|
|
39
39
|
if (this === other)
|
|
40
40
|
return true;
|
|
41
41
|
if (!(other instanceof Data()))
|
|
42
42
|
return false;
|
|
43
|
-
if (!equals(this.
|
|
43
|
+
if (!equals(this.b72_1, other.b72_1))
|
|
44
44
|
return false;
|
|
45
45
|
return true;
|
|
46
46
|
}
|
|
@@ -55,15 +55,15 @@ function PartyList() {
|
|
|
55
55
|
if (PartyListClass === VOID) {
|
|
56
56
|
class $ {
|
|
57
57
|
constructor(__typename, partyDetails) {
|
|
58
|
-
this.
|
|
59
|
-
this.
|
|
58
|
+
this.c72_1 = __typename;
|
|
59
|
+
this.d72_1 = partyDetails;
|
|
60
60
|
}
|
|
61
61
|
toString() {
|
|
62
|
-
return 'PartyList(__typename=' + this.
|
|
62
|
+
return 'PartyList(__typename=' + this.c72_1 + ', partyDetails=' + this.d72_1.toString() + ')';
|
|
63
63
|
}
|
|
64
64
|
hashCode() {
|
|
65
|
-
var result = getStringHashCode(this.
|
|
66
|
-
result = imul(result, 31) + this.
|
|
65
|
+
var result = getStringHashCode(this.c72_1);
|
|
66
|
+
result = imul(result, 31) + this.d72_1.hashCode() | 0;
|
|
67
67
|
return result;
|
|
68
68
|
}
|
|
69
69
|
equals(other) {
|
|
@@ -71,9 +71,9 @@ function PartyList() {
|
|
|
71
71
|
return true;
|
|
72
72
|
if (!(other instanceof PartyList()))
|
|
73
73
|
return false;
|
|
74
|
-
if (!(this.
|
|
74
|
+
if (!(this.c72_1 === other.c72_1))
|
|
75
75
|
return false;
|
|
76
|
-
if (!this.
|
|
76
|
+
if (!this.d72_1.equals(other.d72_1))
|
|
77
77
|
return false;
|
|
78
78
|
return true;
|
|
79
79
|
}
|
|
@@ -89,12 +89,12 @@ function Companion() {
|
|
|
89
89
|
class $ {
|
|
90
90
|
constructor() {
|
|
91
91
|
Companion_instance = this;
|
|
92
|
-
this.
|
|
93
|
-
this.
|
|
94
|
-
this.
|
|
95
|
-
this.
|
|
92
|
+
this.e72_1 = obj(Data_getInstance());
|
|
93
|
+
this.f72_1 = (new (Builder())('data', Companion_getInstance().e5l_1)).y4n(PartyListQuerySelections_getInstance().j72_1).f2t();
|
|
94
|
+
this.g72_1 = '4f3dd94849aec46c63247323851c79a17e0dc9822385331bb7f50b02e7cb1b7f';
|
|
95
|
+
this.h72_1 = 'partyListQuery';
|
|
96
96
|
}
|
|
97
|
-
|
|
97
|
+
i5l() {
|
|
98
98
|
return 'query partyListQuery { partyList { __typename ...PartyDetails } } fragment PartyDetails on Party { id name email pairingRule badgesEnabled defaultBadgeName alternateBadgeName callSignsEnabled animationsEnabled animationSpeed }';
|
|
99
99
|
}
|
|
100
100
|
}
|
|
@@ -122,25 +122,25 @@ function PartyListQuery() {
|
|
|
122
122
|
hashCode() {
|
|
123
123
|
return getKClassFromExpression(this).hashCode();
|
|
124
124
|
}
|
|
125
|
-
|
|
125
|
+
k5l() {
|
|
126
126
|
return '4f3dd94849aec46c63247323851c79a17e0dc9822385331bb7f50b02e7cb1b7f';
|
|
127
127
|
}
|
|
128
128
|
operationId() {
|
|
129
|
-
return this.
|
|
129
|
+
return this.k5l();
|
|
130
130
|
}
|
|
131
131
|
q4r() {
|
|
132
|
-
return Companion_getInstance_0().
|
|
132
|
+
return Companion_getInstance_0().i5l();
|
|
133
133
|
}
|
|
134
|
-
|
|
134
|
+
l5l() {
|
|
135
135
|
return 'partyListQuery';
|
|
136
136
|
}
|
|
137
137
|
operationName() {
|
|
138
|
-
return this.
|
|
138
|
+
return this.l5l();
|
|
139
139
|
}
|
|
140
140
|
v4q(writer, customScalarAdapters, withDefaultValues) {
|
|
141
141
|
}
|
|
142
142
|
u4q() {
|
|
143
|
-
return Companion_getInstance_0().
|
|
143
|
+
return Companion_getInstance_0().e72_1;
|
|
144
144
|
}
|
|
145
145
|
}
|
|
146
146
|
initMetadataForClass($, 'PartyListQuery', PartyListQuery, VOID, [Query()]);
|
|
@@ -28,20 +28,20 @@ function Data() {
|
|
|
28
28
|
if (DataClass === VOID) {
|
|
29
29
|
class $ {
|
|
30
30
|
constructor(party) {
|
|
31
|
-
this.
|
|
31
|
+
this.k72_1 = party;
|
|
32
32
|
}
|
|
33
33
|
toString() {
|
|
34
|
-
return 'Data(party=' + toString(this.
|
|
34
|
+
return 'Data(party=' + toString(this.k72_1) + ')';
|
|
35
35
|
}
|
|
36
36
|
hashCode() {
|
|
37
|
-
return this.
|
|
37
|
+
return this.k72_1 == null ? 0 : this.k72_1.hashCode();
|
|
38
38
|
}
|
|
39
39
|
equals(other) {
|
|
40
40
|
if (this === other)
|
|
41
41
|
return true;
|
|
42
42
|
if (!(other instanceof Data()))
|
|
43
43
|
return false;
|
|
44
|
-
if (!equals(this.
|
|
44
|
+
if (!equals(this.k72_1, other.k72_1))
|
|
45
45
|
return false;
|
|
46
46
|
return true;
|
|
47
47
|
}
|
|
@@ -56,20 +56,20 @@ function Party() {
|
|
|
56
56
|
if (PartyClass === VOID) {
|
|
57
57
|
class $ {
|
|
58
58
|
constructor(playerList) {
|
|
59
|
-
this.
|
|
59
|
+
this.l72_1 = playerList;
|
|
60
60
|
}
|
|
61
61
|
toString() {
|
|
62
|
-
return 'Party(playerList=' + toString_0(this.
|
|
62
|
+
return 'Party(playerList=' + toString_0(this.l72_1) + ')';
|
|
63
63
|
}
|
|
64
64
|
hashCode() {
|
|
65
|
-
return hashCode(this.
|
|
65
|
+
return hashCode(this.l72_1);
|
|
66
66
|
}
|
|
67
67
|
equals(other) {
|
|
68
68
|
if (this === other)
|
|
69
69
|
return true;
|
|
70
70
|
if (!(other instanceof Party()))
|
|
71
71
|
return false;
|
|
72
|
-
if (!equals(this.
|
|
72
|
+
if (!equals(this.l72_1, other.l72_1))
|
|
73
73
|
return false;
|
|
74
74
|
return true;
|
|
75
75
|
}
|
|
@@ -84,15 +84,15 @@ function PlayerList() {
|
|
|
84
84
|
if (PlayerListClass === VOID) {
|
|
85
85
|
class $ {
|
|
86
86
|
constructor(__typename, playerDetails) {
|
|
87
|
-
this.
|
|
88
|
-
this.
|
|
87
|
+
this.m72_1 = __typename;
|
|
88
|
+
this.n72_1 = playerDetails;
|
|
89
89
|
}
|
|
90
90
|
toString() {
|
|
91
|
-
return 'PlayerList(__typename=' + this.
|
|
91
|
+
return 'PlayerList(__typename=' + this.m72_1 + ', playerDetails=' + this.n72_1.toString() + ')';
|
|
92
92
|
}
|
|
93
93
|
hashCode() {
|
|
94
|
-
var result = getStringHashCode(this.
|
|
95
|
-
result = imul(result, 31) + this.
|
|
94
|
+
var result = getStringHashCode(this.m72_1);
|
|
95
|
+
result = imul(result, 31) + this.n72_1.hashCode() | 0;
|
|
96
96
|
return result;
|
|
97
97
|
}
|
|
98
98
|
equals(other) {
|
|
@@ -100,9 +100,9 @@ function PlayerList() {
|
|
|
100
100
|
return true;
|
|
101
101
|
if (!(other instanceof PlayerList()))
|
|
102
102
|
return false;
|
|
103
|
-
if (!(this.
|
|
103
|
+
if (!(this.m72_1 === other.m72_1))
|
|
104
104
|
return false;
|
|
105
|
-
if (!this.
|
|
105
|
+
if (!this.n72_1.equals(other.n72_1))
|
|
106
106
|
return false;
|
|
107
107
|
return true;
|
|
108
108
|
}
|
|
@@ -118,12 +118,12 @@ function Companion() {
|
|
|
118
118
|
class $ {
|
|
119
119
|
constructor() {
|
|
120
120
|
Companion_instance = this;
|
|
121
|
-
this.
|
|
122
|
-
this.
|
|
123
|
-
this.
|
|
124
|
-
this.
|
|
121
|
+
this.o72_1 = obj(Data_getInstance());
|
|
122
|
+
this.p72_1 = (new (Builder())('data', Companion_getInstance().e5l_1)).y4n(PlayersQuerySelections_getInstance().u72_1).f2t();
|
|
123
|
+
this.q72_1 = '2470fab9120a545b0fdd866f456fe353ecaf9c55139b85bf385a58c6447cdee2';
|
|
124
|
+
this.r72_1 = 'playersQuery';
|
|
125
125
|
}
|
|
126
|
-
|
|
126
|
+
i5l() {
|
|
127
127
|
return 'query playersQuery($input: PartyInput!) { party(input: $input) { playerList { __typename ...PlayerDetails } } } fragment PlayerDetails on Player { id name email badge callSignAdjective callSignNoun imageURL avatarType unvalidatedEmails }';
|
|
128
128
|
}
|
|
129
129
|
}
|
|
@@ -144,41 +144,41 @@ function PlayersQuery() {
|
|
|
144
144
|
class $ {
|
|
145
145
|
constructor(input) {
|
|
146
146
|
Companion_getInstance_0();
|
|
147
|
-
this.
|
|
147
|
+
this.v72_1 = input;
|
|
148
148
|
}
|
|
149
|
-
|
|
149
|
+
k5l() {
|
|
150
150
|
return '2470fab9120a545b0fdd866f456fe353ecaf9c55139b85bf385a58c6447cdee2';
|
|
151
151
|
}
|
|
152
152
|
operationId() {
|
|
153
|
-
return this.
|
|
153
|
+
return this.k5l();
|
|
154
154
|
}
|
|
155
155
|
q4r() {
|
|
156
|
-
return Companion_getInstance_0().
|
|
156
|
+
return Companion_getInstance_0().i5l();
|
|
157
157
|
}
|
|
158
|
-
|
|
158
|
+
l5l() {
|
|
159
159
|
return 'playersQuery';
|
|
160
160
|
}
|
|
161
161
|
operationName() {
|
|
162
|
-
return this.
|
|
162
|
+
return this.l5l();
|
|
163
163
|
}
|
|
164
164
|
v4q(writer, customScalarAdapters, withDefaultValues) {
|
|
165
|
-
PlayersQuery_VariablesAdapter_instance.
|
|
165
|
+
PlayersQuery_VariablesAdapter_instance.w72(writer, this, customScalarAdapters, withDefaultValues);
|
|
166
166
|
}
|
|
167
167
|
u4q() {
|
|
168
|
-
return Companion_getInstance_0().
|
|
168
|
+
return Companion_getInstance_0().o72_1;
|
|
169
169
|
}
|
|
170
170
|
toString() {
|
|
171
|
-
return 'PlayersQuery(input=' + this.
|
|
171
|
+
return 'PlayersQuery(input=' + this.v72_1.toString() + ')';
|
|
172
172
|
}
|
|
173
173
|
hashCode() {
|
|
174
|
-
return this.
|
|
174
|
+
return this.v72_1.hashCode();
|
|
175
175
|
}
|
|
176
176
|
equals(other) {
|
|
177
177
|
if (this === other)
|
|
178
178
|
return true;
|
|
179
179
|
if (!(other instanceof PlayersQuery()))
|
|
180
180
|
return false;
|
|
181
|
-
if (!this.
|
|
181
|
+
if (!this.v72_1.equals(other.v72_1))
|
|
182
182
|
return false;
|
|
183
183
|
return true;
|
|
184
184
|
}
|
|
@@ -25,12 +25,12 @@ function Data_0() {
|
|
|
25
25
|
class $ {
|
|
26
26
|
constructor() {
|
|
27
27
|
Data_instance = this;
|
|
28
|
-
this.
|
|
28
|
+
this.x72_1 = listOf('partyList');
|
|
29
29
|
}
|
|
30
30
|
y4h(reader, customScalarAdapters) {
|
|
31
31
|
var _partyList = null;
|
|
32
32
|
$l$loop: while (true) {
|
|
33
|
-
if (reader.s4w(this.
|
|
33
|
+
if (reader.s4w(this.x72_1) === 0)
|
|
34
34
|
_partyList = list(obj(PartyList_getInstance(), true)).y4h(reader, customScalarAdapters);
|
|
35
35
|
else
|
|
36
36
|
break $l$loop;
|
|
@@ -44,12 +44,12 @@ function Data_0() {
|
|
|
44
44
|
}
|
|
45
45
|
return new (Data())(tmp);
|
|
46
46
|
}
|
|
47
|
-
|
|
47
|
+
y72(writer, customScalarAdapters, value) {
|
|
48
48
|
writer.q4u('partyList');
|
|
49
|
-
list(obj(PartyList_getInstance(), true)).u4i(writer, customScalarAdapters, value.
|
|
49
|
+
list(obj(PartyList_getInstance(), true)).u4i(writer, customScalarAdapters, value.b72_1);
|
|
50
50
|
}
|
|
51
51
|
z4h(writer, customScalarAdapters, value) {
|
|
52
|
-
return this.
|
|
52
|
+
return this.y72(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
|
|
@@ -69,12 +69,12 @@ function PartyList_0() {
|
|
|
69
69
|
class $ {
|
|
70
70
|
constructor() {
|
|
71
71
|
PartyList_instance = this;
|
|
72
|
-
this.
|
|
72
|
+
this.z72_1 = listOf('__typename');
|
|
73
73
|
}
|
|
74
74
|
y4h(reader, customScalarAdapters) {
|
|
75
75
|
var __typename = null;
|
|
76
76
|
$l$loop: while (true) {
|
|
77
|
-
if (reader.s4w(this.
|
|
77
|
+
if (reader.s4w(this.z72_1) === 0)
|
|
78
78
|
__typename = get_StringAdapter().y4h(reader, customScalarAdapters);
|
|
79
79
|
else
|
|
80
80
|
break $l$loop;
|
|
@@ -90,13 +90,13 @@ function PartyList_0() {
|
|
|
90
90
|
}
|
|
91
91
|
return new (PartyList())(tmp, _partyDetails);
|
|
92
92
|
}
|
|
93
|
-
|
|
93
|
+
a73(writer, customScalarAdapters, value) {
|
|
94
94
|
writer.q4u('__typename');
|
|
95
|
-
get_StringAdapter().z4h(writer, customScalarAdapters, value.
|
|
96
|
-
PartyDetails_getInstance().
|
|
95
|
+
get_StringAdapter().z4h(writer, customScalarAdapters, value.c72_1);
|
|
96
|
+
PartyDetails_getInstance().n5o(writer, customScalarAdapters, value.d72_1);
|
|
97
97
|
}
|
|
98
98
|
z4h(writer, customScalarAdapters, value) {
|
|
99
|
-
return this.
|
|
99
|
+
return this.a73(writer, customScalarAdapters, value instanceof PartyList() ? value : THROW_CCE());
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
102
|
initMetadataForObject($, 'PartyList', VOID, VOID, [Adapter()]);
|
package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs
CHANGED
|
@@ -27,24 +27,24 @@ function Data_0() {
|
|
|
27
27
|
class $ {
|
|
28
28
|
constructor() {
|
|
29
29
|
Data_instance = this;
|
|
30
|
-
this.
|
|
30
|
+
this.b73_1 = listOf('party');
|
|
31
31
|
}
|
|
32
32
|
y4h(reader, customScalarAdapters) {
|
|
33
33
|
var _party = null;
|
|
34
34
|
$l$loop: while (true) {
|
|
35
|
-
if (reader.s4w(this.
|
|
35
|
+
if (reader.s4w(this.b73_1) === 0)
|
|
36
36
|
_party = nullable(obj(Party_getInstance())).y4h(reader, customScalarAdapters);
|
|
37
37
|
else
|
|
38
38
|
break $l$loop;
|
|
39
39
|
}
|
|
40
40
|
return new (Data())(_party);
|
|
41
41
|
}
|
|
42
|
-
|
|
42
|
+
c73(writer, customScalarAdapters, value) {
|
|
43
43
|
writer.q4u('party');
|
|
44
|
-
nullable(obj(Party_getInstance())).c4i(writer, customScalarAdapters, value.
|
|
44
|
+
nullable(obj(Party_getInstance())).c4i(writer, customScalarAdapters, value.k72_1);
|
|
45
45
|
}
|
|
46
46
|
z4h(writer, customScalarAdapters, value) {
|
|
47
|
-
return this.
|
|
47
|
+
return this.c73(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
|
|
@@ -64,12 +64,12 @@ function Party_0() {
|
|
|
64
64
|
class $ {
|
|
65
65
|
constructor() {
|
|
66
66
|
Party_instance = this;
|
|
67
|
-
this.
|
|
67
|
+
this.d73_1 = listOf('playerList');
|
|
68
68
|
}
|
|
69
69
|
y4h(reader, customScalarAdapters) {
|
|
70
70
|
var _playerList = null;
|
|
71
71
|
$l$loop: while (true) {
|
|
72
|
-
if (reader.s4w(this.
|
|
72
|
+
if (reader.s4w(this.d73_1) === 0)
|
|
73
73
|
_playerList = list(obj(PlayerList_getInstance(), true)).y4h(reader, customScalarAdapters);
|
|
74
74
|
else
|
|
75
75
|
break $l$loop;
|
|
@@ -83,12 +83,12 @@ function Party_0() {
|
|
|
83
83
|
}
|
|
84
84
|
return new (Party())(tmp);
|
|
85
85
|
}
|
|
86
|
-
|
|
86
|
+
e73(writer, customScalarAdapters, value) {
|
|
87
87
|
writer.q4u('playerList');
|
|
88
|
-
list(obj(PlayerList_getInstance(), true)).u4i(writer, customScalarAdapters, value.
|
|
88
|
+
list(obj(PlayerList_getInstance(), true)).u4i(writer, customScalarAdapters, value.l72_1);
|
|
89
89
|
}
|
|
90
90
|
z4h(writer, customScalarAdapters, value) {
|
|
91
|
-
return this.
|
|
91
|
+
return this.e73(writer, customScalarAdapters, value instanceof Party() ? value : THROW_CCE());
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
initMetadataForObject($, 'Party', VOID, VOID, [Adapter()]);
|
|
@@ -108,12 +108,12 @@ function PlayerList_0() {
|
|
|
108
108
|
class $ {
|
|
109
109
|
constructor() {
|
|
110
110
|
PlayerList_instance = this;
|
|
111
|
-
this.
|
|
111
|
+
this.f73_1 = listOf('__typename');
|
|
112
112
|
}
|
|
113
113
|
y4h(reader, customScalarAdapters) {
|
|
114
114
|
var __typename = null;
|
|
115
115
|
$l$loop: while (true) {
|
|
116
|
-
if (reader.s4w(this.
|
|
116
|
+
if (reader.s4w(this.f73_1) === 0)
|
|
117
117
|
__typename = get_StringAdapter().y4h(reader, customScalarAdapters);
|
|
118
118
|
else
|
|
119
119
|
break $l$loop;
|
|
@@ -129,13 +129,13 @@ function PlayerList_0() {
|
|
|
129
129
|
}
|
|
130
130
|
return new (PlayerList())(tmp, _playerDetails);
|
|
131
131
|
}
|
|
132
|
-
|
|
132
|
+
g73(writer, customScalarAdapters, value) {
|
|
133
133
|
writer.q4u('__typename');
|
|
134
|
-
get_StringAdapter().z4h(writer, customScalarAdapters, value.
|
|
135
|
-
PlayerDetails_getInstance().
|
|
134
|
+
get_StringAdapter().z4h(writer, customScalarAdapters, value.m72_1);
|
|
135
|
+
PlayerDetails_getInstance().i5r(writer, customScalarAdapters, value.n72_1);
|
|
136
136
|
}
|
|
137
137
|
z4h(writer, customScalarAdapters, value) {
|
|
138
|
-
return this.
|
|
138
|
+
return this.g73(writer, customScalarAdapters, value instanceof PlayerList() ? value : THROW_CCE());
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
141
|
initMetadataForObject($, 'PlayerList', VOID, VOID, [Adapter()]);
|
|
@@ -11,9 +11,9 @@ var PlayersQuery_VariablesAdapterClass;
|
|
|
11
11
|
function PlayersQuery_VariablesAdapter() {
|
|
12
12
|
if (PlayersQuery_VariablesAdapterClass === VOID) {
|
|
13
13
|
class $ {
|
|
14
|
-
|
|
14
|
+
w72(writer, value, customScalarAdapters, withDefaultValues) {
|
|
15
15
|
writer.q4u('input');
|
|
16
|
-
obj(PartyInput_InputAdapter_instance).z4h(writer, customScalarAdapters, value.
|
|
16
|
+
obj(PartyInput_InputAdapter_instance).z4h(writer, customScalarAdapters, value.v72_1);
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
initMetadataForObject($, 'PlayersQuery_VariablesAdapter');
|
package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.mjs
CHANGED
|
@@ -5,7 +5,10 @@ import {
|
|
|
5
5
|
Builder2iaenv1j4gk4w as Builder_0,
|
|
6
6
|
lista11lrkbcitk as list,
|
|
7
7
|
} from '../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs';
|
|
8
|
-
import {
|
|
8
|
+
import {
|
|
9
|
+
setOf1u3mizs95ngxo as setOf,
|
|
10
|
+
listOfvhqybd2zx248 as listOf,
|
|
11
|
+
} from '../../../../../../../kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs';
|
|
9
12
|
import { PartyDetailsSelections_getInstance1neli8olcqaue as PartyDetailsSelections_getInstance } from '../../../../../../../Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PartyDetailsSelections.mjs';
|
|
10
13
|
import { listOf1jh22dvmctj1r as listOf_0 } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs';
|
|
11
14
|
import { Companion_getInstanceqecdqvit6tn8 as Companion_getInstance_0 } from '../../../../../../../Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Party.mjs';
|
|
@@ -21,8 +24,8 @@ function PartyListQuerySelections() {
|
|
|
21
24
|
class $ {
|
|
22
25
|
constructor() {
|
|
23
26
|
PartyListQuerySelections_instance = this;
|
|
24
|
-
this.
|
|
25
|
-
this.
|
|
27
|
+
this.i72_1 = listOf_0([(new (Builder())('__typename', notNull(Companion_getInstance().n5r_1))).f2t(), (new (Builder_0())('Party', setOf('Party'))).y4n(PartyDetailsSelections_getInstance().d5s_1).f2t()]);
|
|
28
|
+
this.j72_1 = listOf((new (Builder())('partyList', notNull(list(notNull(Companion_getInstance_0().k5s_1))))).y4n(this.i72_1).f2t());
|
|
26
29
|
}
|
|
27
30
|
}
|
|
28
31
|
initMetadataForObject($, 'PartyListQuerySelections');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../cli/build/generated/source/apollo/service/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../cli/build/generated/source/apollo/service/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;QAkBqD,sBAC7C,CAGE,iBAFO,YAEP,EAD0B,gCAAL,KAAK,CAC1B,QAHF,EAOE,mBAFgB,OAEhB,EADmB,MAAM,OAAN,CACnB,4CAAkC,KAAlC,CACD,MARD,CAD6C,C;QAYN,oBAIrC,iBAFO,WAEP,EADmC,QAAP,KAAV,kCAAL,KAAK,CAAU,CAAO,CACnC,OAAW,IAAX,CAAW,KAAX,CACD,MALsC,C;;;;;;;;;;;;;;;;;;"}
|
package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.mjs
CHANGED
|
@@ -7,7 +7,10 @@ import {
|
|
|
7
7
|
Builder3t31vflw4km89 as Builder_1,
|
|
8
8
|
CompiledVariablecaz6ndkw7us2 as CompiledVariable,
|
|
9
9
|
} from '../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs';
|
|
10
|
-
import {
|
|
10
|
+
import {
|
|
11
|
+
setOf1u3mizs95ngxo as setOf,
|
|
12
|
+
listOfvhqybd2zx248 as listOf,
|
|
13
|
+
} from '../../../../../../../kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs';
|
|
11
14
|
import { PlayerDetailsSelections_getInstance2dwje9gfjjm3p as PlayerDetailsSelections_getInstance } from '../../../../../../../Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PlayerDetailsSelections.mjs';
|
|
12
15
|
import { listOf1jh22dvmctj1r as listOf_0 } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs';
|
|
13
16
|
import { Companion_getInstance3k44s05w9rqmk as Companion_getInstance_0 } from '../../../../../../../Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Player.mjs';
|
|
@@ -25,9 +28,9 @@ function PlayersQuerySelections() {
|
|
|
25
28
|
class $ {
|
|
26
29
|
constructor() {
|
|
27
30
|
PlayersQuerySelections_instance = this;
|
|
28
|
-
this.
|
|
29
|
-
this.
|
|
30
|
-
this.
|
|
31
|
+
this.s72_1 = listOf_0([(new (Builder())('__typename', notNull(Companion_getInstance().n5r_1))).f2t(), (new (Builder_0())('Player', setOf('Player'))).y4n(PlayerDetailsSelections_getInstance().f5s_1).f2t()]);
|
|
32
|
+
this.t72_1 = listOf((new (Builder())('playerList', notNull(list(notNull(Companion_getInstance_0().o5t_1))))).y4n(this.s72_1).f2t());
|
|
33
|
+
this.u72_1 = listOf((new (Builder())('party', Companion_getInstance_1().k5s_1)).x4n(listOf((new (Builder_1())(Companion_getInstance_2().b5l_1)).i4o(new (CompiledVariable())('input')).f2t())).y4n(this.t72_1).f2t());
|
|
31
34
|
}
|
|
32
35
|
}
|
|
33
36
|
initMetadataForObject($, 'PlayersQuerySelections');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../cli/build/generated/source/apollo/service/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../cli/build/generated/source/apollo/service/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAsBsD,sBAC9C,CAGE,iBAFO,YAEP,EAD0B,gCAAL,KAAK,CAC1B,QAHF,EAOE,mBAFgB,QAEhB,EADmB,MAAM,QAAN,CACnB,6CAAmC,KAAnC,CACD,MARD,CAD8C,C;QAYL,oBAIvC,iBAFO,YAEP,EADoC,QAAP,KAAV,kCAAL,KAAK,CAAU,CAAO,CACpC,OAAW,IAAX,CAAW,KAAX,CACD,MALwC,C;QAQF,oBAIrC,iBAFO,OAEP,4BADa,KACb,OAAU,OACoC,6CAAf,KAAe,gCAAuB,OAAvB,EAAiC,MADrE,CAAV,CAGD,KAAW,IAAX,CAAW,KAAX,CACA,MARsC,C;;;;;;;;;;;;;;;;;;"}
|