@continuous-excellence/coupling-cli 1.1.729 → 1.1.730
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 +12 -12
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +29 -29
- 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 +7 -7
- 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 +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 +10 -10
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +12 -12
- 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 +14 -14
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/AccessResult.mjs +45 -45
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/DeviceCodeRequest.mjs +27 -27
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +9 -9
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/CouplingJsonFormat.mjs +4 -4
- 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 +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 +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 +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 +47 -47
- 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 +68 -68
- 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 +23 -23
- 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 +24 -24
- 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 +21 -21
- 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 +2 -2
- 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 +2 -2
- 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 +3 -3
- 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 +104 -104
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloRequest.mjs +79 -79
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloResponse.mjs +61 -61
- 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 +55 -55
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +35 -35
- 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 +20 -20
- 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 +7 -7
- 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 +41 -41
- 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 +74 -74
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/Http.mjs +58 -58
- 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 +103 -103
- 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/ApolloClient.mjs +195 -195
- 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 +40 -40
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +48 -48
- 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 +29 -29
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/incremental/V0_2IncrementalResultsMerger.mjs +29 -29
- 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 +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 +21 -21
- 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 +105 -105
- 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 +58 -58
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/websocket/internal/SubscribableWebSocket.mjs +97 -97
- 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 +12 -12
- 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 +110 -110
- 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.mjs +25 -25
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +32 -32
- 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 +94 -94
- 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 +46 -46
- 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 +184 -184
- 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 +222 -222
- 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 +21 -21
- 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 +114 -114
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +126 -126
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +57 -57
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +17 -17
- 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-kotlin-stdlib/kotlin/text/stringJs.mjs +0 -9
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -1
- 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/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +5 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +39 -39
- 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 +45 -45
- 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 +74 -74
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonExceptions.mjs +20 -20
- 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 +64 -64
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +9 -9
- 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 +10 -10
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +38 -38
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +11 -11
- 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 +4 -4
- 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 +144 -144
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +97 -97
- 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 +197 -197
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonEncoder.mjs +128 -128
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +3 -3
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +86 -38
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +36 -33
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/ClientSessions.mjs +24 -24
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +15 -15
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/builders.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +2 -2
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/HttpClientCallLogger.mjs +25 -25
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogBodyFilter.mjs +19 -19
- 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 +11 -11
- 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 +88 -88
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggingUtils.mjs +9 -9
- package/kotlin/ktor-ktor-http/io/ktor/http/Codecs.mjs +3 -3
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +10 -13
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/URLParser.mjs +21 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/URLParser.mjs.map +1 -1
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +13 -13
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +1 -1
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +3 -3
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +2 -2
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +96 -74
- 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 +4 -4
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +6 -32
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.nonJvm.mjs +36 -0
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.nonJvm.mjs.map +1 -0
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +27 -27
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +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 +30 -30
- package/kotlin/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +5 -5
- package/kotlin/ktor-ktor-utils/io/ktor/util/ByteChannels.mjs +2 -2
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +24 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/ControlFrames.mjs +58 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/ControlFrames.mjs.map +1 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs +76 -76
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/Frame.web.mjs +17 -15
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/Frame.web.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +6 -6
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +6 -6
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +6 -6
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/PingPong.mjs +2 -2
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +7 -7
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketSession.mjs +5 -3
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketSession.mjs.map +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +15 -15
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +40 -40
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +61 -61
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +21 -21
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +54 -54
- 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 +208 -208
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +122 -122
- 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 +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +8 -8
- 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 +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +52 -52
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +68 -68
- package/kotlin/okio-parent-okio/okio/Buffer.mjs +360 -360
- 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 +65 -65
- package/kotlin/okio-parent-okio/okio/SegmentPool.mjs +3 -3
- 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 +110 -110
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +28 -28
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +24 -24
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +28 -28
- package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +5 -5
- package/kotlin/uuid/com/benasher44/uuid/uuid.mjs +11 -11
- package/package.json +1 -1
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +0 -39
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs.map +0 -1
|
@@ -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().d38_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.e38_1, channelsConfig.f38_1);
|
|
141
141
|
}
|
|
142
142
|
function runIncomingProcessor($this, ponger) {
|
|
143
143
|
var tmp = get_IncomingProcessorCoroutineName().lo(Dispatchers_getInstance().r19_1);
|
|
@@ -149,7 +149,7 @@ 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.m38_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
|
|
@@ -176,7 +176,7 @@ function *outgoingProcessorLoop($this, $completion) {
|
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
178
|
var processedFrame = tmp;
|
|
179
|
-
yield* $this.
|
|
179
|
+
yield* $this.g38_1.b38().n1d(processedFrame, $completion);
|
|
180
180
|
}
|
|
181
181
|
return Unit_instance;
|
|
182
182
|
}
|
|
@@ -190,86 +190,86 @@ function *sendCloseSequence($this, reason, exception, $completion) {
|
|
|
190
190
|
var tmp$ret$1 = 'Sending Close Sequence for session ' + toString($this) + ' with reason ' + toString_0(reason) + ' and exception ' + toString_0(exception);
|
|
191
191
|
this_0.f2q(tmp$ret$1);
|
|
192
192
|
}
|
|
193
|
-
$this.
|
|
193
|
+
$this.j38_1.f15();
|
|
194
194
|
var reasonToSend = reason == null ? CloseReason().j37(Codes_NORMAL_getInstance(), '') : reason;
|
|
195
195
|
try {
|
|
196
196
|
runOrCancelPinger($this);
|
|
197
197
|
if (!(reasonToSend.g37_1 === Codes_CLOSED_ABNORMALLY_getInstance().c37_1)) {
|
|
198
|
-
yield* $this.
|
|
198
|
+
yield* $this.g38_1.b38().n1d(Close().a39(reasonToSend), $completion);
|
|
199
199
|
}
|
|
200
200
|
}finally {
|
|
201
|
-
$this.
|
|
201
|
+
$this.i38_1.d15(reasonToSend);
|
|
202
202
|
if (!(exception == null)) {
|
|
203
|
-
$this.
|
|
204
|
-
$this.
|
|
203
|
+
$this.m38_1.x1d(exception);
|
|
204
|
+
$this.l38_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.n38_1.atomicfu$compareAndSet(false, true);
|
|
211
211
|
}
|
|
212
212
|
function runOrCancelPinger($this) {
|
|
213
|
-
var interval = $this.
|
|
213
|
+
var interval = $this.q38_1;
|
|
214
214
|
var tmp;
|
|
215
|
-
if ($this.
|
|
215
|
+
if ($this.n38_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.g38_1.b38();
|
|
219
|
+
var tmp_1 = $this.r38_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.h38_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().b39_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.n38_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.r37_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.z37()) > 0) {
|
|
244
244
|
if (packet == null)
|
|
245
245
|
null;
|
|
246
246
|
else {
|
|
247
247
|
packet.j6();
|
|
248
248
|
}
|
|
249
|
-
yield* close($this, CloseReason().j37(Codes_TOO_BIG_getInstance(), 'Frame is too big: ' + size + '. Max size is ' + $this.
|
|
250
|
-
throw FrameTooBigException().
|
|
249
|
+
yield* close($this, CloseReason().j37(Codes_TOO_BIG_getInstance(), 'Frame is too big: ' + size + '. Max size is ' + $this.z37().toString()), $completion);
|
|
250
|
+
throw FrameTooBigException().f39(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.g39().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.h39(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.g39().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.i39(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.b39_1 = Pong().q39(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.j38_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.g38_1.a38();
|
|
312
312
|
$l$block_1: {
|
|
313
313
|
// Inline function 'kotlinx.coroutines.channels.consume' call
|
|
314
314
|
var cause = null;
|
|
@@ -324,16 +324,16 @@ function DefaultWebSocketSessionImpl$runIncomingProcessor$slambda(this$0, $ponge
|
|
|
324
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.b38().g1d()) {
|
|
328
|
+
var tmp = this$0.b38();
|
|
329
329
|
var tmp1_elvis_lhs = readReason(e);
|
|
330
|
-
yield* tmp.n1d(Close().
|
|
330
|
+
yield* tmp.n1d(Close().a39(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.h38_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.p37_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.r37_1);
|
|
354
354
|
break $l$block_0;
|
|
355
355
|
}
|
|
356
356
|
if (firstFrame == null) {
|
|
357
|
-
yield* this$0.
|
|
357
|
+
yield* this$0.l38_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.r37_1);
|
|
361
|
+
var defragmented = Companion_getInstance_0().s39(true, firstFrame.q37_1, readByteArray(build(frameBody)), firstFrame.t37_1, firstFrame.u37_1, firstFrame.v37_1);
|
|
362
362
|
firstFrame = null;
|
|
363
|
-
yield* this$0.
|
|
363
|
+
yield* this$0.l38_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.l38_1.x1d(cause_0);
|
|
391
391
|
} else {
|
|
392
392
|
throw $p_0;
|
|
393
393
|
}
|
|
@@ -401,7 +401,7 @@ function DefaultWebSocketSessionImpl$runIncomingProcessor$slambda(this$0, $ponge
|
|
|
401
401
|
else {
|
|
402
402
|
tmp0_safe_receiver.j6();
|
|
403
403
|
}
|
|
404
|
-
this$0.
|
|
404
|
+
this$0.l38_1.z1d();
|
|
405
405
|
if (!closeFramePresented) {
|
|
406
406
|
yield* close(this$0, CloseReason().j37(Codes_CLOSED_ABNORMALLY_getInstance(), 'Connection was closed without close frame'), $completion);
|
|
407
407
|
}
|
|
@@ -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.m38_1.gz(CancellationException().p('Failed to send frame', cause));
|
|
438
|
+
yield* closeExceptionally(this$0.g38_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.m38_1.b1e();
|
|
451
|
+
yield* close(this$0.g38_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.g38_1 = raw;
|
|
469
|
+
this.h38_1 = atomic$ref$1(null);
|
|
470
|
+
this.i38_1 = CompletableDeferred();
|
|
471
|
+
this.j38_1 = Job();
|
|
472
|
+
this.k38_1 = this.g38_1.wx().jo(Key_instance).lo(this.j38_1).lo(new (CoroutineName())('ws-default'));
|
|
473
|
+
this.l38_1 = from(Factory_getInstance(), incomingFramesConfig);
|
|
474
|
+
this.m38_1 = from(Factory_getInstance(), outgoingFramesConfig);
|
|
475
|
+
this.n38_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.o38_1 = ArrayList().i2();
|
|
479
|
+
this.p38_1 = atomic$boolean$1(false);
|
|
480
|
+
this.q38_1 = pingIntervalMillis;
|
|
481
|
+
this.r38_1 = timeoutMillis;
|
|
482
|
+
this.s38_1 = this.i38_1;
|
|
483
483
|
}
|
|
484
484
|
wx() {
|
|
485
|
-
return this.
|
|
485
|
+
return this.k38_1;
|
|
486
486
|
}
|
|
487
|
-
|
|
488
|
-
return this.
|
|
487
|
+
a38() {
|
|
488
|
+
return this.l38_1;
|
|
489
489
|
}
|
|
490
|
-
|
|
491
|
-
return this.
|
|
490
|
+
b38() {
|
|
491
|
+
return this.m38_1;
|
|
492
492
|
}
|
|
493
|
-
|
|
494
|
-
return this.
|
|
493
|
+
g39() {
|
|
494
|
+
return this.o38_1;
|
|
495
495
|
}
|
|
496
|
-
|
|
497
|
-
this.
|
|
496
|
+
y37(value) {
|
|
497
|
+
this.g38_1.y37(value);
|
|
498
498
|
}
|
|
499
|
-
|
|
500
|
-
return this.
|
|
499
|
+
z37() {
|
|
500
|
+
return this.g38_1.z37();
|
|
501
501
|
}
|
|
502
|
-
|
|
503
|
-
return this.
|
|
502
|
+
w37() {
|
|
503
|
+
return this.s38_1;
|
|
504
504
|
}
|
|
505
|
-
|
|
506
|
-
if (!this.
|
|
505
|
+
x37(negotiatedExtensions) {
|
|
506
|
+
if (!this.p38_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));
|
|
@@ -514,18 +514,18 @@ function DefaultWebSocketSessionImpl() {
|
|
|
514
514
|
var tmp$ret$2 = 'Starting default WebSocketSession(' + toString(this) + ') ' + ('with negotiated extensions: ' + joinToString(negotiatedExtensions));
|
|
515
515
|
this_0.f2q(tmp$ret$2);
|
|
516
516
|
}
|
|
517
|
-
this.
|
|
517
|
+
this.o38_1.s2(negotiatedExtensions);
|
|
518
518
|
runOrCancelPinger(this);
|
|
519
|
-
var incomingJob = runIncomingProcessor(this, ponger(this, this.
|
|
519
|
+
var incomingJob = runIncomingProcessor(this, ponger(this, this.b38()));
|
|
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.g38_1.m1u($completion);
|
|
525
525
|
return Unit_instance;
|
|
526
526
|
}
|
|
527
527
|
}
|
|
528
|
-
protoOf($).
|
|
528
|
+
protoOf($).c38 = send;
|
|
529
529
|
initMetadataForClass($, 'DefaultWebSocketSessionImpl', VOID, VOID, [DefaultWebSocketSession(), WebSocketSession()], [1, 0, 2]);
|
|
530
530
|
DefaultWebSocketSessionImplClass = $;
|
|
531
531
|
}
|
|
@@ -20,6 +20,7 @@ import { Unit_instance3vdlo4e4f5ggx as Unit_instance } from '../../../../kotlin-
|
|
|
20
20
|
import { readByteArray1ri21h2rciakw as readByteArray } from '../../../../kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs';
|
|
21
21
|
import { noWhenBranchMatchedException2a6r7ubxgky5j as noWhenBranchMatchedException } from '../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
|
|
22
22
|
import { createThis2j2avj17cvnv2 as createThis } from '../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
|
|
23
|
+
import { validateSize23lir9ygeqvey as validateSize } from './ControlFrames.mjs';
|
|
23
24
|
//region block: imports
|
|
24
25
|
//endregion
|
|
25
26
|
//region block: pre-declaration
|
|
@@ -81,7 +82,7 @@ function Close() {
|
|
|
81
82
|
static r3b(data) {
|
|
82
83
|
return this.f3b(true, FrameType_CLOSE_getInstance(), data, NonDisposableHandle_instance, false, false, false);
|
|
83
84
|
}
|
|
84
|
-
static
|
|
85
|
+
static a39(reason) {
|
|
85
86
|
// Inline function 'io.ktor.utils.io.core.buildPacket' call
|
|
86
87
|
var builder = new (Buffer())();
|
|
87
88
|
builder.d1r(reason.g37_1);
|
|
@@ -92,7 +93,7 @@ function Close() {
|
|
|
92
93
|
return this.r3b(readByteArray(packet));
|
|
93
94
|
}
|
|
94
95
|
static t3b() {
|
|
95
|
-
return this.r3b(Companion_getInstance().
|
|
96
|
+
return this.r3b(Companion_getInstance().r39_1);
|
|
96
97
|
}
|
|
97
98
|
}
|
|
98
99
|
initMetadataForClass($, 'Close', $.t3b);
|
|
@@ -121,9 +122,9 @@ function Pong() {
|
|
|
121
122
|
if (PongClass === VOID) {
|
|
122
123
|
class $ extends Frame() {
|
|
123
124
|
constructor(data, disposableHandle) {
|
|
124
|
-
return new.target.
|
|
125
|
+
return new.target.q39(data, disposableHandle);
|
|
125
126
|
}
|
|
126
|
-
static
|
|
127
|
+
static q39(data, disposableHandle) {
|
|
127
128
|
disposableHandle = disposableHandle === VOID ? NonDisposableHandle_instance : disposableHandle;
|
|
128
129
|
return this.f3b(true, FrameType_PONG_getInstance(), data, disposableHandle, false, false, false);
|
|
129
130
|
}
|
|
@@ -139,9 +140,9 @@ function Companion() {
|
|
|
139
140
|
class $ {
|
|
140
141
|
constructor() {
|
|
141
142
|
Companion_instance = this;
|
|
142
|
-
this.
|
|
143
|
+
this.r39_1 = new Int8Array(0);
|
|
143
144
|
}
|
|
144
|
-
|
|
145
|
+
s39(fin, frameType, data, rsv1, rsv2, rsv3) {
|
|
145
146
|
var tmp;
|
|
146
147
|
switch (frameType.s1_1) {
|
|
147
148
|
case 1:
|
|
@@ -157,7 +158,7 @@ function Companion() {
|
|
|
157
158
|
tmp = Ping().c3a(data);
|
|
158
159
|
break;
|
|
159
160
|
case 4:
|
|
160
|
-
tmp = Pong().
|
|
161
|
+
tmp = Pong().q39(data, NonDisposableHandle_instance);
|
|
161
162
|
break;
|
|
162
163
|
default:
|
|
163
164
|
noWhenBranchMatchedException();
|
|
@@ -188,17 +189,18 @@ function Frame() {
|
|
|
188
189
|
rsv2 = rsv2 === VOID ? false : rsv2;
|
|
189
190
|
rsv3 = rsv3 === VOID ? false : rsv3;
|
|
190
191
|
var $this = createThis(this);
|
|
191
|
-
$this.
|
|
192
|
-
$this.
|
|
193
|
-
$this.
|
|
194
|
-
$this.
|
|
195
|
-
$this.
|
|
196
|
-
$this.
|
|
197
|
-
$this.
|
|
192
|
+
$this.p37_1 = fin;
|
|
193
|
+
$this.q37_1 = frameType;
|
|
194
|
+
$this.r37_1 = data;
|
|
195
|
+
$this.s37_1 = disposableHandle;
|
|
196
|
+
$this.t37_1 = rsv1;
|
|
197
|
+
$this.u37_1 = rsv2;
|
|
198
|
+
$this.v37_1 = rsv3;
|
|
199
|
+
validateSize($this);
|
|
198
200
|
return $this;
|
|
199
201
|
}
|
|
200
202
|
toString() {
|
|
201
|
-
return 'Frame ' + this.
|
|
203
|
+
return 'Frame ' + this.q37_1.toString() + ' (fin=' + this.p37_1 + ', buffer len = ' + this.r37_1.length + ')';
|
|
202
204
|
}
|
|
203
205
|
}
|
|
204
206
|
initMetadataForClass($, 'Frame');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-websockets/web/src/io/ktor/websocket/Frame.web.kt","../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-io/common/src/io/ktor/utils/io/core/Builder.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<init>","fin","data","rsv1","rsv2","rsv3","text","reason","builder","packet","disposableHandle","byType","frameType","toString"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-websockets/web/src/io/ktor/websocket/Frame.web.kt","../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-io/common/src/io/ktor/utils/io/core/Builder.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<init>","fin","data","rsv1","rsv2","rsv3","text","reason","builder","packet","disposableHandle","byType","frameType","toString"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA0CsCA,CAC9BC,G,EACAC,I,EACAC,I,EACAC,I,EACAC,IAL8BL,EAAA;A;MAAA,C;iBAC9BC,G,EACAC,I,EACAC,I,EACAC,I,EACAC,I;+BAUH,K;+BAA+B,K;+BAA+B,K;wBATrD,G,EAAe,8B,EAAQ,I,gCAA2B,I,EAAM,I,EAAM,I;;iBAC1CJ,G,EAAcC,I;wBAAwB,G,EAAK,I,EAAM,K,EAAO,K,EAAO,K;;;;;;;;;;;;iBAc7DF,CAC5BC,G,EACAC,I,EACAC,I,EACAC,I,EACAC,IAL4BL,EAAA;A;MAAA,C;iBAC5BC,G,EACAC,I,EACAC,I,EACAC,I,EACAC,I;+BAQP,K;+BAA+B,K;+BAA+B,K;wBAPjD,G,EAAe,4B,EAAM,I,gCAA2B,I,EAAM,I,EAAM,I;;iBACxCJ,G,EAAcC,I;wBAAwB,G,EAAK,I,EAAM,K,EAAO,K,EAAO,K;;iBAC/DI,I;wBAAqB,I,EAAW,YAAL,IAAK,C;;;;;;;;;;;;iBAU7BN,CAC7BE,IAD6BF,EAAA;A;MAAA,C;iBAC7BE,I;wBACM,I,EAAgB,6B,EAAO,I,gCAA2B,K,EAAO,K,EAAO,K;;iBAC5CK,M;;YChE9BC,0B;QACM,ODiEM,KAAW,MAAX,CAAkB,KAAlB,C;QACA,UClEN,ODkEM,EAAU,MAAV,CAAiB,KAAjB,C;wBCjEL,O;;iBDqEuBC,M;wBAA8B,cAAP,MAAO,C;;;gDACrB,K;;;;;;;;;;;;iBASPT,CAC5BE,IAD4BF,EAAA;A;MAAA,C;iBAC5BE,I;wBACM,I,EAAgB,4B,EAAM,I,gCAA2B,K,EAAO,K,EAAO,K;;;;;;;;;;;;iBAUzCF,CAC5BE,I,EACAQ,gBAF4BV,EAAA;A;MAAA,C;iBAC5BE,I,EACAQ,gB;;wBACM,I,EAAgB,4B,EAAM,I,EAAM,gB,EAAkB,K,EAAO,K,EAAO,K;;;;;;;;;;;;;;QAcnC,2BAAU,CAAV,C;;SAOjBC,CACVV,G,EACAW,S,EACAV,I,EACAC,I,EACAC,I,EACAC,IANUM,EAOH;A;QAAA,QAAM,SAAN,CAAM,IAAN,C;eACG,C;+BAAiB,G,EAAK,I,EAAM,I,EAAM,I,EAAM,I;;eACxC,C;6BAAa,G,EAAK,I,EAAM,I,EAAM,I,EAAM,I;;eACpC,C;8BAAe,I;;eACf,C;6BAAa,I;;eACb,C;6BAAa,I;;;YALhB,8B;;;QAMV,U;MAAD,C;;;;;;;;;;;;;;;;;iBAhIUV,G,EACAW,S,EACAV,I,EACAQ,gB,EACAP,I,EACAC,I,EACAC,I;QAPlB,uB;;+BAKK,K;+BAA2B,K;+BACV,K;;QALlB,iB;QACA,uB;QACA,kB;QACA,8B;QACA,kB;QACA,kB;QACA,kB;QAGI,mB;;;cAyFKQ,CAAAA,EAAyB;A,QAAwD,OAAvD,QAAuD,GAAhD,IAAgD,CAAhD,KAAgD,cAAvC,QAAuC,GAAhC,IAAgC,CAAhC,KAAgC,GAA7B,iBAA6B,GAAZ,IAAY,CAAZ,KAAY,CAAP,MAAO,GAAF,G;MAAC,C;;;;;;;;;;;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Buffergs925ekssbch as Buffer } from '../../../../kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs';
|
|
2
2
|
import { writeFully359t6q8kam2g5 as writeFully } from '../../../../ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs';
|
|
3
3
|
import { Unit_instance3vdlo4e4f5ggx as Unit_instance } from '../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
4
|
-
import { readText27783kyxjxi1g as readText } from '../../../../ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs';
|
|
4
|
+
import { readText27783kyxjxi1g as readText } from '../../../../ktor-ktor-io/io/ktor/utils/io/core/Strings.nonJvm.mjs';
|
|
5
5
|
import { CloseReason10cphaqpp3ct7 as CloseReason } from './CloseReason.mjs';
|
|
6
6
|
import { DisposableHandle1uzxt8frdchxn as DisposableHandle } from '../../../../kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs';
|
|
7
7
|
import { initMetadataForObject1cxne3s9w65el as initMetadataForObject } from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
@@ -15,12 +15,12 @@ import { decode1t43jmuxrxpmo as decode } from '../../../../ktor-ktor-io/io/ktor/
|
|
|
15
15
|
//region block: pre-declaration
|
|
16
16
|
//endregion
|
|
17
17
|
function readReason(_this__u8e3s4) {
|
|
18
|
-
if (_this__u8e3s4.
|
|
18
|
+
if (_this__u8e3s4.r37_1.length < 2) {
|
|
19
19
|
return null;
|
|
20
20
|
}
|
|
21
21
|
// Inline function 'io.ktor.utils.io.core.buildPacket' call
|
|
22
22
|
var builder = new (Buffer())();
|
|
23
|
-
writeFully(builder, _this__u8e3s4.
|
|
23
|
+
writeFully(builder, _this__u8e3s4.r37_1);
|
|
24
24
|
var packet = builder;
|
|
25
25
|
var code = packet.v1p();
|
|
26
26
|
var message = readText(packet);
|
|
@@ -58,14 +58,14 @@ function NonDisposableHandle_getInstance() {
|
|
|
58
58
|
}
|
|
59
59
|
function readText_0(_this__u8e3s4) {
|
|
60
60
|
// Inline function 'kotlin.require' call
|
|
61
|
-
if (!_this__u8e3s4.
|
|
61
|
+
if (!_this__u8e3s4.p37_1) {
|
|
62
62
|
var message = 'Text could be only extracted from non-fragmented frame';
|
|
63
63
|
throw IllegalArgumentException().m2(toString(message));
|
|
64
64
|
}
|
|
65
|
-
var tmp = Charsets_getInstance().g1w_1.
|
|
65
|
+
var tmp = Charsets_getInstance().g1w_1.x1w();
|
|
66
66
|
// Inline function 'io.ktor.utils.io.core.buildPacket' call
|
|
67
67
|
var builder = new (Buffer())();
|
|
68
|
-
writeFully(builder, _this__u8e3s4.
|
|
68
|
+
writeFully(builder, _this__u8e3s4.r37_1);
|
|
69
69
|
return decode(tmp, builder);
|
|
70
70
|
}
|
|
71
71
|
//region block: init
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-websockets/common/src/io/ktor/websocket/FrameCommon.kt","../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-io/common/src/io/ktor/utils/io/core/Builder.kt","../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/src/kotlin/util/Preconditions.kt"],"sourcesContent":[null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["readReason","<this>","builder","packet","code","message","dispose","readText"],"mappings":";;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-websockets/common/src/io/ktor/websocket/FrameCommon.kt","../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-io/common/src/io/ktor/utils/io/core/Builder.kt","../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/src/kotlin/util/Preconditions.kt"],"sourcesContent":[null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["readReason","<this>","builder","packet","code","message","dispose","readText"],"mappings":";;;;;;;;;;;;;;;;mBAkMOA,CAAIC,aAAJD,EAA2C;A,EAC1C,wBAAK,MAAL,GAAY,CAAZ,C,CAAe;A,IACf,OAAO,I;EACX,C;;MCjLAE,0B;EDmL2B,WClLrB,ODkLqB,EAAW,aAAX,CAAW,KAAX,C;MAA3BC,SCjLO,O;MDmLPC,OAAW,MAAO,M;MAClBC,UAAqB,SAAP,MAAO,C;EAErB,yBAAmB,IAAnB,EAAyB,OAAzB,C;AACJ,C;;;;;SAGaC,CAAAA,EAAgB;A,QAAI,oB;MAAD,C;iBAhNhC;A,QAAA,4B;MAAA,C;iBAAA;A,QAAA,gB;MAAA,C;oBAAA;A,QAAA,mB;UAAA,W;QAAA,8C;UAAA,Y;QAAA,W;MAAA,C;;;;;;;;;;;mBA+KOC,CAAIN,aAAJM,EAAkC;A;EE5IjC,KF6II,aE7IJ,CF6II,KE7IJ,C,CAAQ;A,QACRF,UF4IW,wD;IE3IX,oCAAuC,SAAR,OAAQ,CAAvC,C;EACJ,C;YF2IsB,uBAAN,KAAM,M;;MC7JtBH,0B;ED6JwD,WC5JlD,OD4JkD,EAAW,aAAX,CAAW,KAAX,C;EAAxD,OAAmC,YC3J5B,OD2J4B,C;AACvC,C;;;;;;;;"}
|
|
@@ -14,22 +14,22 @@ function FrameTooBigException() {
|
|
|
14
14
|
if (FrameTooBigExceptionClass === VOID) {
|
|
15
15
|
class $ extends Exception() {
|
|
16
16
|
constructor(frameSize, cause) {
|
|
17
|
-
return new.target.
|
|
17
|
+
return new.target.f39(frameSize, cause);
|
|
18
18
|
}
|
|
19
|
-
static
|
|
19
|
+
static f39(frameSize, cause) {
|
|
20
20
|
cause = cause === VOID ? null : cause;
|
|
21
21
|
var $this = this.de(cause);
|
|
22
|
-
captureStack($this, $this.
|
|
23
|
-
$this.
|
|
22
|
+
captureStack($this, $this.e39_1);
|
|
23
|
+
$this.d39_1 = frameSize;
|
|
24
24
|
delete $this.message;
|
|
25
25
|
return $this;
|
|
26
26
|
}
|
|
27
27
|
r() {
|
|
28
|
-
var sizeSuffix = compare(this.
|
|
28
|
+
var sizeSuffix = compare(this.d39_1, new (Long())(0, 0)) >= 0 ? ': ' + this.d39_1.toString() : '';
|
|
29
29
|
return 'Frame is too big' + sizeSuffix;
|
|
30
30
|
}
|
|
31
31
|
s15() {
|
|
32
|
-
return FrameTooBigException().
|
|
32
|
+
return FrameTooBigException().f39(this.d39_1, this);
|
|
33
33
|
}
|
|
34
34
|
get message() {
|
|
35
35
|
return this.r();
|
|
@@ -38,10 +38,10 @@ function Companion() {
|
|
|
38
38
|
tmp$ret$0 = maxElem;
|
|
39
39
|
break $l$block_0;
|
|
40
40
|
}
|
|
41
|
-
var maxValue = maxElem.
|
|
41
|
+
var maxValue = maxElem.o37_1;
|
|
42
42
|
do {
|
|
43
43
|
var e = iterator.n1();
|
|
44
|
-
var v = e.
|
|
44
|
+
var v = e.o37_1;
|
|
45
45
|
if (compareTo(maxValue, v) < 0) {
|
|
46
46
|
maxElem = e;
|
|
47
47
|
maxValue = v;
|
|
@@ -50,7 +50,7 @@ function Companion() {
|
|
|
50
50
|
while (iterator.m1());
|
|
51
51
|
tmp$ret$0 = maxElem;
|
|
52
52
|
}
|
|
53
|
-
tmp.t39_1 = ensureNotNull(tmp$ret$0).
|
|
53
|
+
tmp.t39_1 = ensureNotNull(tmp$ret$0).o37_1;
|
|
54
54
|
var tmp_0 = this;
|
|
55
55
|
var tmp_1 = 0;
|
|
56
56
|
var tmp_2 = this.t39_1 + 1 | 0;
|
|
@@ -67,7 +67,7 @@ function Companion() {
|
|
|
67
67
|
var _iterator__ex2g4s = tmp0_0.l1();
|
|
68
68
|
while (_iterator__ex2g4s.m1()) {
|
|
69
69
|
var element = _iterator__ex2g4s.n1();
|
|
70
|
-
if (element.
|
|
70
|
+
if (element.o37_1 === tmp_4) {
|
|
71
71
|
if (found) {
|
|
72
72
|
tmp$ret$5 = null;
|
|
73
73
|
break $l$block_2;
|
|
@@ -127,8 +127,8 @@ function FrameType() {
|
|
|
127
127
|
class $ extends Enum() {
|
|
128
128
|
constructor(name, ordinal, controlFrame, opcode) {
|
|
129
129
|
super(name, ordinal);
|
|
130
|
-
this.
|
|
131
|
-
this.
|
|
130
|
+
this.n37_1 = controlFrame;
|
|
131
|
+
this.o37_1 = opcode;
|
|
132
132
|
}
|
|
133
133
|
}
|
|
134
134
|
initMetadataForClass($, 'FrameType');
|
|
@@ -77,7 +77,7 @@ function ponger$slambda($channel, $outgoing) {
|
|
|
77
77
|
while (yield* _iterator__ex2g4s.z1c($completion)) {
|
|
78
78
|
var e = _iterator__ex2g4s.n1();
|
|
79
79
|
get_LOGGER().f2q('Received ping message, sending pong message');
|
|
80
|
-
yield* $outgoing.n1d(Pong().
|
|
80
|
+
yield* $outgoing.n1d(Pong().q39(e.r37_1), $completion);
|
|
81
81
|
}
|
|
82
82
|
break $l$block;
|
|
83
83
|
} catch ($p) {
|
|
@@ -121,7 +121,7 @@ function pinger$slambda$slambda_0($outgoing, $pingMessage, $channel) {
|
|
|
121
121
|
yield* $outgoing.n1d(Ping().c3a(toByteArray($pingMessage, Charsets_getInstance().h1w_1)), $completion);
|
|
122
122
|
$l$loop: while (true) {
|
|
123
123
|
var msg = yield* $channel.q1d($completion);
|
|
124
|
-
if (decodeToString(msg.
|
|
124
|
+
if (decodeToString(msg.r37_1, 0, 0 + msg.r37_1.length | 0) === $pingMessage) {
|
|
125
125
|
get_LOGGER().f2q('WebSocket Pinger: received valid pong frame ' + msg.toString());
|
|
126
126
|
break $l$loop;
|
|
127
127
|
}
|
|
@@ -23,8 +23,8 @@ import {
|
|
|
23
23
|
_ChannelResult___get_isClosed__impl__mg7kuu3a26on4apn4j4 as _ChannelResult___get_isClosed__impl__mg7kuu,
|
|
24
24
|
close$defaultlxi0kykibhye as close$default,
|
|
25
25
|
cancel$default2imfx8rp1ubvu as cancel$default,
|
|
26
|
-
SendChannel38sllbxw662ws as SendChannel,
|
|
27
26
|
ReceiveChannel24wu5e2tj9lbp as ReceiveChannel,
|
|
27
|
+
SendChannel38sllbxw662ws as SendChannel,
|
|
28
28
|
} from '../../../../kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs';
|
|
29
29
|
import { Enum3alwj03lh1n41 as Enum } from '../../../../kotlin-kotlin-stdlib/kotlin/Enum.mjs';
|
|
30
30
|
import { throwUninitializedPropertyAccessException14fok093f3k3t as throwUninitializedPropertyAccessException } from '../../../../kotlin-kotlin-stdlib/kotlin/internal/ThrowHelpers.mjs';
|
|
@@ -41,9 +41,9 @@ function Companion() {
|
|
|
41
41
|
var tmp = this;
|
|
42
42
|
// Inline function 'kotlin.apply' call
|
|
43
43
|
var this_0 = new (WebSocketChannelsConfig())();
|
|
44
|
-
this_0.
|
|
45
|
-
this_0.
|
|
46
|
-
tmp.
|
|
44
|
+
this_0.e38_1 = this_0.d3a();
|
|
45
|
+
this_0.f38_1 = this_0.d3a();
|
|
46
|
+
tmp.d38_1 = this_0;
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
initMetadataForCompanion($);
|
|
@@ -63,8 +63,8 @@ function WebSocketChannelsConfig() {
|
|
|
63
63
|
class $ {
|
|
64
64
|
constructor() {
|
|
65
65
|
Companion_getInstance();
|
|
66
|
-
this.
|
|
67
|
-
this.
|
|
66
|
+
this.e38_1 = Companion_getInstance_0().e3a_1;
|
|
67
|
+
this.f38_1 = Companion_getInstance_0().e3a_1;
|
|
68
68
|
}
|
|
69
69
|
d3a() {
|
|
70
70
|
return Companion_getInstance_0().e3a_1;
|
|
@@ -241,7 +241,7 @@ function BoundedChannel() {
|
|
|
241
241
|
}
|
|
242
242
|
protoOf($).z1d = close$default;
|
|
243
243
|
protoOf($).b1e = cancel$default;
|
|
244
|
-
initMetadataForClass($, 'BoundedChannel', VOID, VOID, [
|
|
244
|
+
initMetadataForClass($, 'BoundedChannel', VOID, VOID, [ReceiveChannel(), SendChannel()], [1, 0]);
|
|
245
245
|
BoundedChannelClass = $;
|
|
246
246
|
}
|
|
247
247
|
return BoundedChannelClass;
|