@continuous-excellence/coupling-cli 1.1.728 → 1.1.730
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 +12 -12
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +29 -29
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +2 -2
- 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 +25 -25
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +34 -34
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +30 -30
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.mjs +2 -2
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.mjs +3 -3
- 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 +10 -10
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +12 -12
- 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 +14 -14
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/AccessResult.mjs +45 -45
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/DeviceCodeRequest.mjs +27 -27
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +9 -9
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/CouplingJsonFormat.mjs +4 -4
- 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 +19 -19
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +31 -31
- 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 +34 -34
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyContributionReportContributionsQuery.mjs +41 -41
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +23 -23
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_ResponseAdapter.mjs +39 -39
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_VariablesAdapter.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetails.mjs +47 -47
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.mjs +55 -55
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +68 -68
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +102 -102
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +23 -23
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +36 -36
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs +24 -24
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +33 -33
- 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 +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyContributionReportContributionsQuerySelections.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyDetailsQuerySelections.mjs +2 -2
- 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 +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/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 +21 -21
- 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 +4 -4
- 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 +2 -2
- 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 +2 -2
- 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 +3 -3
- 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 +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +47 -47
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionWindow_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionsInput_InputAdapter.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +8 -8
- package/kotlin/apollo-kotlin-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs +104 -104
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloRequest.mjs +79 -79
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloResponse.mjs +61 -61
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Assertions.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs +55 -55
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +35 -35
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/DeferredFragmentIdentifier.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Error.mjs +20 -20
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executable.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ExecutionContext.mjs +21 -21
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Operations.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Optional.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/RequestParameters.mjs +41 -41
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/CacheUrlOverride.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/DefaultHttpRequestComposer.mjs +74 -74
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/Http.mjs +58 -58
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/HttpHeaders.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/internal/ResponseParser.mjs +29 -29
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +84 -84
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSourceJsonReader.mjs +279 -279
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonNumber.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonWriters.mjs +12 -12
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs +103 -103
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonWriter.mjs +47 -47
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/FileUploadAwareJsonWriter.mjs +35 -35
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/JsonScope.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs +68 -68
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +18 -18
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +195 -195
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +6 -6
- 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 +7 -7
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +40 -40
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +48 -48
- 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 +29 -29
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_2IncrementalResultsMerger.mjs +29 -29
- 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 +7 -7
- 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 +21 -21
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +8 -8
- 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 +105 -105
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ClientMessage.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/GraphQLWsProtocol.mjs +13 -13
- 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 +42 -42
- 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 +97 -97
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/WebSocketPool.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +12 -12
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +25 -25
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +110 -110
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +21 -21
- 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 +25 -25
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +32 -32
- 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 +94 -94
- 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 +46 -46
- 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 +184 -184
- 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 +222 -222
- 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 +21 -21
- 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 +114 -114
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +126 -126
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +57 -57
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +17 -17
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs +0 -9
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -1
- 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-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +5 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +39 -39
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +19 -19
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +45 -45
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementBuilders.mjs +6 -6
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +74 -74
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonExceptions.mjs +20 -20
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +177 -177
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +25 -25
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +64 -64
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +9 -9
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +7 -7
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +10 -10
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +38 -38
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +11 -11
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +53 -53
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +144 -144
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +97 -97
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +51 -51
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +197 -197
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonEncoder.mjs +128 -128
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +3 -3
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +86 -38
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +36 -33
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/ClientSessions.mjs +24 -24
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +15 -15
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/builders.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +2 -2
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/HttpClientCallLogger.mjs +25 -25
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogBodyFilter.mjs +19 -19
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogLevel.mjs +3 -3
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggedContent.mjs +11 -11
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logger.mjs +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logging.mjs +88 -88
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggingUtils.mjs +9 -9
- package/kotlin/ktor-ktor-http/io/ktor/http/Codecs.mjs +3 -3
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +10 -13
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/URLParser.mjs +21 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/URLParser.mjs.map +1 -1
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +13 -13
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +1 -1
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +3 -3
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +2 -2
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +96 -74
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +4 -4
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +6 -32
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.nonJvm.mjs +36 -0
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.nonJvm.mjs.map +1 -0
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +27 -27
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +30 -30
- package/kotlin/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +5 -5
- package/kotlin/ktor-ktor-utils/io/ktor/util/ByteChannels.mjs +2 -2
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +24 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/ControlFrames.mjs +58 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/ControlFrames.mjs.map +1 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs +76 -76
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/Frame.web.mjs +17 -15
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/Frame.web.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +6 -6
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +6 -6
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +6 -6
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/PingPong.mjs +2 -2
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +5 -5
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketSession.mjs +5 -3
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketSession.mjs.map +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +15 -15
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +40 -40
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +61 -61
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +21 -21
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +54 -54
- 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 +208 -208
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +122 -122
- 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 +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +8 -8
- 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 +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +52 -52
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +68 -68
- package/kotlin/okio-parent-okio/okio/Buffer.mjs +360 -360
- package/kotlin/okio-parent-okio/okio/ByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/HashingSink.mjs +14 -14
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs +18 -18
- package/kotlin/okio-parent-okio/okio/Okio.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/Options.mjs +24 -24
- package/kotlin/okio-parent-okio/okio/RealBufferedSink.mjs +37 -37
- package/kotlin/okio-parent-okio/okio/RealBufferedSource.mjs +60 -60
- package/kotlin/okio-parent-okio/okio/Segment.mjs +65 -65
- package/kotlin/okio-parent-okio/okio/SegmentPool.mjs +3 -3
- package/kotlin/okio-parent-okio/okio/SegmentedByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/Util.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/-Utf8.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/Buffer.mjs +57 -57
- package/kotlin/okio-parent-okio/okio/internal/ByteString.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/RealBufferedSource.mjs +10 -10
- package/kotlin/okio-parent-okio/okio/internal/SegmentedByteString.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/Sha256.mjs +63 -63
- 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 +110 -110
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +28 -28
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +24 -24
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +28 -28
- package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +5 -5
- package/kotlin/uuid/com/benasher44/uuid/uuid.mjs +11 -11
- package/package.json +1 -1
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +0 -39
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs.map +0 -1
|
@@ -33,7 +33,7 @@ function cli(cannon) {
|
|
|
33
33
|
return cli_0(cannonSdkProvider(cannon));
|
|
34
34
|
}
|
|
35
35
|
function cli_0(sdkProvider) {
|
|
36
|
-
return subcommands(subcommands(subcommands(CouplingCli().
|
|
36
|
+
return subcommands(subcommands(subcommands(CouplingCli().s74(), [Login().n75()]), [ConfigCommand().z73()]), [party(sdkProvider)]);
|
|
37
37
|
}
|
|
38
38
|
function *getAccessToken($completion) {
|
|
39
39
|
var tmp0_elvis_lhs = getEnv('COUPLING_CLI_ACCESS_TOKEN');
|
|
@@ -58,7 +58,7 @@ function *loadTokens($completion) {
|
|
|
58
58
|
tmp = null;
|
|
59
59
|
} else {
|
|
60
60
|
// Inline function 'kotlin.let' call
|
|
61
|
-
tmp = Default_getInstance().
|
|
61
|
+
tmp = Default_getInstance().l3v(tmp0_safe_receiver);
|
|
62
62
|
}
|
|
63
63
|
return tmp;
|
|
64
64
|
}
|
|
@@ -21,7 +21,7 @@ var DefaultSdkProviderClass;
|
|
|
21
21
|
function DefaultSdkProvider() {
|
|
22
22
|
if (DefaultSdkProviderClass === VOID) {
|
|
23
23
|
class $ {
|
|
24
|
-
*
|
|
24
|
+
*o75(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.o75(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().a73_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.c73_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.p75_1 = $cannon;
|
|
82
82
|
}
|
|
83
|
-
*
|
|
84
|
-
var tmp0_elvis_lhs = this.
|
|
83
|
+
*o75(env, echo, $completion) {
|
|
84
|
+
var tmp0_elvis_lhs = this.p75_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.u71_1 = partyList;
|
|
31
31
|
}
|
|
32
32
|
toString() {
|
|
33
|
-
return 'Data(partyList=' + toString(this.
|
|
33
|
+
return 'Data(partyList=' + toString(this.u71_1) + ')';
|
|
34
34
|
}
|
|
35
35
|
hashCode() {
|
|
36
|
-
return hashCode(this.
|
|
36
|
+
return hashCode(this.u71_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.u71_1, other.u71_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.v71_1 = __typename;
|
|
59
|
+
this.w71_1 = partyDetails;
|
|
60
60
|
}
|
|
61
61
|
toString() {
|
|
62
|
-
return 'PartyList(__typename=' + this.
|
|
62
|
+
return 'PartyList(__typename=' + this.v71_1 + ', partyDetails=' + this.w71_1.toString() + ')';
|
|
63
63
|
}
|
|
64
64
|
hashCode() {
|
|
65
|
-
var result = getStringHashCode(this.
|
|
66
|
-
result = imul(result, 31) + this.
|
|
65
|
+
var result = getStringHashCode(this.v71_1);
|
|
66
|
+
result = imul(result, 31) + this.w71_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.v71_1 === other.v71_1))
|
|
75
75
|
return false;
|
|
76
|
-
if (!this.
|
|
76
|
+
if (!this.w71_1.equals(other.w71_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.x71_1 = obj(Data_getInstance());
|
|
93
|
+
this.y71_1 = (new (Builder())('data', Companion_getInstance().x5k_1)).y4n(PartyListQuerySelections_getInstance().c72_1).f2t();
|
|
94
|
+
this.z71_1 = '4f3dd94849aec46c63247323851c79a17e0dc9822385331bb7f50b02e7cb1b7f';
|
|
95
|
+
this.a72_1 = 'partyListQuery';
|
|
96
96
|
}
|
|
97
|
-
|
|
97
|
+
b5l() {
|
|
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
|
+
d5l() {
|
|
126
126
|
return '4f3dd94849aec46c63247323851c79a17e0dc9822385331bb7f50b02e7cb1b7f';
|
|
127
127
|
}
|
|
128
128
|
operationId() {
|
|
129
|
-
return this.
|
|
129
|
+
return this.d5l();
|
|
130
130
|
}
|
|
131
|
-
|
|
132
|
-
return Companion_getInstance_0().
|
|
131
|
+
q4r() {
|
|
132
|
+
return Companion_getInstance_0().b5l();
|
|
133
133
|
}
|
|
134
|
-
|
|
134
|
+
e5l() {
|
|
135
135
|
return 'partyListQuery';
|
|
136
136
|
}
|
|
137
137
|
operationName() {
|
|
138
|
-
return this.
|
|
138
|
+
return this.e5l();
|
|
139
139
|
}
|
|
140
|
-
|
|
140
|
+
v4q(writer, customScalarAdapters, withDefaultValues) {
|
|
141
141
|
}
|
|
142
|
-
|
|
143
|
-
return Companion_getInstance_0().
|
|
142
|
+
u4q() {
|
|
143
|
+
return Companion_getInstance_0().x71_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.d72_1 = party;
|
|
32
32
|
}
|
|
33
33
|
toString() {
|
|
34
|
-
return 'Data(party=' + toString(this.
|
|
34
|
+
return 'Data(party=' + toString(this.d72_1) + ')';
|
|
35
35
|
}
|
|
36
36
|
hashCode() {
|
|
37
|
-
return this.
|
|
37
|
+
return this.d72_1 == null ? 0 : this.d72_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.d72_1, other.d72_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.e72_1 = playerList;
|
|
60
60
|
}
|
|
61
61
|
toString() {
|
|
62
|
-
return 'Party(playerList=' + toString_0(this.
|
|
62
|
+
return 'Party(playerList=' + toString_0(this.e72_1) + ')';
|
|
63
63
|
}
|
|
64
64
|
hashCode() {
|
|
65
|
-
return hashCode(this.
|
|
65
|
+
return hashCode(this.e72_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.e72_1, other.e72_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.f72_1 = __typename;
|
|
88
|
+
this.g72_1 = playerDetails;
|
|
89
89
|
}
|
|
90
90
|
toString() {
|
|
91
|
-
return 'PlayerList(__typename=' + this.
|
|
91
|
+
return 'PlayerList(__typename=' + this.f72_1 + ', playerDetails=' + this.g72_1.toString() + ')';
|
|
92
92
|
}
|
|
93
93
|
hashCode() {
|
|
94
|
-
var result = getStringHashCode(this.
|
|
95
|
-
result = imul(result, 31) + this.
|
|
94
|
+
var result = getStringHashCode(this.f72_1);
|
|
95
|
+
result = imul(result, 31) + this.g72_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.f72_1 === other.f72_1))
|
|
104
104
|
return false;
|
|
105
|
-
if (!this.
|
|
105
|
+
if (!this.g72_1.equals(other.g72_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.h72_1 = obj(Data_getInstance());
|
|
122
|
+
this.i72_1 = (new (Builder())('data', Companion_getInstance().x5k_1)).y4n(PlayersQuerySelections_getInstance().n72_1).f2t();
|
|
123
|
+
this.j72_1 = '2470fab9120a545b0fdd866f456fe353ecaf9c55139b85bf385a58c6447cdee2';
|
|
124
|
+
this.k72_1 = 'playersQuery';
|
|
125
125
|
}
|
|
126
|
-
|
|
126
|
+
b5l() {
|
|
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.o72_1 = input;
|
|
148
148
|
}
|
|
149
|
-
|
|
149
|
+
d5l() {
|
|
150
150
|
return '2470fab9120a545b0fdd866f456fe353ecaf9c55139b85bf385a58c6447cdee2';
|
|
151
151
|
}
|
|
152
152
|
operationId() {
|
|
153
|
-
return this.
|
|
153
|
+
return this.d5l();
|
|
154
154
|
}
|
|
155
|
-
|
|
156
|
-
return Companion_getInstance_0().
|
|
155
|
+
q4r() {
|
|
156
|
+
return Companion_getInstance_0().b5l();
|
|
157
157
|
}
|
|
158
|
-
|
|
158
|
+
e5l() {
|
|
159
159
|
return 'playersQuery';
|
|
160
160
|
}
|
|
161
161
|
operationName() {
|
|
162
|
-
return this.
|
|
162
|
+
return this.e5l();
|
|
163
163
|
}
|
|
164
|
-
|
|
165
|
-
PlayersQuery_VariablesAdapter_instance.
|
|
164
|
+
v4q(writer, customScalarAdapters, withDefaultValues) {
|
|
165
|
+
PlayersQuery_VariablesAdapter_instance.p72(writer, this, customScalarAdapters, withDefaultValues);
|
|
166
166
|
}
|
|
167
|
-
|
|
168
|
-
return Companion_getInstance_0().
|
|
167
|
+
u4q() {
|
|
168
|
+
return Companion_getInstance_0().h72_1;
|
|
169
169
|
}
|
|
170
170
|
toString() {
|
|
171
|
-
return 'PlayersQuery(input=' + this.
|
|
171
|
+
return 'PlayersQuery(input=' + this.o72_1.toString() + ')';
|
|
172
172
|
}
|
|
173
173
|
hashCode() {
|
|
174
|
-
return this.
|
|
174
|
+
return this.o72_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.o72_1.equals(other.o72_1))
|
|
182
182
|
return false;
|
|
183
183
|
return true;
|
|
184
184
|
}
|
|
@@ -25,13 +25,13 @@ function Data_0() {
|
|
|
25
25
|
class $ {
|
|
26
26
|
constructor() {
|
|
27
27
|
Data_instance = this;
|
|
28
|
-
this.
|
|
28
|
+
this.q72_1 = listOf('partyList');
|
|
29
29
|
}
|
|
30
|
-
|
|
30
|
+
y4h(reader, customScalarAdapters) {
|
|
31
31
|
var _partyList = null;
|
|
32
32
|
$l$loop: while (true) {
|
|
33
|
-
if (reader.
|
|
34
|
-
_partyList = list(obj(PartyList_getInstance(), true)).
|
|
33
|
+
if (reader.s4w(this.q72_1) === 0)
|
|
34
|
+
_partyList = list(obj(PartyList_getInstance(), true)).y4h(reader, customScalarAdapters);
|
|
35
35
|
else
|
|
36
36
|
break $l$loop;
|
|
37
37
|
}
|
|
@@ -44,12 +44,12 @@ function Data_0() {
|
|
|
44
44
|
}
|
|
45
45
|
return new (Data())(tmp);
|
|
46
46
|
}
|
|
47
|
-
|
|
48
|
-
writer.
|
|
49
|
-
list(obj(PartyList_getInstance(), true)).
|
|
47
|
+
r72(writer, customScalarAdapters, value) {
|
|
48
|
+
writer.q4u('partyList');
|
|
49
|
+
list(obj(PartyList_getInstance(), true)).u4i(writer, customScalarAdapters, value.u71_1);
|
|
50
50
|
}
|
|
51
|
-
|
|
52
|
-
return this.
|
|
51
|
+
z4h(writer, customScalarAdapters, value) {
|
|
52
|
+
return this.r72(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
|
|
@@ -69,18 +69,18 @@ function PartyList_0() {
|
|
|
69
69
|
class $ {
|
|
70
70
|
constructor() {
|
|
71
71
|
PartyList_instance = this;
|
|
72
|
-
this.
|
|
72
|
+
this.s72_1 = listOf('__typename');
|
|
73
73
|
}
|
|
74
|
-
|
|
74
|
+
y4h(reader, customScalarAdapters) {
|
|
75
75
|
var __typename = null;
|
|
76
76
|
$l$loop: while (true) {
|
|
77
|
-
if (reader.
|
|
78
|
-
__typename = get_StringAdapter().
|
|
77
|
+
if (reader.s4w(this.s72_1) === 0)
|
|
78
|
+
__typename = get_StringAdapter().y4h(reader, customScalarAdapters);
|
|
79
79
|
else
|
|
80
80
|
break $l$loop;
|
|
81
81
|
}
|
|
82
|
-
reader.
|
|
83
|
-
var _partyDetails = PartyDetails_getInstance().
|
|
82
|
+
reader.u4w();
|
|
83
|
+
var _partyDetails = PartyDetails_getInstance().y4h(reader, customScalarAdapters);
|
|
84
84
|
var tmp1_elvis_lhs = __typename;
|
|
85
85
|
var tmp;
|
|
86
86
|
if (tmp1_elvis_lhs == null) {
|
|
@@ -90,13 +90,13 @@ function PartyList_0() {
|
|
|
90
90
|
}
|
|
91
91
|
return new (PartyList())(tmp, _partyDetails);
|
|
92
92
|
}
|
|
93
|
-
|
|
94
|
-
writer.
|
|
95
|
-
get_StringAdapter().
|
|
96
|
-
PartyDetails_getInstance().
|
|
93
|
+
t72(writer, customScalarAdapters, value) {
|
|
94
|
+
writer.q4u('__typename');
|
|
95
|
+
get_StringAdapter().z4h(writer, customScalarAdapters, value.v71_1);
|
|
96
|
+
PartyDetails_getInstance().g5o(writer, customScalarAdapters, value.w71_1);
|
|
97
97
|
}
|
|
98
|
-
|
|
99
|
-
return this.
|
|
98
|
+
z4h(writer, customScalarAdapters, value) {
|
|
99
|
+
return this.t72(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.u72_1 = listOf('party');
|
|
31
31
|
}
|
|
32
|
-
|
|
32
|
+
y4h(reader, customScalarAdapters) {
|
|
33
33
|
var _party = null;
|
|
34
34
|
$l$loop: while (true) {
|
|
35
|
-
if (reader.
|
|
36
|
-
_party = nullable(obj(Party_getInstance())).
|
|
35
|
+
if (reader.s4w(this.u72_1) === 0)
|
|
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
|
-
|
|
43
|
-
writer.
|
|
44
|
-
nullable(obj(Party_getInstance())).
|
|
42
|
+
v72(writer, customScalarAdapters, value) {
|
|
43
|
+
writer.q4u('party');
|
|
44
|
+
nullable(obj(Party_getInstance())).c4i(writer, customScalarAdapters, value.d72_1);
|
|
45
45
|
}
|
|
46
|
-
|
|
47
|
-
return this.
|
|
46
|
+
z4h(writer, customScalarAdapters, value) {
|
|
47
|
+
return this.v72(writer, customScalarAdapters, value instanceof Data() ? value : THROW_CCE());
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
initMetadataForObject($, 'Data', VOID, VOID, [Adapter()]);
|
|
@@ -64,13 +64,13 @@ function Party_0() {
|
|
|
64
64
|
class $ {
|
|
65
65
|
constructor() {
|
|
66
66
|
Party_instance = this;
|
|
67
|
-
this.
|
|
67
|
+
this.w72_1 = listOf('playerList');
|
|
68
68
|
}
|
|
69
|
-
|
|
69
|
+
y4h(reader, customScalarAdapters) {
|
|
70
70
|
var _playerList = null;
|
|
71
71
|
$l$loop: while (true) {
|
|
72
|
-
if (reader.
|
|
73
|
-
_playerList = list(obj(PlayerList_getInstance(), true)).
|
|
72
|
+
if (reader.s4w(this.w72_1) === 0)
|
|
73
|
+
_playerList = list(obj(PlayerList_getInstance(), true)).y4h(reader, customScalarAdapters);
|
|
74
74
|
else
|
|
75
75
|
break $l$loop;
|
|
76
76
|
}
|
|
@@ -83,12 +83,12 @@ function Party_0() {
|
|
|
83
83
|
}
|
|
84
84
|
return new (Party())(tmp);
|
|
85
85
|
}
|
|
86
|
-
|
|
87
|
-
writer.
|
|
88
|
-
list(obj(PlayerList_getInstance(), true)).
|
|
86
|
+
x72(writer, customScalarAdapters, value) {
|
|
87
|
+
writer.q4u('playerList');
|
|
88
|
+
list(obj(PlayerList_getInstance(), true)).u4i(writer, customScalarAdapters, value.e72_1);
|
|
89
89
|
}
|
|
90
|
-
|
|
91
|
-
return this.
|
|
90
|
+
z4h(writer, customScalarAdapters, value) {
|
|
91
|
+
return this.x72(writer, customScalarAdapters, value instanceof Party() ? value : THROW_CCE());
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
initMetadataForObject($, 'Party', VOID, VOID, [Adapter()]);
|
|
@@ -108,18 +108,18 @@ function PlayerList_0() {
|
|
|
108
108
|
class $ {
|
|
109
109
|
constructor() {
|
|
110
110
|
PlayerList_instance = this;
|
|
111
|
-
this.
|
|
111
|
+
this.y72_1 = listOf('__typename');
|
|
112
112
|
}
|
|
113
|
-
|
|
113
|
+
y4h(reader, customScalarAdapters) {
|
|
114
114
|
var __typename = null;
|
|
115
115
|
$l$loop: while (true) {
|
|
116
|
-
if (reader.
|
|
117
|
-
__typename = get_StringAdapter().
|
|
116
|
+
if (reader.s4w(this.y72_1) === 0)
|
|
117
|
+
__typename = get_StringAdapter().y4h(reader, customScalarAdapters);
|
|
118
118
|
else
|
|
119
119
|
break $l$loop;
|
|
120
120
|
}
|
|
121
|
-
reader.
|
|
122
|
-
var _playerDetails = PlayerDetails_getInstance().
|
|
121
|
+
reader.u4w();
|
|
122
|
+
var _playerDetails = PlayerDetails_getInstance().y4h(reader, customScalarAdapters);
|
|
123
123
|
var tmp1_elvis_lhs = __typename;
|
|
124
124
|
var tmp;
|
|
125
125
|
if (tmp1_elvis_lhs == null) {
|
|
@@ -129,13 +129,13 @@ function PlayerList_0() {
|
|
|
129
129
|
}
|
|
130
130
|
return new (PlayerList())(tmp, _playerDetails);
|
|
131
131
|
}
|
|
132
|
-
|
|
133
|
-
writer.
|
|
134
|
-
get_StringAdapter().
|
|
135
|
-
PlayerDetails_getInstance().
|
|
132
|
+
z72(writer, customScalarAdapters, value) {
|
|
133
|
+
writer.q4u('__typename');
|
|
134
|
+
get_StringAdapter().z4h(writer, customScalarAdapters, value.f72_1);
|
|
135
|
+
PlayerDetails_getInstance().b5r(writer, customScalarAdapters, value.g72_1);
|
|
136
136
|
}
|
|
137
|
-
|
|
138
|
-
return this.
|
|
137
|
+
z4h(writer, customScalarAdapters, value) {
|
|
138
|
+
return this.z72(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
|
-
|
|
15
|
-
writer.
|
|
16
|
-
obj(PartyInput_InputAdapter_instance).
|
|
14
|
+
p72(writer, value, customScalarAdapters, withDefaultValues) {
|
|
15
|
+
writer.q4u('input');
|
|
16
|
+
obj(PartyInput_InputAdapter_instance).z4h(writer, customScalarAdapters, value.o72_1);
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
initMetadataForObject($, 'PlayersQuery_VariablesAdapter');
|
package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.mjs
CHANGED
|
@@ -21,8 +21,8 @@ function PartyListQuerySelections() {
|
|
|
21
21
|
class $ {
|
|
22
22
|
constructor() {
|
|
23
23
|
PartyListQuerySelections_instance = this;
|
|
24
|
-
this.
|
|
25
|
-
this.
|
|
24
|
+
this.b72_1 = listOf_0([(new (Builder())('__typename', notNull(Companion_getInstance().g5r_1))).f2t(), (new (Builder_0())('Party', listOf('Party'))).y4n(PartyDetailsSelections_getInstance().w5r_1).f2t()]);
|
|
25
|
+
this.c72_1 = listOf((new (Builder())('partyList', notNull(list(notNull(Companion_getInstance_0().d5s_1))))).y4n(this.b72_1).f2t());
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
initMetadataForObject($, 'PartyListQuerySelections');
|
package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.mjs
CHANGED
|
@@ -25,9 +25,9 @@ function PlayersQuerySelections() {
|
|
|
25
25
|
class $ {
|
|
26
26
|
constructor() {
|
|
27
27
|
PlayersQuerySelections_instance = this;
|
|
28
|
-
this.
|
|
29
|
-
this.
|
|
30
|
-
this.
|
|
28
|
+
this.l72_1 = listOf_0([(new (Builder())('__typename', notNull(Companion_getInstance().g5r_1))).f2t(), (new (Builder_0())('Player', listOf('Player'))).y4n(PlayerDetailsSelections_getInstance().y5r_1).f2t()]);
|
|
29
|
+
this.m72_1 = listOf((new (Builder())('playerList', notNull(list(notNull(Companion_getInstance_0().h5t_1))))).y4n(this.l72_1).f2t());
|
|
30
|
+
this.n72_1 = listOf((new (Builder())('party', Companion_getInstance_1().d5s_1)).x4n(listOf((new (Builder_1())(Companion_getInstance_2().u5k_1)).i4o(new (CompiledVariable())('input')).f2t())).y4n(this.m72_1).f2t());
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
initMetadataForObject($, 'PlayersQuerySelections');
|