@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
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
import { KProperty1ca4yb4wlo496 as KProperty1 } from '../../../../kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs';
|
|
2
|
+
import {
|
|
3
|
+
getPropertyCallableRef3hckxc0xueiaj as getPropertyCallableRef,
|
|
4
|
+
constructCallableReference23y65rf941mch as constructCallableReference,
|
|
5
|
+
} from '../../../../kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs';
|
|
1
6
|
import { Builder4ra56zvvku0a as Builder } from '../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs';
|
|
2
7
|
import { ArrayList3it5z8td81qkl as ArrayList } from '../../../../kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs';
|
|
3
8
|
import { Companion_getInstanceg4mecbw0mfx8 as Companion_getInstance } from '../../../../apollo-kotlin-apollo-api/com/apollographql/apollo/api/ExecutionContext.mjs';
|
|
@@ -13,7 +18,7 @@ import {
|
|
|
13
18
|
import { FunctionAdapter3lcrrz3moet5b as FunctionAdapter } from '../../../../kotlin-kotlin-stdlib/kotlin/js/FunctionAdapter.mjs';
|
|
14
19
|
import { isInterface3d6p8outrmvmk as isInterface } from '../../../../kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs';
|
|
15
20
|
import { FlowCollector26clgpmzihvke as FlowCollector } from '../../../../kotlinx-coroutines-core/kotlinx/coroutines/flow/FlowCollector.mjs';
|
|
16
|
-
import {
|
|
21
|
+
import { RetryOnErrorInterceptor2wqvvqzzzk2ot as RetryOnErrorInterceptor } from './interceptor/RetryOnErrorInterceptor.mjs';
|
|
17
22
|
import { withContextqz5k6d9p9xx5 as withContext } from '../../../../kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs';
|
|
18
23
|
import { ensureNotNull1e947j3ixpazm as ensureNotNull } from '../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
|
|
19
24
|
import { Builder3d75eph7uovs3 as Builder_0 } from './network/http/HttpNetworkTransport.mjs';
|
|
@@ -32,42 +37,47 @@ import {
|
|
|
32
37
|
} from '../../../../kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs';
|
|
33
38
|
import { ConcurrencyInfo3mmnli95yq2g0 as ConcurrencyInfo } from './ConcurrencyInfo.mjs';
|
|
34
39
|
import { NetworkInterceptor22fszyorwx7pt as NetworkInterceptor } from './interceptor/NetworkInterceptor.mjs';
|
|
40
|
+
import { lazy2hsh8ze7j6ikd as lazy } from '../../../../kotlin-kotlin-stdlib/kotlin/kotlin.mjs';
|
|
35
41
|
import { ApolloCallpwdxdy18rzuy as ApolloCall } from './ApolloCall.mjs';
|
|
36
42
|
import { channelFlow1or0c85tk04v1 as channelFlow } from '../../../../kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs';
|
|
37
43
|
import { buffer2o7vhreze5nfc as buffer } from '../../../../kotlinx-coroutines-core/kotlinx/coroutines/flow/Context.mjs';
|
|
38
44
|
import { emptyList1g2z5xcrvp2zy as emptyList } from '../../../../kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs';
|
|
39
|
-
import { RetryOnErrorInterceptor2wqvvqzzzk2ot as RetryOnErrorInterceptor } from './interceptor/RetryOnErrorInterceptor.mjs';
|
|
40
45
|
import { DefaultInterceptorChain10weji0clzo5q as DefaultInterceptorChain } from './interceptor/ApolloInterceptor.mjs';
|
|
41
46
|
import { onEach13yrgg7fxnyl6 as onEach } from '../../../../kotlinx-coroutines-core/kotlinx/coroutines/flow/Transform.mjs';
|
|
42
47
|
//region block: imports
|
|
43
48
|
//endregion
|
|
44
49
|
//region block: pre-declaration
|
|
45
50
|
//endregion
|
|
51
|
+
function _get_allInterceptors__eyuk02($this) {
|
|
52
|
+
var tmp0 = $this.t56_1;
|
|
53
|
+
var tmp = KProperty1();
|
|
54
|
+
// Inline function 'kotlin.getValue' call
|
|
55
|
+
getPropertyCallableRef('allInterceptors', 1, tmp, ApolloClient$_get_allInterceptors_$ref_sf7sgp(), null);
|
|
56
|
+
return tmp0.c3();
|
|
57
|
+
}
|
|
46
58
|
var BuilderClass;
|
|
47
59
|
function Builder_3() {
|
|
48
60
|
if (BuilderClass === VOID) {
|
|
49
61
|
class $ {
|
|
50
62
|
constructor() {
|
|
51
|
-
this.
|
|
63
|
+
this.w56_1 = new (Builder())();
|
|
52
64
|
var tmp = this;
|
|
53
65
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
54
|
-
tmp.
|
|
66
|
+
tmp.x56_1 = ArrayList().i2();
|
|
55
67
|
var tmp_0 = this;
|
|
56
68
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
57
|
-
tmp_0.
|
|
69
|
+
tmp_0.y56_1 = ArrayList().i2();
|
|
58
70
|
var tmp_1 = this;
|
|
59
71
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
60
|
-
tmp_1.
|
|
72
|
+
tmp_1.z56_1 = ArrayList().i2();
|
|
61
73
|
var tmp_2 = this;
|
|
62
74
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
63
|
-
tmp_2.
|
|
75
|
+
tmp_2.a57_1 = ArrayList().i2();
|
|
64
76
|
var tmp_3 = this;
|
|
65
77
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
66
|
-
tmp_3.
|
|
67
|
-
this.
|
|
68
|
-
this.
|
|
69
|
-
this.c57_1 = null;
|
|
70
|
-
this.d57_1 = null;
|
|
78
|
+
tmp_3.b57_1 = ArrayList().i2();
|
|
79
|
+
this.c57_1 = this.b57_1;
|
|
80
|
+
this.d57_1 = Companion_getInstance().h4k_1;
|
|
71
81
|
this.e57_1 = null;
|
|
72
82
|
this.f57_1 = null;
|
|
73
83
|
this.g57_1 = null;
|
|
@@ -91,177 +101,179 @@ function Builder_3() {
|
|
|
91
101
|
this.y57_1 = null;
|
|
92
102
|
this.z57_1 = null;
|
|
93
103
|
this.a58_1 = null;
|
|
94
|
-
this.b58_1 =
|
|
104
|
+
this.b58_1 = null;
|
|
105
|
+
this.c58_1 = null;
|
|
106
|
+
this.d58_1 = true;
|
|
95
107
|
}
|
|
96
|
-
|
|
97
|
-
return this.
|
|
108
|
+
e58() {
|
|
109
|
+
return this.w56_1.f2t();
|
|
98
110
|
}
|
|
99
|
-
|
|
100
|
-
return plus(plus(plus(this.
|
|
111
|
+
f58() {
|
|
112
|
+
return plus(plus(plus(this.x56_1, this.y56_1), this.z56_1), this.a57_1);
|
|
101
113
|
}
|
|
102
114
|
w4k(sendEnhancedClientAwareness) {
|
|
103
115
|
// Inline function 'kotlin.apply' call
|
|
104
|
-
this.
|
|
116
|
+
this.d58_1 = sendEnhancedClientAwareness;
|
|
105
117
|
return this;
|
|
106
118
|
}
|
|
107
119
|
v4k(failFastIfOffline) {
|
|
108
120
|
// Inline function 'kotlin.apply' call
|
|
109
|
-
this.
|
|
121
|
+
this.a58_1 = failFastIfOffline;
|
|
110
122
|
return this;
|
|
111
123
|
}
|
|
112
|
-
|
|
124
|
+
g58(retryOnError) {
|
|
113
125
|
// Inline function 'kotlin.apply' call
|
|
114
|
-
this.
|
|
126
|
+
this.y57_1 = retryOnError;
|
|
115
127
|
return this;
|
|
116
128
|
}
|
|
117
|
-
|
|
129
|
+
h58(retryOnErrorInterceptor) {
|
|
118
130
|
// Inline function 'kotlin.apply' call
|
|
119
|
-
this.
|
|
131
|
+
this.z57_1 = retryOnErrorInterceptor;
|
|
120
132
|
return this;
|
|
121
133
|
}
|
|
122
|
-
|
|
134
|
+
i58(cacheInterceptor) {
|
|
123
135
|
// Inline function 'kotlin.apply' call
|
|
124
|
-
this.
|
|
136
|
+
this.b58_1 = cacheInterceptor;
|
|
125
137
|
return this;
|
|
126
138
|
}
|
|
127
|
-
|
|
139
|
+
j58(autoPersistedQueryInterceptor) {
|
|
128
140
|
// Inline function 'kotlin.apply' call
|
|
129
|
-
this.
|
|
141
|
+
this.c58_1 = autoPersistedQueryInterceptor;
|
|
130
142
|
return this;
|
|
131
143
|
}
|
|
132
144
|
l4k(url) {
|
|
133
145
|
// Inline function 'kotlin.apply' call
|
|
134
|
-
this.
|
|
146
|
+
this.e57_1 = url;
|
|
135
147
|
return this;
|
|
136
148
|
}
|
|
137
149
|
m4k(httpMethod) {
|
|
138
150
|
// Inline function 'kotlin.apply' call
|
|
139
|
-
this.
|
|
151
|
+
this.f57_1 = httpMethod;
|
|
140
152
|
return this;
|
|
141
153
|
}
|
|
142
154
|
n4k(httpHeaders) {
|
|
143
155
|
// Inline function 'kotlin.apply' call
|
|
144
|
-
this.
|
|
156
|
+
this.g57_1 = httpHeaders;
|
|
145
157
|
return this;
|
|
146
158
|
}
|
|
147
159
|
p4k(sendApqExtensions) {
|
|
148
160
|
// Inline function 'kotlin.apply' call
|
|
149
|
-
this.
|
|
161
|
+
this.h57_1 = sendApqExtensions;
|
|
150
162
|
return this;
|
|
151
163
|
}
|
|
152
164
|
q4k(sendDocument) {
|
|
153
165
|
// Inline function 'kotlin.apply' call
|
|
154
|
-
this.
|
|
166
|
+
this.i57_1 = sendDocument;
|
|
155
167
|
return this;
|
|
156
168
|
}
|
|
157
169
|
r4k(enableAutoPersistedQueries) {
|
|
158
170
|
// Inline function 'kotlin.apply' call
|
|
159
|
-
this.
|
|
171
|
+
this.j57_1 = enableAutoPersistedQueries;
|
|
160
172
|
return this;
|
|
161
173
|
}
|
|
162
174
|
s4k(canBeBatched) {
|
|
163
175
|
// Inline function 'kotlin.apply' call
|
|
164
|
-
this.
|
|
176
|
+
this.k57_1 = canBeBatched;
|
|
165
177
|
return this;
|
|
166
178
|
}
|
|
167
179
|
t4k(ignoreUnknownKeys) {
|
|
168
180
|
// Inline function 'kotlin.apply' call
|
|
169
|
-
this.
|
|
181
|
+
this.l57_1 = ignoreUnknownKeys;
|
|
170
182
|
return this;
|
|
171
183
|
}
|
|
172
|
-
|
|
184
|
+
k58(serverUrl) {
|
|
173
185
|
// Inline function 'kotlin.apply' call
|
|
174
|
-
this.
|
|
186
|
+
this.p57_1 = serverUrl;
|
|
175
187
|
return this;
|
|
176
188
|
}
|
|
177
|
-
|
|
189
|
+
l58(httpServerUrl) {
|
|
178
190
|
// Inline function 'kotlin.apply' call
|
|
179
|
-
this.
|
|
191
|
+
this.p57_1 = httpServerUrl;
|
|
180
192
|
return this;
|
|
181
193
|
}
|
|
182
|
-
|
|
194
|
+
m58(httpEngine) {
|
|
183
195
|
// Inline function 'kotlin.apply' call
|
|
184
|
-
this.
|
|
196
|
+
this.q57_1 = httpEngine;
|
|
185
197
|
return this;
|
|
186
198
|
}
|
|
187
|
-
|
|
199
|
+
n58(httpExposeErrorBody) {
|
|
188
200
|
// Inline function 'kotlin.apply' call
|
|
189
|
-
this.
|
|
201
|
+
this.u57_1 = httpExposeErrorBody;
|
|
190
202
|
return this;
|
|
191
203
|
}
|
|
192
|
-
|
|
204
|
+
o58(httpInterceptors) {
|
|
193
205
|
// Inline function 'kotlin.apply' call
|
|
194
|
-
this.
|
|
195
|
-
this.
|
|
206
|
+
this.b57_1.m4();
|
|
207
|
+
this.b57_1.s2(httpInterceptors);
|
|
196
208
|
return this;
|
|
197
209
|
}
|
|
198
|
-
|
|
210
|
+
p58(webSocketServerUrl) {
|
|
199
211
|
// Inline function 'kotlin.apply' call
|
|
200
|
-
this.
|
|
212
|
+
this.r57_1 = webSocketServerUrl;
|
|
201
213
|
return this;
|
|
202
214
|
}
|
|
203
|
-
|
|
215
|
+
q58(webSocketServerUrl) {
|
|
204
216
|
// Inline function 'kotlin.apply' call
|
|
205
|
-
this.
|
|
217
|
+
this.x57_1 = webSocketServerUrl;
|
|
206
218
|
return this;
|
|
207
219
|
}
|
|
208
|
-
|
|
220
|
+
r58(webSocketIdleTimeoutMillis) {
|
|
209
221
|
// Inline function 'kotlin.apply' call
|
|
210
|
-
this.
|
|
222
|
+
this.s57_1 = webSocketIdleTimeoutMillis;
|
|
211
223
|
return this;
|
|
212
224
|
}
|
|
213
|
-
|
|
225
|
+
s58(wsProtocolFactory) {
|
|
214
226
|
// Inline function 'kotlin.apply' call
|
|
215
|
-
this.
|
|
227
|
+
this.t57_1 = wsProtocolFactory;
|
|
216
228
|
return this;
|
|
217
229
|
}
|
|
218
|
-
|
|
230
|
+
t58(webSocketEngine) {
|
|
219
231
|
// Inline function 'kotlin.apply' call
|
|
220
|
-
this.
|
|
232
|
+
this.v57_1 = webSocketEngine;
|
|
221
233
|
return this;
|
|
222
234
|
}
|
|
223
|
-
|
|
235
|
+
u58(webSocketReopenWhen) {
|
|
224
236
|
// Inline function 'kotlin.apply' call
|
|
225
|
-
this.
|
|
237
|
+
this.w57_1 = webSocketReopenWhen;
|
|
226
238
|
return this;
|
|
227
239
|
}
|
|
228
|
-
|
|
240
|
+
v58(networkTransport) {
|
|
229
241
|
// Inline function 'kotlin.apply' call
|
|
230
|
-
this.
|
|
242
|
+
this.m57_1 = networkTransport;
|
|
231
243
|
return this;
|
|
232
244
|
}
|
|
233
|
-
|
|
245
|
+
w58(subscriptionNetworkTransport) {
|
|
234
246
|
// Inline function 'kotlin.apply' call
|
|
235
|
-
this.
|
|
247
|
+
this.n57_1 = subscriptionNetworkTransport;
|
|
236
248
|
return this;
|
|
237
249
|
}
|
|
238
|
-
|
|
250
|
+
x58(customScalarAdapters) {
|
|
239
251
|
// Inline function 'kotlin.apply' call
|
|
240
|
-
this.
|
|
241
|
-
this.
|
|
252
|
+
this.w56_1.m4();
|
|
253
|
+
this.w56_1.r4p(customScalarAdapters);
|
|
242
254
|
return this;
|
|
243
255
|
}
|
|
244
|
-
|
|
256
|
+
y58(dispatcher) {
|
|
245
257
|
// Inline function 'kotlin.apply' call
|
|
246
|
-
this.
|
|
258
|
+
this.o57_1 = dispatcher;
|
|
247
259
|
return this;
|
|
248
260
|
}
|
|
249
261
|
j4k(executionContext) {
|
|
250
262
|
// Inline function 'kotlin.apply' call
|
|
251
|
-
this.
|
|
263
|
+
this.d57_1 = executionContext;
|
|
252
264
|
return this;
|
|
253
265
|
}
|
|
254
266
|
f2t() {
|
|
255
|
-
return new (ApolloClient())(this.
|
|
267
|
+
return new (ApolloClient())(this.z58());
|
|
256
268
|
}
|
|
257
|
-
|
|
269
|
+
z58() {
|
|
258
270
|
// Inline function 'kotlin.also' call
|
|
259
|
-
var this_0 = (new (Builder_3())()).
|
|
260
|
-
this_0.v56_1.s2(this.v56_1);
|
|
261
|
-
this_0.w56_1.s2(this.w56_1);
|
|
271
|
+
var this_0 = (new (Builder_3())()).x58(this.w56_1.f2t());
|
|
262
272
|
this_0.x56_1.s2(this.x56_1);
|
|
263
273
|
this_0.y56_1.s2(this.y56_1);
|
|
264
|
-
|
|
274
|
+
this_0.z56_1.s2(this.z56_1);
|
|
275
|
+
this_0.a57_1.s2(this.a57_1);
|
|
276
|
+
return this_0.y58(this.o57_1).j4k(this.d57_1).l4k(this.e57_1).m4k(this.f57_1).n4k(this.g57_1).l58(this.p57_1).m58(this.q57_1).n58(this.u57_1).o58(this.c57_1).p4k(this.h57_1).q4k(this.i57_1).r4k(this.j57_1).s4k(this.k57_1).t4k(this.l57_1).v58(this.m57_1).w58(this.n57_1).p58(this.r57_1).q58(this.x57_1).t58(this.v57_1).u58(this.w57_1).r58(this.s57_1).s58(this.t57_1).g58(this.y57_1).h58(this.z57_1).i58(this.b58_1).j58(this.c58_1).v4k(this.a58_1).w4k(this.d58_1);
|
|
265
277
|
}
|
|
266
278
|
}
|
|
267
279
|
initMetadataForClass($, 'Builder', Builder_3);
|
|
@@ -274,13 +286,13 @@ function sam$kotlinx_coroutines_flow_FlowCollector$0() {
|
|
|
274
286
|
if (sam$kotlinx_coroutines_flow_FlowCollector$0Class === VOID) {
|
|
275
287
|
class $ {
|
|
276
288
|
constructor(function_0) {
|
|
277
|
-
this.
|
|
289
|
+
this.a59_1 = function_0;
|
|
278
290
|
}
|
|
279
291
|
*h1g(value, $completion) {
|
|
280
|
-
return yield* this.
|
|
292
|
+
return yield* this.a59_1(value, $completion);
|
|
281
293
|
}
|
|
282
294
|
c5() {
|
|
283
|
-
return this.
|
|
295
|
+
return this.a59_1;
|
|
284
296
|
}
|
|
285
297
|
equals(other) {
|
|
286
298
|
var tmp;
|
|
@@ -306,6 +318,31 @@ function sam$kotlinx_coroutines_flow_FlowCollector$0() {
|
|
|
306
318
|
}
|
|
307
319
|
return sam$kotlinx_coroutines_flow_FlowCollector$0Class;
|
|
308
320
|
}
|
|
321
|
+
function ApolloClient$allInterceptors$delegate$lambda(this$0) {
|
|
322
|
+
return () => {
|
|
323
|
+
// Inline function 'kotlin.collections.buildList' call
|
|
324
|
+
// Inline function 'kotlin.collections.buildListInternal' call
|
|
325
|
+
// Inline function 'kotlin.apply' call
|
|
326
|
+
var this_0 = ArrayList().i2();
|
|
327
|
+
this_0.s2(this$0.x55_1.x56_1);
|
|
328
|
+
if (!(this$0.d56_1 == null)) {
|
|
329
|
+
this_0.o2(this$0.d56_1);
|
|
330
|
+
}
|
|
331
|
+
this_0.s2(this$0.x55_1.y56_1);
|
|
332
|
+
if (!(this$0.e56_1 == null)) {
|
|
333
|
+
this_0.o2(this$0.e56_1);
|
|
334
|
+
}
|
|
335
|
+
this_0.s2(this$0.x55_1.z56_1);
|
|
336
|
+
var tmp0_elvis_lhs = this$0.g56_1;
|
|
337
|
+
this_0.o2(tmp0_elvis_lhs == null ? RetryOnErrorInterceptor() : tmp0_elvis_lhs);
|
|
338
|
+
this_0.s2(this$0.x55_1.a57_1);
|
|
339
|
+
this_0.o2(this$0.s56_1);
|
|
340
|
+
return this_0.f8();
|
|
341
|
+
};
|
|
342
|
+
}
|
|
343
|
+
function ApolloClient$_get_allInterceptors_$ref_sf7sgp() {
|
|
344
|
+
return constructCallableReference((p0) => _get_allInterceptors__eyuk02(p0), 1, 0, 47);
|
|
345
|
+
}
|
|
309
346
|
function ApolloClient$executeAsFlowInternal$slambda$slambda$slambda($this_channelFlow) {
|
|
310
347
|
return constructCallableReference(function *(it, $completion) {
|
|
311
348
|
yield* $this_channelFlow.n1d(it, $completion);
|
|
@@ -314,7 +351,7 @@ function ApolloClient$executeAsFlowInternal$slambda$slambda$slambda($this_channe
|
|
|
314
351
|
}
|
|
315
352
|
function ApolloClient$executeAsFlowInternal$slambda$slambda(this$0, $apolloRequest, $throwing, $this_channelFlow) {
|
|
316
353
|
return constructCallableReference(function *($this$withContext, $completion) {
|
|
317
|
-
var tmp = this$0.
|
|
354
|
+
var tmp = this$0.b59($apolloRequest, $throwing);
|
|
318
355
|
var tmp_0 = ApolloClient$executeAsFlowInternal$slambda$slambda$slambda($this_channelFlow);
|
|
319
356
|
yield* tmp.k1f(new (sam$kotlinx_coroutines_flow_FlowCollector$0())(tmp_0), $completion);
|
|
320
357
|
return Unit_instance;
|
|
@@ -322,7 +359,7 @@ function ApolloClient$executeAsFlowInternal$slambda$slambda(this$0, $apolloReque
|
|
|
322
359
|
}
|
|
323
360
|
function ApolloClient$executeAsFlowInternal$slambda(this$0, $apolloRequest, $throwing) {
|
|
324
361
|
return constructCallableReference(function *($this$channelFlow, $completion) {
|
|
325
|
-
yield* withContext(this$0.
|
|
362
|
+
yield* withContext(this$0.y55_1.c59_1, ApolloClient$executeAsFlowInternal$slambda$slambda(this$0, $apolloRequest, $throwing, $this$channelFlow), $completion);
|
|
326
363
|
return Unit_instance;
|
|
327
364
|
}, 1);
|
|
328
365
|
}
|
|
@@ -340,174 +377,176 @@ function ApolloClient() {
|
|
|
340
377
|
if (ApolloClientClass === VOID) {
|
|
341
378
|
class $ {
|
|
342
379
|
constructor(builder) {
|
|
343
|
-
this.
|
|
344
|
-
this.
|
|
345
|
-
this.
|
|
346
|
-
this.
|
|
347
|
-
this.
|
|
348
|
-
this.
|
|
349
|
-
this.
|
|
350
|
-
this.
|
|
351
|
-
this.
|
|
352
|
-
this.
|
|
353
|
-
this.
|
|
354
|
-
this.
|
|
355
|
-
this.
|
|
356
|
-
this.
|
|
357
|
-
this.
|
|
358
|
-
this.
|
|
359
|
-
this.
|
|
360
|
-
this.
|
|
380
|
+
this.x55_1 = builder;
|
|
381
|
+
this.b56_1 = this.x55_1.f58();
|
|
382
|
+
this.c56_1 = this.x55_1.e58();
|
|
383
|
+
this.d56_1 = this.x55_1.b58_1;
|
|
384
|
+
this.e56_1 = this.x55_1.c58_1;
|
|
385
|
+
this.f56_1 = this.x55_1.y57_1;
|
|
386
|
+
this.g56_1 = this.x55_1.z57_1;
|
|
387
|
+
this.h56_1 = this.x55_1.a58_1;
|
|
388
|
+
this.i56_1 = this.x55_1.d58_1;
|
|
389
|
+
this.j56_1 = this.x55_1.d57_1;
|
|
390
|
+
this.k56_1 = this.x55_1.e57_1;
|
|
391
|
+
this.l56_1 = this.x55_1.f57_1;
|
|
392
|
+
this.m56_1 = this.x55_1.g57_1;
|
|
393
|
+
this.n56_1 = this.x55_1.h57_1;
|
|
394
|
+
this.o56_1 = this.x55_1.i57_1;
|
|
395
|
+
this.p56_1 = this.x55_1.j57_1;
|
|
396
|
+
this.q56_1 = this.x55_1.k57_1;
|
|
397
|
+
this.r56_1 = this.x55_1.l57_1;
|
|
361
398
|
var tmp = this;
|
|
362
399
|
var tmp_0;
|
|
363
|
-
if (!(this.
|
|
400
|
+
if (!(this.x55_1.m57_1 == null)) {
|
|
364
401
|
// Inline function 'kotlin.check' call
|
|
365
|
-
if (!(this.
|
|
402
|
+
if (!(this.x55_1.p57_1 == null)) {
|
|
366
403
|
var message = "Apollo: 'httpServerUrl' has no effect if 'networkTransport' is set. Configure httpServerUrl on the networkTransport directly.";
|
|
367
404
|
throw IllegalStateException().o(toString(message));
|
|
368
405
|
}
|
|
369
406
|
// Inline function 'kotlin.check' call
|
|
370
|
-
if (!(this.
|
|
407
|
+
if (!(this.x55_1.q57_1 == null)) {
|
|
371
408
|
var message_0 = "Apollo: 'httpEngine' or 'okHttpClient' has no effect if 'networkTransport' is set. Configure httpEngine on the networkTransport directly.";
|
|
372
409
|
throw IllegalStateException().o(toString(message_0));
|
|
373
410
|
}
|
|
374
411
|
// Inline function 'kotlin.check' call
|
|
375
|
-
if (!this.
|
|
412
|
+
if (!this.x55_1.c57_1.j1()) {
|
|
376
413
|
var message_1 = "Apollo: 'addHttpInterceptor' has no effect if 'networkTransport' is set. Configure the interceptors on the networkTransport directly.";
|
|
377
414
|
throw IllegalStateException().o(toString(message_1));
|
|
378
415
|
}
|
|
379
416
|
// Inline function 'kotlin.check' call
|
|
380
|
-
if (!(this.
|
|
417
|
+
if (!(this.x55_1.u57_1 == null)) {
|
|
381
418
|
var message_2 = "Apollo: 'httpExposeErrorBody' has no effect if 'networkTransport' is set. Configure httpExposeErrorBody on the networkTransport directly.";
|
|
382
419
|
throw IllegalStateException().o(toString(message_2));
|
|
383
420
|
}
|
|
384
|
-
tmp_0 = ensureNotNull(this.
|
|
421
|
+
tmp_0 = ensureNotNull(this.x55_1.m57_1);
|
|
385
422
|
} else {
|
|
386
423
|
// Inline function 'kotlin.apply' call
|
|
387
|
-
var this_0 = (new (Builder_0())()).
|
|
388
|
-
if (!(this.
|
|
389
|
-
this_0.
|
|
424
|
+
var this_0 = (new (Builder_0())()).l59(this.x55_1.p57_1);
|
|
425
|
+
if (!(this.x55_1.q57_1 == null)) {
|
|
426
|
+
this_0.m59(ensureNotNull(this.x55_1.q57_1));
|
|
390
427
|
}
|
|
391
|
-
if (!(this.
|
|
392
|
-
this_0.
|
|
428
|
+
if (!(this.x55_1.u57_1 == null)) {
|
|
429
|
+
this_0.n59(ensureNotNull(this.x55_1.u57_1));
|
|
393
430
|
}
|
|
394
|
-
tmp_0 = this_0.
|
|
431
|
+
tmp_0 = this_0.o59(this.x55_1.c57_1).f2t();
|
|
395
432
|
}
|
|
396
|
-
tmp.
|
|
433
|
+
tmp.z55_1 = tmp_0;
|
|
397
434
|
var tmp_1 = this;
|
|
398
435
|
var tmp_2;
|
|
399
|
-
if (!(this.
|
|
436
|
+
if (!(this.x55_1.n57_1 == null)) {
|
|
400
437
|
// Inline function 'kotlin.check' call
|
|
401
|
-
if (!(this.
|
|
438
|
+
if (!(this.x55_1.r57_1 == null)) {
|
|
402
439
|
var message_3 = "Apollo: 'webSocketServerUrl' has no effect if 'subscriptionNetworkTransport' is set. Configure webSocketServerUrl on the subscriptionNetworkTransport directly.";
|
|
403
440
|
throw IllegalStateException().o(toString(message_3));
|
|
404
441
|
}
|
|
405
442
|
// Inline function 'kotlin.check' call
|
|
406
|
-
if (!(this.
|
|
443
|
+
if (!(this.x55_1.v57_1 == null)) {
|
|
407
444
|
var message_4 = "Apollo: 'webSocketEngine' or 'okHttpClient' has no effect if 'subscriptionNetworkTransport' is set. Configure webSocketEngine on the subscriptionNetworkTransport directly.";
|
|
408
445
|
throw IllegalStateException().o(toString(message_4));
|
|
409
446
|
}
|
|
410
447
|
// Inline function 'kotlin.check' call
|
|
411
|
-
if (!(this.
|
|
448
|
+
if (!(this.x55_1.s57_1 == null)) {
|
|
412
449
|
var message_5 = "Apollo: 'webSocketIdleTimeoutMillis' has no effect if 'subscriptionNetworkTransport' is set. Configure webSocketIdleTimeoutMillis on the subscriptionNetworkTransport directly.";
|
|
413
450
|
throw IllegalStateException().o(toString(message_5));
|
|
414
451
|
}
|
|
415
452
|
// Inline function 'kotlin.check' call
|
|
416
|
-
if (!(this.
|
|
453
|
+
if (!(this.x55_1.t57_1 == null)) {
|
|
417
454
|
var message_6 = "Apollo: 'wsProtocolFactory' has no effect if 'subscriptionNetworkTransport' is set. Configure wsProtocolFactory on the subscriptionNetworkTransport directly.";
|
|
418
455
|
throw IllegalStateException().o(toString(message_6));
|
|
419
456
|
}
|
|
420
457
|
// Inline function 'kotlin.check' call
|
|
421
|
-
if (!(this.
|
|
458
|
+
if (!(this.x55_1.w57_1 == null)) {
|
|
422
459
|
var message_7 = "Apollo: 'webSocketReopenWhen' has no effect if 'subscriptionNetworkTransport' is set. Configure webSocketReopenWhen on the subscriptionNetworkTransport directly.";
|
|
423
460
|
throw IllegalStateException().o(toString(message_7));
|
|
424
461
|
}
|
|
425
462
|
// Inline function 'kotlin.check' call
|
|
426
|
-
if (!(this.
|
|
463
|
+
if (!(this.x55_1.x57_1 == null)) {
|
|
427
464
|
var message_8 = "Apollo: 'webSocketReopenServerUrl' has no effect if 'subscriptionNetworkTransport' is set. Configure webSocketReopenServerUrl on the subscriptionNetworkTransport directly.";
|
|
428
465
|
throw IllegalStateException().o(toString(message_8));
|
|
429
466
|
}
|
|
430
|
-
tmp_2 = ensureNotNull(this.
|
|
467
|
+
tmp_2 = ensureNotNull(this.x55_1.n57_1);
|
|
431
468
|
} else {
|
|
432
|
-
var tmp0_elvis_lhs = this.
|
|
433
|
-
var url = tmp0_elvis_lhs == null ? this.
|
|
469
|
+
var tmp0_elvis_lhs = this.x55_1.r57_1;
|
|
470
|
+
var url = tmp0_elvis_lhs == null ? this.x55_1.p57_1 : tmp0_elvis_lhs;
|
|
434
471
|
var tmp_3;
|
|
435
472
|
if (url == null) {
|
|
436
|
-
tmp_3 = this.
|
|
437
|
-
} else if (!(this.
|
|
473
|
+
tmp_3 = this.z55_1;
|
|
474
|
+
} else if (!(this.x55_1.v57_1 == null) || !(this.x55_1.t57_1 == null) || !(this.x55_1.w57_1 == null) || !(this.x55_1.x57_1 == null)) {
|
|
438
475
|
// Inline function 'kotlin.apply' call
|
|
439
|
-
var this_1 = (new (Builder_2())()).
|
|
440
|
-
if (!(this.
|
|
441
|
-
this_1.
|
|
476
|
+
var this_1 = (new (Builder_2())()).k58(url);
|
|
477
|
+
if (!(this.x55_1.v57_1 == null)) {
|
|
478
|
+
this_1.f5a(ensureNotNull(this.x55_1.v57_1));
|
|
442
479
|
}
|
|
443
|
-
if (!(this.
|
|
444
|
-
this_1.
|
|
480
|
+
if (!(this.x55_1.s57_1 == null)) {
|
|
481
|
+
this_1.g5a(ensureNotNull(this.x55_1.s57_1));
|
|
445
482
|
}
|
|
446
|
-
if (!(this.
|
|
447
|
-
this_1.
|
|
483
|
+
if (!(this.x55_1.t57_1 == null)) {
|
|
484
|
+
this_1.h5a(ensureNotNull(this.x55_1.t57_1));
|
|
448
485
|
}
|
|
449
|
-
if (!(this.
|
|
450
|
-
this_1.
|
|
486
|
+
if (!(this.x55_1.w57_1 == null)) {
|
|
487
|
+
this_1.i5a(this.x55_1.w57_1);
|
|
451
488
|
}
|
|
452
|
-
if (!(this.
|
|
453
|
-
this_1.
|
|
489
|
+
if (!(this.x55_1.x57_1 == null)) {
|
|
490
|
+
this_1.j5a(this.x55_1.x57_1);
|
|
454
491
|
}
|
|
455
492
|
tmp_3 = this_1.f2t();
|
|
456
493
|
} else {
|
|
457
494
|
// Inline function 'kotlin.apply' call
|
|
458
|
-
var this_2 = (new (Builder_1())()).
|
|
459
|
-
if (!(this.
|
|
495
|
+
var this_2 = (new (Builder_1())()).l59(url);
|
|
496
|
+
if (!(this.x55_1.s57_1 == null)) {
|
|
460
497
|
Companion_getInstance_0();
|
|
461
498
|
// Inline function 'kotlin.time.Companion.milliseconds' call
|
|
462
|
-
var this_3 = ensureNotNull(this.
|
|
499
|
+
var this_3 = ensureNotNull(this.x55_1.s57_1);
|
|
463
500
|
var tmp$ret$26 = toDuration(this_3, DurationUnit_MILLISECONDS_getInstance());
|
|
464
|
-
this_2.
|
|
501
|
+
this_2.x59(tmp$ret$26);
|
|
465
502
|
}
|
|
466
503
|
tmp_3 = this_2.f2t();
|
|
467
504
|
}
|
|
468
505
|
tmp_2 = tmp_3;
|
|
469
506
|
}
|
|
470
|
-
tmp_1.
|
|
471
|
-
var tmp1_elvis_lhs = this.
|
|
507
|
+
tmp_1.a56_1 = tmp_2;
|
|
508
|
+
var tmp1_elvis_lhs = this.x55_1.o57_1;
|
|
472
509
|
var dispatcher = tmp1_elvis_lhs == null ? get_defaultDispatcher() : tmp1_elvis_lhs;
|
|
473
|
-
this.
|
|
474
|
-
this.
|
|
510
|
+
this.y55_1 = new (ConcurrencyInfo())(dispatcher, CoroutineScope(dispatcher));
|
|
511
|
+
this.s56_1 = new (NetworkInterceptor())(this.z55_1, this.a56_1);
|
|
512
|
+
var tmp_4 = this;
|
|
513
|
+
tmp_4.t56_1 = lazy(ApolloClient$allInterceptors$delegate$lambda(this));
|
|
475
514
|
}
|
|
476
|
-
|
|
477
|
-
return ApolloCall().
|
|
515
|
+
k5a(query) {
|
|
516
|
+
return ApolloCall().v55(this, query);
|
|
478
517
|
}
|
|
479
|
-
|
|
480
|
-
return ApolloCall().
|
|
518
|
+
l5a(mutation) {
|
|
519
|
+
return ApolloCall().v55(this, mutation);
|
|
481
520
|
}
|
|
482
521
|
j6() {
|
|
483
|
-
cancel(this.
|
|
484
|
-
this.y55_1.m10();
|
|
522
|
+
cancel(this.y55_1.d59_1);
|
|
485
523
|
this.z55_1.m10();
|
|
524
|
+
this.a56_1.m10();
|
|
486
525
|
}
|
|
487
|
-
|
|
526
|
+
u56(apolloRequest, throwing) {
|
|
488
527
|
var flow = channelFlow(ApolloClient$executeAsFlowInternal$slambda(this, apolloRequest, throwing));
|
|
489
528
|
return buffer(flow, 2147483647);
|
|
490
529
|
}
|
|
491
|
-
|
|
530
|
+
b59(apolloRequest, throwing) {
|
|
492
531
|
var apolloClient = this;
|
|
493
532
|
// Inline function 'kotlin.apply' call
|
|
494
533
|
var this_0 = apolloRequest.p4l();
|
|
495
|
-
this_0.j4k(this.
|
|
534
|
+
this_0.j4k(this.y55_1.c4m(this.c56_1).c4m(apolloClient.j56_1).c4m(this_0.s4j_1));
|
|
496
535
|
var tmp0_elvis_lhs = this_0.u4j_1;
|
|
497
|
-
this_0.m4k(tmp0_elvis_lhs == null ? apolloClient.
|
|
536
|
+
this_0.m4k(tmp0_elvis_lhs == null ? apolloClient.l56_1 : tmp0_elvis_lhs);
|
|
498
537
|
var tmp1_elvis_lhs = this_0.x4j_1;
|
|
499
|
-
this_0.p4k(tmp1_elvis_lhs == null ? apolloClient.
|
|
538
|
+
this_0.p4k(tmp1_elvis_lhs == null ? apolloClient.n56_1 : tmp1_elvis_lhs);
|
|
500
539
|
var tmp2_elvis_lhs = this_0.y4j_1;
|
|
501
|
-
this_0.q4k(tmp2_elvis_lhs == null ? apolloClient.
|
|
540
|
+
this_0.q4k(tmp2_elvis_lhs == null ? apolloClient.o56_1 : tmp2_elvis_lhs);
|
|
502
541
|
var tmp3_elvis_lhs = this_0.w4j_1;
|
|
503
|
-
this_0.r4k(tmp3_elvis_lhs == null ? apolloClient.
|
|
542
|
+
this_0.r4k(tmp3_elvis_lhs == null ? apolloClient.p56_1 : tmp3_elvis_lhs);
|
|
504
543
|
// Inline function 'kotlin.collections.buildList' call
|
|
505
544
|
// Inline function 'kotlin.collections.buildListInternal' call
|
|
506
545
|
// Inline function 'kotlin.apply' call
|
|
507
546
|
var this_1 = ArrayList().i2();
|
|
508
547
|
if (!(this_0.b4k_1 === true)) {
|
|
509
548
|
// Inline function 'kotlin.collections.orEmpty' call
|
|
510
|
-
var tmp0_elvis_lhs_0 = apolloClient.
|
|
549
|
+
var tmp0_elvis_lhs_0 = apolloClient.m56_1;
|
|
511
550
|
var tmp$ret$6 = tmp0_elvis_lhs_0 == null ? emptyList() : tmp0_elvis_lhs_0;
|
|
512
551
|
this_1.s2(tmp$ret$6);
|
|
513
552
|
}
|
|
@@ -518,47 +557,29 @@ function ApolloClient() {
|
|
|
518
557
|
var headers = this_1.f8();
|
|
519
558
|
this_0.n4k(headers);
|
|
520
559
|
var tmp4_elvis_lhs = this_0.z4j_1;
|
|
521
|
-
var canBeBatched = tmp4_elvis_lhs == null ? apolloClient.
|
|
560
|
+
var canBeBatched = tmp4_elvis_lhs == null ? apolloClient.q56_1 : tmp4_elvis_lhs;
|
|
522
561
|
if (!(canBeBatched == null)) {
|
|
523
562
|
this_0.o4k('X-APOLLO-CAN-BE-BATCHED', canBeBatched.toString());
|
|
524
563
|
}
|
|
525
564
|
var tmp5_elvis_lhs = this_0.c4k_1;
|
|
526
565
|
var tmp;
|
|
527
566
|
if (tmp5_elvis_lhs == null) {
|
|
528
|
-
var tmp6_safe_receiver = apolloClient.
|
|
567
|
+
var tmp6_safe_receiver = apolloClient.f56_1;
|
|
529
568
|
tmp = tmp6_safe_receiver == null ? null : tmp6_safe_receiver(apolloRequest);
|
|
530
569
|
} else {
|
|
531
570
|
tmp = tmp5_elvis_lhs;
|
|
532
571
|
}
|
|
533
572
|
this_0.u4k(tmp);
|
|
534
573
|
var tmp7_elvis_lhs = this_0.d4k_1;
|
|
535
|
-
this_0.v4k(tmp7_elvis_lhs == null ? apolloClient.
|
|
574
|
+
this_0.v4k(tmp7_elvis_lhs == null ? apolloClient.h56_1 : tmp7_elvis_lhs);
|
|
536
575
|
var tmp8_elvis_lhs = this_0.a4k_1;
|
|
537
|
-
this_0.t4k(tmp8_elvis_lhs == null ? apolloClient.
|
|
538
|
-
this_0.w4k(apolloClient.
|
|
576
|
+
this_0.t4k(tmp8_elvis_lhs == null ? apolloClient.r56_1 : tmp8_elvis_lhs);
|
|
577
|
+
this_0.w4k(apolloClient.i56_1);
|
|
539
578
|
var tmp9_elvis_lhs = this_0.t4j_1;
|
|
540
|
-
this_0.l4k(tmp9_elvis_lhs == null ? apolloClient.
|
|
579
|
+
this_0.l4k(tmp9_elvis_lhs == null ? apolloClient.k56_1 : tmp9_elvis_lhs);
|
|
541
580
|
var request = this_0.f2t();
|
|
542
|
-
// Inline function 'kotlin.collections.buildList' call
|
|
543
|
-
// Inline function 'kotlin.collections.buildListInternal' call
|
|
544
|
-
// Inline function 'kotlin.apply' call
|
|
545
|
-
var this_2 = ArrayList().i2();
|
|
546
|
-
this_2.s2(this.w55_1.v56_1);
|
|
547
|
-
if (!(this.c56_1 == null)) {
|
|
548
|
-
this_2.o2(this.c56_1);
|
|
549
|
-
}
|
|
550
|
-
this_2.s2(this.w55_1.w56_1);
|
|
551
|
-
if (!(this.d56_1 == null)) {
|
|
552
|
-
this_2.o2(this.d56_1);
|
|
553
|
-
}
|
|
554
|
-
this_2.s2(this.w55_1.x56_1);
|
|
555
|
-
var tmp0_elvis_lhs_2 = this.f56_1;
|
|
556
|
-
this_2.o2(tmp0_elvis_lhs_2 == null ? RetryOnErrorInterceptor() : tmp0_elvis_lhs_2);
|
|
557
|
-
this_2.s2(this.w55_1.y56_1);
|
|
558
|
-
this_2.o2(this.r56_1);
|
|
559
|
-
var allInterceptors = this_2.f8();
|
|
560
581
|
// Inline function 'kotlin.let' call
|
|
561
|
-
var it = (new (DefaultInterceptorChain())(
|
|
582
|
+
var it = (new (DefaultInterceptorChain())(_get_allInterceptors__eyuk02(this), 0)).o5a(request);
|
|
562
583
|
var tmp_0;
|
|
563
584
|
if (throwing) {
|
|
564
585
|
tmp_0 = onEach(it, ApolloClient$apolloResponses$slambda());
|