@continuous-excellence/coupling-cli 1.1.754 → 1.1.756
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Auth0Environment.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigCommand.mjs +38 -38
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +17 -17
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +7 -7
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.mjs +6 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.mjs +7 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +42 -42
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +38 -38
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.mjs +51 -51
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +40 -40
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +32 -32
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +62 -62
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +10 -10
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +13 -13
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +95 -95
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/ContributionId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs +55 -55
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +14 -14
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSetId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PairingRule.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyDetails.mjs +27 -27
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +5 -5
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/SecretId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs +16 -16
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs +21 -21
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/PlayerId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/callsign/CallSign.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/user/UserId.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +18 -18
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +23 -23
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +11 -11
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/ContributionDetailsMapper.mjs +16 -16
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyContributionReportContributionsQuery.mjs +38 -38
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +27 -27
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +16 -16
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_VariablesAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +11 -11
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetails.mjs +51 -51
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +77 -77
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +44 -44
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +15 -15
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs +28 -28
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/ContributionDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PairingSetDetailsSelections.mjs +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PartyDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PlayerDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/CurrentPairAssignmentsQuerySelections.mjs +4 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/CurrentPairAssignmentsQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyContributionReportContributionsQuerySelections.mjs +5 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyContributionReportContributionsQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyDetailsQuerySelections.mjs +4 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyDetailsQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/SaveContributionMutationSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +30 -29
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +10 -29
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Contribution.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +39 -39
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionReport.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs +18 -29
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/DateTimeISO.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Duration.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLBoolean.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLInt.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLString.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Mutation.mjs +8 -8
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairingSet.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairingSetId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Party.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyInput.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PinId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PinSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Player.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PlayerId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PlayerSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Query.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionWindow_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionsInput_InputAdapter.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +4 -4
- package/kotlin/apollo-kotlin-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs +15 -6
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +72 -66
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Error.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs +33 -15
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Operations.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/RequestParameters.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs +42 -0
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs +49 -0
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonWriter.mjs +18 -18
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/Utils.mjs +19 -4
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/Utils.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs +76 -76
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +11 -11
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +201 -180
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/NetworkInterceptor.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +35 -35
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +42 -42
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/flows.mjs +14 -14
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/IncrementalDeliveryProtocolImpl.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_1IncrementalResultsMerger.mjs +32 -32
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_2IncrementalResultsMerger.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/is-node.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs +79 -79
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ClientMessage.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/GraphQLWsProtocol.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ServerMessage.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/WebSocketEngine.js.mjs +39 -39
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/WebSocketNetworkTransport.mjs +58 -58
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/SubscribableWebSocket.mjs +196 -96
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/SubscribableWebSocket.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/WebSocketPool.mjs +20 -20
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +11 -11
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +24 -24
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +105 -105
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +19 -19
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +14 -14
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +28 -28
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +28 -28
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +111 -111
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +95 -95
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +138 -138
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +132 -132
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +48 -48
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +13 -13
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/EagerOption.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/FlagOption.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/Option.mjs +21 -21
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +204 -204
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +5 -5
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +35 -35
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +231 -231
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/command/SuspendingCliktCommand.mjs +2 -2
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +65 -65
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +25 -25
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +121 -121
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +134 -134
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +62 -62
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +20 -20
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +9 -9
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +25 -25
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +4 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +11 -11
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +11 -11
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +2 -2
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +15 -15
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +40 -40
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +61 -61
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +79 -79
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Theme.mjs +44 -44
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Whitespace.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Widget.mjs +2 -2
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/WidthRange.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Borders.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Table.mjs +234 -234
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +152 -152
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +54 -54
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +18 -18
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +10 -10
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +56 -56
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +68 -68
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs +29 -29
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs.map +1 -1
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +1 -1
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +118 -118
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +36 -36
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +22 -22
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +26 -26
- package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +4 -4
- package/package.json +1 -1
|
@@ -178,21 +178,21 @@ function DefaultWebSocketEngine$open$5() {
|
|
|
178
178
|
if (DefaultWebSocketEngine$open$5Class === VOID) {
|
|
179
179
|
class $ {
|
|
180
180
|
constructor($messageChannel, $socket) {
|
|
181
|
-
this.
|
|
182
|
-
this.
|
|
181
|
+
this.e5k_1 = $messageChannel;
|
|
182
|
+
this.f5k_1 = $socket;
|
|
183
183
|
}
|
|
184
|
-
*
|
|
185
|
-
return yield* this.
|
|
184
|
+
*t5j($completion) {
|
|
185
|
+
return yield* this.e5k_1.q1d($completion);
|
|
186
186
|
}
|
|
187
|
-
|
|
188
|
-
this.
|
|
187
|
+
s5j(data) {
|
|
188
|
+
this.f5k_1.send(new Uint8Array(toTypedArray(data.t4f())));
|
|
189
189
|
}
|
|
190
|
-
|
|
191
|
-
this.
|
|
190
|
+
g5h(string) {
|
|
191
|
+
this.f5k_1.send(string);
|
|
192
192
|
}
|
|
193
193
|
j6() {
|
|
194
|
-
this.
|
|
195
|
-
this.
|
|
194
|
+
this.f5k_1.close(1000);
|
|
195
|
+
this.e5k_1.z1d();
|
|
196
196
|
}
|
|
197
197
|
}
|
|
198
198
|
initMetadataForClass($, VOID, VOID, VOID, VOID, [0]);
|
|
@@ -265,7 +265,7 @@ var DefaultWebSocketEngineClass;
|
|
|
265
265
|
function DefaultWebSocketEngine() {
|
|
266
266
|
if (DefaultWebSocketEngineClass === VOID) {
|
|
267
267
|
class $ {
|
|
268
|
-
*
|
|
268
|
+
*d5j(url, headers, $completion) {
|
|
269
269
|
return yield* /*#__NOINLINE__*/open(this, Url(url), headers, $completion);
|
|
270
270
|
}
|
|
271
271
|
}
|
|
@@ -50,17 +50,17 @@ function Factory() {
|
|
|
50
50
|
}
|
|
51
51
|
connectionPayload = tmp;
|
|
52
52
|
frameType = frameType === VOID ? WsFrameType_Text_getInstance() : frameType;
|
|
53
|
-
this.
|
|
54
|
-
this.
|
|
55
|
-
this.
|
|
53
|
+
this.h5h_1 = connectionAcknowledgeTimeoutMs;
|
|
54
|
+
this.i5h_1 = connectionPayload;
|
|
55
|
+
this.j5h_1 = frameType;
|
|
56
56
|
}
|
|
57
57
|
d1() {
|
|
58
58
|
return 'graphql-ws';
|
|
59
59
|
}
|
|
60
|
-
|
|
61
|
-
var tmp0_connectionPayload = this.
|
|
62
|
-
var tmp1_connectionAcknowledgeTimeoutMs = this.
|
|
63
|
-
var tmp2_frameType = this.
|
|
60
|
+
k5h(webSocketConnection, listener, scope) {
|
|
61
|
+
var tmp0_connectionPayload = this.i5h_1;
|
|
62
|
+
var tmp1_connectionAcknowledgeTimeoutMs = this.h5h_1;
|
|
63
|
+
var tmp2_frameType = this.j5h_1;
|
|
64
64
|
return new (SubscriptionWsProtocol())(webSocketConnection, listener, tmp1_connectionAcknowledgeTimeoutMs, tmp0_connectionPayload, tmp2_frameType);
|
|
65
65
|
}
|
|
66
66
|
}
|
|
@@ -76,7 +76,7 @@ function SubscriptionWsProtocol$_init_$slambda_7z3jff() {
|
|
|
76
76
|
}
|
|
77
77
|
function SubscriptionWsProtocol$connectionInit$slambda(this$0) {
|
|
78
78
|
return constructCallableReference(function *($this$withTimeout, $completion) {
|
|
79
|
-
var map = yield* this$0.
|
|
79
|
+
var map = yield* this$0.n5h($completion);
|
|
80
80
|
var type = map.j4('type');
|
|
81
81
|
var tmp;
|
|
82
82
|
if (equals(type, 'connection_ack')) {
|
|
@@ -105,46 +105,46 @@ function SubscriptionWsProtocol() {
|
|
|
105
105
|
connectionPayload = tmp;
|
|
106
106
|
frameType = frameType === VOID ? WsFrameType_Text_getInstance() : frameType;
|
|
107
107
|
super(webSocketConnection, listener);
|
|
108
|
-
this.
|
|
109
|
-
this.
|
|
110
|
-
this.
|
|
108
|
+
this.q5h_1 = connectionAcknowledgeTimeoutMs;
|
|
109
|
+
this.r5h_1 = connectionPayload;
|
|
110
|
+
this.s5h_1 = frameType;
|
|
111
111
|
}
|
|
112
|
-
*
|
|
112
|
+
*t5h($completion) {
|
|
113
113
|
var message = mutableMapOf([to('type', 'connection_init')]);
|
|
114
|
-
var payload = yield* this.
|
|
114
|
+
var payload = yield* this.r5h_1($completion);
|
|
115
115
|
if (!(payload == null)) {
|
|
116
116
|
message.q4('payload', payload);
|
|
117
117
|
}
|
|
118
|
-
this.
|
|
119
|
-
yield* withTimeout(this.
|
|
118
|
+
this.u5h(message, this.s5h_1);
|
|
119
|
+
yield* withTimeout(this.q5h_1, SubscriptionWsProtocol$connectionInit$slambda(this), $completion);
|
|
120
120
|
return Unit_instance;
|
|
121
121
|
}
|
|
122
|
-
|
|
122
|
+
v5h(messageMap) {
|
|
123
123
|
var tmp0_subject = messageMap.j4('type');
|
|
124
124
|
if (equals(tmp0_subject, 'data')) {
|
|
125
125
|
var tmp = messageMap.j4('id');
|
|
126
126
|
var tmp_0 = (!(tmp == null) ? typeof tmp === 'string' : false) ? tmp : THROW_CCE();
|
|
127
127
|
var tmp_1 = messageMap.j4('payload');
|
|
128
|
-
this.
|
|
128
|
+
this.m5h_1.z5h(tmp_0, (!(tmp_1 == null) ? isInterface(tmp_1, KtMap()) : false) ? tmp_1 : THROW_CCE());
|
|
129
129
|
} else if (equals(tmp0_subject, 'error')) {
|
|
130
130
|
var id = messageMap.j4('id');
|
|
131
131
|
if (!(id == null) ? typeof id === 'string' : false) {
|
|
132
132
|
var tmp_2 = messageMap.j4('payload');
|
|
133
|
-
this.
|
|
133
|
+
this.m5h_1.y5h(id, (tmp_2 == null ? true : isInterface(tmp_2, KtMap())) ? tmp_2 : THROW_CCE());
|
|
134
134
|
} else {
|
|
135
135
|
var tmp_3 = messageMap.j4('payload');
|
|
136
|
-
this.
|
|
136
|
+
this.m5h_1.x5h((tmp_3 == null ? true : isInterface(tmp_3, KtMap())) ? tmp_3 : THROW_CCE());
|
|
137
137
|
}
|
|
138
138
|
} else if (equals(tmp0_subject, 'complete')) {
|
|
139
139
|
var tmp_4 = messageMap.j4('id');
|
|
140
|
-
this.
|
|
140
|
+
this.m5h_1.w5h((!(tmp_4 == null) ? typeof tmp_4 === 'string' : false) ? tmp_4 : THROW_CCE());
|
|
141
141
|
}
|
|
142
142
|
}
|
|
143
|
-
|
|
144
|
-
this.
|
|
143
|
+
a5i(request) {
|
|
144
|
+
this.u5h(mapOf([to('type', 'start'), to('id', request.z4k_1.toString()), to('payload', toMap(toRequestParameters(request)))]), this.s5h_1);
|
|
145
145
|
}
|
|
146
|
-
|
|
147
|
-
this.
|
|
146
|
+
k5f(request) {
|
|
147
|
+
this.u5h(mapOf([to('type', 'stop'), to('id', request.z4k_1.toString())]), this.s5h_1);
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
150
|
initMetadataForClass($, 'SubscriptionWsProtocol', VOID, VOID, VOID, [0]);
|
|
@@ -86,7 +86,7 @@ function WebSocketNetworkTransport$execute$o$collect$slambda($$this$unsafeFlow,
|
|
|
86
86
|
return constructCallableReference(function *(value, $completion) {
|
|
87
87
|
var tmp0 = $$this$unsafeFlow;
|
|
88
88
|
$l$block: {
|
|
89
|
-
if (value.
|
|
89
|
+
if (value.h5i() === $request.z4k_1.toString() || value.h5i() == null) {
|
|
90
90
|
yield* tmp0.h1g(value, $completion);
|
|
91
91
|
break $l$block;
|
|
92
92
|
}
|
|
@@ -99,11 +99,11 @@ function WebSocketNetworkTransport$execute$o$collect$slambda_0($$this$unsafeFlow
|
|
|
99
99
|
var $this$transform = $$this$unsafeFlow;
|
|
100
100
|
var tmp;
|
|
101
101
|
if (value instanceof OperationResponse()) {
|
|
102
|
-
var responsePayload = value.
|
|
102
|
+
var responsePayload = value.n5i_1;
|
|
103
103
|
var requestCustomScalarAdapters = ensureNotNull($request.c4l_1.y4p(Key_getInstance()));
|
|
104
104
|
var tmp_0;
|
|
105
105
|
if (isDeferred(responsePayload)) {
|
|
106
|
-
tmp_0 = to($incrementalResultsMerger.
|
|
106
|
+
tmp_0 = to($incrementalResultsMerger.u5c(responsePayload), $incrementalResultsMerger.q5c());
|
|
107
107
|
} else {
|
|
108
108
|
tmp_0 = to(responsePayload, null);
|
|
109
109
|
}
|
|
@@ -111,16 +111,16 @@ function WebSocketNetworkTransport$execute$o$collect$slambda_0($$this$unsafeFlow
|
|
|
111
111
|
var payload = _destruct__k2r9zo.pl();
|
|
112
112
|
var deferredFragmentIdentifiers = _destruct__k2r9zo.ql();
|
|
113
113
|
var apolloResponse = toApolloResponse(jsonReader(payload), $request.y4k_1, $request.z4k_1, requestCustomScalarAdapters, deferredFragmentIdentifiers);
|
|
114
|
-
if (!$incrementalResultsMerger.
|
|
115
|
-
$incrementalResultsMerger.
|
|
114
|
+
if (!$incrementalResultsMerger.r5c()) {
|
|
115
|
+
$incrementalResultsMerger.v5c();
|
|
116
116
|
}
|
|
117
117
|
tmp = apolloResponse;
|
|
118
118
|
} else {
|
|
119
119
|
if (value instanceof OperationError()) {
|
|
120
|
-
tmp = errorResponse(this$0, $request, SubscriptionOperationException().
|
|
120
|
+
tmp = errorResponse(this$0, $request, SubscriptionOperationException().s4y($request.y4k_1.operationName(), value.l5i_1));
|
|
121
121
|
} else {
|
|
122
122
|
if (value instanceof NetworkError()) {
|
|
123
|
-
tmp = errorResponse(this$0, $request, ApolloNetworkException().j4r('Network error while executing ' + $request.y4k_1.operationName(), value.
|
|
123
|
+
tmp = errorResponse(this$0, $request, ApolloNetworkException().j4r('Network error while executing ' + $request.y4k_1.operationName(), value.i5i_1));
|
|
124
124
|
} else {
|
|
125
125
|
var tmp_1;
|
|
126
126
|
if (value instanceof ConnectionReEstablished()) {
|
|
@@ -153,7 +153,7 @@ function WebSocketNetworkTransport$execute$o$collect$slambda_1($$this$unsafeFlow
|
|
|
153
153
|
return constructCallableReference(function *(value, $completion) {
|
|
154
154
|
var tmp0 = $$this$unsafeFlow;
|
|
155
155
|
$l$block: {
|
|
156
|
-
if (!$incrementalResultsMerger.
|
|
156
|
+
if (!$incrementalResultsMerger.s5c()) {
|
|
157
157
|
yield* tmp0.h1g(value, $completion);
|
|
158
158
|
break $l$block;
|
|
159
159
|
}
|
|
@@ -169,18 +169,18 @@ function *supervise($this, scope, $completion) {
|
|
|
169
169
|
// Inline function 'kotlin.collections.mutableMapOf' call
|
|
170
170
|
var activeMessages = LinkedHashMap().lc();
|
|
171
171
|
$l$loop_1: while (true) {
|
|
172
|
-
var message = yield* $this.
|
|
172
|
+
var message = yield* $this.v5i_1.q1d($completion);
|
|
173
173
|
if (isInterface(message, Event())) {
|
|
174
174
|
if (message instanceof NetworkError()) {
|
|
175
175
|
supervise$closeProtocol(protocol, connectionJob, idleJob);
|
|
176
|
-
var tmp0_safe_receiver = $this.
|
|
177
|
-
if ((tmp0_safe_receiver == null ? null : (yield* tmp0_safe_receiver(message.
|
|
176
|
+
var tmp0_safe_receiver = $this.t5i_1;
|
|
177
|
+
if ((tmp0_safe_receiver == null ? null : (yield* tmp0_safe_receiver(message.i5i_1, reopenAttemptCount, $completion))) === true) {
|
|
178
178
|
var _unary__edvuaz = reopenAttemptCount;
|
|
179
179
|
reopenAttemptCount = add(_unary__edvuaz, get_ONE());
|
|
180
|
-
yield* $this.
|
|
180
|
+
yield* $this.v5i_1.n1d(RestartConnection_instance, $completion);
|
|
181
181
|
} else {
|
|
182
182
|
reopenAttemptCount = new (Long())(0, 0);
|
|
183
|
-
$this.
|
|
183
|
+
$this.w5i_1.r1h(message);
|
|
184
184
|
}
|
|
185
185
|
} else {
|
|
186
186
|
if (message instanceof ConnectionReEstablished()) {
|
|
@@ -189,11 +189,11 @@ function *supervise($this, scope, $completion) {
|
|
|
189
189
|
var _iterator__ex2g4s = activeMessages.l4().l1();
|
|
190
190
|
while (_iterator__ex2g4s.m1()) {
|
|
191
191
|
var element = _iterator__ex2g4s.n1();
|
|
192
|
-
$this.
|
|
192
|
+
$this.v5i_1.o1d(element);
|
|
193
193
|
}
|
|
194
194
|
} else {
|
|
195
195
|
reopenAttemptCount = new (Long())(0, 0);
|
|
196
|
-
$this.
|
|
196
|
+
$this.w5i_1.r1h(message);
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
199
|
} else {
|
|
@@ -204,14 +204,14 @@ function *supervise($this, scope, $completion) {
|
|
|
204
204
|
}
|
|
205
205
|
if (protocol._v == null) {
|
|
206
206
|
if (message instanceof StopOperation()) {
|
|
207
|
-
activeMessages.r4(message.
|
|
207
|
+
activeMessages.r4(message.c5j_1.z4k_1);
|
|
208
208
|
continue $l$loop_1;
|
|
209
209
|
}
|
|
210
210
|
var tmp;
|
|
211
211
|
try {
|
|
212
|
-
var tmp_0 = yield* $this.
|
|
212
|
+
var tmp_0 = yield* $this.o5i_1($completion);
|
|
213
213
|
var tmp_1;
|
|
214
|
-
var tmp0 = $this.
|
|
214
|
+
var tmp0 = $this.p5i_1;
|
|
215
215
|
var tmp$ret$3;
|
|
216
216
|
$l$block_0: {
|
|
217
217
|
// Inline function 'kotlin.collections.any' call
|
|
@@ -236,30 +236,30 @@ function *supervise($this, scope, $completion) {
|
|
|
236
236
|
tmp$ret$3 = false;
|
|
237
237
|
}
|
|
238
238
|
if (tmp$ret$3) {
|
|
239
|
-
tmp_1 = $this.
|
|
239
|
+
tmp_1 = $this.p5i_1;
|
|
240
240
|
} else {
|
|
241
|
-
tmp_1 = plus($this.
|
|
241
|
+
tmp_1 = plus($this.p5i_1, new (HttpHeader())('Sec-WebSocket-Protocol', $this.s5i_1.d1()));
|
|
242
242
|
}
|
|
243
|
-
tmp = yield* $this.
|
|
243
|
+
tmp = yield* $this.q5i_1.d5j(tmp_0, tmp_1, $completion);
|
|
244
244
|
} catch ($p) {
|
|
245
245
|
var tmp_3;
|
|
246
246
|
if ($p instanceof Exception()) {
|
|
247
247
|
var e = $p;
|
|
248
|
-
yield* $this.
|
|
248
|
+
yield* $this.v5i_1.n1d(new (NetworkError())(e), $completion);
|
|
249
249
|
continue $l$loop_1;
|
|
250
250
|
} else {
|
|
251
251
|
throw $p;
|
|
252
252
|
}
|
|
253
253
|
}
|
|
254
254
|
var webSocketConnection = tmp;
|
|
255
|
-
protocol._v = $this.
|
|
255
|
+
protocol._v = $this.s5i_1.k5h(webSocketConnection, $this.b5j_1, scope);
|
|
256
256
|
try {
|
|
257
|
-
yield* ensureNotNull(protocol._v).
|
|
257
|
+
yield* ensureNotNull(protocol._v).t5h($completion);
|
|
258
258
|
} catch ($p_0) {
|
|
259
259
|
if ($p_0 instanceof Exception()) {
|
|
260
260
|
var e_0 = $p_0;
|
|
261
261
|
protocol._v = null;
|
|
262
|
-
yield* $this.
|
|
262
|
+
yield* $this.v5i_1.n1d(new (NetworkError())(e_0), $completion);
|
|
263
263
|
continue $l$loop_1;
|
|
264
264
|
} else {
|
|
265
265
|
throw $p_0;
|
|
@@ -270,16 +270,16 @@ function *supervise($this, scope, $completion) {
|
|
|
270
270
|
}
|
|
271
271
|
if (message instanceof StartOperation()) {
|
|
272
272
|
// Inline function 'kotlin.collections.set' call
|
|
273
|
-
var key = message.
|
|
273
|
+
var key = message.e5j_1.z4k_1;
|
|
274
274
|
activeMessages.q4(key, message);
|
|
275
|
-
ensureNotNull(protocol._v).
|
|
275
|
+
ensureNotNull(protocol._v).a5i(message.e5j_1);
|
|
276
276
|
} else {
|
|
277
277
|
if (message instanceof StopOperation()) {
|
|
278
|
-
activeMessages.r4(message.
|
|
279
|
-
ensureNotNull(protocol._v).
|
|
278
|
+
activeMessages.r4(message.c5j_1.z4k_1);
|
|
279
|
+
ensureNotNull(protocol._v).k5f(message.c5j_1);
|
|
280
280
|
} else {
|
|
281
281
|
if (message instanceof RestartConnection()) {
|
|
282
|
-
yield* $this.
|
|
282
|
+
yield* $this.v5i_1.n1d(new (ConnectionReEstablished())(), $completion);
|
|
283
283
|
}
|
|
284
284
|
}
|
|
285
285
|
}
|
|
@@ -311,49 +311,49 @@ function Builder_0() {
|
|
|
311
311
|
if (BuilderClass === VOID) {
|
|
312
312
|
class $ {
|
|
313
313
|
constructor() {
|
|
314
|
-
this.
|
|
314
|
+
this.y59_1 = null;
|
|
315
315
|
var tmp = this;
|
|
316
316
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
317
|
-
tmp.
|
|
318
|
-
this.y59_1 = null;
|
|
319
|
-
this.z59_1 = null;
|
|
317
|
+
tmp.z59_1 = ArrayList().i2();
|
|
320
318
|
this.a5a_1 = null;
|
|
321
319
|
this.b5a_1 = null;
|
|
322
|
-
this.c5a_1 =
|
|
320
|
+
this.c5a_1 = null;
|
|
321
|
+
this.d5a_1 = null;
|
|
322
|
+
this.e5a_1 = IncrementalDeliveryProtocol_V0_1_getInstance();
|
|
323
323
|
}
|
|
324
|
-
|
|
324
|
+
k58(serverUrl) {
|
|
325
325
|
// Inline function 'kotlin.apply' call
|
|
326
326
|
var tmp = this;
|
|
327
|
-
tmp.
|
|
327
|
+
tmp.y59_1 = WebSocketNetworkTransport$Builder$serverUrl$slambda(serverUrl);
|
|
328
328
|
return this;
|
|
329
329
|
}
|
|
330
|
-
|
|
330
|
+
j5a(serverUrl) {
|
|
331
331
|
// Inline function 'kotlin.apply' call
|
|
332
|
-
this.
|
|
332
|
+
this.y59_1 = serverUrl;
|
|
333
333
|
return this;
|
|
334
334
|
}
|
|
335
|
-
|
|
335
|
+
f5a(webSocketEngine) {
|
|
336
336
|
// Inline function 'kotlin.apply' call
|
|
337
|
-
this.
|
|
337
|
+
this.a5a_1 = webSocketEngine;
|
|
338
338
|
return this;
|
|
339
339
|
}
|
|
340
|
-
|
|
340
|
+
g5a(idleTimeoutMillis) {
|
|
341
341
|
// Inline function 'kotlin.apply' call
|
|
342
|
-
this.
|
|
342
|
+
this.b5a_1 = idleTimeoutMillis;
|
|
343
343
|
return this;
|
|
344
344
|
}
|
|
345
|
-
|
|
345
|
+
h5a(protocolFactory) {
|
|
346
346
|
// Inline function 'kotlin.apply' call
|
|
347
|
-
this.
|
|
347
|
+
this.c5a_1 = protocolFactory;
|
|
348
348
|
return this;
|
|
349
349
|
}
|
|
350
|
-
|
|
350
|
+
i5a(reopenWhen) {
|
|
351
351
|
// Inline function 'kotlin.apply' call
|
|
352
|
-
this.
|
|
352
|
+
this.d5a_1 = reopenWhen;
|
|
353
353
|
return this;
|
|
354
354
|
}
|
|
355
355
|
f2t() {
|
|
356
|
-
var tmp0_elvis_lhs = this.
|
|
356
|
+
var tmp0_elvis_lhs = this.y59_1;
|
|
357
357
|
var tmp;
|
|
358
358
|
if (tmp0_elvis_lhs == null) {
|
|
359
359
|
// Inline function 'kotlin.error' call
|
|
@@ -363,13 +363,13 @@ function Builder_0() {
|
|
|
363
363
|
tmp = tmp0_elvis_lhs;
|
|
364
364
|
}
|
|
365
365
|
var tmp_0 = tmp;
|
|
366
|
-
var tmp_1 = this.
|
|
367
|
-
var tmp1_elvis_lhs = this.
|
|
366
|
+
var tmp_1 = this.z59_1;
|
|
367
|
+
var tmp1_elvis_lhs = this.a5a_1;
|
|
368
368
|
var tmp_2 = tmp1_elvis_lhs == null ? new (DefaultWebSocketEngine())() : tmp1_elvis_lhs;
|
|
369
|
-
var tmp2_elvis_lhs = this.
|
|
369
|
+
var tmp2_elvis_lhs = this.b5a_1;
|
|
370
370
|
var tmp_3 = tmp2_elvis_lhs == null ? new (Long())(60000, 0) : tmp2_elvis_lhs;
|
|
371
|
-
var tmp3_elvis_lhs = this.
|
|
372
|
-
return new (WebSocketNetworkTransport())(tmp_0, tmp_1, tmp_2, tmp_3, tmp3_elvis_lhs == null ? new (Factory())() : tmp3_elvis_lhs, this.
|
|
371
|
+
var tmp3_elvis_lhs = this.c5a_1;
|
|
372
|
+
return new (WebSocketNetworkTransport())(tmp_0, tmp_1, tmp_2, tmp_3, tmp3_elvis_lhs == null ? new (Factory())() : tmp3_elvis_lhs, this.d5a_1, get_impl(this.e5a_1));
|
|
373
373
|
}
|
|
374
374
|
}
|
|
375
375
|
initMetadataForClass($, 'Builder', Builder_0);
|
|
@@ -382,13 +382,13 @@ function sam$kotlinx_coroutines_flow_FlowCollector$0() {
|
|
|
382
382
|
if (sam$kotlinx_coroutines_flow_FlowCollector$0Class === VOID) {
|
|
383
383
|
class $ {
|
|
384
384
|
constructor(function_0) {
|
|
385
|
-
this.
|
|
385
|
+
this.f5j_1 = function_0;
|
|
386
386
|
}
|
|
387
387
|
*h1g(value, $completion) {
|
|
388
|
-
return yield* this.
|
|
388
|
+
return yield* this.f5j_1(value, $completion);
|
|
389
389
|
}
|
|
390
390
|
c5() {
|
|
391
|
-
return this.
|
|
391
|
+
return this.f5j_1;
|
|
392
392
|
}
|
|
393
393
|
equals(other) {
|
|
394
394
|
var tmp;
|
|
@@ -425,22 +425,22 @@ function WebSocketNetworkTransport$listener$1() {
|
|
|
425
425
|
if (WebSocketNetworkTransport$listener$1Class === VOID) {
|
|
426
426
|
class $ {
|
|
427
427
|
constructor(this$0) {
|
|
428
|
-
this.
|
|
428
|
+
this.g5j_1 = this$0;
|
|
429
429
|
}
|
|
430
|
-
|
|
431
|
-
this.
|
|
430
|
+
z5h(id, payload) {
|
|
431
|
+
this.g5j_1.v5i_1.o1d(new (OperationResponse())(id, payload));
|
|
432
432
|
}
|
|
433
|
-
|
|
434
|
-
this.
|
|
433
|
+
y5h(id, payload) {
|
|
434
|
+
this.g5j_1.v5i_1.o1d(new (OperationError())(id, payload));
|
|
435
435
|
}
|
|
436
|
-
|
|
437
|
-
this.
|
|
436
|
+
w5h(id) {
|
|
437
|
+
this.g5j_1.v5i_1.o1d(new (OperationComplete())(id));
|
|
438
438
|
}
|
|
439
|
-
|
|
440
|
-
this.
|
|
439
|
+
x5h(payload) {
|
|
440
|
+
this.g5j_1.v5i_1.o1d(new (GeneralError())(payload));
|
|
441
441
|
}
|
|
442
|
-
|
|
443
|
-
this.
|
|
442
|
+
h5j(cause) {
|
|
443
|
+
this.g5j_1.v5i_1.o1d(new (NetworkError())(cause));
|
|
444
444
|
}
|
|
445
445
|
}
|
|
446
446
|
initMetadataForClass($);
|
|
@@ -473,20 +473,20 @@ function supervise$closeProtocol(protocol, connectionJob, idleJob) {
|
|
|
473
473
|
}
|
|
474
474
|
function WebSocketNetworkTransport$supervise$slambda($protocol) {
|
|
475
475
|
return constructCallableReference(function *($this$launch, $completion) {
|
|
476
|
-
yield* ensureNotNull($protocol._v).
|
|
476
|
+
yield* ensureNotNull($protocol._v).g5i($completion);
|
|
477
477
|
return Unit_instance;
|
|
478
478
|
}, 1);
|
|
479
479
|
}
|
|
480
480
|
function WebSocketNetworkTransport$supervise$slambda_0(this$0, $protocol, $connectionJob, $idleJob) {
|
|
481
481
|
return constructCallableReference(function *($this$launch, $completion) {
|
|
482
|
-
yield* delay(this$0.
|
|
482
|
+
yield* delay(this$0.r5i_1, $completion);
|
|
483
483
|
supervise$closeProtocol($protocol, $connectionJob, $idleJob);
|
|
484
484
|
return Unit_instance;
|
|
485
485
|
}, 1);
|
|
486
486
|
}
|
|
487
487
|
function WebSocketNetworkTransport$execute$slambda(this$0, $request) {
|
|
488
488
|
return constructCallableReference(function *($this$onSubscription, $completion) {
|
|
489
|
-
yield* this$0.
|
|
489
|
+
yield* this$0.v5i_1.n1d(new (StartOperation())($request), $completion);
|
|
490
490
|
return Unit_instance;
|
|
491
491
|
}, 1);
|
|
492
492
|
}
|
|
@@ -495,12 +495,12 @@ function WebSocketNetworkTransport$execute$$inlined$filter$1() {
|
|
|
495
495
|
if (WebSocketNetworkTransport$execute$$inlined$filter$1Class === VOID) {
|
|
496
496
|
class $ {
|
|
497
497
|
constructor($this, $request) {
|
|
498
|
-
this.
|
|
499
|
-
this.
|
|
498
|
+
this.i5j_1 = $this;
|
|
499
|
+
this.j5j_1 = $request;
|
|
500
500
|
}
|
|
501
501
|
*g1g(collector, $completion) {
|
|
502
|
-
var tmp = WebSocketNetworkTransport$execute$o$collect$slambda(collector, this.
|
|
503
|
-
yield* this.
|
|
502
|
+
var tmp = WebSocketNetworkTransport$execute$o$collect$slambda(collector, this.j5j_1);
|
|
503
|
+
yield* this.i5j_1.k1f(new (sam$kotlinx_coroutines_flow_FlowCollector$0())(tmp), $completion);
|
|
504
504
|
return Unit_instance;
|
|
505
505
|
}
|
|
506
506
|
k1f(collector, $completion) {
|
|
@@ -526,7 +526,7 @@ function WebSocketNetworkTransport$execute$slambda_0($request) {
|
|
|
526
526
|
tmp = false;
|
|
527
527
|
} else {
|
|
528
528
|
if (it instanceof GeneralError()) {
|
|
529
|
-
println('Received general error while executing operation ' + $request.y4k_1.operationName() + ': ' + toString_0(it.
|
|
529
|
+
println('Received general error while executing operation ' + $request.y4k_1.operationName() + ': ' + toString_0(it.k5j_1));
|
|
530
530
|
tmp = true;
|
|
531
531
|
} else {
|
|
532
532
|
yield* $this$transformWhile.h1g(it, $completion);
|
|
@@ -543,14 +543,14 @@ function WebSocketNetworkTransport$execute$$inlined$map$1() {
|
|
|
543
543
|
if (WebSocketNetworkTransport$execute$$inlined$map$1Class === VOID) {
|
|
544
544
|
class $ {
|
|
545
545
|
constructor($this, $request, $incrementalResultsMerger, this$0) {
|
|
546
|
-
this.
|
|
547
|
-
this.
|
|
548
|
-
this.
|
|
549
|
-
this.
|
|
546
|
+
this.m5j_1 = $this;
|
|
547
|
+
this.n5j_1 = $request;
|
|
548
|
+
this.o5j_1 = $incrementalResultsMerger;
|
|
549
|
+
this.p5j_1 = this$0;
|
|
550
550
|
}
|
|
551
551
|
*g1g(collector, $completion) {
|
|
552
|
-
var tmp = WebSocketNetworkTransport$execute$o$collect$slambda_0(collector, this.
|
|
553
|
-
yield* this.
|
|
552
|
+
var tmp = WebSocketNetworkTransport$execute$o$collect$slambda_0(collector, this.n5j_1, this.o5j_1, this.p5j_1);
|
|
553
|
+
yield* this.m5j_1.k1f(new (sam$kotlinx_coroutines_flow_FlowCollector$0())(tmp), $completion);
|
|
554
554
|
return Unit_instance;
|
|
555
555
|
}
|
|
556
556
|
k1f(collector, $completion) {
|
|
@@ -567,12 +567,12 @@ function WebSocketNetworkTransport$execute$$inlined$filterNot$1() {
|
|
|
567
567
|
if (WebSocketNetworkTransport$execute$$inlined$filterNot$1Class === VOID) {
|
|
568
568
|
class $ {
|
|
569
569
|
constructor($this, $incrementalResultsMerger) {
|
|
570
|
-
this.
|
|
571
|
-
this.
|
|
570
|
+
this.q5j_1 = $this;
|
|
571
|
+
this.r5j_1 = $incrementalResultsMerger;
|
|
572
572
|
}
|
|
573
573
|
*g1g(collector, $completion) {
|
|
574
|
-
var tmp = WebSocketNetworkTransport$execute$o$collect$slambda_1(collector, this.
|
|
575
|
-
yield* this.
|
|
574
|
+
var tmp = WebSocketNetworkTransport$execute$o$collect$slambda_1(collector, this.r5j_1);
|
|
575
|
+
yield* this.q5j_1.k1f(new (sam$kotlinx_coroutines_flow_FlowCollector$0())(tmp), $completion);
|
|
576
576
|
return Unit_instance;
|
|
577
577
|
}
|
|
578
578
|
k1f(collector, $completion) {
|
|
@@ -586,7 +586,7 @@ function WebSocketNetworkTransport$execute$$inlined$filterNot$1() {
|
|
|
586
586
|
}
|
|
587
587
|
function WebSocketNetworkTransport$execute$slambda_1(this$0, $request) {
|
|
588
588
|
return constructCallableReference(function *($this$onCompletion, it, $completion) {
|
|
589
|
-
yield* this$0.
|
|
589
|
+
yield* this$0.v5i_1.n1d(new (StopOperation())($request), $completion);
|
|
590
590
|
return Unit_instance;
|
|
591
591
|
}, 2);
|
|
592
592
|
}
|
|
@@ -598,28 +598,28 @@ function WebSocketNetworkTransport() {
|
|
|
598
598
|
webSocketEngine = webSocketEngine === VOID ? new (DefaultWebSocketEngine())() : webSocketEngine;
|
|
599
599
|
idleTimeoutMillis = idleTimeoutMillis === VOID ? new (Long())(60000, 0) : idleTimeoutMillis;
|
|
600
600
|
protocolFactory = protocolFactory === VOID ? new (Factory())() : protocolFactory;
|
|
601
|
-
this.
|
|
602
|
-
this.
|
|
603
|
-
this.
|
|
604
|
-
this.
|
|
605
|
-
this.
|
|
606
|
-
this.
|
|
607
|
-
this.
|
|
608
|
-
this.
|
|
609
|
-
this.
|
|
610
|
-
this.
|
|
611
|
-
this.
|
|
612
|
-
this.
|
|
613
|
-
this.
|
|
614
|
-
launch(this.
|
|
601
|
+
this.o5i_1 = serverUrl;
|
|
602
|
+
this.p5i_1 = headers;
|
|
603
|
+
this.q5i_1 = webSocketEngine;
|
|
604
|
+
this.r5i_1 = idleTimeoutMillis;
|
|
605
|
+
this.s5i_1 = protocolFactory;
|
|
606
|
+
this.t5i_1 = reopenWhen;
|
|
607
|
+
this.u5i_1 = incrementalDeliveryProtocolImpl;
|
|
608
|
+
this.v5i_1 = Channel(2147483647);
|
|
609
|
+
this.w5i_1 = MutableSharedFlow(0, 2147483647, BufferOverflow_SUSPEND_getInstance());
|
|
610
|
+
this.x5i_1 = asSharedFlow(this.w5i_1);
|
|
611
|
+
this.y5i_1 = this.w5i_1.v1h();
|
|
612
|
+
this.z5i_1 = Dispatchers_getInstance().q19_1.j15(1);
|
|
613
|
+
this.a5j_1 = CoroutineScope(this.z5i_1);
|
|
614
|
+
launch(this.a5j_1, VOID, VOID, WebSocketNetworkTransport$slambda(this));
|
|
615
615
|
var tmp = this;
|
|
616
|
-
tmp.
|
|
616
|
+
tmp.b5j_1 = new (WebSocketNetworkTransport$listener$1())(this);
|
|
617
617
|
}
|
|
618
|
-
|
|
619
|
-
var incrementalResultsMerger = this.
|
|
618
|
+
s5a(request) {
|
|
619
|
+
var incrementalResultsMerger = this.u5i_1.i5c();
|
|
620
620
|
// Inline function 'kotlinx.coroutines.flow.filter' call
|
|
621
621
|
// Inline function 'kotlinx.coroutines.flow.unsafeTransform' call
|
|
622
|
-
var this_0 = onSubscription(this.
|
|
622
|
+
var this_0 = onSubscription(this.x5i_1, WebSocketNetworkTransport$execute$slambda(this, request));
|
|
623
623
|
// Inline function 'kotlinx.coroutines.flow.internal.unsafeFlow' call
|
|
624
624
|
var tmp = new (WebSocketNetworkTransport$execute$$inlined$filter$1())(this_0, request);
|
|
625
625
|
// Inline function 'kotlinx.coroutines.flow.map' call
|
|
@@ -634,7 +634,7 @@ function WebSocketNetworkTransport() {
|
|
|
634
634
|
return onCompletion(tmp_0, WebSocketNetworkTransport$execute$slambda_1(this, request));
|
|
635
635
|
}
|
|
636
636
|
m10() {
|
|
637
|
-
this.
|
|
637
|
+
this.v5i_1.o1d(Dispose_instance);
|
|
638
638
|
}
|
|
639
639
|
}
|
|
640
640
|
initMetadataForClass($, 'WebSocketNetworkTransport', VOID, VOID, VOID, [1]);
|