@continuous-excellence/coupling-cli 1.1.754 → 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/channels/BufferedChannel.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +2 -2
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +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
|
@@ -17,29 +17,29 @@ function PlayerDetails() {
|
|
|
17
17
|
if (PlayerDetailsClass === VOID) {
|
|
18
18
|
class $ {
|
|
19
19
|
constructor(id, name, email, badge, callSignAdjective, callSignNoun, imageURL, avatarType, unvalidatedEmails) {
|
|
20
|
-
this.
|
|
21
|
-
this.
|
|
22
|
-
this.
|
|
23
|
-
this.
|
|
24
|
-
this.
|
|
25
|
-
this.
|
|
26
|
-
this.
|
|
27
|
-
this.
|
|
28
|
-
this.
|
|
20
|
+
this.y5q_1 = id;
|
|
21
|
+
this.z5q_1 = name;
|
|
22
|
+
this.a5r_1 = email;
|
|
23
|
+
this.b5r_1 = badge;
|
|
24
|
+
this.c5r_1 = callSignAdjective;
|
|
25
|
+
this.d5r_1 = callSignNoun;
|
|
26
|
+
this.e5r_1 = imageURL;
|
|
27
|
+
this.f5r_1 = avatarType;
|
|
28
|
+
this.g5r_1 = unvalidatedEmails;
|
|
29
29
|
}
|
|
30
30
|
toString() {
|
|
31
|
-
return 'PlayerDetails(id=' + this.
|
|
31
|
+
return 'PlayerDetails(id=' + this.y5q_1.toString() + ', name=' + this.z5q_1 + ', email=' + this.a5r_1 + ', badge=' + this.b5r_1.toString() + ', callSignAdjective=' + this.c5r_1 + ', callSignNoun=' + this.d5r_1 + ', imageURL=' + this.e5r_1 + ', avatarType=' + toString(this.f5r_1) + ', unvalidatedEmails=' + toString_0(this.g5r_1) + ')';
|
|
32
32
|
}
|
|
33
33
|
hashCode() {
|
|
34
|
-
var result = this.
|
|
35
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
36
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
37
|
-
result = imul(result, 31) + this.
|
|
38
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
39
|
-
result = imul(result, 31) + getStringHashCode(this.
|
|
40
|
-
result = imul(result, 31) + (this.
|
|
41
|
-
result = imul(result, 31) + (this.
|
|
42
|
-
result = imul(result, 31) + hashCode(this.
|
|
34
|
+
var result = this.y5q_1.hashCode();
|
|
35
|
+
result = imul(result, 31) + getStringHashCode(this.z5q_1) | 0;
|
|
36
|
+
result = imul(result, 31) + getStringHashCode(this.a5r_1) | 0;
|
|
37
|
+
result = imul(result, 31) + this.b5r_1.hashCode() | 0;
|
|
38
|
+
result = imul(result, 31) + getStringHashCode(this.c5r_1) | 0;
|
|
39
|
+
result = imul(result, 31) + getStringHashCode(this.d5r_1) | 0;
|
|
40
|
+
result = imul(result, 31) + (this.e5r_1 == null ? 0 : getStringHashCode(this.e5r_1)) | 0;
|
|
41
|
+
result = imul(result, 31) + (this.f5r_1 == null ? 0 : this.f5r_1.hashCode()) | 0;
|
|
42
|
+
result = imul(result, 31) + hashCode(this.g5r_1) | 0;
|
|
43
43
|
return result;
|
|
44
44
|
}
|
|
45
45
|
equals(other) {
|
|
@@ -47,23 +47,23 @@ function PlayerDetails() {
|
|
|
47
47
|
return true;
|
|
48
48
|
if (!(other instanceof PlayerDetails()))
|
|
49
49
|
return false;
|
|
50
|
-
if (!this.
|
|
50
|
+
if (!this.y5q_1.equals(other.y5q_1))
|
|
51
51
|
return false;
|
|
52
|
-
if (!(this.
|
|
52
|
+
if (!(this.z5q_1 === other.z5q_1))
|
|
53
53
|
return false;
|
|
54
|
-
if (!(this.
|
|
54
|
+
if (!(this.a5r_1 === other.a5r_1))
|
|
55
55
|
return false;
|
|
56
|
-
if (!this.
|
|
56
|
+
if (!this.b5r_1.equals(other.b5r_1))
|
|
57
57
|
return false;
|
|
58
|
-
if (!(this.
|
|
58
|
+
if (!(this.c5r_1 === other.c5r_1))
|
|
59
59
|
return false;
|
|
60
|
-
if (!(this.
|
|
60
|
+
if (!(this.d5r_1 === other.d5r_1))
|
|
61
61
|
return false;
|
|
62
|
-
if (!(this.
|
|
62
|
+
if (!(this.e5r_1 == other.e5r_1))
|
|
63
63
|
return false;
|
|
64
|
-
if (!equals(this.
|
|
64
|
+
if (!equals(this.f5r_1, other.f5r_1))
|
|
65
65
|
return false;
|
|
66
|
-
if (!equals(this.
|
|
66
|
+
if (!equals(this.g5r_1, other.g5r_1))
|
|
67
67
|
return false;
|
|
68
68
|
return true;
|
|
69
69
|
}
|
|
@@ -25,7 +25,7 @@ function PlayerDetails_0() {
|
|
|
25
25
|
class $ {
|
|
26
26
|
constructor() {
|
|
27
27
|
PlayerDetails_instance = this;
|
|
28
|
-
this.
|
|
28
|
+
this.h5r_1 = listOf(['id', 'name', 'email', 'badge', 'callSignAdjective', 'callSignNoun', 'imageURL', 'avatarType', 'unvalidatedEmails']);
|
|
29
29
|
}
|
|
30
30
|
y4h(reader, customScalarAdapters) {
|
|
31
31
|
var _id = null;
|
|
@@ -38,7 +38,7 @@ function PlayerDetails_0() {
|
|
|
38
38
|
var _avatarType = null;
|
|
39
39
|
var _unvalidatedEmails = null;
|
|
40
40
|
$l$loop: while (true) {
|
|
41
|
-
switch (reader.s4w(this.
|
|
41
|
+
switch (reader.s4w(this.h5r_1)) {
|
|
42
42
|
case 0:
|
|
43
43
|
_id = get_playerIdAdapter().y4h(reader, customScalarAdapters);
|
|
44
44
|
break;
|
|
@@ -129,28 +129,28 @@ function PlayerDetails_0() {
|
|
|
129
129
|
}
|
|
130
130
|
return new (PlayerDetails())(tmp_0, tmp_2, tmp_4, tmp_6, tmp_8, tmp_10, tmp_11, tmp_12, tmp_13);
|
|
131
131
|
}
|
|
132
|
-
|
|
132
|
+
i5r(writer, customScalarAdapters, value) {
|
|
133
133
|
writer.q4u('id');
|
|
134
|
-
get_playerIdAdapter().z4h(writer, customScalarAdapters, value.
|
|
134
|
+
get_playerIdAdapter().z4h(writer, customScalarAdapters, value.y5q_1);
|
|
135
135
|
writer.q4u('name');
|
|
136
|
-
get_StringAdapter().z4h(writer, customScalarAdapters, value.
|
|
136
|
+
get_StringAdapter().z4h(writer, customScalarAdapters, value.z5q_1);
|
|
137
137
|
writer.q4u('email');
|
|
138
|
-
get_StringAdapter().z4h(writer, customScalarAdapters, value.
|
|
138
|
+
get_StringAdapter().z4h(writer, customScalarAdapters, value.a5r_1);
|
|
139
139
|
writer.q4u('badge');
|
|
140
|
-
Badge_ResponseAdapter_instance.
|
|
140
|
+
Badge_ResponseAdapter_instance.i5q(writer, customScalarAdapters, value.b5r_1);
|
|
141
141
|
writer.q4u('callSignAdjective');
|
|
142
|
-
get_StringAdapter().z4h(writer, customScalarAdapters, value.
|
|
142
|
+
get_StringAdapter().z4h(writer, customScalarAdapters, value.c5r_1);
|
|
143
143
|
writer.q4u('callSignNoun');
|
|
144
|
-
get_StringAdapter().z4h(writer, customScalarAdapters, value.
|
|
144
|
+
get_StringAdapter().z4h(writer, customScalarAdapters, value.d5r_1);
|
|
145
145
|
writer.q4u('imageURL');
|
|
146
|
-
get_NullableStringAdapter().c4i(writer, customScalarAdapters, value.
|
|
146
|
+
get_NullableStringAdapter().c4i(writer, customScalarAdapters, value.e5r_1);
|
|
147
147
|
writer.q4u('avatarType');
|
|
148
|
-
nullable(AvatarType_ResponseAdapter_instance).c4i(writer, customScalarAdapters, value.
|
|
148
|
+
nullable(AvatarType_ResponseAdapter_instance).c4i(writer, customScalarAdapters, value.f5r_1);
|
|
149
149
|
writer.q4u('unvalidatedEmails');
|
|
150
|
-
list(get_StringAdapter()).u4i(writer, customScalarAdapters, value.
|
|
150
|
+
list(get_StringAdapter()).u4i(writer, customScalarAdapters, value.g5r_1);
|
|
151
151
|
}
|
|
152
152
|
z4h(writer, customScalarAdapters, value) {
|
|
153
|
-
return this.
|
|
153
|
+
return this.i5r(writer, customScalarAdapters, value instanceof PlayerDetails() ? value : THROW_CCE());
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
initMetadataForObject($, 'PlayerDetails', VOID, VOID, [Adapter()]);
|
|
@@ -21,7 +21,7 @@ function ContributionDetailsSelections() {
|
|
|
21
21
|
class $ {
|
|
22
22
|
constructor() {
|
|
23
23
|
ContributionDetailsSelections_instance = this;
|
|
24
|
-
this.
|
|
24
|
+
this.j5r_1 = listOf([(new (Builder())('commitCount', Companion_getInstance().k5r_1)).f2t(), (new (Builder())('createdAt', notNull(Companion_getInstance_0().l5r_1))).f2t(), (new (Builder())('cycleTime', Companion_getInstance_1().m5r_1)).f2t(), (new (Builder())('dateTime', Companion_getInstance_0().l5r_1)).f2t(), (new (Builder())('ease', Companion_getInstance().k5r_1)).f2t(), (new (Builder())('firstCommit', Companion_getInstance_2().n5r_1)).f2t(), (new (Builder())('firstCommitDateTime', Companion_getInstance_0().l5r_1)).f2t(), (new (Builder())('hash', Companion_getInstance_2().n5r_1)).f2t(), (new (Builder())('id', notNull(Companion_getInstance_3().o5r_1))).f2t(), (new (Builder())('integrationDateTime', Companion_getInstance_0().l5r_1)).f2t(), (new (Builder())('label', Companion_getInstance_2().n5r_1)).f2t(), (new (Builder())('link', Companion_getInstance_2().n5r_1)).f2t(), (new (Builder())('name', Companion_getInstance_2().n5r_1)).f2t(), (new (Builder())('participantEmails', notNull(list(notNull(Companion_getInstance_2().n5r_1))))).f2t(), (new (Builder())('semver', Companion_getInstance_2().n5r_1)).f2t(), (new (Builder())('story', Companion_getInstance_2().n5r_1)).f2t()]);
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
initMetadataForObject($, 'ContributionDetailsSelections');
|
|
@@ -27,11 +27,11 @@ function PairingSetDetailsSelections() {
|
|
|
27
27
|
class $ {
|
|
28
28
|
constructor() {
|
|
29
29
|
PairingSetDetailsSelections_instance = this;
|
|
30
|
-
this.
|
|
31
|
-
this.
|
|
32
|
-
this.
|
|
33
|
-
this.
|
|
34
|
-
this.
|
|
30
|
+
this.p5r_1 = listOf([(new (Builder())('icon', notNull(Companion_getInstance().n5r_1))).f2t(), (new (Builder())('id', notNull(Companion_getInstance_0().u5r_1))).f2t(), (new (Builder())('name', notNull(Companion_getInstance().n5r_1))).f2t()]);
|
|
31
|
+
this.q5r_1 = listOf([(new (Builder())('id', notNull(Companion_getInstance_1().v5r_1))).f2t(), (new (Builder())('name', notNull(Companion_getInstance().n5r_1))).f2t(), (new (Builder())('email', notNull(Companion_getInstance().n5r_1))).f2t(), (new (Builder())('badge', notNull(Companion_getInstance_2().w5r_1))).f2t(), (new (Builder())('avatarType', Companion_getInstance_3().x5r_1)).f2t(), (new (Builder())('callSignAdjective', notNull(Companion_getInstance().n5r_1))).f2t(), (new (Builder())('callSignNoun', notNull(Companion_getInstance().n5r_1))).f2t(), (new (Builder())('imageURL', Companion_getInstance().n5r_1)).f2t(), (new (Builder())('unvalidatedEmails', notNull(list(notNull(Companion_getInstance().n5r_1))))).f2t(), (new (Builder())('pins', notNull(list(notNull(Companion_getInstance_4().y5r_1))))).y4n(this.p5r_1).f2t()]);
|
|
32
|
+
this.r5r_1 = listOf([(new (Builder())('icon', notNull(Companion_getInstance().n5r_1))).f2t(), (new (Builder())('id', notNull(Companion_getInstance_0().u5r_1))).f2t(), (new (Builder())('name', notNull(Companion_getInstance().n5r_1))).f2t()]);
|
|
33
|
+
this.s5r_1 = listOf([(new (Builder())('players', notNull(list(notNull(Companion_getInstance_5().z5r_1))))).y4n(this.q5r_1).f2t(), (new (Builder())('pins', notNull(list(notNull(Companion_getInstance_4().y5r_1))))).y4n(this.r5r_1).f2t()]);
|
|
34
|
+
this.t5r_1 = listOf([(new (Builder())('id', notNull(Companion_getInstance_6().a5s_1))).f2t(), (new (Builder())('partyId', notNull(Companion_getInstance_7().b5s_1))).f2t(), (new (Builder())('date', notNull(Companion_getInstance_8().l5r_1))).f2t(), (new (Builder())('pairs', notNull(list(notNull(Companion_getInstance_9().c5s_1))))).y4n(this.s5r_1).f2t(), (new (Builder())('discordMessageId', Companion_getInstance().n5r_1)).f2t(), (new (Builder())('slackMessageId', Companion_getInstance().n5r_1)).f2t()]);
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
initMetadataForObject($, 'PairingSetDetailsSelections');
|
|
@@ -20,7 +20,7 @@ function PartyDetailsSelections() {
|
|
|
20
20
|
class $ {
|
|
21
21
|
constructor() {
|
|
22
22
|
PartyDetailsSelections_instance = this;
|
|
23
|
-
this.
|
|
23
|
+
this.d5s_1 = listOf([(new (Builder())('id', notNull(Companion_getInstance().b5s_1))).f2t(), (new (Builder())('name', Companion_getInstance_0().n5r_1)).f2t(), (new (Builder())('email', Companion_getInstance_0().n5r_1)).f2t(), (new (Builder())('pairingRule', notNull(Companion_getInstance_1().k5r_1))).f2t(), (new (Builder())('badgesEnabled', notNull(Companion_getInstance_2().e5s_1))).f2t(), (new (Builder())('defaultBadgeName', notNull(Companion_getInstance_0().n5r_1))).f2t(), (new (Builder())('alternateBadgeName', notNull(Companion_getInstance_0().n5r_1))).f2t(), (new (Builder())('callSignsEnabled', notNull(Companion_getInstance_2().e5s_1))).f2t(), (new (Builder())('animationsEnabled', notNull(Companion_getInstance_2().e5s_1))).f2t(), (new (Builder())('animationSpeed', notNull(Companion_getInstance_3().x5q_1))).f2t()]);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
initMetadataForObject($, 'PartyDetailsSelections');
|
|
@@ -20,7 +20,7 @@ function PlayerDetailsSelections() {
|
|
|
20
20
|
class $ {
|
|
21
21
|
constructor() {
|
|
22
22
|
PlayerDetailsSelections_instance = this;
|
|
23
|
-
this.
|
|
23
|
+
this.f5s_1 = listOf([(new (Builder())('id', notNull(Companion_getInstance().v5r_1))).f2t(), (new (Builder())('name', notNull(Companion_getInstance_0().n5r_1))).f2t(), (new (Builder())('email', notNull(Companion_getInstance_0().n5r_1))).f2t(), (new (Builder())('badge', notNull(Companion_getInstance_1().w5r_1))).f2t(), (new (Builder())('callSignAdjective', notNull(Companion_getInstance_0().n5r_1))).f2t(), (new (Builder())('callSignNoun', notNull(Companion_getInstance_0().n5r_1))).f2t(), (new (Builder())('imageURL', Companion_getInstance_0().n5r_1)).f2t(), (new (Builder())('avatarType', Companion_getInstance_2().x5r_1)).f2t(), (new (Builder())('unvalidatedEmails', notNull(list(notNull(Companion_getInstance_0().n5r_1))))).f2t()]);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
initMetadataForObject($, 'PlayerDetailsSelections');
|
|
@@ -7,6 +7,7 @@ import {
|
|
|
7
7
|
CompiledVariablecaz6ndkw7us2 as CompiledVariable,
|
|
8
8
|
} from '../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs';
|
|
9
9
|
import {
|
|
10
|
+
setOf1u3mizs95ngxo as setOf,
|
|
10
11
|
listOfvhqybd2zx248 as listOf,
|
|
11
12
|
mapOf2zpbbmyqk8xpf as mapOf,
|
|
12
13
|
} from '../../../../../../../kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs';
|
|
@@ -28,9 +29,9 @@ function CurrentPairAssignmentsQuerySelections() {
|
|
|
28
29
|
class $ {
|
|
29
30
|
constructor() {
|
|
30
31
|
CurrentPairAssignmentsQuerySelections_instance = this;
|
|
31
|
-
this.
|
|
32
|
-
this.
|
|
33
|
-
this.
|
|
32
|
+
this.f5l_1 = listOf_0([(new (Builder())('__typename', notNull(Companion_getInstance().n5r_1))).f2t(), (new (Builder_0())('PairingSet', setOf('PairingSet'))).y4n(PairingSetDetailsSelections_getInstance().t5r_1).f2t()]);
|
|
33
|
+
this.g5l_1 = listOf((new (Builder())('currentPairingSet', Companion_getInstance_0().g5s_1)).y4n(this.f5l_1).f2t());
|
|
34
|
+
this.h5l_1 = listOf((new (Builder())('party', Companion_getInstance_1().k5s_1)).x4n(listOf((new (Builder_1())(Companion_getInstance_2().b5l_1)).i4o(mapOf(to('partyId', new (CompiledVariable())('partyId')))).f2t())).y4n(this.g5l_1).f2t());
|
|
34
35
|
}
|
|
35
36
|
}
|
|
36
37
|
initMetadataForObject($, 'CurrentPairAssignmentsQuerySelections');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/selections/CurrentPairAssignmentsQuerySelections.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/selections/CurrentPairAssignmentsQuerySelections.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAqB6D,sBACrD,CAGE,iBAFO,YAEP,EAD0B,gCAAL,KAAK,CAC1B,QAHF,EAOE,mBAFgB,YAEhB,EADmB,MAAM,YAAN,CACnB,iDAAuC,KAAvC,CACD,MARD,CADqD,C;QAYZ,oBAIvC,iBAFO,mBAEP,4BADkB,KAClB,OAAW,IAAX,CAAW,KAAX,CACD,MALwC,C;QAQF,oBAIrC,iBAFO,OAEP,4BADa,KACb,OAAU,OACoC,6CAAf,KAAe,OAAM,MAClD,uCAA8B,SAA9B,EADkD,CAAN,CAE3C,MAHO,CAAV,CAKD,KAAW,IAAX,CAAW,KAAX,CACA,MAVsC,C;;;;;;;;;;;;;;;;;;"}
|
|
@@ -8,6 +8,7 @@ import {
|
|
|
8
8
|
CompiledVariablecaz6ndkw7us2 as CompiledVariable,
|
|
9
9
|
} from '../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs';
|
|
10
10
|
import {
|
|
11
|
+
setOf1u3mizs95ngxo as setOf,
|
|
11
12
|
listOfvhqybd2zx248 as listOf,
|
|
12
13
|
mapOf2zpbbmyqk8xpf as mapOf,
|
|
13
14
|
} from '../../../../../../../kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs';
|
|
@@ -30,10 +31,10 @@ function PartyContributionReportContributionsQuerySelections() {
|
|
|
30
31
|
class $ {
|
|
31
32
|
constructor() {
|
|
32
33
|
PartyContributionReportContributionsQuerySelections_instance = this;
|
|
33
|
-
this.
|
|
34
|
-
this.
|
|
35
|
-
this.
|
|
36
|
-
this.
|
|
34
|
+
this.w5l_1 = listOf_0([(new (Builder())('__typename', notNull(Companion_getInstance().n5r_1))).f2t(), (new (Builder_0())('Contribution', setOf('Contribution'))).y4n(ContributionDetailsSelections_getInstance().j5r_1).f2t()]);
|
|
35
|
+
this.x5l_1 = listOf((new (Builder())('contributions', notNull(list(notNull(Companion_getInstance_0().l5s_1))))).y4n(this.w5l_1).f2t());
|
|
36
|
+
this.y5l_1 = listOf((new (Builder())('contributionReport', Companion_getInstance_1().m5s_1)).x4n(listOf((new (Builder_1())(Companion_getInstance_2().h5s_1)).i4o(new (CompiledVariable())('reportInput')).f2t())).y4n(this.x5l_1).f2t());
|
|
37
|
+
this.z5l_1 = listOf((new (Builder())('party', Companion_getInstance_2().k5s_1)).x4n(listOf((new (Builder_1())(Companion_getInstance_3().b5l_1)).i4o(mapOf(to('partyId', new (CompiledVariable())('partyId')))).f2t())).y4n(this.y5l_1).f2t());
|
|
37
38
|
}
|
|
38
39
|
}
|
|
39
40
|
initMetadataForObject($, 'PartyContributionReportContributionsQuerySelections');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/selections/PartyContributionReportContributionsQuerySelections.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/selections/PartyContributionReportContributionsQuerySelections.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAuByD,sBACjD,CAGE,iBAFO,YAEP,EAD0B,gCAAL,KAAK,CAC1B,QAHF,EAOE,mBAFgB,cAEhB,EADmB,MAAM,cAAN,CACnB,mDAAyC,KAAzC,CACD,MARD,CADiD,C;QAYK,oBAIpD,iBAFO,eAEP,EAD0C,QAAP,KAAV,kCAAL,KAAK,CAAU,CAAO,CAC1C,OAAW,IAAX,CAAW,KAAX,CACD,MALqD,C;QAQb,oBAIvC,iBAFO,oBAEP,4BAD0B,KAC1B,OAAU,OACiD,6CAA5B,KAA4B,gCAAuB,aAAvB,EAAuC,MADxF,CAAV,CAGD,KAAW,IAAX,CAAW,KAAX,CACA,MARwC,C;QAWF,oBAIrC,iBAFO,OAEP,4BADa,KACb,OAAU,OACoC,6CAAf,KAAe,OAAM,MAClD,uCAA8B,SAA9B,EADkD,CAAN,CAE3C,MAHO,CAAV,CAKD,KAAW,IAAX,CAAW,KAAX,CACA,MAVsC,C;;;;;;;;;;;;;;;;;;"}
|
|
@@ -7,8 +7,9 @@ import {
|
|
|
7
7
|
CompiledVariablecaz6ndkw7us2 as CompiledVariable,
|
|
8
8
|
} from '../../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs';
|
|
9
9
|
import {
|
|
10
|
-
|
|
10
|
+
setOf1u3mizs95ngxo as setOf,
|
|
11
11
|
mapOf2zpbbmyqk8xpf as mapOf,
|
|
12
|
+
listOfvhqybd2zx248 as listOf,
|
|
12
13
|
} from '../../../../../../../kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs';
|
|
13
14
|
import { PartyDetailsSelections_getInstance1neli8olcqaue as PartyDetailsSelections_getInstance } from '../fragment/selections/PartyDetailsSelections.mjs';
|
|
14
15
|
import { listOf1jh22dvmctj1r as listOf_0 } from '../../../../../../../kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs';
|
|
@@ -27,8 +28,8 @@ function PartyDetailsQuerySelections() {
|
|
|
27
28
|
class $ {
|
|
28
29
|
constructor() {
|
|
29
30
|
PartyDetailsQuerySelections_instance = this;
|
|
30
|
-
this.
|
|
31
|
-
this.
|
|
31
|
+
this.k5m_1 = listOf_0([(new (Builder())('__typename', notNull(Companion_getInstance().n5r_1))).f2t(), (new (Builder_0())('Party', setOf('Party'))).y4n(PartyDetailsSelections_getInstance().d5s_1).f2t()]);
|
|
32
|
+
this.l5m_1 = listOf((new (Builder())('party', Companion_getInstance_0().k5s_1)).x4n(listOf((new (Builder_1())(Companion_getInstance_1().b5l_1)).i4o(mapOf(to('partyId', new (CompiledVariable())('partyId')))).f2t())).y4n(this.k5m_1).f2t());
|
|
32
33
|
}
|
|
33
34
|
}
|
|
34
35
|
initMetadataForObject($, 'PartyDetailsQuerySelections');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/selections/PartyDetailsQuerySelections.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/selections/PartyDetailsQuerySelections.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAoBiD,sBACzC,CAGE,iBAFO,YAEP,EAD0B,gCAAL,KAAK,CAC1B,QAHF,EAOE,mBAFgB,OAEhB,EADmB,MAAM,OAAN,CACnB,4CAAkC,KAAlC,CACD,MARD,CADyC,C;QAYF,oBAIrC,iBAFO,OAEP,4BADa,KACb,OAAU,OACoC,6CAAf,KAAe,OAAM,MAClD,uCAA8B,SAA9B,EADkD,CAAN,CAE3C,MAHO,CAAV,CAKD,KAAW,IAAX,CAAW,KAAX,CACA,MAVsC,C;;;;;;;;;;;;;;;;;;"}
|
|
@@ -18,7 +18,7 @@ function SaveContributionMutationSelections() {
|
|
|
18
18
|
class $ {
|
|
19
19
|
constructor() {
|
|
20
20
|
SaveContributionMutationSelections_instance = this;
|
|
21
|
-
this.
|
|
21
|
+
this.n5n_1 = listOf((new (Builder())('saveContribution', Companion_getInstance().e5s_1)).x4n(listOf((new (Builder_0())(Companion_getInstance_0().h5n_1)).i4o(new (CompiledVariable())('input')).f2t())).f2t());
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
initMetadataForObject($, 'SaveContributionMutationSelections');
|
|
@@ -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
|
|
@@ -31,26 +30,37 @@ function Companion() {
|
|
|
31
30
|
class $ {
|
|
32
31
|
constructor() {
|
|
33
32
|
Companion_instance = this;
|
|
34
|
-
this.
|
|
33
|
+
this.x5r_1 = new (EnumType())('AvatarType', listOf(['Retro', 'RobohashSet1', 'RobohashSet2', 'RobohashSet3', 'RobohashSet4', 'RobohashSet5', 'Multiavatar', 'DicebearPixelArt', 'DicebearAdventurer', 'DicebearCroodles', 'DicebearThumbs', 'DicebearLorelei']));
|
|
35
34
|
}
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
35
|
+
n5s(rawValue) {
|
|
36
|
+
switch (rawValue) {
|
|
37
|
+
case 'Retro':
|
|
38
|
+
return AvatarType_Retro_getInstance();
|
|
39
|
+
case 'RobohashSet1':
|
|
40
|
+
return AvatarType_RobohashSet1_getInstance();
|
|
41
|
+
case 'RobohashSet2':
|
|
42
|
+
return AvatarType_RobohashSet2_getInstance();
|
|
43
|
+
case 'RobohashSet3':
|
|
44
|
+
return AvatarType_RobohashSet3_getInstance();
|
|
45
|
+
case 'RobohashSet4':
|
|
46
|
+
return AvatarType_RobohashSet4_getInstance();
|
|
47
|
+
case 'RobohashSet5':
|
|
48
|
+
return AvatarType_RobohashSet5_getInstance();
|
|
49
|
+
case 'Multiavatar':
|
|
50
|
+
return AvatarType_Multiavatar_getInstance();
|
|
51
|
+
case 'DicebearPixelArt':
|
|
52
|
+
return AvatarType_DicebearPixelArt_getInstance();
|
|
53
|
+
case 'DicebearAdventurer':
|
|
54
|
+
return AvatarType_DicebearAdventurer_getInstance();
|
|
55
|
+
case 'DicebearCroodles':
|
|
56
|
+
return AvatarType_DicebearCroodles_getInstance();
|
|
57
|
+
case 'DicebearThumbs':
|
|
58
|
+
return AvatarType_DicebearThumbs_getInstance();
|
|
59
|
+
case 'DicebearLorelei':
|
|
60
|
+
return AvatarType_DicebearLorelei_getInstance();
|
|
61
|
+
default:
|
|
62
|
+
return AvatarType_UNKNOWN___getInstance();
|
|
51
63
|
}
|
|
52
|
-
var tmp0_elvis_lhs = tmp$ret$1;
|
|
53
|
-
return tmp0_elvis_lhs == null ? AvatarType_UNKNOWN___getInstance() : tmp0_elvis_lhs;
|
|
54
64
|
}
|
|
55
65
|
}
|
|
56
66
|
initMetadataForCompanion($);
|
|
@@ -65,14 +75,6 @@ function Companion_getInstance() {
|
|
|
65
75
|
new (Companion())();
|
|
66
76
|
return Companion_instance;
|
|
67
77
|
}
|
|
68
|
-
function values() {
|
|
69
|
-
return [AvatarType_Retro_getInstance(), AvatarType_RobohashSet1_getInstance(), AvatarType_RobohashSet2_getInstance(), AvatarType_RobohashSet3_getInstance(), AvatarType_RobohashSet4_getInstance(), AvatarType_RobohashSet5_getInstance(), AvatarType_Multiavatar_getInstance(), AvatarType_DicebearPixelArt_getInstance(), AvatarType_DicebearAdventurer_getInstance(), AvatarType_DicebearCroodles_getInstance(), AvatarType_DicebearThumbs_getInstance(), AvatarType_DicebearLorelei_getInstance(), AvatarType_UNKNOWN___getInstance()];
|
|
70
|
-
}
|
|
71
|
-
function get_entries() {
|
|
72
|
-
if ($ENTRIES == null)
|
|
73
|
-
$ENTRIES = enumEntries(values());
|
|
74
|
-
return $ENTRIES;
|
|
75
|
-
}
|
|
76
78
|
var AvatarType_entriesInitialized;
|
|
77
79
|
function AvatarType_initEntries() {
|
|
78
80
|
if (AvatarType_entriesInitialized)
|
|
@@ -93,14 +95,13 @@ function AvatarType_initEntries() {
|
|
|
93
95
|
AvatarType_UNKNOWN___instance = new (AvatarType())('UNKNOWN__', 12, 'UNKNOWN__');
|
|
94
96
|
Companion_getInstance();
|
|
95
97
|
}
|
|
96
|
-
var $ENTRIES;
|
|
97
98
|
var AvatarTypeClass;
|
|
98
99
|
function AvatarType() {
|
|
99
100
|
if (AvatarTypeClass === VOID) {
|
|
100
101
|
class $ extends Enum() {
|
|
101
102
|
constructor(name, ordinal, rawValue) {
|
|
102
103
|
super(name, ordinal);
|
|
103
|
-
this.
|
|
104
|
+
this.q5s_1 = rawValue;
|
|
104
105
|
}
|
|
105
106
|
}
|
|
106
107
|
initMetadataForClass($, 'AvatarType');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/type/AvatarType.kt"
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/type/AvatarType.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["safeValueOf","rawValue"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAoCQ,8BAAS,YAAT,EAAuB,OAAO,UAAS,cAAT,EAAyB,cAAzB,EAAyC,cAAzC,EAAyD,cAAzD,EAAyE,cAAzE,EAAyF,aAAzF,EAAwG,kBAAxG,EAA4H,oBAA5H,EAAkJ,kBAAlJ,EAAsK,gBAAtK,EAAwL,iBAAxL,CAAP,CAAvB,C;;SAqBGA,CAAgBC,QAAhBD,EAAgD;A,QActD,QAd2D,QAc3D,C;eAbC,O;mBAAW,8B;eACX,c;mBAAkB,qC;eAClB,c;mBAAkB,qC;eAClB,c;mBAAkB,qC;eAClB,c;mBAAkB,qC;eAClB,c;mBAAkB,qC;eAClB,a;mBAAiB,oC;eACjB,kB;mBAAsB,yC;eACtB,oB;mBAAwB,2C;eACxB,kB;mBAAsB,yC;eACtB,gB;mBAAoB,uC;eACpB,iB;mBAAqB,wC;;mBACb,kC;;MACV,C;;;;;;;;;;;;;;;;;;;iDAvEJ,O,EAAA,C,EAgBQ,O;wDAhBR,c,EAAA,C,EAiBe,c;wDAjBf,c,EAAA,C,EAkBe,c;wDAlBf,c,EAAA,C,EAmBe,c;wDAnBf,c,EAAA,C,EAoBe,c;wDApBf,c,EAAA,C,EAqBe,c;uDArBf,a,EAAA,C,EAsBc,a;4DAtBd,kB,EAAA,C,EAuBmB,kB;8DAvBnB,oB,EAAA,C,EAwBqB,oB;4DAxBrB,kB,EAAA,C,EAyBmB,kB;0DAzBnB,gB,EAAA,E,EA0BiB,gB;2DA1BjB,iB,EAAA,E,EA2BkB,iB;qDA3BlB,W,EAAA,E,EA+BY,W;;;;;;;iCAjBHC,Q;;QAAP,qB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -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
|
|
@@ -21,26 +20,17 @@ function Companion() {
|
|
|
21
20
|
class $ {
|
|
22
21
|
constructor() {
|
|
23
22
|
Companion_instance = this;
|
|
24
|
-
this.
|
|
23
|
+
this.w5r_1 = new (EnumType())('Badge', listOf(['Default', 'Alternate']));
|
|
25
24
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
var element = _iterator__ex2g4s.n1();
|
|
35
|
-
if (element.m5s_1 === rawValue) {
|
|
36
|
-
tmp$ret$1 = element;
|
|
37
|
-
break $l$block;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
tmp$ret$1 = null;
|
|
25
|
+
n5s(rawValue) {
|
|
26
|
+
switch (rawValue) {
|
|
27
|
+
case 'Default':
|
|
28
|
+
return Badge_Default_getInstance();
|
|
29
|
+
case 'Alternate':
|
|
30
|
+
return Badge_Alternate_getInstance();
|
|
31
|
+
default:
|
|
32
|
+
return Badge_UNKNOWN___getInstance();
|
|
41
33
|
}
|
|
42
|
-
var tmp0_elvis_lhs = tmp$ret$1;
|
|
43
|
-
return tmp0_elvis_lhs == null ? Badge_UNKNOWN___getInstance() : tmp0_elvis_lhs;
|
|
44
34
|
}
|
|
45
35
|
}
|
|
46
36
|
initMetadataForCompanion($);
|
|
@@ -55,14 +45,6 @@ function Companion_getInstance() {
|
|
|
55
45
|
new (Companion())();
|
|
56
46
|
return Companion_instance;
|
|
57
47
|
}
|
|
58
|
-
function values() {
|
|
59
|
-
return [Badge_Default_getInstance(), Badge_Alternate_getInstance(), Badge_UNKNOWN___getInstance()];
|
|
60
|
-
}
|
|
61
|
-
function get_entries() {
|
|
62
|
-
if ($ENTRIES == null)
|
|
63
|
-
$ENTRIES = enumEntries(values());
|
|
64
|
-
return $ENTRIES;
|
|
65
|
-
}
|
|
66
48
|
var Badge_entriesInitialized;
|
|
67
49
|
function Badge_initEntries() {
|
|
68
50
|
if (Badge_entriesInitialized)
|
|
@@ -73,14 +55,13 @@ function Badge_initEntries() {
|
|
|
73
55
|
Badge_UNKNOWN___instance = new (Badge())('UNKNOWN__', 2, 'UNKNOWN__');
|
|
74
56
|
Companion_getInstance();
|
|
75
57
|
}
|
|
76
|
-
var $ENTRIES;
|
|
77
58
|
var BadgeClass;
|
|
78
59
|
function Badge() {
|
|
79
60
|
if (BadgeClass === VOID) {
|
|
80
61
|
class $ extends Enum() {
|
|
81
62
|
constructor(name, ordinal, rawValue) {
|
|
82
63
|
super(name, ordinal);
|
|
83
|
-
this.
|
|
64
|
+
this.t5s_1 = rawValue;
|
|
84
65
|
}
|
|
85
66
|
}
|
|
86
67
|
initMetadataForClass($, 'Badge');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/type/Badge.kt"
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../sdk/build/generated/source/apollo/service/com/zegreatrob/coupling/sdk/schema/type/Badge.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["safeValueOf","rawValue"],"mappings":";;;;;;;;;;;;;;;;;;;;;;QAyBgC,8BAAS,OAAT,EAAkB,OAAO,YAAW,WAAX,CAAP,CAAlB,C;;SAqBrBA,CAAgBC,QAAhBD,EAA2C;A,QAIjD,QAJsD,QAItD,C;eAHC,S;mBAAa,2B;eACb,W;mBAAe,6B;;mBACP,6B;;MACV,C;;;;;;;;;;;;;;;;;;;yCAlDJ,S,EAAA,C,EAgBU,S;2CAhBV,W,EAAA,C,EAiBY,W;2CAjBZ,W,EAAA,C,EAqBY,W;;;;;;;iCAPHC,Q;;QAAP,qB;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -11,7 +11,7 @@ function Companion() {
|
|
|
11
11
|
class $ {
|
|
12
12
|
constructor() {
|
|
13
13
|
Companion_instance = this;
|
|
14
|
-
this.
|
|
14
|
+
this.o5r_1 = new (CustomScalarType())('ContributionId', 'com.zegreatrob.coupling.json.ContributionIdString');
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
initMetadataForCompanion($);
|