@continuous-excellence/coupling-cli 1.1.684 → 1.1.686
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 +40 -40
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +15 -15
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +17 -17
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +33 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +27 -27
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +2 -2
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +25 -25
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +34 -34
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +30 -30
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PartyListQuerySelections.mjs +2 -2
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/selections/PlayersQuerySelections.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +37 -37
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +27 -27
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +35 -35
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ListContribution.mjs +46 -46
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +38 -38
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +29 -29
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +51 -51
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +10 -10
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +11 -11
- 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-auth0-management/com/zegreatrob/coupling/auth0/management/AccessResult.mjs +82 -82
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/DeviceCodeRequest.mjs +54 -54
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +26 -26
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/CouplingJsonFormat.mjs +4 -4
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +10 -10
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +106 -106
- 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 +57 -57
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +16 -16
- 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 +33 -33
- 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 +17 -17
- 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 +28 -28
- 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/KtorSyntax.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +19 -19
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/ContributionDetailsMapper.mjs +16 -16
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +34 -34
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyContributionReportContributionsQuery.mjs +41 -41
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +23 -23
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_ResponseAdapter.mjs +39 -39
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyContributionReportContributionsQuery_VariablesAdapter.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetails.mjs +50 -50
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/ContributionDetailsImpl_ResponseAdapter.mjs +55 -55
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +75 -75
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +102 -102
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +36 -36
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs +27 -27
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +33 -33
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/ContributionDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PairingSetDetailsSelections.mjs +5 -5
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PartyDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/selections/PlayerDetailsSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/CurrentPairAssignmentsQuerySelections.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyContributionReportContributionsQuerySelections.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/PartyDetailsQuerySelections.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/selections/SaveContributionMutationSelections.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Contribution.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionId.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionReport.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionWindow.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/DateTimeISO.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Duration.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLBoolean.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLInt.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLString.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Mutation.mjs +20 -20
- 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 +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +47 -47
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionWindow_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionsInput_InputAdapter.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +8 -8
- package/kotlin/apollo-kotlin-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs +108 -106
- 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/ApolloRequest.mjs +86 -83
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloRequest.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloResponse.mjs +62 -62
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Assertions.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs +64 -64
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +38 -38
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/DeferredFragmentIdentifier.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Error.mjs +24 -24
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executable.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ExecutionContext.mjs +21 -21
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Operations.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Optional.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/RequestParameters.mjs +47 -43
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/RequestParameters.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/CacheUrlOverride.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/DefaultHttpRequestComposer.mjs +79 -79
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/Http.mjs +61 -61
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/HttpHeaders.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/internal/ResponseParser.mjs +29 -29
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +84 -84
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSourceJsonReader.mjs +279 -279
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonNumber.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonWriters.mjs +12 -12
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs +106 -112
- 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 +47 -47
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/FileUploadAwareJsonWriter.mjs +35 -35
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/JsonScope.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs +68 -68
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +18 -18
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +207 -207
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/NetworkInterceptor.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +41 -41
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +49 -49
- 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 +33 -33
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_2IncrementalResultsMerger.mjs +32 -32
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +24 -24
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs +109 -109
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ClientMessage.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/GraphQLWsProtocol.mjs +13 -13
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/ServerMessage.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/WebSocketEngine.js.mjs +42 -42
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/WebSocketNetworkTransport.mjs +62 -62
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/SubscribableWebSocket.mjs +98 -98
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/WebSocketPool.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +26 -26
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +25 -25
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +115 -115
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +21 -21
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.js.mjs +1 -1
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +42 -42
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs.map +1 -1
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +43 -43
- 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 +107 -107
- 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 +134 -134
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +47 -47
- 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 +195 -195
- 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 +133 -133
- 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 +4 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +4 -4
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +12 -12
- 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-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +17 -17
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +21 -21
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +30 -30
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +18 -18
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +84 -84
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +41 -41
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +48 -48
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +7 -7
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +25 -25
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +38 -38
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +55 -55
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +230 -230
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +22 -22
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +33 -33
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +13 -13
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +39 -39
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +19 -19
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs +5 -5
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +70 -70
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +444 -444
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +113 -113
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +180 -180
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +90 -90
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +48 -48
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +30 -30
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +48 -48
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +19 -19
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +55 -55
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementBuilders.mjs +6 -6
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +143 -143
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonExceptions.mjs +21 -21
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +177 -177
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +25 -25
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +68 -68
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +7 -7
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +21 -21
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +40 -40
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +11 -11
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +12 -12
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +53 -53
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +179 -179
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +139 -139
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +51 -51
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +262 -262
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonEncoder.mjs +183 -183
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +9 -9
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +54 -54
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +64 -64
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +35 -35
- package/kotlin/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +44 -44
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +49 -49
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +47 -47
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +3 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +19 -19
- package/kotlin/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +26 -26
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +20 -20
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +3 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs +32 -32
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +3 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +21 -21
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultRequest.mjs +77 -51
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultRequest.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +33 -33
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +47 -47
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +51 -51
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +33 -33
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +27 -27
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +13 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +77 -77
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +48 -48
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +77 -72
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +20 -20
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +13 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +16 -16
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +13 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +22 -22
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/observer/ResponseObserver.mjs +28 -28
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/ClientSessions.mjs +32 -32
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +59 -59
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSocketContent.mjs +8 -8
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +68 -68
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/builders.mjs +10 -10
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs +14 -14
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +57 -57
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +18 -18
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/buildersWithUrl.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/FormDataContent.mjs +9 -9
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/formBuilders.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/formBuilders.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +20 -20
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +25 -25
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +16 -16
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +3 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/JsUtils.js.mjs +10 -10
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/JsUtils.js.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/HttpClientCallLogger.mjs +28 -28
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogBodyFilter.mjs +18 -18
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogLevel.mjs +3 -3
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggedContent.mjs +16 -16
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logger.mjs +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logging.mjs +184 -184
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logging.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggingUtils.mjs +13 -13
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/ObservingUtils.mjs +4 -4
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/ObservingUtils.mjs.map +1 -1
- package/kotlin/ktor-ktor-events/io/ktor/events/Events.mjs +5 -5
- package/kotlin/ktor-ktor-http/io/ktor/http/Codecs.mjs +5 -5
- package/kotlin/ktor-ktor-http/io/ktor/http/Codecs.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +94 -94
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +18 -18
- package/kotlin/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/Headers.mjs +18 -18
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +79 -144
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +120 -120
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +3 -3
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +15 -15
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +16 -16
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +66 -66
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpUrlEncoded.mjs +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/Parameters.mjs +12 -12
- package/kotlin/ktor-ktor-http/io/ktor/http/Parameters.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/Query.mjs +4 -4
- package/kotlin/ktor-ktor-http/io/ktor/http/Query.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilder.mjs +59 -59
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilder.web.mjs +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/URLParser.mjs +35 -35
- package/kotlin/ktor-ktor-http/io/ktor/http/URLParser.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/URLProtocol.mjs +20 -20
- package/kotlin/ktor-ktor-http/io/ktor/http/URLUtils.mjs +25 -25
- package/kotlin/ktor-ktor-http/io/ktor/http/Url.mjs +77 -77
- package/kotlin/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +31 -31
- package/kotlin/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +11 -11
- package/kotlin/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +9 -9
- package/kotlin/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +14 -14
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +4 -4
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +74 -74
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +32 -32
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +9 -9
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs.map +1 -1
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +10 -10
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +68 -68
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +4 -4
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs +3 -3
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +1 -0
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +13 -67
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs.map +1 -1
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +7 -7
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +15 -39
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs.map +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +50 -126
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs.map +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +9 -9
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs.map +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +7 -7
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.mjs +12 -12
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.web.mjs +16 -16
- package/kotlin/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +190 -190
- package/kotlin/ktor-ktor-utils/io/ktor/util/ContentEncoders.web.mjs +5 -5
- package/kotlin/ktor-ktor-utils/io/ktor/util/Crypto.web.mjs.map +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/Encoders.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +16 -16
- package/kotlin/ktor-ktor-utils/io/ktor/util/StringValues.mjs +134 -134
- package/kotlin/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/date/Date.mjs +102 -102
- package/kotlin/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +6 -6
- package/kotlin/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +6 -6
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLogger.web.mjs +10 -10
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/Logger.web.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +28 -28
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +26 -26
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +53 -53
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs +2 -2
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +48 -48
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs.map +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +9 -9
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +20 -20
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs +85 -85
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/Frame.web.mjs +46 -46
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +5 -5
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +6 -6
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +8 -8
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/PingPong.mjs +10 -10
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +41 -41
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketExtension.mjs +4 -4
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketExtensionHeader.mjs +4 -4
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketSession.mjs +5 -5
- 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 +75 -75
- 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 +23 -23
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +150 -150
- 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 +62 -62
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +68 -68
- package/kotlin/okio-parent-okio/okio/Buffer.mjs +363 -363
- package/kotlin/okio-parent-okio/okio/ByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/HashingSink.mjs +14 -14
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs +18 -18
- package/kotlin/okio-parent-okio/okio/Okio.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/Options.mjs +24 -24
- package/kotlin/okio-parent-okio/okio/RealBufferedSink.mjs +37 -37
- package/kotlin/okio-parent-okio/okio/RealBufferedSource.mjs +60 -60
- package/kotlin/okio-parent-okio/okio/Segment.mjs +69 -69
- package/kotlin/okio-parent-okio/okio/SegmentPool.mjs +4 -4
- package/kotlin/okio-parent-okio/okio/SegmentedByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/Util.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/-Utf8.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/Buffer.mjs +57 -57
- package/kotlin/okio-parent-okio/okio/internal/ByteString.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/RealBufferedSource.mjs +10 -10
- package/kotlin/okio-parent-okio/okio/internal/SegmentedByteString.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/Sha256.mjs +63 -63
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +1 -1
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +174 -174
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +37 -37
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +30 -30
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +34 -34
- package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
- package/kotlin/types-types-internal/kotools/types/internal/Errors.mjs +1 -1
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +12 -12
- package/kotlin/uuid/com/benasher44/uuid/uuid.mjs +11 -11
- package/package.json +2 -2
|
@@ -130,14 +130,14 @@ function DefaultWebSocketSession() {
|
|
|
130
130
|
function DefaultWebSocketSession_0(session, pingIntervalMillis, timeoutMillis, channelsConfig) {
|
|
131
131
|
pingIntervalMillis = pingIntervalMillis === VOID ? new (Long())(0, 0) : pingIntervalMillis;
|
|
132
132
|
timeoutMillis = timeoutMillis === VOID ? new (Long())(15000, 0) : timeoutMillis;
|
|
133
|
-
channelsConfig = channelsConfig === VOID ? Companion_getInstance().
|
|
133
|
+
channelsConfig = channelsConfig === VOID ? Companion_getInstance().s37_1 : channelsConfig;
|
|
134
134
|
_init_properties_DefaultWebSocketSession_kt__469s0y();
|
|
135
135
|
// Inline function 'kotlin.require' call
|
|
136
136
|
if (!!isInterface(session, DefaultWebSocketSession())) {
|
|
137
137
|
var message = 'Cannot wrap other DefaultWebSocketSession';
|
|
138
138
|
throw IllegalArgumentException().m2(toString(message));
|
|
139
139
|
}
|
|
140
|
-
return new (DefaultWebSocketSessionImpl())(session, pingIntervalMillis, timeoutMillis, channelsConfig.
|
|
140
|
+
return new (DefaultWebSocketSessionImpl())(session, pingIntervalMillis, timeoutMillis, channelsConfig.t37_1, channelsConfig.u37_1);
|
|
141
141
|
}
|
|
142
142
|
function runIncomingProcessor($this, ponger) {
|
|
143
143
|
var tmp = get_IncomingProcessorCoroutineName().lo(Dispatchers_getInstance().r19_1);
|
|
@@ -149,14 +149,14 @@ function runOutgoingProcessor($this) {
|
|
|
149
149
|
return launch($this, tmp, tmp_0, DefaultWebSocketSessionImpl$runOutgoingProcessor$slambda($this));
|
|
150
150
|
}
|
|
151
151
|
function *outgoingProcessorLoop($this, $completion) {
|
|
152
|
-
var _iterator__ex2g4s = $this.
|
|
152
|
+
var _iterator__ex2g4s = $this.b38_1.l1();
|
|
153
153
|
$l$loop: while (yield* _iterator__ex2g4s.z1c($completion)) {
|
|
154
154
|
var frame = _iterator__ex2g4s.n1();
|
|
155
155
|
// Inline function 'io.ktor.util.logging.trace' call
|
|
156
156
|
var this_0 = get_LOGGER();
|
|
157
157
|
if (get_isTraceEnabled(this_0)) {
|
|
158
158
|
var tmp$ret$1 = 'Sending ' + frame.toString() + ' from session ' + toString($this);
|
|
159
|
-
this_0.
|
|
159
|
+
this_0.f2q(tmp$ret$1);
|
|
160
160
|
}
|
|
161
161
|
var tmp;
|
|
162
162
|
if (frame instanceof Close()) {
|
|
@@ -176,7 +176,7 @@ function *outgoingProcessorLoop($this, $completion) {
|
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
178
|
var processedFrame = tmp;
|
|
179
|
-
yield* $this.
|
|
179
|
+
yield* $this.v37_1.q37().n1d(processedFrame, $completion);
|
|
180
180
|
}
|
|
181
181
|
return Unit_instance;
|
|
182
182
|
}
|
|
@@ -188,88 +188,88 @@ function *sendCloseSequence($this, reason, exception, $completion) {
|
|
|
188
188
|
var this_0 = get_LOGGER();
|
|
189
189
|
if (get_isTraceEnabled(this_0)) {
|
|
190
190
|
var tmp$ret$1 = 'Sending Close Sequence for session ' + toString($this) + ' with reason ' + toString_0(reason) + ' and exception ' + toString_0(exception);
|
|
191
|
-
this_0.
|
|
191
|
+
this_0.f2q(tmp$ret$1);
|
|
192
192
|
}
|
|
193
|
-
$this.
|
|
194
|
-
var reasonToSend = reason == null ? CloseReason().
|
|
193
|
+
$this.y37_1.f15();
|
|
194
|
+
var reasonToSend = reason == null ? CloseReason().j37(Codes_NORMAL_getInstance(), '') : reason;
|
|
195
195
|
try {
|
|
196
196
|
runOrCancelPinger($this);
|
|
197
|
-
if (!(reasonToSend.
|
|
198
|
-
yield* $this.
|
|
197
|
+
if (!(reasonToSend.g37_1 === Codes_CLOSED_ABNORMALLY_getInstance().c37_1)) {
|
|
198
|
+
yield* $this.v37_1.q37().n1d(Close().p38(reasonToSend), $completion);
|
|
199
199
|
}
|
|
200
200
|
}finally {
|
|
201
|
-
$this.
|
|
201
|
+
$this.x37_1.d15(reasonToSend);
|
|
202
202
|
if (!(exception == null)) {
|
|
203
|
-
$this.
|
|
204
|
-
$this.
|
|
203
|
+
$this.b38_1.x1d(exception);
|
|
204
|
+
$this.a38_1.x1d(exception);
|
|
205
205
|
}
|
|
206
206
|
}
|
|
207
207
|
return Unit_instance;
|
|
208
208
|
}
|
|
209
209
|
function tryClose($this) {
|
|
210
|
-
return $this.
|
|
210
|
+
return $this.c38_1.atomicfu$compareAndSet(false, true);
|
|
211
211
|
}
|
|
212
212
|
function runOrCancelPinger($this) {
|
|
213
|
-
var interval = $this.
|
|
213
|
+
var interval = $this.f38_1;
|
|
214
214
|
var tmp;
|
|
215
|
-
if ($this.
|
|
215
|
+
if ($this.c38_1.kotlinx$atomicfu$value) {
|
|
216
216
|
tmp = null;
|
|
217
217
|
} else if (compare(interval, new (Long())(0, 0)) > 0) {
|
|
218
|
-
var tmp_0 = $this.
|
|
219
|
-
var tmp_1 = $this.
|
|
218
|
+
var tmp_0 = $this.v37_1.q37();
|
|
219
|
+
var tmp_1 = $this.g38_1;
|
|
220
220
|
tmp = pinger($this, tmp_0, interval, tmp_1, DefaultWebSocketSessionImpl$runOrCancelPinger$slambda($this));
|
|
221
221
|
} else {
|
|
222
222
|
tmp = null;
|
|
223
223
|
}
|
|
224
224
|
var newPinger = tmp;
|
|
225
|
-
var tmp0_safe_receiver = $this.
|
|
225
|
+
var tmp0_safe_receiver = $this.w37_1.atomicfu$getAndSet(newPinger);
|
|
226
226
|
if (tmp0_safe_receiver == null)
|
|
227
227
|
null;
|
|
228
228
|
else
|
|
229
229
|
tmp0_safe_receiver.z1d();
|
|
230
|
-
var tmp2_safe_receiver = newPinger == null ? null : new (ChannelResult())(newPinger.o1d(Companion_getInstance_1().
|
|
230
|
+
var tmp2_safe_receiver = newPinger == null ? null : new (ChannelResult())(newPinger.o1d(Companion_getInstance_1().q38_1));
|
|
231
231
|
if (tmp2_safe_receiver == null)
|
|
232
232
|
null;
|
|
233
233
|
else
|
|
234
234
|
_ChannelResult___get_isSuccess__impl__odq1z9(tmp2_safe_receiver.m1d_1);
|
|
235
|
-
if ($this.
|
|
235
|
+
if ($this.c38_1.kotlinx$atomicfu$value && !(newPinger == null)) {
|
|
236
236
|
runOrCancelPinger($this);
|
|
237
237
|
}
|
|
238
238
|
}
|
|
239
239
|
function *checkMaxFrameSize($this, packet, frame, $completion) {
|
|
240
|
-
var tmp = frame.
|
|
240
|
+
var tmp = frame.t38_1.length;
|
|
241
241
|
var tmp1_elvis_lhs = packet == null ? null : get_size(packet);
|
|
242
242
|
var size = tmp + (tmp1_elvis_lhs == null ? 0 : tmp1_elvis_lhs) | 0;
|
|
243
|
-
if (compare(fromInt(size), $this.
|
|
243
|
+
if (compare(fromInt(size), $this.o37()) > 0) {
|
|
244
244
|
if (packet == null)
|
|
245
245
|
null;
|
|
246
246
|
else {
|
|
247
247
|
packet.j6();
|
|
248
248
|
}
|
|
249
|
-
yield* close($this, CloseReason().
|
|
250
|
-
throw FrameTooBigException().
|
|
249
|
+
yield* close($this, CloseReason().j37(Codes_TOO_BIG_getInstance(), 'Frame is too big: ' + size + '. Max size is ' + $this.o37().toString()), $completion);
|
|
250
|
+
throw FrameTooBigException().b39(fromInt(size));
|
|
251
251
|
}
|
|
252
252
|
return Unit_instance;
|
|
253
253
|
}
|
|
254
254
|
function processIncomingExtensions($this, frame) {
|
|
255
255
|
// Inline function 'kotlin.collections.fold' call
|
|
256
256
|
var accumulator = frame;
|
|
257
|
-
var _iterator__ex2g4s = $this.
|
|
257
|
+
var _iterator__ex2g4s = $this.c39().l1();
|
|
258
258
|
while (_iterator__ex2g4s.m1()) {
|
|
259
259
|
var element = _iterator__ex2g4s.n1();
|
|
260
260
|
var current = accumulator;
|
|
261
|
-
accumulator = element.
|
|
261
|
+
accumulator = element.d39(current);
|
|
262
262
|
}
|
|
263
263
|
return accumulator;
|
|
264
264
|
}
|
|
265
265
|
function processOutgoingExtensions($this, frame) {
|
|
266
266
|
// Inline function 'kotlin.collections.fold' call
|
|
267
267
|
var accumulator = frame;
|
|
268
|
-
var _iterator__ex2g4s = $this.
|
|
268
|
+
var _iterator__ex2g4s = $this.c39().l1();
|
|
269
269
|
while (_iterator__ex2g4s.m1()) {
|
|
270
270
|
var element = _iterator__ex2g4s.n1();
|
|
271
271
|
var current = accumulator;
|
|
272
|
-
accumulator = element.
|
|
272
|
+
accumulator = element.e39(current);
|
|
273
273
|
}
|
|
274
274
|
return accumulator;
|
|
275
275
|
}
|
|
@@ -279,7 +279,7 @@ function Companion() {
|
|
|
279
279
|
class $ {
|
|
280
280
|
constructor() {
|
|
281
281
|
Companion_instance = this;
|
|
282
|
-
this.
|
|
282
|
+
this.q38_1 = Pong().m39(new Int8Array(0), NonDisposableHandle_instance);
|
|
283
283
|
}
|
|
284
284
|
}
|
|
285
285
|
initMetadataForCompanion($);
|
|
@@ -297,7 +297,7 @@ function DefaultWebSocketSessionImpl$start$slambda($incomingJob, $outgoingJob, t
|
|
|
297
297
|
return constructCallableReference(function *($this$launch, $completion) {
|
|
298
298
|
yield* $incomingJob.dz($completion);
|
|
299
299
|
yield* $outgoingJob.dz($completion);
|
|
300
|
-
this$0.
|
|
300
|
+
this$0.y37_1.hz();
|
|
301
301
|
return Unit_instance;
|
|
302
302
|
}, 1);
|
|
303
303
|
}
|
|
@@ -308,7 +308,7 @@ function DefaultWebSocketSessionImpl$runIncomingProcessor$slambda(this$0, $ponge
|
|
|
308
308
|
var closeFramePresented = false;
|
|
309
309
|
try {
|
|
310
310
|
// Inline function 'kotlinx.coroutines.channels.consumeEach' call
|
|
311
|
-
var tmp0 = this$0.
|
|
311
|
+
var tmp0 = this$0.v37_1.p37();
|
|
312
312
|
$l$block_1: {
|
|
313
313
|
// Inline function 'kotlinx.coroutines.channels.consume' call
|
|
314
314
|
var cause = null;
|
|
@@ -321,19 +321,19 @@ function DefaultWebSocketSessionImpl$runIncomingProcessor$slambda(this$0, $ponge
|
|
|
321
321
|
var this_0 = get_LOGGER();
|
|
322
322
|
if (get_isTraceEnabled(this_0)) {
|
|
323
323
|
var tmp$ret$5 = 'WebSocketSession(' + toString($this$launch) + ') receiving frame ' + e.toString();
|
|
324
|
-
this_0.
|
|
324
|
+
this_0.f2q(tmp$ret$5);
|
|
325
325
|
}
|
|
326
326
|
if (e instanceof Close()) {
|
|
327
|
-
if (!this$0.
|
|
328
|
-
var tmp = this$0.
|
|
327
|
+
if (!this$0.q37().g1d()) {
|
|
328
|
+
var tmp = this$0.q37();
|
|
329
329
|
var tmp1_elvis_lhs = readReason(e);
|
|
330
|
-
yield* tmp.n1d(Close().
|
|
330
|
+
yield* tmp.n1d(Close().p38(tmp1_elvis_lhs == null ? get_NORMAL_CLOSE() : tmp1_elvis_lhs), $completion);
|
|
331
331
|
}
|
|
332
332
|
closeFramePresented = true;
|
|
333
333
|
return Unit_instance;
|
|
334
334
|
} else {
|
|
335
335
|
if (e instanceof Pong()) {
|
|
336
|
-
var tmp2_safe_receiver = this$0.
|
|
336
|
+
var tmp2_safe_receiver = this$0.w37_1.kotlinx$atomicfu$value;
|
|
337
337
|
if (tmp2_safe_receiver == null)
|
|
338
338
|
null;
|
|
339
339
|
else
|
|
@@ -343,24 +343,24 @@ function DefaultWebSocketSessionImpl$runIncomingProcessor$slambda(this$0, $ponge
|
|
|
343
343
|
yield* $ponger.n1d(e, $completion);
|
|
344
344
|
else {
|
|
345
345
|
yield* /*#__NOINLINE__*/checkMaxFrameSize(this$0, frameBody, e, $completion);
|
|
346
|
-
if (!e.
|
|
346
|
+
if (!e.r38_1) {
|
|
347
347
|
if (firstFrame == null) {
|
|
348
348
|
firstFrame = e;
|
|
349
349
|
}
|
|
350
350
|
if (frameBody == null) {
|
|
351
351
|
frameBody = BytePacketBuilder();
|
|
352
352
|
}
|
|
353
|
-
writeFully(frameBody, e.
|
|
353
|
+
writeFully(frameBody, e.t38_1);
|
|
354
354
|
break $l$block_0;
|
|
355
355
|
}
|
|
356
356
|
if (firstFrame == null) {
|
|
357
|
-
yield* this$0.
|
|
357
|
+
yield* this$0.a38_1.n1d(processIncomingExtensions(this$0, e), $completion);
|
|
358
358
|
break $l$block_0;
|
|
359
359
|
}
|
|
360
|
-
writeFully(ensureNotNull(frameBody), e.
|
|
361
|
-
var defragmented = Companion_getInstance_0().
|
|
360
|
+
writeFully(ensureNotNull(frameBody), e.t38_1);
|
|
361
|
+
var defragmented = Companion_getInstance_0().o39(true, firstFrame.s38_1, readByteArray(build(frameBody)), firstFrame.v38_1, firstFrame.w38_1, firstFrame.x38_1);
|
|
362
362
|
firstFrame = null;
|
|
363
|
-
yield* this$0.
|
|
363
|
+
yield* this$0.a38_1.n1d(processIncomingExtensions(this$0, defragmented), $completion);
|
|
364
364
|
}
|
|
365
365
|
}
|
|
366
366
|
}
|
|
@@ -387,7 +387,7 @@ function DefaultWebSocketSessionImpl$runIncomingProcessor$slambda(this$0, $ponge
|
|
|
387
387
|
if ($p_0 instanceof Error) {
|
|
388
388
|
var cause_0 = $p_0;
|
|
389
389
|
$ponger.z1d();
|
|
390
|
-
this$0.
|
|
390
|
+
this$0.a38_1.x1d(cause_0);
|
|
391
391
|
} else {
|
|
392
392
|
throw $p_0;
|
|
393
393
|
}
|
|
@@ -401,9 +401,9 @@ function DefaultWebSocketSessionImpl$runIncomingProcessor$slambda(this$0, $ponge
|
|
|
401
401
|
else {
|
|
402
402
|
tmp0_safe_receiver.j6();
|
|
403
403
|
}
|
|
404
|
-
this$0.
|
|
404
|
+
this$0.a38_1.z1d();
|
|
405
405
|
if (!closeFramePresented) {
|
|
406
|
-
yield* close(this$0, CloseReason().
|
|
406
|
+
yield* close(this$0, CloseReason().j37(Codes_CLOSED_ABNORMALLY_getInstance(), 'Connection was closed without close frame'), $completion);
|
|
407
407
|
}
|
|
408
408
|
}
|
|
409
409
|
return Unit_instance;
|
|
@@ -426,7 +426,7 @@ function DefaultWebSocketSessionImpl$runOutgoingProcessor$slambda(this$0) {
|
|
|
426
426
|
} else {
|
|
427
427
|
if ($p instanceof CancellationException()) {
|
|
428
428
|
var _unused_var__etf5q3_1 = $p;
|
|
429
|
-
tmp_0 = yield* /*#__NOINLINE__*/sendCloseSequence(this$0, CloseReason().
|
|
429
|
+
tmp_0 = yield* /*#__NOINLINE__*/sendCloseSequence(this$0, CloseReason().j37(Codes_NORMAL_getInstance(), ''), VOID, $completion);
|
|
430
430
|
} else {
|
|
431
431
|
if ($p instanceof ChannelIOException()) {
|
|
432
432
|
var _unused_var__etf5q3_2 = $p;
|
|
@@ -434,8 +434,8 @@ function DefaultWebSocketSessionImpl$runOutgoingProcessor$slambda(this$0) {
|
|
|
434
434
|
} else {
|
|
435
435
|
if ($p instanceof Error) {
|
|
436
436
|
var cause = $p;
|
|
437
|
-
this$0.
|
|
438
|
-
yield* closeExceptionally(this$0.
|
|
437
|
+
this$0.b38_1.gz(CancellationException().p('Failed to send frame', cause));
|
|
438
|
+
yield* closeExceptionally(this$0.v37_1, cause, $completion);
|
|
439
439
|
return Unit_instance;
|
|
440
440
|
} else {
|
|
441
441
|
throw $p;
|
|
@@ -447,8 +447,8 @@ function DefaultWebSocketSessionImpl$runOutgoingProcessor$slambda(this$0) {
|
|
|
447
447
|
tmp = tmp_0;
|
|
448
448
|
}
|
|
449
449
|
finally {
|
|
450
|
-
this$0.
|
|
451
|
-
yield* close(this$0.
|
|
450
|
+
this$0.b38_1.b1e();
|
|
451
|
+
yield* close(this$0.v37_1, VOID, $completion);
|
|
452
452
|
}
|
|
453
453
|
return Unit_instance;
|
|
454
454
|
}, 1);
|
|
@@ -465,45 +465,45 @@ function DefaultWebSocketSessionImpl() {
|
|
|
465
465
|
class $ {
|
|
466
466
|
constructor(raw, pingIntervalMillis, timeoutMillis, incomingFramesConfig, outgoingFramesConfig) {
|
|
467
467
|
Companion_getInstance_1();
|
|
468
|
-
this.
|
|
469
|
-
this.
|
|
470
|
-
this.
|
|
471
|
-
this.
|
|
472
|
-
this.
|
|
473
|
-
this.
|
|
474
|
-
this.
|
|
475
|
-
this.
|
|
468
|
+
this.v37_1 = raw;
|
|
469
|
+
this.w37_1 = atomic$ref$1(null);
|
|
470
|
+
this.x37_1 = CompletableDeferred();
|
|
471
|
+
this.y37_1 = Job();
|
|
472
|
+
this.z37_1 = this.v37_1.wx().jo(Key_instance).lo(this.y37_1).lo(new (CoroutineName())('ws-default'));
|
|
473
|
+
this.a38_1 = from(Factory_getInstance(), incomingFramesConfig);
|
|
474
|
+
this.b38_1 = from(Factory_getInstance(), outgoingFramesConfig);
|
|
475
|
+
this.c38_1 = atomic$boolean$1(false);
|
|
476
476
|
var tmp = this;
|
|
477
477
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
478
|
-
tmp.
|
|
479
|
-
this.
|
|
480
|
-
this.
|
|
481
|
-
this.
|
|
482
|
-
this.
|
|
478
|
+
tmp.d38_1 = ArrayList().i2();
|
|
479
|
+
this.e38_1 = atomic$boolean$1(false);
|
|
480
|
+
this.f38_1 = pingIntervalMillis;
|
|
481
|
+
this.g38_1 = timeoutMillis;
|
|
482
|
+
this.h38_1 = this.x37_1;
|
|
483
483
|
}
|
|
484
484
|
wx() {
|
|
485
|
-
return this.
|
|
485
|
+
return this.z37_1;
|
|
486
486
|
}
|
|
487
|
-
|
|
488
|
-
return this.
|
|
487
|
+
p37() {
|
|
488
|
+
return this.a38_1;
|
|
489
489
|
}
|
|
490
|
-
|
|
491
|
-
return this.
|
|
490
|
+
q37() {
|
|
491
|
+
return this.b38_1;
|
|
492
492
|
}
|
|
493
|
-
|
|
494
|
-
return this.
|
|
493
|
+
c39() {
|
|
494
|
+
return this.d38_1;
|
|
495
495
|
}
|
|
496
|
-
|
|
497
|
-
this.
|
|
496
|
+
n37(value) {
|
|
497
|
+
this.v37_1.n37(value);
|
|
498
498
|
}
|
|
499
|
-
|
|
500
|
-
return this.
|
|
499
|
+
o37() {
|
|
500
|
+
return this.v37_1.o37();
|
|
501
501
|
}
|
|
502
|
-
|
|
503
|
-
return this.
|
|
502
|
+
l37() {
|
|
503
|
+
return this.h38_1;
|
|
504
504
|
}
|
|
505
|
-
|
|
506
|
-
if (!this.
|
|
505
|
+
m37(negotiatedExtensions) {
|
|
506
|
+
if (!this.e38_1.atomicfu$compareAndSet(false, true)) {
|
|
507
507
|
// Inline function 'kotlin.error' call
|
|
508
508
|
var message = 'WebSocket session ' + toString(this) + ' is already started.';
|
|
509
509
|
throw IllegalStateException().o(toString(message));
|
|
@@ -512,20 +512,20 @@ function DefaultWebSocketSessionImpl() {
|
|
|
512
512
|
var this_0 = get_LOGGER();
|
|
513
513
|
if (get_isTraceEnabled(this_0)) {
|
|
514
514
|
var tmp$ret$2 = 'Starting default WebSocketSession(' + toString(this) + ') ' + ('with negotiated extensions: ' + joinToString(negotiatedExtensions));
|
|
515
|
-
this_0.
|
|
515
|
+
this_0.f2q(tmp$ret$2);
|
|
516
516
|
}
|
|
517
|
-
this.
|
|
517
|
+
this.d38_1.s2(negotiatedExtensions);
|
|
518
518
|
runOrCancelPinger(this);
|
|
519
|
-
var incomingJob = runIncomingProcessor(this, ponger(this, this.
|
|
519
|
+
var incomingJob = runIncomingProcessor(this, ponger(this, this.q37()));
|
|
520
520
|
var outgoingJob = runOutgoingProcessor(this);
|
|
521
521
|
launch(this, VOID, VOID, DefaultWebSocketSessionImpl$start$slambda(incomingJob, outgoingJob, this));
|
|
522
522
|
}
|
|
523
523
|
*m1u($completion) {
|
|
524
|
-
yield* this.
|
|
524
|
+
yield* this.v37_1.m1u($completion);
|
|
525
525
|
return Unit_instance;
|
|
526
526
|
}
|
|
527
527
|
}
|
|
528
|
-
protoOf($).
|
|
528
|
+
protoOf($).r37 = send;
|
|
529
529
|
initMetadataForClass($, 'DefaultWebSocketSessionImpl', VOID, VOID, [DefaultWebSocketSession(), WebSocketSession()], [1, 0, 2]);
|
|
530
530
|
DefaultWebSocketSessionImplClass = $;
|
|
531
531
|
}
|
|
@@ -538,7 +538,7 @@ function _init_properties_DefaultWebSocketSession_kt__469s0y() {
|
|
|
538
538
|
LOGGER = KtorSimpleLogger('io.ktor.websocket.WebSocket');
|
|
539
539
|
IncomingProcessorCoroutineName = new (CoroutineName())('ws-incoming-processor');
|
|
540
540
|
OutgoingProcessorCoroutineName = new (CoroutineName())('ws-outgoing-processor');
|
|
541
|
-
NORMAL_CLOSE = CloseReason().
|
|
541
|
+
NORMAL_CLOSE = CloseReason().j37(Codes_NORMAL_getInstance(), 'OK');
|
|
542
542
|
var tmp0_safe_receiver = get_OUTGOING_CHANNEL_CAPACITY();
|
|
543
543
|
var tmp;
|
|
544
544
|
if (tmp0_safe_receiver == null) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-websockets/common/src/io/ktor/websocket/DefaultWebSocketSession.kt","../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/src/kotlin/util/Preconditions.kt","../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-utils/common/src/io/ktor/util/logging/Logger.kt","../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/common/src/generated/_Collections.kt","../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/channels/Channels.common.kt","../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/src/kotlin/collections/Collections.kt"],"sourcesContent":[null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-LOGGER>","<get-IncomingProcessorCoroutineName>","<get-OutgoingProcessorCoroutineName>","<get-NORMAL_CLOSE>","DefaultWebSocketSession","session","pingIntervalMillis","timeoutMillis","channelsConfig","message","runIncomingProcessor","ponger","runOutgoingProcessor","outgoingProcessorLoop","$completion","frame","processedFrame","sendCloseSequence","reason","exception","reasonToSend","tryClose","runOrCancelPinger","interval","newPinger","checkMaxFrameSize","packet","size","processIncomingExtensions","accumulator","element","processOutgoingExtensions","DefaultWebSocketSessionImpl$start$slambda","DefaultWebSocketSessionImpl$start$slambda$lambda","DefaultWebSocketSessionImpl$runIncomingProcessor$slambda","DefaultWebSocketSessionImpl$runIncomingProcessor$slambda$lambda","firstFrame","frameBody","closeFramePresented","cause","e","defragmented","<unused var>","DefaultWebSocketSessionImpl$runOutgoingProcessor$slambda","DefaultWebSocketSessionImpl$runOutgoingProcessor$slambda$lambda","DefaultWebSocketSessionImpl$runOrCancelPinger$slambda","DefaultWebSocketSessionImpl$runOrCancelPinger$slambda$lambda","raw","incomingFramesConfig","outgoingFramesConfig","<get-coroutineContext>","<get-incoming>","<get-outgoing>","<get-extensions>","<set-maxFrameSize>","value","<get-maxFrameSize>","<get-closeReason>","start","negotiatedExtensions","incomingJob","outgoingJob","flush","<init properties DefaultWebSocketSession.kt>"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAoBSA,CAAAA,EAAA;A;EAAA,a;AAAS,C;;2CAwGVC,CAAAA,EAAA;A;EAAA,qC;AAAiC,C;;2CACjCC,CAAAA,EAAA;A;EAAA,qC;AAAiC,C;;yBAEjCC,CAAAA,EAAA;A;EAAA,mB;AAAe,C;;;;;;;;;;;;kCAnBhBC,CACHC,O,EACAC,kB,EACAC,a,EACAC,cAJGJ,EAKoB;A,kEAHI,C,EAAA,C;wDACL,K,EAAA,C;qEAC4C,K;;;EC7E9D,kBD+EI,OC/EJ,6B,CAAQ;A,QACRK,UD8E2C,2C;IC7E3C,oCAAuC,SAAR,OAAQ,CAAvC,C;EACJ,C;ED6EA,2CACI,OADJ,EAEI,kBAFJ,EAGI,aAHJ,EAI2B,cAJ3B,CAI0C,KAJ1C,EAK2B,cAL3B,CAK0C,KAL1C,C;AAOJ,C;6BAuHYC,CAAA,K,EAAyBC,MAAzBD,EAAiE;A,YACrE,kEAA6C,KAA7C,C;
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-websockets/common/src/io/ktor/websocket/DefaultWebSocketSession.kt","../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/src/kotlin/util/Preconditions.kt","../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-utils/common/src/io/ktor/util/logging/Logger.kt","../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/common/src/generated/_Collections.kt","../../../../../../../../../../../../../../opt/buildAgent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/channels/Channels.common.kt","../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/src/kotlin/collections/Collections.kt"],"sourcesContent":[null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-LOGGER>","<get-IncomingProcessorCoroutineName>","<get-OutgoingProcessorCoroutineName>","<get-NORMAL_CLOSE>","DefaultWebSocketSession","session","pingIntervalMillis","timeoutMillis","channelsConfig","message","runIncomingProcessor","ponger","runOutgoingProcessor","outgoingProcessorLoop","$completion","frame","processedFrame","sendCloseSequence","reason","exception","reasonToSend","tryClose","runOrCancelPinger","interval","newPinger","checkMaxFrameSize","packet","size","processIncomingExtensions","accumulator","element","processOutgoingExtensions","DefaultWebSocketSessionImpl$start$slambda","DefaultWebSocketSessionImpl$start$slambda$lambda","DefaultWebSocketSessionImpl$runIncomingProcessor$slambda","DefaultWebSocketSessionImpl$runIncomingProcessor$slambda$lambda","firstFrame","frameBody","closeFramePresented","cause","e","defragmented","<unused var>","DefaultWebSocketSessionImpl$runOutgoingProcessor$slambda","DefaultWebSocketSessionImpl$runOutgoingProcessor$slambda$lambda","DefaultWebSocketSessionImpl$runOrCancelPinger$slambda","DefaultWebSocketSessionImpl$runOrCancelPinger$slambda$lambda","raw","incomingFramesConfig","outgoingFramesConfig","<get-coroutineContext>","<get-incoming>","<get-outgoing>","<get-extensions>","<set-maxFrameSize>","value","<get-maxFrameSize>","<get-closeReason>","start","negotiatedExtensions","incomingJob","outgoingJob","flush","<init properties DefaultWebSocketSession.kt>"],"mappings":"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"}
|
|
@@ -29,16 +29,16 @@ function Binary() {
|
|
|
29
29
|
if (BinaryClass === VOID) {
|
|
30
30
|
class $ extends Frame() {
|
|
31
31
|
constructor(fin, data, rsv1, rsv2, rsv3) {
|
|
32
|
-
return new.target.
|
|
32
|
+
return new.target.e3b(fin, data, rsv1, rsv2, rsv3);
|
|
33
33
|
}
|
|
34
|
-
static
|
|
34
|
+
static e3b(fin, data, rsv1, rsv2, rsv3) {
|
|
35
35
|
rsv1 = rsv1 === VOID ? false : rsv1;
|
|
36
36
|
rsv2 = rsv2 === VOID ? false : rsv2;
|
|
37
37
|
rsv3 = rsv3 === VOID ? false : rsv3;
|
|
38
|
-
return this.
|
|
38
|
+
return this.f3b(fin, FrameType_BINARY_getInstance(), data, NonDisposableHandle_instance, rsv1, rsv2, rsv3);
|
|
39
39
|
}
|
|
40
|
-
static
|
|
41
|
-
return this.
|
|
40
|
+
static g3b(fin, data) {
|
|
41
|
+
return this.e3b(fin, data, false, false, false);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
initMetadataForClass($, 'Binary');
|
|
@@ -51,19 +51,19 @@ function Text() {
|
|
|
51
51
|
if (TextClass === VOID) {
|
|
52
52
|
class $ extends Frame() {
|
|
53
53
|
constructor(fin, data, rsv1, rsv2, rsv3) {
|
|
54
|
-
return new.target.
|
|
54
|
+
return new.target.o3b(fin, data, rsv1, rsv2, rsv3);
|
|
55
55
|
}
|
|
56
|
-
static
|
|
56
|
+
static o3b(fin, data, rsv1, rsv2, rsv3) {
|
|
57
57
|
rsv1 = rsv1 === VOID ? false : rsv1;
|
|
58
58
|
rsv2 = rsv2 === VOID ? false : rsv2;
|
|
59
59
|
rsv3 = rsv3 === VOID ? false : rsv3;
|
|
60
|
-
return this.
|
|
60
|
+
return this.f3b(fin, FrameType_TEXT_getInstance(), data, NonDisposableHandle_instance, rsv1, rsv2, rsv3);
|
|
61
61
|
}
|
|
62
|
-
static
|
|
63
|
-
return this.
|
|
62
|
+
static p3b(fin, data) {
|
|
63
|
+
return this.o3b(fin, data, false, false, false);
|
|
64
64
|
}
|
|
65
|
-
static
|
|
66
|
-
return this.
|
|
65
|
+
static q3b(text) {
|
|
66
|
+
return this.p3b(true, toByteArray(text));
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
initMetadataForClass($, 'Text');
|
|
@@ -76,26 +76,26 @@ function Close() {
|
|
|
76
76
|
if (CloseClass === VOID) {
|
|
77
77
|
class $ extends Frame() {
|
|
78
78
|
constructor(data) {
|
|
79
|
-
return new.target.
|
|
79
|
+
return new.target.r3b(data);
|
|
80
80
|
}
|
|
81
|
-
static
|
|
82
|
-
return this.
|
|
81
|
+
static r3b(data) {
|
|
82
|
+
return this.f3b(true, FrameType_CLOSE_getInstance(), data, NonDisposableHandle_instance, false, false, false);
|
|
83
83
|
}
|
|
84
|
-
static
|
|
84
|
+
static p38(reason) {
|
|
85
85
|
// Inline function 'io.ktor.utils.io.core.buildPacket' call
|
|
86
86
|
var builder = new (Buffer())();
|
|
87
|
-
builder.d1r(reason.
|
|
88
|
-
writeText(builder, reason.
|
|
89
|
-
return this.
|
|
87
|
+
builder.d1r(reason.g37_1);
|
|
88
|
+
writeText(builder, reason.h37_1);
|
|
89
|
+
return this.s3b(builder);
|
|
90
90
|
}
|
|
91
|
-
static
|
|
92
|
-
return this.
|
|
91
|
+
static s3b(packet) {
|
|
92
|
+
return this.r3b(readByteArray(packet));
|
|
93
93
|
}
|
|
94
|
-
static
|
|
95
|
-
return this.
|
|
94
|
+
static t3b() {
|
|
95
|
+
return this.r3b(Companion_getInstance().n39_1);
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
|
-
initMetadataForClass($, 'Close', $.
|
|
98
|
+
initMetadataForClass($, 'Close', $.t3b);
|
|
99
99
|
CloseClass = $;
|
|
100
100
|
}
|
|
101
101
|
return CloseClass;
|
|
@@ -105,10 +105,10 @@ function Ping() {
|
|
|
105
105
|
if (PingClass === VOID) {
|
|
106
106
|
class $ extends Frame() {
|
|
107
107
|
constructor(data) {
|
|
108
|
-
return new.target.
|
|
108
|
+
return new.target.c3a(data);
|
|
109
109
|
}
|
|
110
|
-
static
|
|
111
|
-
return this.
|
|
110
|
+
static c3a(data) {
|
|
111
|
+
return this.f3b(true, FrameType_PING_getInstance(), data, NonDisposableHandle_instance, false, false, false);
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
initMetadataForClass($, 'Ping');
|
|
@@ -121,11 +121,11 @@ function Pong() {
|
|
|
121
121
|
if (PongClass === VOID) {
|
|
122
122
|
class $ extends Frame() {
|
|
123
123
|
constructor(data, disposableHandle) {
|
|
124
|
-
return new.target.
|
|
124
|
+
return new.target.m39(data, disposableHandle);
|
|
125
125
|
}
|
|
126
|
-
static
|
|
126
|
+
static m39(data, disposableHandle) {
|
|
127
127
|
disposableHandle = disposableHandle === VOID ? NonDisposableHandle_instance : disposableHandle;
|
|
128
|
-
return this.
|
|
128
|
+
return this.f3b(true, FrameType_PONG_getInstance(), data, disposableHandle, false, false, false);
|
|
129
129
|
}
|
|
130
130
|
}
|
|
131
131
|
initMetadataForClass($, 'Pong');
|
|
@@ -139,25 +139,25 @@ function Companion() {
|
|
|
139
139
|
class $ {
|
|
140
140
|
constructor() {
|
|
141
141
|
Companion_instance = this;
|
|
142
|
-
this.
|
|
142
|
+
this.n39_1 = new Int8Array(0);
|
|
143
143
|
}
|
|
144
|
-
|
|
144
|
+
o39(fin, frameType, data, rsv1, rsv2, rsv3) {
|
|
145
145
|
var tmp;
|
|
146
146
|
switch (frameType.s1_1) {
|
|
147
147
|
case 1:
|
|
148
|
-
tmp = Binary().
|
|
148
|
+
tmp = Binary().e3b(fin, data, rsv1, rsv2, rsv3);
|
|
149
149
|
break;
|
|
150
150
|
case 0:
|
|
151
|
-
tmp = Text().
|
|
151
|
+
tmp = Text().o3b(fin, data, rsv1, rsv2, rsv3);
|
|
152
152
|
break;
|
|
153
153
|
case 2:
|
|
154
|
-
tmp = Close().
|
|
154
|
+
tmp = Close().r3b(data);
|
|
155
155
|
break;
|
|
156
156
|
case 3:
|
|
157
|
-
tmp = Ping().
|
|
157
|
+
tmp = Ping().c3a(data);
|
|
158
158
|
break;
|
|
159
159
|
case 4:
|
|
160
|
-
tmp = Pong().
|
|
160
|
+
tmp = Pong().m39(data, NonDisposableHandle_instance);
|
|
161
161
|
break;
|
|
162
162
|
default:
|
|
163
163
|
noWhenBranchMatchedException();
|
|
@@ -181,24 +181,24 @@ var FrameClass;
|
|
|
181
181
|
function Frame() {
|
|
182
182
|
if (FrameClass === VOID) {
|
|
183
183
|
class $ {
|
|
184
|
-
static
|
|
184
|
+
static f3b(fin, frameType, data, disposableHandle, rsv1, rsv2, rsv3) {
|
|
185
185
|
Companion_getInstance();
|
|
186
186
|
disposableHandle = disposableHandle === VOID ? NonDisposableHandle_instance : disposableHandle;
|
|
187
187
|
rsv1 = rsv1 === VOID ? false : rsv1;
|
|
188
188
|
rsv2 = rsv2 === VOID ? false : rsv2;
|
|
189
189
|
rsv3 = rsv3 === VOID ? false : rsv3;
|
|
190
190
|
var $this = createThis(this);
|
|
191
|
-
$this.
|
|
192
|
-
$this.
|
|
193
|
-
$this.
|
|
194
|
-
$this.
|
|
195
|
-
$this.
|
|
196
|
-
$this.
|
|
197
|
-
$this.
|
|
191
|
+
$this.r38_1 = fin;
|
|
192
|
+
$this.s38_1 = frameType;
|
|
193
|
+
$this.t38_1 = data;
|
|
194
|
+
$this.u38_1 = disposableHandle;
|
|
195
|
+
$this.v38_1 = rsv1;
|
|
196
|
+
$this.w38_1 = rsv2;
|
|
197
|
+
$this.x38_1 = rsv3;
|
|
198
198
|
return $this;
|
|
199
199
|
}
|
|
200
200
|
toString() {
|
|
201
|
-
return 'Frame ' + this.
|
|
201
|
+
return 'Frame ' + this.s38_1.toString() + ' (fin=' + this.r38_1 + ', buffer len = ' + this.t38_1.length + ')';
|
|
202
202
|
}
|
|
203
203
|
}
|
|
204
204
|
initMetadataForClass($, 'Frame');
|