@continuous-excellence/coupling-cli 1.1.755 → 1.1.757
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Auth0Environment.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigCommand.mjs +38 -38
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +17 -17
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +7 -7
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.mjs +6 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.mjs +7 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +42 -42
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +38 -38
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.mjs +51 -51
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +40 -40
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +32 -32
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +62 -62
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +10 -10
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +13 -13
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +95 -95
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/ContributionId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs +55 -55
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +14 -14
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSetId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PairingRule.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyDetails.mjs +27 -27
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +5 -5
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/SecretId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs +16 -16
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs +21 -21
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/PlayerId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/callsign/CallSign.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/user/UserId.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +18 -18
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +23 -23
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +11 -11
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/ContributionDetailsMapper.mjs +16 -16
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyContributionReportContributionsQuery.mjs +38 -38
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +27 -27
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +16 -16
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_VariablesAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +11 -11
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetails.mjs +51 -51
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +77 -77
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +44 -44
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +15 -15
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs +28 -28
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/ContributionDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PairingSetDetailsSelections.mjs +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PartyDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PlayerDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/CurrentPairAssignmentsQuerySelections.mjs +4 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/CurrentPairAssignmentsQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyContributionReportContributionsQuerySelections.mjs +5 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyContributionReportContributionsQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyDetailsQuerySelections.mjs +4 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyDetailsQuerySelections.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/SaveContributionMutationSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +30 -29
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +10 -29
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Contribution.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +39 -39
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionReport.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs +18 -29
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/DateTimeISO.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Duration.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLBoolean.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLInt.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLString.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Mutation.mjs +8 -8
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairingSet.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PairingSetId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Party.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyInput.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PinId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PinSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Player.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PlayerId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PlayerSnapshot.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Query.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionWindow_ResponseAdapter.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionsInput_InputAdapter.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +4 -4
- package/kotlin/apollo-kotlin-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs +15 -6
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +72 -66
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Error.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs +33 -15
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Operations.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/RequestParameters.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs +42 -0
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs +49 -0
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonWriter.mjs +18 -18
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/Utils.mjs +19 -4
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/Utils.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs +76 -76
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +11 -11
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +201 -180
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/NetworkInterceptor.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +35 -35
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +42 -42
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/flows.mjs +14 -14
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/IncrementalDeliveryProtocolImpl.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_1IncrementalResultsMerger.mjs +32 -32
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_2IncrementalResultsMerger.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/is-node.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs +79 -79
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ClientMessage.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/GraphQLWsProtocol.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ServerMessage.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/WebSocketEngine.js.mjs +39 -39
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/WebSocketNetworkTransport.mjs +58 -58
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/SubscribableWebSocket.mjs +196 -96
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/SubscribableWebSocket.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/WebSocketPool.mjs +20 -20
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +11 -11
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +24 -24
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +105 -105
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +19 -19
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +14 -14
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +28 -28
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +28 -28
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +111 -111
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +95 -95
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +138 -138
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +132 -132
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +48 -48
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +13 -13
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/EagerOption.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/FlagOption.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/Option.mjs +21 -21
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +204 -204
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +5 -5
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +35 -35
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +231 -231
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/command/SuspendingCliktCommand.mjs +2 -2
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +65 -65
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +25 -25
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +121 -121
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +134 -134
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +62 -62
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +20 -20
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/DirectLoggerFactory.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +9 -9
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +25 -25
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +4 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +11 -11
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +11 -11
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +15 -15
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +40 -40
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +61 -61
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +79 -79
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Theme.mjs +44 -44
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Whitespace.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Widget.mjs +2 -2
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/WidthRange.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Borders.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Table.mjs +234 -234
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +152 -152
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +54 -54
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +18 -18
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +10 -10
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +56 -56
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +68 -68
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs +29 -29
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs.map +1 -1
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +1 -1
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +118 -118
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +36 -36
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +22 -22
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +26 -26
- package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +4 -4
- package/package.json +1 -1
|
@@ -53,13 +53,14 @@ import { DefaultHttpRequestComposer3cbqxfvy17yg2 as DefaultHttpRequestComposer }
|
|
|
53
53
|
import { DefaultHttpEngine26xguluicr03l as DefaultHttpEngine } from './DefaultHttpEngine.js.mjs';
|
|
54
54
|
import { FunctionAdapter3lcrrz3moet5b as FunctionAdapter } from '../../../../../../kotlin-kotlin-stdlib/kotlin/js/FunctionAdapter.mjs';
|
|
55
55
|
import { FlowCollector26clgpmzihvke as FlowCollector } from '../../../../../../kotlinx-coroutines-core/kotlinx/coroutines/flow/FlowCollector.mjs';
|
|
56
|
-
import { plus20p0vtfmu0596 as plus } from '../../../../../../kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs';
|
|
57
56
|
import { CancellationException3b36o9qz53rgr as CancellationException } from '../../../../../../kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs';
|
|
58
57
|
import { emitAllc6188g3y1sqz as emitAll } from '../../../../../../kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs';
|
|
59
58
|
import { get_impl1focltg7f8wvg as get_impl } from '../../internal/incremental/IncrementalDeliveryProtocolImpl.mjs';
|
|
59
|
+
import { plus20p0vtfmu0596 as plus } from '../../../../../../kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs';
|
|
60
60
|
import { Key_getInstance1eahaybkym4fk as Key_getInstance } from '../../../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs';
|
|
61
61
|
import { emptyList1g2z5xcrvp2zy as emptyList } from '../../../../../../kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs';
|
|
62
62
|
import { Collection1k04j3hzsbod0 as Collection } from '../../../../../../kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs';
|
|
63
|
+
import { equals2v6cggk171b6e as equals_0 } from '../../../../../../kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs';
|
|
63
64
|
//region block: imports
|
|
64
65
|
//endregion
|
|
65
66
|
//region block: pre-declaration
|
|
@@ -112,7 +113,7 @@ function HttpNetworkTransport$multipleResponses$o$collect$slambda($$this$unsafeF
|
|
|
112
113
|
reader.l4i();
|
|
113
114
|
var tmp_0;
|
|
114
115
|
if (!(errors == null)) {
|
|
115
|
-
tmp_0 = errorResponse(this$0, $operation, RouterError().
|
|
116
|
+
tmp_0 = errorResponse(this$0, $operation, RouterError().m4y(errors));
|
|
116
117
|
} else if (!(payloadResponse == null)) {
|
|
117
118
|
tmp_0 = payloadResponse;
|
|
118
119
|
} else {
|
|
@@ -121,13 +122,13 @@ function HttpNetworkTransport$multipleResponses$o$collect$slambda($$this$unsafeF
|
|
|
121
122
|
tmp = tmp_0;
|
|
122
123
|
} else {
|
|
123
124
|
if ($incrementalResultsMerger._v == null) {
|
|
124
|
-
$incrementalResultsMerger._v = this$0.
|
|
125
|
+
$incrementalResultsMerger._v = this$0.q5d_1.i5c();
|
|
125
126
|
}
|
|
126
|
-
var merged = $incrementalResultsMerger._v.
|
|
127
|
-
var deferredFragmentIdentifiers = $incrementalResultsMerger._v.
|
|
128
|
-
var isLast = !$incrementalResultsMerger._v.
|
|
127
|
+
var merged = $incrementalResultsMerger._v.t5c(value);
|
|
128
|
+
var deferredFragmentIdentifiers = $incrementalResultsMerger._v.q5c();
|
|
129
|
+
var isLast = !$incrementalResultsMerger._v.r5c();
|
|
129
130
|
var tmp_1;
|
|
130
|
-
if ($incrementalResultsMerger._v.
|
|
131
|
+
if ($incrementalResultsMerger._v.s5c()) {
|
|
131
132
|
tmp_1 = null;
|
|
132
133
|
} else {
|
|
133
134
|
tmp_1 = toApolloResponse(jsonReader(merged), $operation, VOID, $customScalarAdapters, deferredFragmentIdentifiers).p4l().g4m(isLast).f2t();
|
|
@@ -160,7 +161,7 @@ function errorResponse($this, operation, throwable) {
|
|
|
160
161
|
}
|
|
161
162
|
function errorResponse_0($this, operation, httpResponse) {
|
|
162
163
|
var tmp;
|
|
163
|
-
if ($this.
|
|
164
|
+
if ($this.n5d_1) {
|
|
164
165
|
tmp = httpResponse.m4t();
|
|
165
166
|
} else {
|
|
166
167
|
var tmp0_safe_receiver = httpResponse.m4t();
|
|
@@ -172,7 +173,7 @@ function errorResponse_0($this, operation, httpResponse) {
|
|
|
172
173
|
tmp = null;
|
|
173
174
|
}
|
|
174
175
|
var maybeBody = tmp;
|
|
175
|
-
var apolloException = ApolloHttpException().
|
|
176
|
+
var apolloException = ApolloHttpException().g4y(httpResponse.h4t_1, httpResponse.i4t_1, maybeBody, 'Http request failed with status code `' + httpResponse.h4t_1 + '`');
|
|
176
177
|
return flowOf(errorResponse($this, operation, apolloException));
|
|
177
178
|
}
|
|
178
179
|
function singleResponse($this, request, customScalarAdapters, httpResponse) {
|
|
@@ -181,8 +182,8 @@ function singleResponse($this, request, customScalarAdapters, httpResponse) {
|
|
|
181
182
|
var this_0 = jsonReader_0(ensureNotNull(httpResponse.m4t()));
|
|
182
183
|
var tmp0_elvis_lhs = request.k4l_1;
|
|
183
184
|
this_0.t4w(tmp0_elvis_lhs == null ? true : tmp0_elvis_lhs);
|
|
184
|
-
var response = toApolloResponse(this_0, operation, VOID, customScalarAdapters, null).p4l().b4m(httpResponse.l4t_1).f2t();
|
|
185
|
-
return flowOf(response
|
|
185
|
+
var response = toApolloResponse(this_0, operation, VOID, customScalarAdapters, null).p4l().b4m(httpResponse.l4t_1).g4m(true).f2t();
|
|
186
|
+
return flowOf(response);
|
|
186
187
|
}
|
|
187
188
|
function multipleResponses($this, request, customScalarAdapters, httpResponse) {
|
|
188
189
|
var incrementalResultsMerger = {_v: null};
|
|
@@ -216,10 +217,10 @@ function EngineInterceptor() {
|
|
|
216
217
|
if (EngineInterceptorClass === VOID) {
|
|
217
218
|
class $ {
|
|
218
219
|
constructor($outer) {
|
|
219
|
-
this.
|
|
220
|
+
this.s5d_1 = $outer;
|
|
220
221
|
}
|
|
221
|
-
*
|
|
222
|
-
return yield* this.
|
|
222
|
+
*g5d(request, chain, $completion) {
|
|
223
|
+
return yield* this.s5d_1.l5d_1.b5d(request, $completion);
|
|
223
224
|
}
|
|
224
225
|
}
|
|
225
226
|
protoOf($).m10 = dispose;
|
|
@@ -233,53 +234,53 @@ function Builder_0() {
|
|
|
233
234
|
if (BuilderClass === VOID) {
|
|
234
235
|
class $ {
|
|
235
236
|
constructor() {
|
|
236
|
-
this.c59_1 = null;
|
|
237
|
-
this.d59_1 = null;
|
|
238
237
|
this.e59_1 = null;
|
|
238
|
+
this.f59_1 = null;
|
|
239
|
+
this.g59_1 = null;
|
|
239
240
|
var tmp = this;
|
|
240
241
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
241
|
-
tmp.
|
|
242
|
-
this.
|
|
243
|
-
this.
|
|
242
|
+
tmp.h59_1 = ArrayList().i2();
|
|
243
|
+
this.i59_1 = false;
|
|
244
|
+
this.j59_1 = IncrementalDeliveryProtocol_V0_1_getInstance();
|
|
244
245
|
var tmp_0 = this;
|
|
245
246
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
246
|
-
tmp_0.
|
|
247
|
+
tmp_0.k59_1 = ArrayList().i2();
|
|
247
248
|
}
|
|
248
|
-
|
|
249
|
+
l59(serverUrl) {
|
|
249
250
|
// Inline function 'kotlin.apply' call
|
|
250
|
-
this.
|
|
251
|
+
this.f59_1 = serverUrl;
|
|
251
252
|
return this;
|
|
252
253
|
}
|
|
253
|
-
|
|
254
|
+
n59(exposeErrorBody) {
|
|
254
255
|
// Inline function 'kotlin.apply' call
|
|
255
|
-
this.
|
|
256
|
+
this.i59_1 = exposeErrorBody;
|
|
256
257
|
return this;
|
|
257
258
|
}
|
|
258
|
-
|
|
259
|
+
m59(httpEngine) {
|
|
259
260
|
// Inline function 'kotlin.apply' call
|
|
260
|
-
this.
|
|
261
|
+
this.g59_1 = httpEngine;
|
|
261
262
|
return this;
|
|
262
263
|
}
|
|
263
|
-
|
|
264
|
+
o59(interceptors) {
|
|
264
265
|
// Inline function 'kotlin.apply' call
|
|
265
|
-
this.
|
|
266
|
-
this.
|
|
266
|
+
this.h59_1.m4();
|
|
267
|
+
this.h59_1.s2(interceptors);
|
|
267
268
|
return this;
|
|
268
269
|
}
|
|
269
270
|
f2t() {
|
|
270
271
|
// Inline function 'kotlin.check' call
|
|
271
|
-
if (!(this.
|
|
272
|
+
if (!(this.e59_1 == null || this.f59_1 == null)) {
|
|
272
273
|
var message = "It is an error to set both 'httpRequestComposer' and 'serverUrl'";
|
|
273
274
|
throw IllegalStateException().o(toString(message));
|
|
274
275
|
}
|
|
275
|
-
var tmp0_elvis_lhs = this.
|
|
276
|
-
var composer = tmp0_elvis_lhs == null ? DefaultHttpRequestComposer().i4s(this.
|
|
276
|
+
var tmp0_elvis_lhs = this.e59_1;
|
|
277
|
+
var composer = tmp0_elvis_lhs == null ? DefaultHttpRequestComposer().i4s(this.f59_1) : tmp0_elvis_lhs;
|
|
277
278
|
// Inline function 'kotlin.collections.isNotEmpty' call
|
|
278
|
-
if (!this.
|
|
279
|
-
this.
|
|
279
|
+
if (!this.k59_1.j1()) {
|
|
280
|
+
this.h59_1.o2(new (TransportHeadersInterceptor())(this.k59_1));
|
|
280
281
|
}
|
|
281
|
-
var tmp1_elvis_lhs = this.
|
|
282
|
-
return new (HttpNetworkTransport())(composer, tmp1_elvis_lhs == null ? DefaultHttpEngine() : tmp1_elvis_lhs, this.
|
|
282
|
+
var tmp1_elvis_lhs = this.g59_1;
|
|
283
|
+
return new (HttpNetworkTransport())(composer, tmp1_elvis_lhs == null ? DefaultHttpEngine() : tmp1_elvis_lhs, this.h59_1, this.i59_1, this.j59_1);
|
|
283
284
|
}
|
|
284
285
|
}
|
|
285
286
|
initMetadataForClass($, 'Builder', Builder_0);
|
|
@@ -292,10 +293,10 @@ function TransportHeadersInterceptor() {
|
|
|
292
293
|
if (TransportHeadersInterceptorClass === VOID) {
|
|
293
294
|
class $ {
|
|
294
295
|
constructor(headers) {
|
|
295
|
-
this.
|
|
296
|
+
this.t5d_1 = headers;
|
|
296
297
|
}
|
|
297
|
-
*
|
|
298
|
-
return yield* chain.
|
|
298
|
+
*g5d(request, chain, $completion) {
|
|
299
|
+
return yield* chain.j5d(request.t4t().r4s(this.t5d_1).f2t(), $completion);
|
|
299
300
|
}
|
|
300
301
|
}
|
|
301
302
|
protoOf($).m10 = dispose;
|
|
@@ -309,13 +310,13 @@ function sam$kotlinx_coroutines_flow_FlowCollector$0() {
|
|
|
309
310
|
if (sam$kotlinx_coroutines_flow_FlowCollector$0Class === VOID) {
|
|
310
311
|
class $ {
|
|
311
312
|
constructor(function_0) {
|
|
312
|
-
this.
|
|
313
|
+
this.u5d_1 = function_0;
|
|
313
314
|
}
|
|
314
315
|
*h1g(value, $completion) {
|
|
315
|
-
return yield* this.
|
|
316
|
+
return yield* this.u5d_1(value, $completion);
|
|
316
317
|
}
|
|
317
318
|
c5() {
|
|
318
|
-
return this.
|
|
319
|
+
return this.u5d_1;
|
|
319
320
|
}
|
|
320
321
|
equals(other) {
|
|
321
322
|
var tmp;
|
|
@@ -346,13 +347,13 @@ function sam$kotlinx_coroutines_flow_FlowCollector$0_0() {
|
|
|
346
347
|
if (sam$kotlinx_coroutines_flow_FlowCollector$0Class_0 === VOID) {
|
|
347
348
|
class $ {
|
|
348
349
|
constructor(function_0) {
|
|
349
|
-
this.
|
|
350
|
+
this.v5d_1 = function_0;
|
|
350
351
|
}
|
|
351
352
|
*h1g(value, $completion) {
|
|
352
|
-
return yield* this.
|
|
353
|
+
return yield* this.v5d_1(value, $completion);
|
|
353
354
|
}
|
|
354
355
|
c5() {
|
|
355
|
-
return this.
|
|
356
|
+
return this.v5d_1;
|
|
356
357
|
}
|
|
357
358
|
equals(other) {
|
|
358
359
|
var tmp;
|
|
@@ -383,15 +384,15 @@ function HttpNetworkTransport$execute$1$$inlined$map$1() {
|
|
|
383
384
|
if (HttpNetworkTransport$execute$1$$inlined$map$1Class === VOID) {
|
|
384
385
|
class $ {
|
|
385
386
|
constructor($this, this$0, $request, $httpResponse, $millisStart) {
|
|
386
|
-
this.
|
|
387
|
-
this.
|
|
388
|
-
this.
|
|
389
|
-
this.
|
|
390
|
-
this.
|
|
387
|
+
this.w5d_1 = $this;
|
|
388
|
+
this.x5d_1 = this$0;
|
|
389
|
+
this.y5d_1 = $request;
|
|
390
|
+
this.z5d_1 = $httpResponse;
|
|
391
|
+
this.a5e_1 = $millisStart;
|
|
391
392
|
}
|
|
392
393
|
*g1g(collector, $completion) {
|
|
393
|
-
var tmp = HttpNetworkTransport$execute$slambda$o$collect$slambda(collector, this.
|
|
394
|
-
yield* this.
|
|
394
|
+
var tmp = HttpNetworkTransport$execute$slambda$o$collect$slambda(collector, this.x5d_1, this.y5d_1, this.z5d_1, this.a5e_1);
|
|
395
|
+
yield* this.w5d_1.k1f(new (sam$kotlinx_coroutines_flow_FlowCollector$0())(tmp), $completion);
|
|
395
396
|
return Unit_instance;
|
|
396
397
|
}
|
|
397
398
|
k1f(collector, $completion) {
|
|
@@ -409,7 +410,7 @@ function HttpNetworkTransport$execute$slambda(this$0, $httpRequest, $request, $c
|
|
|
409
410
|
var throwable = null;
|
|
410
411
|
var tmp;
|
|
411
412
|
try {
|
|
412
|
-
tmp = yield* (new (DefaultHttpInterceptorChain())(
|
|
413
|
+
tmp = yield* (new (DefaultHttpInterceptorChain())(this$0.r5d_1, 0)).j5d($httpRequest, $completion);
|
|
413
414
|
} catch ($p) {
|
|
414
415
|
var tmp_0;
|
|
415
416
|
if ($p instanceof Error) {
|
|
@@ -460,16 +461,16 @@ function HttpNetworkTransport$multipleResponses$$inlined$mapNotNull$1() {
|
|
|
460
461
|
if (HttpNetworkTransport$multipleResponses$$inlined$mapNotNull$1Class === VOID) {
|
|
461
462
|
class $ {
|
|
462
463
|
constructor($this, $operation, $request, $customScalarAdapters, this$0, $incrementalResultsMerger) {
|
|
463
|
-
this.
|
|
464
|
-
this.
|
|
465
|
-
this.
|
|
466
|
-
this.
|
|
467
|
-
this.
|
|
468
|
-
this.
|
|
464
|
+
this.b5e_1 = $this;
|
|
465
|
+
this.c5e_1 = $operation;
|
|
466
|
+
this.d5e_1 = $request;
|
|
467
|
+
this.e5e_1 = $customScalarAdapters;
|
|
468
|
+
this.f5e_1 = this$0;
|
|
469
|
+
this.g5e_1 = $incrementalResultsMerger;
|
|
469
470
|
}
|
|
470
471
|
*g1g(collector, $completion) {
|
|
471
|
-
var tmp = HttpNetworkTransport$multipleResponses$o$collect$slambda(collector, this.
|
|
472
|
-
yield* this.
|
|
472
|
+
var tmp = HttpNetworkTransport$multipleResponses$o$collect$slambda(collector, this.c5e_1, this.d5e_1, this.e5e_1, this.f5e_1, this.g5e_1);
|
|
473
|
+
yield* this.b5e_1.k1f(new (sam$kotlinx_coroutines_flow_FlowCollector$0_0())(tmp), $completion);
|
|
473
474
|
return Unit_instance;
|
|
474
475
|
}
|
|
475
476
|
k1f(collector, $completion) {
|
|
@@ -492,15 +493,16 @@ function HttpNetworkTransport() {
|
|
|
492
493
|
if (HttpNetworkTransportClass === VOID) {
|
|
493
494
|
class $ {
|
|
494
495
|
constructor(httpRequestComposer, engine, interceptors, exposeErrorBody, incrementalDeliveryProtocol) {
|
|
495
|
-
this.
|
|
496
|
-
this.
|
|
497
|
-
this.
|
|
498
|
-
this.
|
|
499
|
-
this.
|
|
500
|
-
this.
|
|
501
|
-
this.
|
|
502
|
-
|
|
503
|
-
|
|
496
|
+
this.k5d_1 = httpRequestComposer;
|
|
497
|
+
this.l5d_1 = engine;
|
|
498
|
+
this.m5d_1 = interceptors;
|
|
499
|
+
this.n5d_1 = exposeErrorBody;
|
|
500
|
+
this.o5d_1 = incrementalDeliveryProtocol;
|
|
501
|
+
this.p5d_1 = new (EngineInterceptor())(this);
|
|
502
|
+
this.q5d_1 = get_impl(this.o5d_1);
|
|
503
|
+
this.r5d_1 = plus(this.m5d_1, this.p5d_1);
|
|
504
|
+
}
|
|
505
|
+
s5a(request) {
|
|
504
506
|
var customScalarAdapters = ensureNotNull(request.c4l_1.y4p(Key_getInstance()));
|
|
505
507
|
var tmp;
|
|
506
508
|
// Inline function 'kotlin.collections.orEmpty' call
|
|
@@ -522,9 +524,7 @@ function HttpNetworkTransport() {
|
|
|
522
524
|
var _iterator__ex2g4s = tmp0.l1();
|
|
523
525
|
while (_iterator__ex2g4s.m1()) {
|
|
524
526
|
var element = _iterator__ex2g4s.n1();
|
|
525
|
-
|
|
526
|
-
// Inline function 'kotlin.js.asDynamic' call
|
|
527
|
-
if (element.z4s_1.toLowerCase() === 'accept') {
|
|
527
|
+
if (equals_0(element.z4s_1, 'accept', true)) {
|
|
528
528
|
tmp$ret$1 = false;
|
|
529
529
|
break $l$block_0;
|
|
530
530
|
}
|
|
@@ -537,7 +537,7 @@ function HttpNetworkTransport() {
|
|
|
537
537
|
if (isInterface(tmp_2, Subscription())) {
|
|
538
538
|
tmp_1 = 'multipart/mixed;subscriptionSpec=1.0, application/graphql-response+json, application/json';
|
|
539
539
|
} else {
|
|
540
|
-
tmp_1 = this.
|
|
540
|
+
tmp_1 = this.q5d_1.h5c();
|
|
541
541
|
}
|
|
542
542
|
var accept = tmp_1;
|
|
543
543
|
tmp = request.p4l().o4k('accept', accept).f2t();
|
|
@@ -545,20 +545,20 @@ function HttpNetworkTransport() {
|
|
|
545
545
|
tmp = request;
|
|
546
546
|
}
|
|
547
547
|
var request_0 = tmp;
|
|
548
|
-
var httpRequest = this.
|
|
549
|
-
return this.
|
|
548
|
+
var httpRequest = this.k5d_1.j4s(request_0);
|
|
549
|
+
return this.h5e(request_0, httpRequest, customScalarAdapters);
|
|
550
550
|
}
|
|
551
|
-
|
|
551
|
+
h5e(request, httpRequest, customScalarAdapters) {
|
|
552
552
|
return flow(HttpNetworkTransport$execute$slambda(this, httpRequest, request, customScalarAdapters));
|
|
553
553
|
}
|
|
554
554
|
m10() {
|
|
555
555
|
// Inline function 'kotlin.collections.forEach' call
|
|
556
|
-
var _iterator__ex2g4s = this.
|
|
556
|
+
var _iterator__ex2g4s = this.m5d_1.l1();
|
|
557
557
|
while (_iterator__ex2g4s.m1()) {
|
|
558
558
|
var element = _iterator__ex2g4s.n1();
|
|
559
559
|
element.m10();
|
|
560
560
|
}
|
|
561
|
-
this.
|
|
561
|
+
this.l5d_1.j6();
|
|
562
562
|
}
|
|
563
563
|
}
|
|
564
564
|
initMetadataForClass($, 'HttpNetworkTransport');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../../../../../Users/runner/work/apollo-kotlin/apollo-kotlin/libraries/apollo-runtime/src/commonMain/kotlin/com/apollographql/apollo/network/http/HttpNetworkTransport.kt","../../../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/operators/Transform.kt","../../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/src/kotlin/util/Standard.kt","../../../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/internal/SafeCollector.common.kt","../../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/src/kotlin/collections/Collections.kt","../../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/src/kotlin/util/Preconditions.kt","../../../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/operators/Emitters.kt","../../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/common/src/generated/_Collections.kt"
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../../../../../Users/runner/work/apollo-kotlin/apollo-kotlin/libraries/apollo-runtime/src/commonMain/kotlin/com/apollographql/apollo/network/http/HttpNetworkTransport.kt","../../../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/operators/Transform.kt","../../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/src/kotlin/util/Standard.kt","../../../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/internal/SafeCollector.common.kt","../../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/src/kotlin/collections/Collections.kt","../../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/src/kotlin/util/Preconditions.kt","../../../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/flow/operators/Emitters.kt","../../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/common/src/generated/_Collections.kt"],"sourcesContent":[null,null,null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["HttpNetworkTransport$execute$slambda$o$collect$slambda","HttpNetworkTransport$execute$slambda$o$collect$slambda$lambda","$completion","HttpNetworkTransport$multipleResponses$o$collect$slambda","HttpNetworkTransport$multipleResponses$o$collect$slambda$lambda","reader","payloadResponse","errors","merged","deferredFragmentIdentifiers","isLast","transformed","errorResponse","operation","throwable","apolloException","httpResponse","maybeBody","singleResponse","request","customScalarAdapters","response","multipleResponses","incrementalResultsMerger","wrapIfNeeded","withHttpInfo","requestUuid","millisStart","intercept","chain","serverUrl","exposeErrorBody","httpEngine","interceptors","build","message","composer","headers","emit","value","equals","hashCode","collect","collector","HttpNetworkTransport$execute$slambda","HttpNetworkTransport$execute$slambda$lambda","t","responses","HttpNetworkTransport$multipleResponses$slambda","HttpNetworkTransport$multipleResponses$slambda$lambda","httpRequestComposer","engine","incrementalDeliveryProtocol","execute","element","accept","httpRequest","dispose"],"mappings":"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"}
|
|
@@ -45,7 +45,7 @@ var CompanionClass;
|
|
|
45
45
|
function Companion() {
|
|
46
46
|
if (CompanionClass === VOID) {
|
|
47
47
|
class $ {
|
|
48
|
-
|
|
48
|
+
j5e(map) {
|
|
49
49
|
var tmp = map.j4('type');
|
|
50
50
|
var type = (!(tmp == null) ? typeof tmp === 'string' : false) ? tmp : null;
|
|
51
51
|
if (type == null) {
|
|
@@ -120,34 +120,34 @@ function GraphQLWsProtocol() {
|
|
|
120
120
|
tmp = connectionPayload;
|
|
121
121
|
}
|
|
122
122
|
connectionPayload = tmp;
|
|
123
|
-
this.
|
|
123
|
+
this.k5e_1 = connectionPayload;
|
|
124
124
|
}
|
|
125
125
|
d1() {
|
|
126
126
|
return 'graphql-transport-ws';
|
|
127
127
|
}
|
|
128
|
-
*
|
|
128
|
+
*l5e($completion) {
|
|
129
129
|
// Inline function 'kotlin.collections.mutableMapOf' call
|
|
130
130
|
var map = LinkedHashMap().lc();
|
|
131
131
|
map.q4('type', 'connection_init');
|
|
132
|
-
var payload = yield* this.
|
|
132
|
+
var payload = yield* this.k5e_1($completion);
|
|
133
133
|
if (!(payload == null)) {
|
|
134
134
|
map.q4('payload', payload);
|
|
135
135
|
}
|
|
136
136
|
return toClientMessage(map);
|
|
137
137
|
}
|
|
138
|
-
*
|
|
138
|
+
*m5e(request, $completion) {
|
|
139
139
|
return toClientMessage(mapOf([to('type', 'subscribe'), to('id', request.z4k_1.toString()), to('payload', toMap(toRequestParameters(request)))]));
|
|
140
140
|
}
|
|
141
|
-
|
|
141
|
+
n5e(request) {
|
|
142
142
|
return toClientMessage(mapOf([to('type', 'complete'), to('id', request.z4k_1.toString())]));
|
|
143
143
|
}
|
|
144
|
-
|
|
144
|
+
o5e() {
|
|
145
145
|
return toClientMessage(mapOf_0(to('type', 'ping')));
|
|
146
146
|
}
|
|
147
|
-
|
|
147
|
+
p5e() {
|
|
148
148
|
return toClientMessage(mapOf_0(to('type', 'pong')));
|
|
149
149
|
}
|
|
150
|
-
|
|
150
|
+
q5e(text) {
|
|
151
151
|
var tmp;
|
|
152
152
|
try {
|
|
153
153
|
var tmp_0 = readAny(jsonReader((new (Buffer())()).a4h(text)));
|
|
@@ -162,7 +162,7 @@ function GraphQLWsProtocol() {
|
|
|
162
162
|
}
|
|
163
163
|
}
|
|
164
164
|
var map = tmp;
|
|
165
|
-
return Companion_instance.
|
|
165
|
+
return Companion_instance.j5e(map);
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
168
|
initMetadataForClass($, 'GraphQLWsProtocol', GraphQLWsProtocol, VOID, VOID, [0, 1]);
|
|
@@ -34,8 +34,8 @@ function ResponseServerMessage() {
|
|
|
34
34
|
if (ResponseServerMessageClass === VOID) {
|
|
35
35
|
class $ {
|
|
36
36
|
constructor(id, response) {
|
|
37
|
-
this.
|
|
38
|
-
this.
|
|
37
|
+
this.r5e_1 = id;
|
|
38
|
+
this.s5e_1 = response;
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
initMetadataForClass($, 'ResponseServerMessage');
|
|
@@ -48,7 +48,7 @@ function CompleteServerMessage() {
|
|
|
48
48
|
if (CompleteServerMessageClass === VOID) {
|
|
49
49
|
class $ {
|
|
50
50
|
constructor(id) {
|
|
51
|
-
this.
|
|
51
|
+
this.t5e_1 = id;
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
initMetadataForClass($, 'CompleteServerMessage');
|
|
@@ -61,8 +61,8 @@ function OperationErrorServerMessage() {
|
|
|
61
61
|
if (OperationErrorServerMessageClass === VOID) {
|
|
62
62
|
class $ {
|
|
63
63
|
constructor(id, payload) {
|
|
64
|
-
this.
|
|
65
|
-
this.
|
|
64
|
+
this.u5e_1 = id;
|
|
65
|
+
this.v5e_1 = payload;
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
68
|
initMetadataForClass($, 'OperationErrorServerMessage');
|
|
@@ -75,7 +75,7 @@ function ParseErrorServerMessage() {
|
|
|
75
75
|
if (ParseErrorServerMessageClass === VOID) {
|
|
76
76
|
class $ {
|
|
77
77
|
constructor(errorMessage) {
|
|
78
|
-
this.
|
|
78
|
+
this.w5e_1 = errorMessage;
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
initMetadataForClass($, 'ParseErrorServerMessage');
|