@continuous-excellence/coupling-cli 1.1.685 → 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-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
|
@@ -13,12 +13,12 @@ function CIOMultipartDataBase() {
|
|
|
13
13
|
class $ {
|
|
14
14
|
constructor(coroutineContext, channel, contentType, contentLength, formFieldLimit) {
|
|
15
15
|
formFieldLimit = formFieldLimit === VOID ? new (Long())(65536, 0) : formFieldLimit;
|
|
16
|
-
this.
|
|
17
|
-
this.
|
|
18
|
-
this.
|
|
16
|
+
this.q34_1 = coroutineContext;
|
|
17
|
+
this.r34_1 = null;
|
|
18
|
+
this.s34_1 = parseMultipart(this, channel, contentType, contentLength, formFieldLimit);
|
|
19
19
|
}
|
|
20
20
|
wx() {
|
|
21
|
-
return this.
|
|
21
|
+
return this.q34_1;
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
initMetadataForClass($, 'CIOMultipartDataBase', VOID, VOID, [MultiPartData()], [0, 1]);
|
|
@@ -35,107 +35,107 @@ function get_HeadersDataPool() {
|
|
|
35
35
|
}
|
|
36
36
|
var HeadersDataPool;
|
|
37
37
|
function thresholdReached($this) {
|
|
38
|
-
return $this.
|
|
38
|
+
return $this.u34_1 >= $this.v34_1 * 0.75;
|
|
39
39
|
}
|
|
40
40
|
function resize($this) {
|
|
41
|
-
var prevSize = $this.
|
|
42
|
-
var prevData = $this.
|
|
43
|
-
$this.
|
|
44
|
-
$this.
|
|
41
|
+
var prevSize = $this.u34_1;
|
|
42
|
+
var prevData = $this.w34_1;
|
|
43
|
+
$this.u34_1 = 0;
|
|
44
|
+
$this.v34_1 = imul($this.v34_1, 2) | 128;
|
|
45
45
|
var tmp = $this;
|
|
46
46
|
// Inline function 'kotlin.apply' call
|
|
47
47
|
var this_0 = get_HeadersDataPool().v1w();
|
|
48
|
-
this_0.
|
|
49
|
-
tmp.
|
|
50
|
-
var _iterator__ex2g4s = prevData.
|
|
48
|
+
this_0.z34(imul(prevData.y34(), 2) | 1);
|
|
49
|
+
tmp.w34_1 = this_0;
|
|
50
|
+
var _iterator__ex2g4s = prevData.a35().l1();
|
|
51
51
|
while (_iterator__ex2g4s.m1()) {
|
|
52
52
|
var headerOffset = _iterator__ex2g4s.n1();
|
|
53
|
-
$this.
|
|
53
|
+
$this.c35(prevData.b35(headerOffset + 1 | 0), prevData.b35(headerOffset + 2 | 0), prevData.b35(headerOffset + 3 | 0), prevData.b35(headerOffset + 4 | 0));
|
|
54
54
|
}
|
|
55
55
|
get_HeadersDataPool().w1w(prevData);
|
|
56
56
|
// Inline function 'kotlin.require' call
|
|
57
57
|
// Inline function 'kotlin.require' call
|
|
58
|
-
if (!(prevSize === $this.
|
|
58
|
+
if (!(prevSize === $this.u34_1)) {
|
|
59
59
|
var message = 'Failed requirement.';
|
|
60
60
|
throw IllegalArgumentException().m2(toString(message));
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
function headerHasName($this, name, headerOffset) {
|
|
64
|
-
var nameStartIndex = $this.
|
|
65
|
-
var nameEndIndex = $this.
|
|
66
|
-
return equalsLowerCase($this.
|
|
64
|
+
var nameStartIndex = $this.w34_1.b35(headerOffset + 1 | 0);
|
|
65
|
+
var nameEndIndex = $this.w34_1.b35(headerOffset + 2 | 0);
|
|
66
|
+
return equalsLowerCase($this.t34_1, nameStartIndex, nameEndIndex, name);
|
|
67
67
|
}
|
|
68
68
|
var HttpHeadersMapClass;
|
|
69
69
|
function HttpHeadersMap() {
|
|
70
70
|
if (HttpHeadersMapClass === VOID) {
|
|
71
71
|
class $ {
|
|
72
72
|
constructor(builder) {
|
|
73
|
-
this.
|
|
74
|
-
this.
|
|
75
|
-
this.
|
|
76
|
-
this.
|
|
73
|
+
this.t34_1 = builder;
|
|
74
|
+
this.u34_1 = 0;
|
|
75
|
+
this.v34_1 = 0;
|
|
76
|
+
this.w34_1 = get_HeadersDataPool().v1w();
|
|
77
77
|
}
|
|
78
78
|
ci(name) {
|
|
79
|
-
if (this.
|
|
79
|
+
if (this.u34_1 === 0)
|
|
80
80
|
return null;
|
|
81
81
|
// Inline function 'kotlin.math.absoluteValue' call
|
|
82
82
|
var this_0 = hashCodeLowerCase(name);
|
|
83
83
|
var hash = abs(this_0);
|
|
84
|
-
var headerIndex = hash % this.
|
|
85
|
-
while (!(this.
|
|
84
|
+
var headerIndex = hash % this.v34_1 | 0;
|
|
85
|
+
while (!(this.w34_1.b35(imul(headerIndex, 6) + 0 | 0) === -1)) {
|
|
86
86
|
if (headerHasName(this, name, imul(headerIndex, 6))) {
|
|
87
|
-
return this.
|
|
87
|
+
return this.d35(imul(headerIndex, 6));
|
|
88
88
|
}
|
|
89
|
-
headerIndex = (headerIndex + 1 | 0) % this.
|
|
89
|
+
headerIndex = (headerIndex + 1 | 0) % this.v34_1 | 0;
|
|
90
90
|
}
|
|
91
91
|
return null;
|
|
92
92
|
}
|
|
93
|
-
|
|
94
|
-
return this.
|
|
93
|
+
e35() {
|
|
94
|
+
return this.w34_1.a35();
|
|
95
95
|
}
|
|
96
|
-
|
|
96
|
+
c35(nameStartIndex, nameEndIndex, valueStartIndex, valueEndIndex) {
|
|
97
97
|
if (thresholdReached(this)) {
|
|
98
98
|
resize(this);
|
|
99
99
|
}
|
|
100
100
|
// Inline function 'kotlin.math.absoluteValue' call
|
|
101
|
-
var this_0 = hashCodeLowerCase(this.
|
|
101
|
+
var this_0 = hashCodeLowerCase(this.t34_1, nameStartIndex, nameEndIndex);
|
|
102
102
|
var hash = abs(this_0);
|
|
103
|
-
var name = this.
|
|
104
|
-
var headerIndex = hash % this.
|
|
103
|
+
var name = this.t34_1.c(nameStartIndex, nameEndIndex);
|
|
104
|
+
var headerIndex = hash % this.v34_1 | 0;
|
|
105
105
|
var sameNameHeaderIndex = -1;
|
|
106
|
-
while (!(this.
|
|
106
|
+
while (!(this.w34_1.b35(imul(headerIndex, 6) + 0 | 0) === -1)) {
|
|
107
107
|
if (headerHasName(this, name, imul(headerIndex, 6))) {
|
|
108
108
|
sameNameHeaderIndex = headerIndex;
|
|
109
109
|
}
|
|
110
|
-
headerIndex = (headerIndex + 1 | 0) % this.
|
|
110
|
+
headerIndex = (headerIndex + 1 | 0) % this.v34_1 | 0;
|
|
111
111
|
}
|
|
112
112
|
var headerOffset = imul(headerIndex, 6);
|
|
113
|
-
this.
|
|
114
|
-
this.
|
|
115
|
-
this.
|
|
116
|
-
this.
|
|
117
|
-
this.
|
|
118
|
-
this.
|
|
113
|
+
this.w34_1.m35(headerOffset + 0 | 0, hash);
|
|
114
|
+
this.w34_1.m35(headerOffset + 1 | 0, nameStartIndex);
|
|
115
|
+
this.w34_1.m35(headerOffset + 2 | 0, nameEndIndex);
|
|
116
|
+
this.w34_1.m35(headerOffset + 3 | 0, valueStartIndex);
|
|
117
|
+
this.w34_1.m35(headerOffset + 4 | 0, valueEndIndex);
|
|
118
|
+
this.w34_1.m35(headerOffset + 5 | 0, -1);
|
|
119
119
|
if (!(sameNameHeaderIndex === -1)) {
|
|
120
|
-
this.
|
|
120
|
+
this.w34_1.m35(imul(sameNameHeaderIndex, 6) + 5 | 0, headerIndex);
|
|
121
121
|
}
|
|
122
|
-
this.
|
|
122
|
+
this.u34_1 = this.u34_1 + 1 | 0;
|
|
123
123
|
}
|
|
124
|
-
|
|
125
|
-
var nameStartIndex = this.
|
|
126
|
-
var nameEndIndex = this.
|
|
127
|
-
return this.
|
|
124
|
+
n35(headerOffset) {
|
|
125
|
+
var nameStartIndex = this.w34_1.b35(headerOffset + 1 | 0);
|
|
126
|
+
var nameEndIndex = this.w34_1.b35(headerOffset + 2 | 0);
|
|
127
|
+
return this.t34_1.c(nameStartIndex, nameEndIndex);
|
|
128
128
|
}
|
|
129
|
-
|
|
130
|
-
var valueStartIndex = this.
|
|
131
|
-
var valueEndIndex = this.
|
|
132
|
-
return this.
|
|
129
|
+
d35(headerOffset) {
|
|
130
|
+
var valueStartIndex = this.w34_1.b35(headerOffset + 3 | 0);
|
|
131
|
+
var valueEndIndex = this.w34_1.b35(headerOffset + 4 | 0);
|
|
132
|
+
return this.t34_1.c(valueStartIndex, valueEndIndex);
|
|
133
133
|
}
|
|
134
|
-
|
|
135
|
-
this.
|
|
136
|
-
this.
|
|
137
|
-
get_HeadersDataPool().w1w(this.
|
|
138
|
-
this.
|
|
134
|
+
o35() {
|
|
135
|
+
this.u34_1 = 0;
|
|
136
|
+
this.v34_1 = 0;
|
|
137
|
+
get_HeadersDataPool().w1w(this.w34_1);
|
|
138
|
+
this.w34_1 = get_HeadersDataPool().v1w();
|
|
139
139
|
}
|
|
140
140
|
toString() {
|
|
141
141
|
// Inline function 'kotlin.text.buildString' call
|
|
@@ -153,12 +153,12 @@ function HttpHeadersMap() {
|
|
|
153
153
|
function HeadersData$headersStarts$slambda(this$0) {
|
|
154
154
|
return constructCallableReference(function *($this$sequence, $completion) {
|
|
155
155
|
var joinedIndex = 0;
|
|
156
|
-
var _iterator__ex2g4s = this$0.
|
|
156
|
+
var _iterator__ex2g4s = this$0.x34_1.l1();
|
|
157
157
|
while (_iterator__ex2g4s.m1()) {
|
|
158
158
|
var arr = _iterator__ex2g4s.n1();
|
|
159
159
|
var localIndex = 0;
|
|
160
160
|
while (localIndex < arr.length) {
|
|
161
|
-
if (!(this$0.
|
|
161
|
+
if (!(this$0.b35(joinedIndex + 0 | 0) === -1)) {
|
|
162
162
|
yield* $this$sequence.om(joinedIndex, $completion);
|
|
163
163
|
}
|
|
164
164
|
localIndex = localIndex + 6 | 0;
|
|
@@ -175,38 +175,38 @@ function HeadersData() {
|
|
|
175
175
|
constructor() {
|
|
176
176
|
var tmp = this;
|
|
177
177
|
// Inline function 'kotlin.collections.mutableListOf' call
|
|
178
|
-
tmp.
|
|
178
|
+
tmp.x34_1 = ArrayList().i2();
|
|
179
179
|
}
|
|
180
|
-
|
|
181
|
-
return this.
|
|
180
|
+
y34() {
|
|
181
|
+
return this.x34_1.q2();
|
|
182
182
|
}
|
|
183
|
-
|
|
183
|
+
z34(subArraysCount) {
|
|
184
184
|
// Inline function 'kotlin.repeat' call
|
|
185
185
|
var inductionVariable = 0;
|
|
186
186
|
if (inductionVariable < subArraysCount)
|
|
187
187
|
do {
|
|
188
188
|
var index = inductionVariable;
|
|
189
189
|
inductionVariable = inductionVariable + 1 | 0;
|
|
190
|
-
this.
|
|
190
|
+
this.x34_1.o2(get_IntArrayPool().v1w());
|
|
191
191
|
}
|
|
192
192
|
while (inductionVariable < subArraysCount);
|
|
193
193
|
}
|
|
194
|
-
|
|
195
|
-
return this.
|
|
194
|
+
b35(index) {
|
|
195
|
+
return this.x34_1.p2(index / 768 | 0)[index % 768 | 0];
|
|
196
196
|
}
|
|
197
|
-
|
|
198
|
-
this.
|
|
197
|
+
m35(index, value) {
|
|
198
|
+
this.x34_1.p2(index / 768 | 0)[index % 768 | 0] = value;
|
|
199
199
|
}
|
|
200
|
-
|
|
200
|
+
a35() {
|
|
201
201
|
return sequence(HeadersData$headersStarts$slambda(this));
|
|
202
202
|
}
|
|
203
|
-
|
|
204
|
-
var _iterator__ex2g4s = this.
|
|
203
|
+
o35() {
|
|
204
|
+
var _iterator__ex2g4s = this.x34_1.l1();
|
|
205
205
|
while (_iterator__ex2g4s.m1()) {
|
|
206
206
|
var array = _iterator__ex2g4s.n1();
|
|
207
207
|
get_IntArrayPool().w1w(array);
|
|
208
208
|
}
|
|
209
|
-
this.
|
|
209
|
+
this.x34_1.m4();
|
|
210
210
|
}
|
|
211
211
|
}
|
|
212
212
|
initMetadataForClass($, 'HeadersData', HeadersData);
|
|
@@ -216,13 +216,13 @@ function HeadersData() {
|
|
|
216
216
|
}
|
|
217
217
|
function dumpTo(_this__u8e3s4, indent, out) {
|
|
218
218
|
_init_properties_HttpHeadersMap_kt__hwatby();
|
|
219
|
-
var _iterator__ex2g4s = _this__u8e3s4.
|
|
219
|
+
var _iterator__ex2g4s = _this__u8e3s4.e35().l1();
|
|
220
220
|
while (_iterator__ex2g4s.m1()) {
|
|
221
221
|
var offset = _iterator__ex2g4s.n1();
|
|
222
222
|
out.n2(indent);
|
|
223
|
-
out.n2(_this__u8e3s4.
|
|
223
|
+
out.n2(_this__u8e3s4.n35(offset));
|
|
224
224
|
out.n2(' => ');
|
|
225
|
-
out.n2(_this__u8e3s4.
|
|
225
|
+
out.n2(_this__u8e3s4.d35(offset));
|
|
226
226
|
out.n2('\n');
|
|
227
227
|
}
|
|
228
228
|
}
|
|
@@ -242,12 +242,12 @@ function IntArrayPool$1() {
|
|
|
242
242
|
}
|
|
243
243
|
return tmp_0;
|
|
244
244
|
}
|
|
245
|
-
|
|
245
|
+
s35(instance) {
|
|
246
246
|
fill(instance, -1);
|
|
247
247
|
return protoOf(DefaultPool()).t1w.call(this, instance);
|
|
248
248
|
}
|
|
249
249
|
t1w(instance) {
|
|
250
|
-
return this.
|
|
250
|
+
return this.s35(isIntArray(instance) ? instance : THROW_CCE());
|
|
251
251
|
}
|
|
252
252
|
}
|
|
253
253
|
initMetadataForClass($);
|
|
@@ -265,12 +265,12 @@ function HeadersDataPool$1() {
|
|
|
265
265
|
o1w() {
|
|
266
266
|
return new (HeadersData())();
|
|
267
267
|
}
|
|
268
|
-
|
|
269
|
-
instance.
|
|
268
|
+
w35(instance) {
|
|
269
|
+
instance.o35();
|
|
270
270
|
return protoOf(DefaultPool()).t1w.call(this, instance);
|
|
271
271
|
}
|
|
272
272
|
t1w(instance) {
|
|
273
|
-
return this.
|
|
273
|
+
return this.w35(instance instanceof HeadersData() ? instance : THROW_CCE());
|
|
274
274
|
}
|
|
275
275
|
}
|
|
276
276
|
initMetadataForClass($);
|
|
@@ -51,11 +51,11 @@ function *parseHeaders(input, builder, range, $completion) {
|
|
|
51
51
|
try {
|
|
52
52
|
$l$loop: while (true) {
|
|
53
53
|
if (equalsLong(yield* readLineStrictTo(input, builder, new (Long())(8192, 0), VOID, $completion), new (Long())(-1, -1))) {
|
|
54
|
-
headers.
|
|
54
|
+
headers.o35();
|
|
55
55
|
return null;
|
|
56
56
|
}
|
|
57
|
-
range.
|
|
58
|
-
var rangeLength = range.
|
|
57
|
+
range.y35_1 = builder.l35_1;
|
|
58
|
+
var rangeLength = range.y35_1 - range.x35_1 | 0;
|
|
59
59
|
if (rangeLength === 0)
|
|
60
60
|
break $l$loop;
|
|
61
61
|
if (rangeLength >= 8192) {
|
|
@@ -63,14 +63,14 @@ function *parseHeaders(input, builder, range, $completion) {
|
|
|
63
63
|
var message = 'Header line length limit exceeded';
|
|
64
64
|
throw IllegalStateException().o(toString(message));
|
|
65
65
|
}
|
|
66
|
-
var nameStart = range.
|
|
66
|
+
var nameStart = range.x35_1;
|
|
67
67
|
var nameEnd = parseHeaderName(builder, range);
|
|
68
|
-
var headerEnd = range.
|
|
68
|
+
var headerEnd = range.y35_1;
|
|
69
69
|
parseHeaderValue(builder, range);
|
|
70
|
-
var valueStart = range.
|
|
71
|
-
var valueEnd = range.
|
|
72
|
-
range.
|
|
73
|
-
headers.
|
|
70
|
+
var valueStart = range.x35_1;
|
|
71
|
+
var valueEnd = range.y35_1;
|
|
72
|
+
range.x35_1 = headerEnd;
|
|
73
|
+
headers.c35(nameStart, nameEnd, valueStart, valueEnd);
|
|
74
74
|
}
|
|
75
75
|
var host = headers.ci('Host');
|
|
76
76
|
if (!(host == null)) {
|
|
@@ -80,7 +80,7 @@ function *parseHeaders(input, builder, range, $completion) {
|
|
|
80
80
|
} catch ($p) {
|
|
81
81
|
if ($p instanceof Error) {
|
|
82
82
|
var t = $p;
|
|
83
|
-
headers.
|
|
83
|
+
headers.o35();
|
|
84
84
|
throw t;
|
|
85
85
|
} else {
|
|
86
86
|
throw $p;
|
|
@@ -89,16 +89,16 @@ function *parseHeaders(input, builder, range, $completion) {
|
|
|
89
89
|
}
|
|
90
90
|
function parseHeaderName(text, range) {
|
|
91
91
|
_init_properties_HttpParser_kt__gbdom1();
|
|
92
|
-
var index = range.
|
|
93
|
-
var end = range.
|
|
92
|
+
var index = range.x35_1;
|
|
93
|
+
var end = range.y35_1;
|
|
94
94
|
while (index < end) {
|
|
95
95
|
var ch = text.b(index);
|
|
96
|
-
if (ch === _Char___init__impl__6a9atx(58) && !(index === range.
|
|
97
|
-
range.
|
|
96
|
+
if (ch === _Char___init__impl__6a9atx(58) && !(index === range.x35_1)) {
|
|
97
|
+
range.x35_1 = index + 1 | 0;
|
|
98
98
|
return index;
|
|
99
99
|
}
|
|
100
100
|
if (isDelimiter(ch)) {
|
|
101
|
-
parseHeaderNameFailed(text, index, range.
|
|
101
|
+
parseHeaderNameFailed(text, index, range.x35_1, ch);
|
|
102
102
|
}
|
|
103
103
|
index = index + 1 | 0;
|
|
104
104
|
}
|
|
@@ -106,12 +106,12 @@ function parseHeaderName(text, range) {
|
|
|
106
106
|
}
|
|
107
107
|
function parseHeaderValue(text, range) {
|
|
108
108
|
_init_properties_HttpParser_kt__gbdom1();
|
|
109
|
-
var start = range.
|
|
110
|
-
var end = range.
|
|
109
|
+
var start = range.x35_1;
|
|
110
|
+
var end = range.y35_1;
|
|
111
111
|
var index = start;
|
|
112
112
|
index = skipSpacesAndHorizontalTabs(text, index, end);
|
|
113
113
|
if (index >= end) {
|
|
114
|
-
range.
|
|
114
|
+
range.x35_1 = end;
|
|
115
115
|
return Unit_instance;
|
|
116
116
|
}
|
|
117
117
|
var valueStart = index;
|
|
@@ -125,13 +125,13 @@ function parseHeaderValue(text, range) {
|
|
|
125
125
|
valueLastIndex = index;
|
|
126
126
|
index = index + 1 | 0;
|
|
127
127
|
}
|
|
128
|
-
range.
|
|
129
|
-
range.
|
|
128
|
+
range.x35_1 = valueStart;
|
|
129
|
+
range.y35_1 = valueLastIndex + 1 | 0;
|
|
130
130
|
}
|
|
131
131
|
function validateHostHeader(host) {
|
|
132
132
|
_init_properties_HttpParser_kt__gbdom1();
|
|
133
133
|
if (endsWith(host, ':')) {
|
|
134
|
-
throw ParserException().
|
|
134
|
+
throw ParserException().d36("Host header with ':' should contains port: " + toString(host));
|
|
135
135
|
}
|
|
136
136
|
var tmp$ret$0;
|
|
137
137
|
$l$block: {
|
|
@@ -148,7 +148,7 @@ function validateHostHeader(host) {
|
|
|
148
148
|
tmp$ret$0 = false;
|
|
149
149
|
}
|
|
150
150
|
if (tmp$ret$0) {
|
|
151
|
-
throw ParserException().
|
|
151
|
+
throw ParserException().d36('Host cannot contain any of the following symbols: ' + toString(get_hostForbiddenSymbols()));
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
154
|
function isDelimiter(ch) {
|
|
@@ -158,37 +158,37 @@ function isDelimiter(ch) {
|
|
|
158
158
|
function parseHeaderNameFailed(text, index, start, ch) {
|
|
159
159
|
_init_properties_HttpParser_kt__gbdom1();
|
|
160
160
|
if (ch === _Char___init__impl__6a9atx(58)) {
|
|
161
|
-
throw ParserException().
|
|
161
|
+
throw ParserException().d36('Empty header names are not allowed as per RFC7230.');
|
|
162
162
|
}
|
|
163
163
|
if (index === start) {
|
|
164
|
-
throw ParserException().
|
|
164
|
+
throw ParserException().d36('Multiline headers via line folding is not supported since it is deprecated as per RFC7230.');
|
|
165
165
|
}
|
|
166
166
|
characterIsNotAllowed(text, ch);
|
|
167
167
|
}
|
|
168
168
|
function noColonFound(text, range) {
|
|
169
169
|
_init_properties_HttpParser_kt__gbdom1();
|
|
170
|
-
var tmp2 = range.
|
|
170
|
+
var tmp2 = range.x35_1;
|
|
171
171
|
// Inline function 'kotlin.text.substring' call
|
|
172
|
-
var endIndex = range.
|
|
172
|
+
var endIndex = range.y35_1;
|
|
173
173
|
var tmp$ret$0 = toString(charSequenceSubSequence(text, tmp2, endIndex));
|
|
174
|
-
throw ParserException().
|
|
174
|
+
throw ParserException().d36('No colon in HTTP header in ' + tmp$ret$0 + ' in builder: \n' + toString(text));
|
|
175
175
|
}
|
|
176
176
|
function characterIsNotAllowed(text, ch) {
|
|
177
177
|
_init_properties_HttpParser_kt__gbdom1();
|
|
178
178
|
// Inline function 'kotlin.code' call
|
|
179
179
|
var tmp$ret$0 = Char__toInt_impl_vasixd(ch);
|
|
180
|
-
throw ParserException().
|
|
180
|
+
throw ParserException().d36('Character with code ' + (tmp$ret$0 & 255) + ' is not allowed in header names, \n' + toString(text));
|
|
181
181
|
}
|
|
182
182
|
var ParserExceptionClass;
|
|
183
183
|
function ParserException() {
|
|
184
184
|
if (ParserExceptionClass === VOID) {
|
|
185
185
|
class $ extends IllegalStateException() {
|
|
186
186
|
constructor(message) {
|
|
187
|
-
return new.target.
|
|
187
|
+
return new.target.d36(message);
|
|
188
188
|
}
|
|
189
|
-
static
|
|
189
|
+
static d36(message) {
|
|
190
190
|
var $this = this.o(message);
|
|
191
|
-
captureStack($this, $this.
|
|
191
|
+
captureStack($this, $this.c36_1);
|
|
192
192
|
return $this;
|
|
193
193
|
}
|
|
194
194
|
}
|
|
@@ -203,7 +203,7 @@ function _init_properties_HttpParser_kt__gbdom1() {
|
|
|
203
203
|
properties_initialized_HttpParser_kt_uedryv = true;
|
|
204
204
|
hostForbiddenSymbols = setOf([new (Char())(_Char___init__impl__6a9atx(47)), new (Char())(_Char___init__impl__6a9atx(63)), new (Char())(_Char___init__impl__6a9atx(35)), new (Char())(_Char___init__impl__6a9atx(64))]);
|
|
205
205
|
httpLineEndings = LineEndingMode__plus_impl_ttpz2j(Companion_getInstance().w1v_1, Companion_getInstance().v1v_1);
|
|
206
|
-
versions = Companion_instance.
|
|
206
|
+
versions = Companion_instance.e36(listOf(['HTTP/1.0', 'HTTP/1.1']));
|
|
207
207
|
}
|
|
208
208
|
}
|
|
209
209
|
//region block: exports
|
|
@@ -74,7 +74,7 @@ function Preamble() {
|
|
|
74
74
|
class $ extends MultipartEvent() {
|
|
75
75
|
constructor(body) {
|
|
76
76
|
super();
|
|
77
|
-
this.
|
|
77
|
+
this.f36_1 = body;
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
initMetadataForClass($, 'Preamble', VOID, VOID, VOID, [0]);
|
|
@@ -88,8 +88,8 @@ function MultipartPart() {
|
|
|
88
88
|
class $ extends MultipartEvent() {
|
|
89
89
|
constructor(headers, body) {
|
|
90
90
|
super();
|
|
91
|
-
this.
|
|
92
|
-
this.
|
|
91
|
+
this.g36_1 = headers;
|
|
92
|
+
this.h36_1 = body;
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
initMetadataForClass($, 'MultipartPart', VOID, VOID, VOID, [0]);
|
|
@@ -103,7 +103,7 @@ function Epilogue() {
|
|
|
103
103
|
class $ extends MultipartEvent() {
|
|
104
104
|
constructor(body) {
|
|
105
105
|
super();
|
|
106
|
-
this.
|
|
106
|
+
this.i36_1 = body;
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
initMetadataForClass($, 'Epilogue', VOID, VOID, VOID, [0]);
|
|
@@ -123,8 +123,8 @@ function MultipartEvent() {
|
|
|
123
123
|
function parseMultipart(_this__u8e3s4, input, contentType, contentLength, maxPartSize) {
|
|
124
124
|
maxPartSize = maxPartSize === VOID ? new (Long())(-1, 2147483647) : maxPartSize;
|
|
125
125
|
_init_properties_Multipart_kt__ato98a();
|
|
126
|
-
if (!MultiPart_getInstance().
|
|
127
|
-
throw UnsupportedMediaTypeExceptionCIO().
|
|
126
|
+
if (!MultiPart_getInstance().c2s(contentType)) {
|
|
127
|
+
throw UnsupportedMediaTypeExceptionCIO().m36('Failed to parse multipart: Content-Type should be multipart/* but it is ' + toString(contentType));
|
|
128
128
|
}
|
|
129
129
|
var boundaryByteBuffer = parseBoundaryInternal(contentType);
|
|
130
130
|
var boundaryBytes = ByteString().u1o(boundaryByteBuffer);
|
|
@@ -283,7 +283,7 @@ function *parsePartHeadersImpl(input, $completion) {
|
|
|
283
283
|
} catch ($p) {
|
|
284
284
|
if ($p instanceof Error) {
|
|
285
285
|
var t = $p;
|
|
286
|
-
builder.
|
|
286
|
+
builder.o35();
|
|
287
287
|
throw t;
|
|
288
288
|
} else {
|
|
289
289
|
throw $p;
|
|
@@ -358,7 +358,7 @@ function parseMultipart$slambda($input, $boundaryPrefixed, $maxPartSize, $totalL
|
|
|
358
358
|
try {
|
|
359
359
|
headersMap = yield* /*#__NOINLINE__*/parsePartHeadersImpl(countedInput, $completion);
|
|
360
360
|
if (!headers.d15(headersMap)) {
|
|
361
|
-
headersMap.
|
|
361
|
+
headersMap.o35();
|
|
362
362
|
throw CancellationException().n('Multipart processing has been cancelled');
|
|
363
363
|
}
|
|
364
364
|
yield* /*#__NOINLINE__*/parsePartBodyImpl($boundaryPrefixed, countedInput, body, headersMap, $maxPartSize, $completion);
|
|
@@ -371,7 +371,7 @@ function parseMultipart$slambda($input, $boundaryPrefixed, $maxPartSize, $totalL
|
|
|
371
371
|
if (tmp0_safe_receiver == null)
|
|
372
372
|
null;
|
|
373
373
|
else {
|
|
374
|
-
tmp0_safe_receiver.
|
|
374
|
+
tmp0_safe_receiver.o35();
|
|
375
375
|
}
|
|
376
376
|
}
|
|
377
377
|
close(body, cause);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-http/ktor-http-cio/common/src/io/ktor/http/cio/Multipart.kt","../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/CharCode.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-CrLf>","<get-PrefixString>","body","headers","parseMultipart","<this>","input","contentType","contentLength","maxPartSize","boundaryByteBuffer","boundaryBytes","parseBoundaryInternal","boundaryParameter","boundaryStart","position","state","i","ch","v","boundaryPrefixed","totalLength","findBoundary","paramNameCount","parsePreambleImpl","boundary","output","limit","$completion","parsePartHeadersImpl","builder","t","parsePartBodyImpl","byteCount","skipIfFoundReadCount","prefix","throwLimitExceeded","actual","parseBoundaryInternal$put","value","parseMultipart$slambda$slambda","parseMultipart$slambda$slambda$lambda","parseMultipart$slambda","parseMultipart$slambda$lambda","countedInput","readBeforeParse","firstBoundary","preambleData","part","headersMap","cause","consumedExceptEpilogue","size","epilogueContent","<init properties Multipart.kt>"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAsNQA,CAAAA,EAAA;A;EAAA,W;AAAO,C;;yBA2EPC,CAAAA,EAAA;A;EAAA,mB;AAAe,C;;;;;;kBA7ORC,I;;QAAP,iB;;;;;;;;;;;;kBAsBOC,O,EACAD,I;;QADP,oB;QACA,iB;;;;;;;;;;;;kBA8BOA,I;;QAAP,iB;;;;;;;;;;;;;;;;;uBA2FDE,CAAIC,a,EACPC,K,EACAC,W,EACAC,a,EACAC,WAJGL,EAK2B;A,oDADL,E,EAAA,U;;EAErB,8C,CAAuC;A,IACvC,6CACK,0EADL,YAC8E,WAD9E,E;EAGJ,C;MACAM,qBAAyB,sBAAsB,WAAtB,C;MACzBC,iCAA+B,kBAA/BA,C;EAGA,OAAO,gCAAe,aAAf,EAA8B,KAA9B,EAAqC,aAArC,EAAoD,WAApD,C;AACX,C;
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-http/ktor-http-cio/common/src/io/ktor/http/cio/Multipart.kt","../../../../../../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/src/kotlin/CharCode.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-CrLf>","<get-PrefixString>","body","headers","parseMultipart","<this>","input","contentType","contentLength","maxPartSize","boundaryByteBuffer","boundaryBytes","parseBoundaryInternal","boundaryParameter","boundaryStart","position","state","i","ch","v","boundaryPrefixed","totalLength","findBoundary","paramNameCount","parsePreambleImpl","boundary","output","limit","$completion","parsePartHeadersImpl","builder","t","parsePartBodyImpl","byteCount","skipIfFoundReadCount","prefix","throwLimitExceeded","actual","parseBoundaryInternal$put","value","parseMultipart$slambda$slambda","parseMultipart$slambda$slambda$lambda","parseMultipart$slambda","parseMultipart$slambda$lambda","countedInput","readBeforeParse","firstBoundary","preambleData","part","headersMap","cause","consumedExceptEpilogue","size","epilogueContent","<init properties Multipart.kt>"],"mappings":"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"}
|
|
@@ -96,16 +96,16 @@ function Node() {
|
|
|
96
96
|
if (NodeClass === VOID) {
|
|
97
97
|
class $ {
|
|
98
98
|
constructor(ch, exact, children) {
|
|
99
|
-
this.
|
|
100
|
-
this.
|
|
101
|
-
this.
|
|
99
|
+
this.n36_1 = ch;
|
|
100
|
+
this.o36_1 = exact;
|
|
101
|
+
this.p36_1 = children;
|
|
102
102
|
var tmp = this;
|
|
103
103
|
var tmp_0 = 0;
|
|
104
104
|
// Inline function 'kotlin.arrayOfNulls' call
|
|
105
105
|
var tmp_1 = Array(256);
|
|
106
106
|
while (tmp_0 < 256) {
|
|
107
107
|
var tmp_2 = tmp_0;
|
|
108
|
-
var tmp0 = this.
|
|
108
|
+
var tmp0 = this.p36_1;
|
|
109
109
|
var tmp$ret$2;
|
|
110
110
|
$l$block_0: {
|
|
111
111
|
// Inline function 'kotlin.collections.singleOrNull' call
|
|
@@ -115,7 +115,7 @@ function Node() {
|
|
|
115
115
|
while (_iterator__ex2g4s.m1()) {
|
|
116
116
|
var element = _iterator__ex2g4s.n1();
|
|
117
117
|
// Inline function 'kotlin.code' call
|
|
118
|
-
var this_0 = element.
|
|
118
|
+
var this_0 = element.n36_1;
|
|
119
119
|
if (Char__toInt_impl_vasixd(this_0) === tmp_2) {
|
|
120
120
|
if (found) {
|
|
121
121
|
tmp$ret$2 = null;
|
|
@@ -134,7 +134,7 @@ function Node() {
|
|
|
134
134
|
tmp_1[tmp_2] = tmp$ret$2;
|
|
135
135
|
tmp_0 = tmp_0 + 1 | 0;
|
|
136
136
|
}
|
|
137
|
-
tmp.
|
|
137
|
+
tmp.q36_1 = tmp_1;
|
|
138
138
|
}
|
|
139
139
|
}
|
|
140
140
|
initMetadataForClass($, 'Node');
|
|
@@ -146,11 +146,11 @@ var CompanionClass;
|
|
|
146
146
|
function Companion() {
|
|
147
147
|
if (CompanionClass === VOID) {
|
|
148
148
|
class $ {
|
|
149
|
-
|
|
149
|
+
e36(from) {
|
|
150
150
|
var tmp = AsciiCharTree$Companion$build$lambda;
|
|
151
|
-
return this.
|
|
151
|
+
return this.r36(from, tmp, AsciiCharTree$Companion$build$lambda_0);
|
|
152
152
|
}
|
|
153
|
-
|
|
153
|
+
r36(from, length, charAt) {
|
|
154
154
|
var tmp$ret$0;
|
|
155
155
|
$l$block_0: {
|
|
156
156
|
// Inline function 'kotlin.collections.maxByOrNull' call
|
|
@@ -237,7 +237,7 @@ function AsciiCharTree() {
|
|
|
237
237
|
if (AsciiCharTreeClass === VOID) {
|
|
238
238
|
class $ {
|
|
239
239
|
constructor(root) {
|
|
240
|
-
this.
|
|
240
|
+
this.s36_1 = root;
|
|
241
241
|
}
|
|
242
242
|
}
|
|
243
243
|
initMetadataForClass($, 'AsciiCharTree');
|