@continuous-excellence/coupling-cli 1.1.755 → 1.1.756
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Auth0Environment.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigCommand.mjs +38 -38
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +17 -17
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +7 -7
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.mjs +6 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.mjs +7 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +42 -42
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +38 -38
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.mjs +51 -51
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +40 -40
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +32 -32
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +62 -62
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +10 -10
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +13 -13
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +95 -95
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/ContributionId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs +55 -55
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +14 -14
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSetId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PairingRule.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyDetails.mjs +27 -27
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +5 -5
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/SecretId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs +16 -16
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs +21 -21
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/PlayerId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/callsign/CallSign.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/user/UserId.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +18 -18
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +23 -23
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +11 -11
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/ContributionDetailsMapper.mjs +16 -16
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyContributionReportContributionsQuery.mjs +38 -38
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +27 -27
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +16 -16
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_VariablesAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +11 -11
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetails.mjs +51 -51
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +77 -77
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +44 -44
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +15 -15
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs +28 -28
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/ContributionDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PairingSetDetailsSelections.mjs +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PartyDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PlayerDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/CurrentPairAssignmentsQuerySelections.mjs +4 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/CurrentPairAssignmentsQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyContributionReportContributionsQuerySelections.mjs +5 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyContributionReportContributionsQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyDetailsQuerySelections.mjs +4 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyDetailsQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/SaveContributionMutationSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +30 -29
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +10 -29
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Contribution.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +39 -39
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionReport.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs +18 -29
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/DateTimeISO.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Duration.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLBoolean.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLInt.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLString.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Mutation.mjs +8 -8
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairingSet.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairingSetId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Party.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyInput.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PinId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PinSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Player.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PlayerId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PlayerSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Query.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionWindow_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionsInput_InputAdapter.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +4 -4
- package/kotlin/apollo-kotlin-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs +15 -6
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +72 -66
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Error.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs +33 -15
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Operations.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/RequestParameters.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs +42 -0
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs +49 -0
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonWriter.mjs +18 -18
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/Utils.mjs +19 -4
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/Utils.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs +76 -76
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +11 -11
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +201 -180
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/NetworkInterceptor.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +35 -35
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +42 -42
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/flows.mjs +14 -14
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/IncrementalDeliveryProtocolImpl.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_1IncrementalResultsMerger.mjs +32 -32
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_2IncrementalResultsMerger.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/is-node.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs +79 -79
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ClientMessage.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/GraphQLWsProtocol.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ServerMessage.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/WebSocketEngine.js.mjs +39 -39
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/WebSocketNetworkTransport.mjs +58 -58
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/SubscribableWebSocket.mjs +196 -96
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/SubscribableWebSocket.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/WebSocketPool.mjs +20 -20
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +11 -11
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +24 -24
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +105 -105
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +19 -19
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +14 -14
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +28 -28
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +28 -28
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +111 -111
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +95 -95
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +138 -138
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +132 -132
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +48 -48
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +13 -13
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/EagerOption.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/FlagOption.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/Option.mjs +21 -21
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +204 -204
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +5 -5
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +35 -35
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +231 -231
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/command/SuspendingCliktCommand.mjs +2 -2
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +65 -65
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +25 -25
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +121 -121
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +134 -134
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +62 -62
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +20 -20
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +9 -9
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +25 -25
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +4 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +11 -11
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +11 -11
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +15 -15
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +40 -40
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +61 -61
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +79 -79
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Theme.mjs +44 -44
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Whitespace.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Widget.mjs +2 -2
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/WidthRange.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Borders.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Table.mjs +234 -234
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +152 -152
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +54 -54
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +18 -18
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +10 -10
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +56 -56
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +68 -68
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs +29 -29
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs.map +1 -1
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +1 -1
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +118 -118
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +36 -36
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +22 -22
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +26 -26
- package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +4 -4
- package/package.json +1 -1
|
@@ -29,13 +29,13 @@ function incrementalResult($this, incrementalResult) {
|
|
|
29
29
|
var data = (tmp == null ? true : isInterface(tmp, KtMap())) ? tmp : THROW_CCE();
|
|
30
30
|
var tmp_0 = incrementalResult.j4('path');
|
|
31
31
|
var path = (!(tmp_0 == null) ? isInterface(tmp_0, KtList()) : false) ? tmp_0 : THROW_CCE();
|
|
32
|
-
var tmp_1 = $this.
|
|
32
|
+
var tmp_1 = $this.l5c_1.j4('data');
|
|
33
33
|
var mergedData = (!(tmp_1 == null) ? isInterface(tmp_1, KtMap()) : false) ? tmp_1 : THROW_CCE();
|
|
34
34
|
if (!(data == null)) {
|
|
35
35
|
var tmp_2 = nodeAtPath(mergedData, path);
|
|
36
36
|
var nodeToMergeInto = (!(tmp_2 == null) ? isInterface(tmp_2, KtMutableMap()) : false) ? tmp_2 : THROW_CCE();
|
|
37
37
|
deepMergeObject(nodeToMergeInto, data);
|
|
38
|
-
var tmp0 = $this.
|
|
38
|
+
var tmp0 = $this.m5c_1;
|
|
39
39
|
var tmp_3 = incrementalResult.j4('label');
|
|
40
40
|
// Inline function 'kotlin.collections.plusAssign' call
|
|
41
41
|
var element = new (DeferredFragmentIdentifier())(path, (tmp_3 == null ? true : typeof tmp_3 === 'string') ? tmp_3 : THROW_CCE());
|
|
@@ -49,39 +49,39 @@ function V0_1IncrementalResultsMerger() {
|
|
|
49
49
|
constructor() {
|
|
50
50
|
var tmp = this;
|
|
51
51
|
// Inline function 'kotlin.collections.mutableMapOf' call
|
|
52
|
-
tmp.
|
|
53
|
-
this.
|
|
52
|
+
tmp.k5c_1 = LinkedHashMap().lc();
|
|
53
|
+
this.l5c_1 = this.k5c_1;
|
|
54
54
|
var tmp_0 = this;
|
|
55
55
|
// Inline function 'kotlin.collections.mutableSetOf' call
|
|
56
|
-
tmp_0.
|
|
57
|
-
this.
|
|
58
|
-
this.
|
|
59
|
-
this.
|
|
60
|
-
}
|
|
61
|
-
o5c() {
|
|
62
|
-
return this.l5c_1;
|
|
63
|
-
}
|
|
64
|
-
p5c() {
|
|
65
|
-
return this.m5c_1;
|
|
56
|
+
tmp_0.m5c_1 = LinkedHashSet().t2();
|
|
57
|
+
this.n5c_1 = this.m5c_1;
|
|
58
|
+
this.o5c_1 = true;
|
|
59
|
+
this.p5c_1 = false;
|
|
66
60
|
}
|
|
67
61
|
q5c() {
|
|
68
62
|
return this.n5c_1;
|
|
69
63
|
}
|
|
70
|
-
r5c(
|
|
71
|
-
return this.
|
|
64
|
+
r5c() {
|
|
65
|
+
return this.o5c_1;
|
|
66
|
+
}
|
|
67
|
+
s5c() {
|
|
68
|
+
return this.p5c_1;
|
|
72
69
|
}
|
|
73
|
-
|
|
74
|
-
|
|
70
|
+
t5c(part) {
|
|
71
|
+
return this.u5c(toJsonMap(part));
|
|
72
|
+
}
|
|
73
|
+
u5c(part) {
|
|
74
|
+
if (this.l5c_1.j1()) {
|
|
75
75
|
// Inline function 'kotlin.collections.plusAssign' call
|
|
76
|
-
this.
|
|
77
|
-
return this.
|
|
76
|
+
this.k5c_1.s4(part);
|
|
77
|
+
return this.l5c_1;
|
|
78
78
|
}
|
|
79
79
|
var tmp = part.j4('incremental');
|
|
80
80
|
var incremental = (!(tmp == null) ? isInterface(tmp, KtList()) : false) ? tmp : null;
|
|
81
81
|
if (incremental == null) {
|
|
82
|
-
this.
|
|
82
|
+
this.p5c_1 = true;
|
|
83
83
|
} else {
|
|
84
|
-
this.
|
|
84
|
+
this.p5c_1 = false;
|
|
85
85
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
86
86
|
var mergedErrors = ArrayList().i2();
|
|
87
87
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
@@ -112,32 +112,32 @@ function V0_1IncrementalResultsMerger() {
|
|
|
112
112
|
// Inline function 'kotlin.collections.isNotEmpty' call
|
|
113
113
|
if (!mergedErrors.j1()) {
|
|
114
114
|
// Inline function 'kotlin.collections.set' call
|
|
115
|
-
this.
|
|
115
|
+
this.k5c_1.q4('errors', mergedErrors);
|
|
116
116
|
} else {
|
|
117
|
-
this.
|
|
117
|
+
this.k5c_1.r4('errors');
|
|
118
118
|
}
|
|
119
119
|
// Inline function 'kotlin.collections.isNotEmpty' call
|
|
120
120
|
if (!mergedExtensions.j1()) {
|
|
121
|
-
var tmp0 = this.
|
|
121
|
+
var tmp0 = this.k5c_1;
|
|
122
122
|
var tmp2 = 'extensions';
|
|
123
123
|
// Inline function 'kotlin.collections.set' call
|
|
124
124
|
var value = mapOf(to('incremental', mergedExtensions));
|
|
125
125
|
tmp0.q4(tmp2, value);
|
|
126
126
|
} else {
|
|
127
|
-
this.
|
|
127
|
+
this.k5c_1.r4('extensions');
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
130
|
var tmp_2 = this;
|
|
131
131
|
var tmp_3 = part.j4('hasNext');
|
|
132
132
|
var tmp2_elvis_lhs = (tmp_3 == null ? true : typeof tmp_3 === 'boolean') ? tmp_3 : THROW_CCE();
|
|
133
|
-
tmp_2.
|
|
134
|
-
return this.
|
|
133
|
+
tmp_2.o5c_1 = tmp2_elvis_lhs == null ? false : tmp2_elvis_lhs;
|
|
134
|
+
return this.l5c_1;
|
|
135
135
|
}
|
|
136
|
-
|
|
137
|
-
this.i5c_1.m4();
|
|
136
|
+
v5c() {
|
|
138
137
|
this.k5c_1.m4();
|
|
139
|
-
this.m5c_1
|
|
140
|
-
this.
|
|
138
|
+
this.m5c_1.m4();
|
|
139
|
+
this.o5c_1 = true;
|
|
140
|
+
this.p5c_1 = false;
|
|
141
141
|
}
|
|
142
142
|
}
|
|
143
143
|
initMetadataForClass($, 'V0_1IncrementalResultsMerger', V0_1IncrementalResultsMerger);
|
|
@@ -36,7 +36,7 @@ import { VOID3gxj6tk5isa35 as VOID } from '../../../../../../kotlin-kotlin-stdli
|
|
|
36
36
|
//endregion
|
|
37
37
|
function getOrPutMergedErrors($this) {
|
|
38
38
|
// Inline function 'kotlin.collections.getOrPut' call
|
|
39
|
-
var this_0 = $this.
|
|
39
|
+
var this_0 = $this.w5c_1;
|
|
40
40
|
var value = this_0.j4('errors');
|
|
41
41
|
var tmp;
|
|
42
42
|
if (value == null) {
|
|
@@ -51,7 +51,7 @@ function getOrPutMergedErrors($this) {
|
|
|
51
51
|
return (!(tmp_0 == null) ? isInterface(tmp_0, KtMutableList()) : false) ? tmp_0 : THROW_CCE();
|
|
52
52
|
}
|
|
53
53
|
function getOrPutExtensions($this) {
|
|
54
|
-
var tmp0 = $this.
|
|
54
|
+
var tmp0 = $this.w5c_1;
|
|
55
55
|
// Inline function 'kotlin.collections.getOrPut' call
|
|
56
56
|
var key = 'extensions';
|
|
57
57
|
var value = tmp0.j4(key);
|
|
@@ -80,7 +80,7 @@ function handlePending($this, part) {
|
|
|
80
80
|
var path = (!(tmp_1 == null) ? isInterface(tmp_1, KtList()) : false) ? tmp_1 : THROW_CCE();
|
|
81
81
|
var tmp_2 = pendingResult.j4('label');
|
|
82
82
|
var label = (tmp_2 == null ? true : typeof tmp_2 === 'string') ? tmp_2 : THROW_CCE();
|
|
83
|
-
var tmp0 = $this.
|
|
83
|
+
var tmp0 = $this.y5c_1;
|
|
84
84
|
// Inline function 'kotlin.collections.set' call
|
|
85
85
|
var value = new (DeferredFragmentIdentifier())(path, label);
|
|
86
86
|
tmp0.q4(id, value);
|
|
@@ -101,7 +101,7 @@ function handleCompleted($this, completed) {
|
|
|
101
101
|
} else {
|
|
102
102
|
var tmp_0 = completedResult.j4('id');
|
|
103
103
|
var id = (!(tmp_0 == null) ? typeof tmp_0 === 'string' : false) ? tmp_0 : THROW_CCE();
|
|
104
|
-
if ($this.
|
|
104
|
+
if ($this.y5c_1.r4(id) == null) {
|
|
105
105
|
// Inline function 'kotlin.error' call
|
|
106
106
|
var message = "Id '" + id + "' not found in pending results";
|
|
107
107
|
throw IllegalStateException().o(toString(message));
|
|
@@ -129,7 +129,7 @@ function mergeIncrementalResult($this, incrementalResult) {
|
|
|
129
129
|
var tmp_3 = incrementalResult.j4('subPath');
|
|
130
130
|
var tmp1_elvis_lhs = (tmp_3 == null ? true : isInterface(tmp_3, KtList())) ? tmp_3 : THROW_CCE();
|
|
131
131
|
var subPath = tmp1_elvis_lhs == null ? emptyList() : tmp1_elvis_lhs;
|
|
132
|
-
var tmp2_safe_receiver = $this.
|
|
132
|
+
var tmp2_safe_receiver = $this.y5c_1.j4(id);
|
|
133
133
|
var tmp3_elvis_lhs = tmp2_safe_receiver == null ? null : tmp2_safe_receiver.c4q_1;
|
|
134
134
|
var tmp_4;
|
|
135
135
|
if (tmp3_elvis_lhs == null) {
|
|
@@ -140,7 +140,7 @@ function mergeIncrementalResult($this, incrementalResult) {
|
|
|
140
140
|
tmp_4 = tmp3_elvis_lhs;
|
|
141
141
|
}
|
|
142
142
|
var path = plus(tmp_4, subPath);
|
|
143
|
-
var tmp_5 = $this.
|
|
143
|
+
var tmp_5 = $this.x5c_1.j4('data');
|
|
144
144
|
var mergedData = (!(tmp_5 == null) ? isInterface(tmp_5, KtMap()) : false) ? tmp_5 : THROW_CCE();
|
|
145
145
|
var nodeToMergeInto = nodeAtPath(mergedData, path);
|
|
146
146
|
if (!(data == null)) {
|
|
@@ -163,37 +163,37 @@ function V0_2IncrementalResultsMerger() {
|
|
|
163
163
|
constructor() {
|
|
164
164
|
var tmp = this;
|
|
165
165
|
// Inline function 'kotlin.collections.mutableMapOf' call
|
|
166
|
-
tmp.
|
|
167
|
-
this.
|
|
166
|
+
tmp.w5c_1 = LinkedHashMap().lc();
|
|
167
|
+
this.x5c_1 = this.w5c_1;
|
|
168
168
|
var tmp_0 = this;
|
|
169
169
|
// Inline function 'kotlin.collections.mutableMapOf' call
|
|
170
|
-
tmp_0.
|
|
171
|
-
this.
|
|
172
|
-
this.
|
|
170
|
+
tmp_0.y5c_1 = LinkedHashMap().lc();
|
|
171
|
+
this.z5c_1 = true;
|
|
172
|
+
this.a5d_1 = false;
|
|
173
173
|
}
|
|
174
|
-
|
|
175
|
-
return plus_0(toSet(this.
|
|
174
|
+
q5c() {
|
|
175
|
+
return plus_0(toSet(this.y5c_1.l4()), Companion_getInstance().b4q_1);
|
|
176
176
|
}
|
|
177
|
-
|
|
178
|
-
return this.
|
|
177
|
+
r5c() {
|
|
178
|
+
return this.z5c_1;
|
|
179
179
|
}
|
|
180
|
-
|
|
181
|
-
return this.
|
|
180
|
+
s5c() {
|
|
181
|
+
return this.a5d_1;
|
|
182
182
|
}
|
|
183
|
-
|
|
184
|
-
return this.
|
|
183
|
+
t5c(part) {
|
|
184
|
+
return this.u5c(toJsonMap(part));
|
|
185
185
|
}
|
|
186
|
-
|
|
186
|
+
u5c(part) {
|
|
187
187
|
var tmp = part.j4('completed');
|
|
188
188
|
var completed = (!(tmp == null) ? isInterface(tmp, KtList()) : false) ? tmp : null;
|
|
189
|
-
if (this.
|
|
190
|
-
var tmp0 = this.
|
|
189
|
+
if (this.x5c_1.j1()) {
|
|
190
|
+
var tmp0 = this.w5c_1;
|
|
191
191
|
// Inline function 'kotlin.collections.plusAssign' call
|
|
192
192
|
var map = minus(minus(part, 'hasNext'), 'pending');
|
|
193
193
|
tmp0.s4(map);
|
|
194
194
|
handlePending(this, part);
|
|
195
195
|
handleCompleted(this, completed);
|
|
196
|
-
return this.
|
|
196
|
+
return this.x5c_1;
|
|
197
197
|
}
|
|
198
198
|
handlePending(this, part);
|
|
199
199
|
var tmp_0 = part.j4('incremental');
|
|
@@ -215,11 +215,11 @@ function V0_2IncrementalResultsMerger() {
|
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
217
|
}
|
|
218
|
-
this.
|
|
218
|
+
this.a5d_1 = (completed == null && incremental == null);
|
|
219
219
|
var tmp_2 = this;
|
|
220
220
|
var tmp_3 = part.j4('hasNext');
|
|
221
221
|
var tmp1_elvis_lhs = (tmp_3 == null ? true : typeof tmp_3 === 'boolean') ? tmp_3 : THROW_CCE();
|
|
222
|
-
tmp_2.
|
|
222
|
+
tmp_2.z5c_1 = tmp1_elvis_lhs == null ? false : tmp1_elvis_lhs;
|
|
223
223
|
handleCompleted(this, completed);
|
|
224
224
|
var tmp_4 = part.j4('extensions');
|
|
225
225
|
var tmp2_safe_receiver = (!(tmp_4 == null) ? isInterface(tmp_4, KtMap()) : false) ? tmp_4 : null;
|
|
@@ -230,13 +230,13 @@ function V0_2IncrementalResultsMerger() {
|
|
|
230
230
|
// Inline function 'kotlin.collections.plusAssign' call
|
|
231
231
|
getOrPutExtensions(this).s4(tmp2_safe_receiver);
|
|
232
232
|
}
|
|
233
|
-
return this.
|
|
233
|
+
return this.x5c_1;
|
|
234
234
|
}
|
|
235
|
-
|
|
236
|
-
this.u5c_1.m4();
|
|
235
|
+
v5c() {
|
|
237
236
|
this.w5c_1.m4();
|
|
238
|
-
this.
|
|
239
|
-
this.
|
|
237
|
+
this.y5c_1.m4();
|
|
238
|
+
this.z5c_1 = true;
|
|
239
|
+
this.a5d_1 = false;
|
|
240
240
|
}
|
|
241
241
|
}
|
|
242
242
|
initMetadataForClass($, 'V0_2IncrementalResultsMerger', V0_2IncrementalResultsMerger);
|
|
@@ -24,7 +24,7 @@ function isNode$delegate$lambda() {
|
|
|
24
24
|
return (!(tmp == null) ? typeof tmp === 'boolean' : false) ? tmp : THROW_CCE();
|
|
25
25
|
}
|
|
26
26
|
function _get_isNode_$ref_4joeoi() {
|
|
27
|
-
return constructCallableReference(() => get_isNode(), 0, 0,
|
|
27
|
+
return constructCallableReference(() => get_isNode(), 0, 0, 48);
|
|
28
28
|
}
|
|
29
29
|
var properties_initialized_is_node_kt_9kjm2d;
|
|
30
30
|
function _init_properties_is_node_kt__dnpdf7() {
|
|
@@ -89,7 +89,7 @@ function multipartBodyFlow$slambda($multipartReader, $response) {
|
|
|
89
89
|
}
|
|
90
90
|
$multipartReader._v = new (MultipartReader())(tmp, tmp_0);
|
|
91
91
|
$l$loop: while (true) {
|
|
92
|
-
var tmp1_elvis_lhs = ensureNotNull($multipartReader._v).
|
|
92
|
+
var tmp1_elvis_lhs = ensureNotNull($multipartReader._v).u5b();
|
|
93
93
|
var tmp_1;
|
|
94
94
|
if (tmp1_elvis_lhs == null) {
|
|
95
95
|
break $l$loop;
|
|
@@ -97,7 +97,7 @@ function multipartBodyFlow$slambda($multipartReader, $response) {
|
|
|
97
97
|
tmp_1 = tmp1_elvis_lhs;
|
|
98
98
|
}
|
|
99
99
|
var part = tmp_1;
|
|
100
|
-
yield* $this$flow.h1g(part.
|
|
100
|
+
yield* $this$flow.h1g(part.t5b_1, $completion);
|
|
101
101
|
}
|
|
102
102
|
return Unit_instance;
|
|
103
103
|
}, 1);
|
package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import { constructCallableReference23y65rf941mch as constructCallableReference }
|
|
|
7
7
|
//region block: pre-declaration
|
|
8
8
|
//endregion
|
|
9
9
|
function *waitForNetwork(_this__u8e3s4, $completion) {
|
|
10
|
-
var tmp = _this__u8e3s4.
|
|
10
|
+
var tmp = _this__u8e3s4.d5b();
|
|
11
11
|
yield* collect(takeWhile(tmp, waitForNetwork$slambda()), $completion);
|
|
12
12
|
return Unit_instance;
|
|
13
13
|
}
|
|
@@ -22,7 +22,7 @@ import { Buffer3384y49aj0pxr as Buffer } from '../../../../../../okio-parent-oki
|
|
|
22
22
|
//endregion
|
|
23
23
|
function DefaultHttpEngine(timeoutMillis) {
|
|
24
24
|
timeoutMillis = timeoutMillis === VOID ? new (Long())(60000, 0) : timeoutMillis;
|
|
25
|
-
return JsHttpEngine().
|
|
25
|
+
return JsHttpEngine().y5j(timeoutMillis);
|
|
26
26
|
}
|
|
27
27
|
function JsHttpEngine$execute$lambda($abortController) {
|
|
28
28
|
return () => {
|
|
@@ -38,27 +38,27 @@ function JsHttpEngine() {
|
|
|
38
38
|
if (JsHttpEngineClass === VOID) {
|
|
39
39
|
class $ {
|
|
40
40
|
constructor(connectTimeoutMillis, readTimeoutMillis) {
|
|
41
|
-
return new.target.
|
|
41
|
+
return new.target.z5j(connectTimeoutMillis, readTimeoutMillis);
|
|
42
42
|
}
|
|
43
|
-
static
|
|
43
|
+
static z5j(connectTimeoutMillis, readTimeoutMillis) {
|
|
44
44
|
var $this = createThis(this);
|
|
45
|
-
$this.
|
|
46
|
-
$this.
|
|
45
|
+
$this.w5j_1 = connectTimeoutMillis;
|
|
46
|
+
$this.x5j_1 = readTimeoutMillis;
|
|
47
47
|
return $this;
|
|
48
48
|
}
|
|
49
|
-
static
|
|
50
|
-
return this.
|
|
49
|
+
static y5j(timeoutMillis) {
|
|
50
|
+
return this.z5j(timeoutMillis, timeoutMillis);
|
|
51
51
|
}
|
|
52
|
-
*
|
|
52
|
+
*b5d(request, $completion) {
|
|
53
53
|
var abortController = AbortController();
|
|
54
|
-
var connectTimeoutId = setTimeout(JsHttpEngine$execute$lambda(abortController), this.
|
|
54
|
+
var connectTimeoutId = setTimeout(JsHttpEngine$execute$lambda(abortController), this.w5j_1);
|
|
55
55
|
var fetchOptions = toFetchOptions(request, abortController.signal);
|
|
56
56
|
var responsePromise = fetch(request.o4t_1, fetchOptions);
|
|
57
57
|
var tmp;
|
|
58
58
|
try {
|
|
59
59
|
var response = yield* await_0(responsePromise, $completion);
|
|
60
60
|
clearTimeout(connectTimeoutId);
|
|
61
|
-
var responseBodySource = yield* readBody(response.body, this.
|
|
61
|
+
var responseBodySource = yield* readBody(response.body, this.x5j_1, abortController, $completion);
|
|
62
62
|
// Inline function 'kotlin.apply' call
|
|
63
63
|
var this_0 = (new (Builder())(response.status)).g4t(responseBodySource);
|
|
64
64
|
// Inline function 'kotlin.js.asDynamic' call
|
|
@@ -33,10 +33,10 @@ function HttpInfo() {
|
|
|
33
33
|
if (HttpInfoClass === VOID) {
|
|
34
34
|
class $ {
|
|
35
35
|
constructor(startMillis, endMillis, statusCode, headers) {
|
|
36
|
-
this.
|
|
37
|
-
this.
|
|
38
|
-
this.
|
|
39
|
-
this.
|
|
36
|
+
this.c5d_1 = startMillis;
|
|
37
|
+
this.d5d_1 = endMillis;
|
|
38
|
+
this.e5d_1 = statusCode;
|
|
39
|
+
this.f5d_1 = headers;
|
|
40
40
|
}
|
|
41
41
|
b3() {
|
|
42
42
|
return Key_instance;
|
|
@@ -25,15 +25,15 @@ function DefaultHttpInterceptorChain() {
|
|
|
25
25
|
if (DefaultHttpInterceptorChainClass === VOID) {
|
|
26
26
|
class $ {
|
|
27
27
|
constructor(interceptors, index) {
|
|
28
|
-
this.
|
|
29
|
-
this.
|
|
28
|
+
this.h5d_1 = interceptors;
|
|
29
|
+
this.i5d_1 = index;
|
|
30
30
|
}
|
|
31
|
-
*
|
|
31
|
+
*j5d(request, $completion) {
|
|
32
32
|
// Inline function 'kotlin.check' call
|
|
33
|
-
if (!(this.
|
|
33
|
+
if (!(this.i5d_1 < this.h5d_1.q2())) {
|
|
34
34
|
throw IllegalStateException().o('Check failed.');
|
|
35
35
|
}
|
|
36
|
-
return yield* this.
|
|
36
|
+
return yield* this.h5d_1.p2(this.i5d_1).g5d(request, new (DefaultHttpInterceptorChain())(this.h5d_1, this.i5d_1 + 1 | 0), $completion);
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
initMetadataForClass($, 'DefaultHttpInterceptorChain', VOID, VOID, VOID, [1]);
|