├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── main.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── CHANGELOG.md ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Example.xcscheme ├── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Image.imageset │ │ │ ├── 0_VmzczR2-GWRnMej3.png │ │ │ ├── Contents.json │ │ │ ├── MkYC3-1.png │ │ │ └── MkYC3.png │ │ └── logo.imageset │ │ │ ├── Contents.json │ │ │ ├── web trello-1.png │ │ │ ├── web trello-2.png │ │ │ └── web trello.png │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Extensions │ │ └── UIStoryboard+Extension.swift │ ├── Features │ │ ├── GroupFeature │ │ │ ├── GroupConfigurator.swift │ │ │ ├── GroupPresenter.swift │ │ │ ├── GroupViewController.storyboard │ │ │ ├── GroupViewController.swift │ │ │ └── GroupViewModelProvider.swift │ │ └── PaginationFeature │ │ │ ├── Cells │ │ │ ├── BaseLoadingSubview.swift │ │ │ ├── PaginationCell.swift │ │ │ ├── PaginationCell.xib │ │ │ └── PaginationCellViewModel.swift │ │ │ ├── PaginationConfigurator.swift │ │ │ ├── PaginationPresenter.swift │ │ │ ├── PaginationRouter.swift │ │ │ ├── PaginationViewController.storyboard │ │ │ ├── PaginationViewController.swift │ │ │ └── Subviews │ │ │ └── PaginationLoadingView.swift │ ├── Flows │ │ ├── AuthFlow │ │ │ ├── Credentials.swift │ │ │ ├── LoginConfigurator.swift │ │ │ ├── LoginPresenter.swift │ │ │ ├── LoginRouter.swift │ │ │ ├── LoginViewController.storyboard │ │ │ └── LoginViewController.swift │ │ └── FeatureListFlow │ │ │ ├── Cells │ │ │ ├── FeatureCell.swift │ │ │ ├── FeatureCell.xib │ │ │ └── FeatureCellViewModel.swift │ │ │ ├── FeatureListConfigurator.swift │ │ │ ├── FeatureListPresenter.swift │ │ │ ├── FeatureListRouter.swift │ │ │ ├── FeatureListViewController.storyboard │ │ │ └── FeatureListViewController.swift │ ├── Info.plist │ └── Utils │ │ ├── ErrorRepresentable.swift │ │ ├── Message.swift │ │ └── Message.xib └── Modules │ ├── MockServer │ ├── MockServer │ │ ├── Auth │ │ │ └── LoginResponseProvider.swift │ │ ├── Error │ │ │ └── ErrorResponseProvider.swift │ │ ├── FakeChainBuilder.swift │ │ ├── Group │ │ │ └── GroupResponseProvider.swift │ │ ├── MockServer.swift │ │ ├── Pagination │ │ │ └── PaginationResponseProvider.swift │ │ └── ServerConstants.swift │ └── Package.swift │ ├── Models │ ├── Models │ │ ├── Requests │ │ │ ├── Auth │ │ │ │ ├── AuthRequestEntity.swift │ │ │ │ └── AuthRequestEntry.swift │ │ │ └── Pagination │ │ │ │ ├── PaginationRequestEntity.swift │ │ │ │ └── PaginationRequestEntry.swift │ │ └── Responses │ │ │ ├── Auth │ │ │ ├── AuthTokenResponseEntity.swift │ │ │ └── AuthTokenResponseEntry.swift │ │ │ ├── Group │ │ │ ├── GroupBodyResponseEntity.swift │ │ │ ├── GroupBodyResponseEntry.swift │ │ │ ├── GroupFooterResponseEntity.swift │ │ │ ├── GroupFooterResponseEntry.swift │ │ │ ├── GroupHeaderResponseEntity.swift │ │ │ └── GroupHeaderResponseEntry.swift │ │ │ └── Pagination │ │ │ ├── PaginationResponseEntity.swift │ │ │ └── PaginationResponseEntry.swift │ └── Package.swift │ └── Services │ ├── Package.swift │ └── Services │ ├── AuthService │ ├── AuthService.swift │ └── AuthURLProvider.swift │ ├── GroupService │ ├── GroupService.swift │ └── GroupURLProvider.swift │ ├── PaginationService │ ├── PaginationContentDataProvider.swift │ └── PaginationURLProvider.swift │ └── URLProviders.swift ├── Gemfile ├── LICENSE ├── Makefile ├── NodeKit ├── NodeKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── NodeKit.xcscheme │ │ └── NodeKitMock.xcscheme ├── NodeKit │ ├── CacheNode │ │ ├── ETag │ │ │ ├── ETagConstants.swift │ │ │ ├── URLETagReaderNode.swift │ │ │ └── URLETagSaverNode.swift │ │ ├── FirstCachePolicyNode.swift │ │ ├── IfServerFailsFromCacheNode.swift │ │ ├── URLCacheReaderNode.swift │ │ ├── URLCacheWriterNode.swift │ │ └── URLNotModifiedTriggerNode.swift │ ├── Chains │ │ ├── ChainBuilder.swift │ │ ├── ServiceChainProvider.swift │ │ └── URLChainConfigModel.swift │ ├── Core │ │ ├── Convertion │ │ │ ├── DTOConvertible.swift │ │ │ ├── Extensions │ │ │ │ ├── Array+DtoConvertible.swift │ │ │ │ ├── Array+RawMappable.swift │ │ │ │ ├── DTOConvertible+Dictionary.swift │ │ │ │ └── RawMappable+Dictionary.swift │ │ │ ├── Multipart │ │ │ │ ├── MultipartFileProvider.swift │ │ │ │ ├── MultipartModel + Convertion.swift │ │ │ │ └── MultipartModel.swift │ │ │ └── RawMappable.swift │ │ └── Node │ │ │ ├── Async │ │ │ ├── AnyAsyncNode.swift │ │ │ ├── AnyAsyncStreamNode.swift │ │ │ ├── AsyncNode.swift │ │ │ └── AsyncStreamNode.swift │ │ │ ├── Combine │ │ │ ├── CombineCompatibleNode.swift │ │ │ ├── Publisher │ │ │ │ ├── AsyncNodeResultPublisher.swift │ │ │ │ ├── AsyncStreamNodeResultPublisher.swift │ │ │ │ └── NodeResultPublisher.swift │ │ │ ├── Subscriber │ │ │ │ └── NodeSubscriber.swift │ │ │ └── Subscription │ │ │ │ ├── AsyncNodeSubscription.swift │ │ │ │ ├── AsyncStreamNodeSubscription.swift │ │ │ │ └── BaseSubscription.swift │ │ │ ├── Node.swift │ │ │ └── NodeResult.swift │ ├── Encodings │ │ ├── Models │ │ │ └── RequestEncodingModel.swift │ │ ├── ParameterEncoding.swift │ │ ├── RequestEncodingNodeError.swift │ │ └── URLJsonRequestEncodingNode.swift │ ├── Info.plist │ ├── Layers │ │ ├── DTOProcessingLayer │ │ │ ├── DTOMapperNode.swift │ │ │ └── RawEncoderNode.swift │ │ ├── DefaultLogOrder.swift │ │ ├── InputProcessingLayer │ │ │ ├── DTOEncoderNode.swift │ │ │ ├── EntryInputDtoOutputNode.swift │ │ │ ├── ModelInputNode.swift │ │ │ ├── VoidIONode.swift │ │ │ ├── VoidInputNode.swift │ │ │ └── VoidOutputNode.swift │ │ ├── LayerTypes.swift │ │ ├── Protocols │ │ │ └── URLRouteProvider.swift │ │ ├── RequestBuildingLayer │ │ │ ├── MetadataConnectorNode.swift │ │ │ ├── Models │ │ │ │ ├── EncodableRequestModel.swift │ │ │ │ ├── Method.swift │ │ │ │ ├── ParametersEncoding.swift │ │ │ │ ├── RequestModel.swift │ │ │ │ ├── RoutableRequestModel.swift │ │ │ │ └── URLQueryConfigModel.swift │ │ │ ├── MultipartURLRequestTrasformatorNode.swift │ │ │ ├── RequestEncoderNode.swift │ │ │ ├── RequestRouterNode.swift │ │ │ ├── URLQueryEncoding │ │ │ │ ├── URLQueryArrayKeyEncodingStartegy.swift │ │ │ │ ├── URLQueryBoolEncodingStartegy.swift │ │ │ │ └── URLQueryDictionaryKeyEncodingStrategy.swift │ │ │ ├── URLQueryInjectorNode.swift │ │ │ └── URLRequestTrasformatorNode.swift │ │ ├── RequestProcessingLayer │ │ │ ├── MultipartFormDataFactory.swift │ │ │ ├── MultipartRequestCreatorNode.swift │ │ │ ├── RequestCreatorNode.swift │ │ │ ├── RequestSenderNode.swift │ │ │ ├── Support │ │ │ │ ├── ParametersEncoding+Alamofire.swift │ │ │ │ ├── RawURLRequest.swift │ │ │ │ └── ServerRequestsManager.swift │ │ │ └── URLSessionDataTaskActor.swift │ │ ├── ResponsePostprocessingNode │ │ │ └── Models │ │ │ │ └── URLProcessedResponse.swift │ │ ├── ResponseProcessingLayer │ │ │ ├── DataLoading │ │ │ │ └── DataLoadingResponseProcessor.swift │ │ │ ├── Models │ │ │ │ └── URLDataResponse.swift │ │ │ ├── ResponseDataParserNode.swift │ │ │ ├── ResponseDataPreprocessorNode.swift │ │ │ ├── ResponseHttpErrorProcessorNode.swift │ │ │ └── ResponseProcessorNode.swift │ │ ├── TrasportLayer │ │ │ ├── Models │ │ │ │ ├── TransportURLParameters.swift │ │ │ │ └── TransportURLRequest.swift │ │ │ └── TechnicaErrorMapperNode.swift │ │ └── Utils │ │ │ ├── AccessSafe │ │ │ ├── AccessSafeNode.swift │ │ │ ├── TokenRefresherActor.swift │ │ │ └── TokenRefresherNode.swift │ │ │ ├── HeaderInjectorNode.swift │ │ │ └── RequestAborterNode.swift │ ├── NodeKit.h │ └── Utils │ │ ├── AsyncIterator │ │ ├── AsyncIterator.swift │ │ ├── AsyncPagerDataProvider.swift │ │ ├── AsyncPagerIterator.swift │ │ └── StateStorable.swift │ │ ├── CancellableTask.swift │ │ ├── Logging │ │ ├── Chain │ │ │ ├── LogChain.swift │ │ │ └── LogableChain.swift │ │ ├── Log │ │ │ ├── Log.swift │ │ │ ├── LogSession.swift │ │ │ ├── LogType.swift │ │ │ └── LoggingProxy.swift │ │ ├── LoggerExtensions.swift │ │ ├── LoggerNode.swift │ │ ├── LoggerStreamNode.swift │ │ └── LoggingContext.swift │ │ ├── Mapping │ │ └── CodableRawMapper.swift │ │ ├── MetadataProvider.swift │ │ └── UrlRouting │ │ └── UrlRouting.swift ├── NodeKitMock │ ├── AborterMock.swift │ ├── AsyncNodeMock.swift │ ├── AsyncPagerDataProviderMock.swift │ ├── AsyncStreamNodeMock.swift │ ├── Builder │ │ ├── ChainBuilderMock.swift │ │ ├── ChainConfigBuilderMock.swift │ │ └── ServiceChainProviderMock.swift │ ├── CancellableTaskMock.swift │ ├── CombineCompatibleNodeMock.swift │ ├── DTOConvertibleMock.swift │ ├── DTODecodableMock.swift │ ├── DTOEncodableMock.swift │ ├── LogSessionMock.swift │ ├── LoggingContextMock.swift │ ├── LoggingProxyMock.swift │ ├── MetadataProviderMock.swift │ ├── MockError.swift │ ├── MultipartFormDataFactoryMock.swift │ ├── MultipartFormDataMock.swift │ ├── NetworkMock.swift │ ├── RawDecodableMock.swift │ ├── RawEncodableMock.swift │ ├── RawMappableMock.swift │ ├── TokenRefresherActorMock.swift │ ├── URLProtocolMock.swift │ ├── URLRouteProviderMock.swift │ ├── URLServiceChainProviderMock.swift │ ├── URLSessionDataTaskActorMock.swift │ ├── URLSessionDataTaskMock.swift │ └── Utils │ │ ├── Array+Extension.swift │ │ ├── DispatchQueue+Extension.swift │ │ ├── Equatable │ │ ├── Log+Equatalbe.swift │ │ └── TransportURLRequest+Equatable.swift │ │ └── Result+Extension.swift ├── NodeKitTests │ ├── IntegrationTests │ │ ├── EmptyResponseMappingTests.swift │ │ ├── FromURLCodingTests.swift │ │ ├── Infrastructure │ │ │ ├── Infrastructure.swift │ │ │ └── Models │ │ │ │ ├── Entity │ │ │ │ ├── AuthModel.swift │ │ │ │ ├── Credentials.swift │ │ │ │ └── User.swift │ │ │ │ └── Entry │ │ │ │ ├── AuthModelEntry.swift │ │ │ │ ├── CredentialsEntry.swift │ │ │ │ └── UserEntry.swift │ │ ├── MultipartRequestTests.swift │ │ ├── SimpleURLChainTests.swift │ │ └── URLResponsesStub.swift │ ├── MyTests.swift │ ├── Resources │ │ └── LICENSE.txt │ └── UnitTests │ │ ├── AsyncIterator │ │ └── AsyncPagerIteratorTests.swift │ │ ├── Builder │ │ └── URLChainBuilderTests.swift │ │ ├── Cache │ │ ├── ETag │ │ │ ├── TestUtls.swift │ │ │ └── URLWithOrderedQuery.swift │ │ └── FirstCachePolicyTests.swift │ │ ├── Coding │ │ ├── ArrayDTODecodableTests.swift │ │ ├── ArrayRawMappableTests.swift │ │ ├── DTODecodableTests.swift │ │ ├── DictionaryDTOConvertibleTests.swift │ │ ├── EncodingTests.swift │ │ └── RawDecodableTests.swift │ │ ├── Core │ │ ├── AsyncNodeTests.swift │ │ ├── AsyncStreamNodeTests.swift │ │ ├── Combine │ │ │ └── CombineNodeTests.swift │ │ └── NodeResultTests.swift │ │ ├── Logging │ │ ├── LogableTests.swift │ │ └── LoggingContextTests.swift │ │ ├── Network │ │ ├── AlamofireMultipartFormDataFactoryTests.swift │ │ ├── MultipartModelTests.swift │ │ ├── ServerRequestsManagerTests.swift │ │ ├── URLChainConfigModelTests.swift │ │ ├── URLRoutingTests.swift │ │ └── URLSessionDataTaskActorTests.swift │ │ ├── Nodes │ │ ├── AbortingTests.swift │ │ ├── AccessSafeNodeTests.swift │ │ ├── CacheReaderNodeTests.swift │ │ ├── DTOEncoderNodeTests.swift │ │ ├── DTOMapperNodeTests.swift │ │ ├── DataLoadingResponseProcessorTests.swift │ │ ├── EntryinputDtoOutputNodeTests.swift │ │ ├── HeaderInjectorNodeTests.swift │ │ ├── IfConnectionFailedFromCacheNodeTests.swift │ │ ├── LoggerNodeTests.swift │ │ ├── LoggerStreamNodeTests.swift │ │ ├── MetadataConnectorNodeTests.swift │ │ ├── ModelInputNodeTests.swift │ │ ├── MultipartRequestCreatorNodeTests.swift │ │ ├── MultipartURLRequestTrasformatorNodeTests.swift │ │ ├── RawEncoderNodeTests.swift │ │ ├── RequestCreatorNodeTests.swift │ │ ├── RequestEncoderNodeTests.swift │ │ ├── RequestRouterNodeTests.swift │ │ ├── RequestSenderNodeTests.swift │ │ ├── ResponseDataParserNodeTests.swift │ │ ├── ResponseDataPreprocessorNodeTests.swift │ │ ├── ResponseHttpErrorProcessorNodeTests.swift │ │ ├── ResponseProcessorNodeTests.swift │ │ ├── TechnicaErrorMapperNodeTests.swift │ │ ├── TokenRefresherNodeTests.swift │ │ ├── URLCacheWriterNodeTests.swift │ │ ├── URLETagReaderNodeTests.swift │ │ ├── URLETagSaverNodeTests.swift │ │ ├── URLNotModifiedTriggerNodeTests.swift │ │ ├── URLQueryInjectorNodeTests.swift │ │ ├── URLRequestTrasformatorNodeTests.swift │ │ ├── VoidIONodeTests.swift │ │ ├── VoidInputNodeTests.swift │ │ └── VoidOutputNodeTests.swift │ │ ├── RequestBuildingLayer │ │ ├── URLQueryArrayKeyEncodingBracketsStartegyTests.swift │ │ ├── URLQueryBoolEncodingDefaultStartegyTests.swift │ │ └── URLQueryDictionaryKeyEncodingDefaultStrategyTests.swift │ │ └── TokenRefresher │ │ └── TokenRefresherActorTests.swift └── NodeKitThirdParty │ ├── .swiftpm │ └── xcode │ │ └── package.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Package.swift │ └── Source │ └── Alamofire │ ├── AFError.swift │ ├── HTTPHeaders.swift │ ├── MultipartFormData.swift │ └── MultipartFormDataProtocol.swift ├── Package.swift ├── README.md ├── ROADMAP.md ├── TechDocs ├── Chains.md ├── ContributionGuide.md ├── Documentation.md ├── Header.svg ├── Header.umdx ├── Log │ ├── Log.md │ ├── log_chaining.svg │ ├── log_chaining.umdx │ ├── log_nodes_tree.svg │ └── log_nodes_tree.umdx ├── MainConcept.md ├── Models.md ├── NodeKitHeader.svg ├── NodeKitHeader.umdx ├── Nodes │ └── Existing.md ├── Testing │ └── NodeKitMock.md └── Usage.md ├── codecov.yml ├── docs ├── css │ ├── 523.e9a069b0.css │ ├── 675.40c3bcb2.css │ ├── documentation-topic.b186e79f.css │ ├── index.ff036a9e.css │ ├── topic.672a9049.css │ └── tutorials-overview.6eb589ed.css ├── data │ └── documentation │ │ ├── nodekit.json │ │ └── nodekit │ │ ├── aborter.json │ │ ├── aborter │ │ └── cancel(logcontext:).json │ │ ├── aborternode.json │ │ ├── aborternode │ │ ├── aborter.json │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:aborter:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher().json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── noderesultpublisher(logcontext:).json │ │ ├── noderesultpublisher(on:).json │ │ ├── noderesultpublisher(on:logcontext:).json │ │ ├── objectname.json │ │ ├── process().json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── accesssafenode.json │ │ ├── accesssafenode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:updatetokenchain:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ ├── process(_:logcontext:).json │ │ └── updatetokenchain.json │ │ ├── accesssafenodeerror.json │ │ ├── accesssafenodeerror │ │ ├── !=(_:_:).json │ │ ├── asaferror.json │ │ ├── equatable-implementations.json │ │ ├── error-implementations.json │ │ ├── localizeddescription.json │ │ └── nodewasrelease.json │ │ ├── alamofiremultipartformdatafactory.json │ │ ├── alamofiremultipartformdatafactory │ │ ├── init().json │ │ └── produce().json │ │ ├── anyasyncnode.json │ │ ├── anyasyncnode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── logviewobjectname.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher().json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── noderesultpublisher(logcontext:).json │ │ ├── noderesultpublisher(on:).json │ │ ├── noderesultpublisher(on:logcontext:).json │ │ ├── objectname.json │ │ ├── process().json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── asynciterator.json │ │ ├── asynciterator │ │ ├── hasnext().json │ │ ├── next().json │ │ ├── renew().json │ │ └── value.json │ │ ├── asyncnode.json │ │ ├── asyncnode │ │ ├── erasetoanynode()-7rdro.json │ │ ├── erasetoanynode()-9q4vf.json │ │ ├── input.json │ │ ├── output.json │ │ ├── process().json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── asyncpagerdata.json │ │ ├── asyncpagerdata │ │ ├── init(value:len:).json │ │ ├── len.json │ │ └── value.json │ │ ├── asyncpagerdataprovider.json │ │ ├── asyncpagerdataprovider │ │ ├── provide(for:with:).json │ │ └── value.json │ │ ├── asyncpageriterator.json │ │ ├── asyncpageriterator │ │ ├── actor-implementations.json │ │ ├── assertisolated(_:file:line:).json │ │ ├── assumeisolated(_:file:line:).json │ │ ├── clearstates().json │ │ ├── hasnext().json │ │ ├── init(dataprovider:pagesize:).json │ │ ├── next().json │ │ ├── preconditionisolated(_:file:line:).json │ │ ├── renew().json │ │ ├── restorestate().json │ │ └── savestate().json │ │ ├── basetechnicalerror.json │ │ ├── basetechnicalerror │ │ ├── !=(_:_:).json │ │ ├── asaferror.json │ │ ├── cantconnecttohost.json │ │ ├── datanotallowed.json │ │ ├── equatable-implementations.json │ │ ├── error-implementations.json │ │ ├── localizeddescription.json │ │ ├── nointernetconnection.json │ │ └── timeout.json │ │ ├── baseurlcachereadererror.json │ │ ├── baseurlcachereadererror │ │ ├── !=(_:_:).json │ │ ├── asaferror.json │ │ ├── cantcasttojson.json │ │ ├── cantloaddatafromcache.json │ │ ├── cantserializejson.json │ │ ├── equatable-implementations.json │ │ ├── error-implementations.json │ │ └── localizeddescription.json │ │ ├── cancellabletask.json │ │ ├── cancellabletask │ │ └── cancel().json │ │ ├── chainbuilder.json │ │ ├── chainbuilder │ │ ├── add(provider:).json │ │ ├── build()-36597.json │ │ ├── build()-5c7qf.json │ │ ├── build()-78200.json │ │ ├── build()-9ggos.json │ │ ├── build()-9rmnl.json │ │ ├── builddataloading()-36w4o.json │ │ ├── builddataloading()-88wft.json │ │ ├── encode(as:).json │ │ ├── route(_:_:).json │ │ ├── route.json │ │ └── set(metadata:).json │ │ ├── chainconfigbuilder.json │ │ ├── chainconfigbuilder │ │ ├── set(arrayencodingstrategy:).json │ │ ├── set(boolencodingstartegy:).json │ │ ├── set(dictencodindstrategy:).json │ │ └── set(query:).json │ │ ├── combinecompatiblenode.json │ │ ├── combinecompatiblenode │ │ ├── i.json │ │ ├── noderesultpublisher().json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:)-34z2f.json │ │ ├── noderesultpublisher(for:on:logcontext:)-9k894.json │ │ ├── noderesultpublisher(logcontext:).json │ │ ├── noderesultpublisher(on:).json │ │ ├── noderesultpublisher(on:logcontext:).json │ │ └── o.json │ │ ├── dataloadingresponseprocessor.json │ │ ├── dataloadingresponseprocessor │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── dtoconvertible.json │ │ ├── dtodecodable.json │ │ ├── dtodecodable │ │ ├── dto.json │ │ └── from(dto:).json │ │ ├── dtoencodable.json │ │ ├── dtoencodable │ │ ├── dto.json │ │ └── todto().json │ │ ├── dtoencodernode.json │ │ ├── dtoencodernode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(rawencodable:).json │ │ ├── logviewobjectname.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher().json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── noderesultpublisher(logcontext:).json │ │ ├── noderesultpublisher(on:).json │ │ ├── noderesultpublisher(on:logcontext:).json │ │ ├── objectname.json │ │ ├── process().json │ │ ├── process(_:).json │ │ ├── process(_:logcontext:).json │ │ └── rawencodable.json │ │ ├── dtomappernode.json │ │ ├── dtomappernode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher().json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── noderesultpublisher(logcontext:).json │ │ ├── noderesultpublisher(on:).json │ │ ├── noderesultpublisher(on:logcontext:).json │ │ ├── objectname.json │ │ ├── process().json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── encodablerequestmodel.json │ │ ├── encodablerequestmodel │ │ ├── encoding.json │ │ ├── metadata.json │ │ ├── raw.json │ │ └── route.json │ │ ├── entryinputdtooutputnode.json │ │ ├── entryinputdtooutputnode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher().json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── noderesultpublisher(logcontext:).json │ │ ├── noderesultpublisher(on:).json │ │ ├── noderesultpublisher(on:logcontext:).json │ │ ├── objectname.json │ │ ├── process().json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── errorarrayjsonmappiong.json │ │ ├── errorarrayjsonmappiong │ │ ├── asaferror.json │ │ ├── cantfindkeyinraw(_:).json │ │ ├── error-implementations.json │ │ └── localizeddescription.json │ │ ├── etagconstants.json │ │ ├── etagconstants │ │ ├── etagrequestheaderkey.json │ │ └── etagresponseheaderkey.json │ │ ├── foundation.json │ │ ├── foundation │ │ ├── characterset.json │ │ ├── characterset │ │ │ └── afurlqueryallowed.json │ │ ├── url.json │ │ └── url │ │ │ ├── url().json │ │ │ ├── urlrouteprovider-implementations.json │ │ │ └── withorderedquery().json │ │ ├── headerinjectornode.json │ │ ├── headerinjectornode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── headers.json │ │ ├── init(next:headers:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── ifconnectionfailedfromcachenode.json │ │ ├── ifconnectionfailedfromcachenode │ │ ├── asyncnode-implementations.json │ │ ├── cachereadernode.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:cachereadernode:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── json.json │ │ ├── jsonencoding.json │ │ ├── jsonencoding │ │ ├── default.json │ │ ├── encode(urlparameters:parameters:).json │ │ ├── init(options:).json │ │ ├── options.json │ │ └── prettyprinted.json │ │ ├── log.json │ │ ├── log │ │ ├── +=(_:_:).json │ │ ├── add(message:).json │ │ ├── delimeter.json │ │ ├── description.json │ │ ├── id.json │ │ ├── init(_:id:delimeter:order:).json │ │ ├── message.json │ │ ├── next.json │ │ └── order.json │ │ ├── logable.json │ │ ├── logable │ │ ├── add(message:).json │ │ ├── description.json │ │ ├── id.json │ │ ├── next.json │ │ └── order.json │ │ ├── loggernode.json │ │ ├── loggernode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── filters.json │ │ ├── init(next:filters:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher().json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── noderesultpublisher(logcontext:).json │ │ ├── noderesultpublisher(on:).json │ │ ├── noderesultpublisher(on:logcontext:).json │ │ ├── objectname.json │ │ ├── process().json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── loggingcontext.json │ │ ├── loggingcontext │ │ ├── actor-implementations.json │ │ ├── add(_:).json │ │ ├── assertisolated(_:file:line:).json │ │ ├── assumeisolated(_:file:line:).json │ │ ├── log.json │ │ └── preconditionisolated(_:file:line:).json │ │ ├── loggingcontextprotocol.json │ │ ├── loggingcontextprotocol │ │ ├── add(_:).json │ │ └── log.json │ │ ├── logorder.json │ │ ├── logorder │ │ ├── dtomappernode.json │ │ ├── requestcreatornode.json │ │ ├── requestencodingnode.json │ │ ├── requestsendernode.json │ │ ├── responsedataparsernode.json │ │ ├── responsedatapreprocessornode.json │ │ ├── responsehttperrorprocessornode.json │ │ ├── responseprocessornode.json │ │ ├── voidionode.json │ │ └── voidoutputnode.json │ │ ├── mappingutils.json │ │ ├── mappingutils │ │ └── arrayjsonkey.json │ │ ├── metadataconnectornode.json │ │ ├── metadataconnectornode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:metadata:).json │ │ ├── logviewobjectname.json │ │ ├── metadata.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher().json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── noderesultpublisher(logcontext:).json │ │ ├── noderesultpublisher(on:).json │ │ ├── noderesultpublisher(on:logcontext:).json │ │ ├── objectname.json │ │ ├── process().json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── metadataprovider.json │ │ ├── metadataprovider │ │ └── metadata().json │ │ ├── method.json │ │ ├── method │ │ ├── !=(_:_:).json │ │ ├── connect.json │ │ ├── delete.json │ │ ├── equatable-implementations.json │ │ ├── get.json │ │ ├── hash(into:).json │ │ ├── hashvalue.json │ │ ├── head.json │ │ ├── init(rawvalue:).json │ │ ├── options.json │ │ ├── patch.json │ │ ├── post.json │ │ ├── put.json │ │ ├── rawrepresentable-implementations.json │ │ └── trace.json │ │ ├── modelinputnode.json │ │ ├── modelinputnode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher().json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── noderesultpublisher(logcontext:).json │ │ ├── noderesultpublisher(on:).json │ │ ├── noderesultpublisher(on:logcontext:).json │ │ ├── objectname.json │ │ ├── process().json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── multipartfileprovider.json │ │ ├── multipartfileprovider │ │ ├── customwithurl(url:filename:mimetype:).json │ │ ├── data(data:filename:mimetype:).json │ │ └── url(url:).json │ │ ├── multipartformdatafactory.json │ │ ├── multipartformdatafactory │ │ └── produce().json │ │ ├── multipartmodel.json │ │ ├── multipartmodel │ │ ├── dtodecodable-implementations.json │ │ ├── dtoencodable-implementations.json │ │ ├── files.json │ │ ├── from(dto:).json │ │ ├── from(raw:).json │ │ ├── init(payloadmodel:).json │ │ ├── init(payloadmodel:files:).json │ │ ├── payloadmodel.json │ │ ├── raw.json │ │ ├── rawdecodable-implementations.json │ │ ├── rawencodable-implementations.json │ │ ├── todto().json │ │ └── toraw().json │ │ ├── multipartrequestcreatornode.json │ │ ├── multipartrequestcreatornode │ │ ├── append(multipartform:with:).json │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:multipartformdatafactory:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── multiparturlrequest.json │ │ ├── multiparturlrequest │ │ ├── data.json │ │ ├── headers.json │ │ ├── init(method:url:headers:data:).json │ │ ├── method.json │ │ └── url.json │ │ ├── multiparturlrequesttrasformatornode.json │ │ ├── multiparturlrequesttrasformatornode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:method:).json │ │ ├── logviewobjectname.json │ │ ├── method.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── node.json │ │ ├── node │ │ ├── logviewobjectname.json │ │ └── objectname.json │ │ ├── nodedataresponse.json │ │ ├── nodedataresponse │ │ ├── result.json │ │ ├── urlrequest.json │ │ └── urlresponse.json │ │ ├── noderesult.json │ │ ├── parameterencoding.json │ │ ├── parameterencoding │ │ └── encode(urlparameters:parameters:).json │ │ ├── parameters.json │ │ ├── parametersencoding.json │ │ ├── parametersencoding │ │ ├── !=(_:_:).json │ │ ├── equatable-implementations.json │ │ ├── formurl.json │ │ ├── json.json │ │ ├── raw.json │ │ └── urlquery.json │ │ ├── rawdecodable.json │ │ ├── rawdecodable │ │ ├── from(raw:)-8fypw.json │ │ ├── from(raw:)-972w2.json │ │ └── raw.json │ │ ├── rawencodable.json │ │ ├── rawencodable │ │ ├── raw.json │ │ ├── toraw()-153t9.json │ │ └── toraw()-30gim.json │ │ ├── rawencodernode.json │ │ ├── rawencodernode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher().json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── noderesultpublisher(logcontext:).json │ │ ├── noderesultpublisher(on:).json │ │ ├── noderesultpublisher(on:logcontext:).json │ │ ├── objectname.json │ │ ├── process().json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── rawmappable.json │ │ ├── rawmappablecodableerror.json │ │ ├── rawmappablecodableerror │ │ ├── !=(_:_:).json │ │ ├── asaferror.json │ │ ├── cantmapobjecttoraw.json │ │ ├── equatable-implementations.json │ │ ├── error-implementations.json │ │ └── localizeddescription.json │ │ ├── rawurlrequest.json │ │ ├── rawurlrequest │ │ ├── datarequest.json │ │ ├── init(datarequest:).json │ │ └── tourlrequest().json │ │ ├── requestcreatornode.json │ │ ├── requestcreatornode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:providers:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ ├── process(_:logcontext:).json │ │ └── providers.json │ │ ├── requestencodernode.json │ │ ├── requestencodernode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── encoding.json │ │ ├── erasetoanynode().json │ │ ├── init(next:encoding:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── nextnode.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── requestencodingmodel.json │ │ ├── requestencodingmodel │ │ ├── encoding.json │ │ ├── init(urlparameters:raw:encoding:).json │ │ ├── raw.json │ │ └── urlparameters.json │ │ ├── requestmodel.json │ │ ├── requestmodel │ │ ├── metadata.json │ │ └── raw.json │ │ ├── requestprocessinglayernode.json │ │ ├── requestrouternode.json │ │ ├── requestrouternode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:route:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── nextnode.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ ├── process(_:logcontext:).json │ │ └── route.json │ │ ├── requestsendernode.json │ │ ├── requestsendernode │ │ ├── asyncnode-implementations.json │ │ ├── cancel(logcontext:).json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(rawresponseprocessor:datataskactor:manager:).json │ │ ├── logviewobjectname.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ ├── process(_:logcontext:).json │ │ ├── rawresponseprocessor-swift.property.json │ │ └── rawresponseprocessor-swift.typealias.json │ │ ├── responsedataparsernode.json │ │ ├── responsedataparsernode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:).json │ │ ├── json(from:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── responsedataparsernodeerror.json │ │ ├── responsedataparsernodeerror │ │ ├── asaferror.json │ │ ├── cantcastdesirializeddatatojson(_:).json │ │ ├── cantdeserializejson(_:).json │ │ ├── error-implementations.json │ │ └── localizeddescription.json │ │ ├── responsedatapreprocessornode.json │ │ ├── responsedatapreprocessornode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── responsehttperrorprocessornode.json │ │ ├── responsehttperrorprocessornode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── httperror.json │ │ ├── init(next:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── responsehttperrorprocessornodeerror.json │ │ ├── responsehttperrorprocessornodeerror │ │ ├── asaferror.json │ │ ├── badrequest(_:).json │ │ ├── error-implementations.json │ │ ├── forbidden(_:).json │ │ ├── internalservererror(_:).json │ │ ├── localizeddescription.json │ │ ├── notfound.json │ │ └── unauthorized(_:).json │ │ ├── responsepostprocessorlayernode.json │ │ ├── responseprocessinglayernode.json │ │ ├── responseprocessornode.json │ │ ├── responseprocessornode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── responseprocessornodeerror.json │ │ ├── responseprocessornodeerror │ │ ├── !=(_:_:).json │ │ ├── asaferror.json │ │ ├── equatable-implementations.json │ │ ├── error-implementations.json │ │ ├── localizeddescription.json │ │ └── rawresponsenothavemetadata.json │ │ ├── routablerequestmodel.json │ │ ├── routablerequestmodel │ │ ├── metadata.json │ │ ├── raw.json │ │ └── route.json │ │ ├── serverrequestsmanager.json │ │ ├── serverrequestsmanager │ │ ├── manager.json │ │ └── shared.json │ │ ├── servicechainprovider.json │ │ ├── servicechainprovider │ │ ├── providerequestdatachain(with:).json │ │ ├── providerequestjsonchain(with:).json │ │ └── providerequestmultipartchain().json │ │ ├── statestorable.json │ │ ├── statestorable │ │ ├── clearstates().json │ │ ├── restorestate().json │ │ └── savestate().json │ │ ├── swift.json │ │ ├── swift │ │ ├── array.json │ │ ├── array │ │ │ ├── dto.json │ │ │ ├── dtodecodable-implementations.json │ │ │ ├── dtoencodable-implementations.json │ │ │ ├── from(dto:).json │ │ │ ├── from(raw:).json │ │ │ ├── rawdecodable-implementations.json │ │ │ ├── rawencodable-implementations.json │ │ │ ├── todto().json │ │ │ └── toraw().json │ │ ├── dictionary.json │ │ ├── dictionary │ │ │ ├── dto.json │ │ │ ├── dtodecodable-implementations.json │ │ │ ├── dtoencodable-implementations.json │ │ │ ├── from(dto:).json │ │ │ ├── from(raw:)-311kg.json │ │ │ ├── from(raw:)-g0s3.json │ │ │ ├── rawdecodable-implementations.json │ │ │ ├── rawencodable-implementations.json │ │ │ ├── todto().json │ │ │ ├── toraw()-2j7bl.json │ │ │ └── toraw()-3zzm7.json │ │ ├── optional.json │ │ ├── optional │ │ │ ├── +(_:_:).json │ │ │ ├── from(dto:).json │ │ │ └── from(raw:).json │ │ ├── result.json │ │ ├── result │ │ │ ├── asyncflatmap(_:).json │ │ │ ├── asyncflatmaperror(_:).json │ │ │ ├── error.json │ │ │ ├── map(_:).json │ │ │ ├── value.json │ │ │ ├── withcheckedcancellation(_:).json │ │ │ └── withmappedexceptions(_:_:).json │ │ ├── string.json │ │ └── string │ │ │ └── linetabdeilimeter.json │ │ ├── technicaerrormappernode.json │ │ ├── technicaerrormappernode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── tokenrefresheractorprotocol.json │ │ ├── tokenrefresheractorprotocol │ │ └── refresh(logcontext:).json │ │ ├── tokenrefreshernode.json │ │ ├── tokenrefreshernode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(tokenrefreshchain:).json │ │ ├── init(tokenrefresheractor:).json │ │ ├── logviewobjectname.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher().json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── noderesultpublisher(logcontext:).json │ │ ├── noderesultpublisher(on:).json │ │ ├── noderesultpublisher(on:logcontext:).json │ │ ├── objectname.json │ │ ├── process().json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── transportlayernode.json │ │ ├── transporturlparameters.json │ │ ├── transporturlparameters │ │ ├── headers.json │ │ ├── init(method:url:headers:).json │ │ ├── method.json │ │ └── url.json │ │ ├── transporturlrequest.json │ │ ├── transporturlrequest │ │ ├── headers.json │ │ ├── init(method:url:headers:raw:).json │ │ ├── init(with:raw:).json │ │ ├── method.json │ │ ├── raw.json │ │ └── url.json │ │ ├── urlcachereadernode.json │ │ ├── urlcachereadernode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── logviewobjectname.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── urlcachewriternode.json │ │ ├── urlcachewriternode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init().json │ │ ├── logviewobjectname.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── urlchainbuilder.json │ │ ├── urlchainbuilder │ │ ├── add(provider:).json │ │ ├── build()-48qf9.json │ │ ├── build()-4q4yd.json │ │ ├── build()-5r4dy.json │ │ ├── build()-6nvql.json │ │ ├── build()-9dwl0.json │ │ ├── builddataloading()-3c99j.json │ │ ├── builddataloading()-6uznv.json │ │ ├── config.json │ │ ├── encode(as:).json │ │ ├── encoding.json │ │ ├── headersproviders.json │ │ ├── init(servicechainprovider:config:logfilter:).json │ │ ├── logfilter.json │ │ ├── metadata.json │ │ ├── metadataconnectorchain(root:)-1mz2j.json │ │ ├── metadataconnectorchain(root:)-40n3.json │ │ ├── method.json │ │ ├── requestrouternode(root:).json │ │ ├── route(_:_:).json │ │ ├── route.json │ │ ├── servicechainprovider.json │ │ ├── set(arrayencodingstrategy:).json │ │ ├── set(boolencodingstartegy:).json │ │ ├── set(dictencodindstrategy:).json │ │ ├── set(metadata:).json │ │ └── set(query:).json │ │ ├── urlchainconfigmodel.json │ │ ├── urlchainconfigmodel │ │ ├── encoding.json │ │ ├── init(method:route:metadata:encoding:).json │ │ ├── metadata.json │ │ ├── method.json │ │ └── route.json │ │ ├── urldataresponse.json │ │ ├── urldataresponse │ │ ├── !=(_:_:).json │ │ ├── data.json │ │ ├── equatable-implementations.json │ │ ├── init(request:response:data:).json │ │ ├── request.json │ │ └── response.json │ │ ├── urlencoding.json │ │ ├── urlencoding │ │ ├── arrayencoding-swift.enum.json │ │ ├── arrayencoding-swift.enum │ │ │ ├── !=(_:_:).json │ │ │ ├── brackets.json │ │ │ ├── equatable-implementations.json │ │ │ └── nobrackets.json │ │ ├── arrayencoding-swift.property.json │ │ ├── boolencoding-swift.enum.json │ │ ├── boolencoding-swift.enum │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── literal.json │ │ │ └── numeric.json │ │ ├── boolencoding-swift.property.json │ │ ├── default.json │ │ ├── destination-swift.enum.json │ │ ├── destination-swift.enum │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── httpbody.json │ │ │ ├── methoddependent.json │ │ │ └── querystring.json │ │ ├── destination-swift.property.json │ │ ├── encode(urlparameters:parameters:).json │ │ ├── escape(_:).json │ │ ├── httpbody.json │ │ ├── init(destination:arrayencoding:boolencoding:).json │ │ ├── querycomponents(fromkey:value:).json │ │ └── querystring.json │ │ ├── urletagreadernode.json │ │ ├── urletagreadernode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── etagheaderkey.json │ │ ├── init(next:etagheaderkey:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── urletagsavernode.json │ │ ├── urletagsavernode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── etagheaderkey.json │ │ ├── init(next:etagheaderkey:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── urljsonrequestencodingnode.json │ │ ├── urljsonrequestencodingnode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── urlnetworkrequest.json │ │ ├── urlnetworkrequest │ │ ├── init(urlrequest:).json │ │ └── urlrequest.json │ │ ├── urlnotmodifiedtriggernode.json │ │ ├── urlnotmodifiedtriggernode │ │ ├── asyncnode-implementations.json │ │ ├── cachereader.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:cachereader:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── urlprocessedresponse.json │ │ ├── urlprocessedresponse │ │ ├── data.json │ │ ├── init(dataresponse:json:).json │ │ ├── json.json │ │ ├── request.json │ │ └── response.json │ │ ├── urlqueryarraykeyencodingbracketsstartegy.json │ │ ├── urlqueryarraykeyencodingbracketsstartegy │ │ ├── !=(_:_:).json │ │ ├── brackets.json │ │ ├── encode(value:).json │ │ ├── equatable-implementations.json │ │ └── nobrackets.json │ │ ├── urlqueryarraykeyencodingstartegy.json │ │ ├── urlqueryarraykeyencodingstartegy │ │ └── encode(value:).json │ │ ├── urlqueryboolencodingdefaultstartegy.json │ │ ├── urlqueryboolencodingdefaultstartegy │ │ ├── !=(_:_:).json │ │ ├── asbool.json │ │ ├── asint.json │ │ ├── encode(value:).json │ │ └── equatable-implementations.json │ │ ├── urlqueryboolencodingstartegy.json │ │ ├── urlqueryboolencodingstartegy │ │ └── encode(value:).json │ │ ├── urlqueryconfigmodel.json │ │ ├── urlqueryconfigmodel │ │ ├── arrayencodingstrategy.json │ │ ├── boolencodingstartegy.json │ │ ├── dictencodindstrategy.json │ │ ├── init(query:).json │ │ ├── init(query:boolencodingstartegy:arrayencodingstrategy:dictencodindstrategy:).json │ │ └── query.json │ │ ├── urlquerydictionarykeyencodingdefaultstrategy.json │ │ ├── urlquerydictionarykeyencodingdefaultstrategy │ │ └── encode(queryitemname:dictionarykey:).json │ │ ├── urlquerydictionarykeyencodingstrategy.json │ │ ├── urlquerydictionarykeyencodingstrategy │ │ └── encode(queryitemname:dictionarykey:).json │ │ ├── urlqueryinjectornode.json │ │ ├── urlqueryinjectornode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── config.json │ │ ├── erasetoanynode().json │ │ ├── init(next:config:).json │ │ ├── logviewobjectname.json │ │ ├── makequerycomponents(from:by:).json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── nodeerror.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── urlqueryinjectornodeerror.json │ │ ├── urlqueryinjectornodeerror │ │ ├── !=(_:_:).json │ │ ├── asaferror.json │ │ ├── cantcreateurlcomponentsfromurlstring.json │ │ ├── cantcreateurlfromurlcomponents.json │ │ ├── equatable-implementations.json │ │ ├── error-implementations.json │ │ └── localizeddescription.json │ │ ├── urlrequesttrasformatornode.json │ │ ├── urlrequesttrasformatornode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:method:).json │ │ ├── logviewobjectname.json │ │ ├── method.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── objectname.json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── urlrouteerror.json │ │ ├── urlrouteerror │ │ ├── !=(_:_:).json │ │ ├── asaferror.json │ │ ├── cantbuildurl.json │ │ ├── equatable-implementations.json │ │ ├── error-implementations.json │ │ └── localizeddescription.json │ │ ├── urlrouteprovider.json │ │ ├── urlrouteprovider │ │ └── url().json │ │ ├── urlservicechainprovider.json │ │ ├── urlservicechainprovider │ │ ├── init(session:).json │ │ ├── providerequestdatachain(with:).json │ │ ├── providerequestjsonchain(with:).json │ │ ├── providerequestmultipartchain().json │ │ ├── provideresponsedatachain().json │ │ ├── provideresponsejsonchain().json │ │ ├── provideresponsemultipartchain().json │ │ └── session.json │ │ ├── urlsessiondatataskactor.json │ │ ├── urlsessiondatataskactor │ │ ├── actor-implementations.json │ │ ├── assertisolated(_:file:line:).json │ │ ├── assumeisolated(_:file:line:).json │ │ ├── canceltask().json │ │ ├── preconditionisolated(_:file:line:).json │ │ └── store(task:).json │ │ ├── urlsessiondatataskactorprotocol.json │ │ ├── urlsessiondatataskactorprotocol │ │ ├── canceltask().json │ │ └── store(task:).json │ │ ├── voidinputnode.json │ │ ├── voidinputnode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── init(next:).json │ │ ├── logviewobjectname.json │ │ ├── next.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher().json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── noderesultpublisher(logcontext:).json │ │ ├── noderesultpublisher(on:).json │ │ ├── noderesultpublisher(on:logcontext:).json │ │ ├── objectname.json │ │ ├── process().json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── voidionode.json │ │ ├── voidionode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── logviewobjectname.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher().json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── noderesultpublisher(logcontext:).json │ │ ├── noderesultpublisher(on:).json │ │ ├── noderesultpublisher(on:logcontext:).json │ │ ├── objectname.json │ │ ├── process().json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json │ │ ├── voidoutputnode.json │ │ └── voidoutputnode │ │ ├── asyncnode-implementations.json │ │ ├── combinecompatiblenode-implementations.json │ │ ├── erasetoanynode().json │ │ ├── logviewobjectname.json │ │ ├── node-implementations.json │ │ ├── noderesultpublisher().json │ │ ├── noderesultpublisher(for:).json │ │ ├── noderesultpublisher(for:logcontext:).json │ │ ├── noderesultpublisher(for:on:).json │ │ ├── noderesultpublisher(for:on:logcontext:).json │ │ ├── noderesultpublisher(logcontext:).json │ │ ├── noderesultpublisher(on:).json │ │ ├── noderesultpublisher(on:logcontext:).json │ │ ├── objectname.json │ │ ├── process().json │ │ ├── process(_:).json │ │ └── process(_:logcontext:).json ├── developer-og-twitter.jpg ├── developer-og.jpg ├── documentation │ └── nodekit │ │ ├── aborter │ │ ├── cancel(logcontext:) │ │ │ └── index.html │ │ └── index.html │ │ ├── aborternode │ │ ├── aborter │ │ │ └── index.html │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:aborter:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher() │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process() │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── accesssafenode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:updatetokenchain:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ ├── process(_:logcontext:) │ │ │ └── index.html │ │ └── updatetokenchain │ │ │ └── index.html │ │ ├── accesssafenodeerror │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── asaferror │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── error-implementations │ │ │ └── index.html │ │ ├── index.html │ │ ├── localizeddescription │ │ │ └── index.html │ │ └── nodewasrelease │ │ │ └── index.html │ │ ├── alamofiremultipartformdatafactory │ │ ├── index.html │ │ ├── init() │ │ │ └── index.html │ │ └── produce() │ │ │ └── index.html │ │ ├── anyasyncnode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher() │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process() │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── asynciterator │ │ ├── hasnext() │ │ │ └── index.html │ │ ├── index.html │ │ ├── next() │ │ │ └── index.html │ │ ├── renew() │ │ │ └── index.html │ │ └── value │ │ │ └── index.html │ │ ├── asyncnode │ │ ├── erasetoanynode()-7rdro │ │ │ └── index.html │ │ ├── erasetoanynode()-9q4vf │ │ │ └── index.html │ │ ├── index.html │ │ ├── input │ │ │ └── index.html │ │ ├── output │ │ │ └── index.html │ │ ├── process() │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── asyncpagerdata │ │ ├── index.html │ │ ├── init(value:len:) │ │ │ └── index.html │ │ ├── len │ │ │ └── index.html │ │ └── value │ │ │ └── index.html │ │ ├── asyncpagerdataprovider │ │ ├── index.html │ │ ├── provide(for:with:) │ │ │ └── index.html │ │ └── value │ │ │ └── index.html │ │ ├── asyncpageriterator │ │ ├── actor-implementations │ │ │ └── index.html │ │ ├── assertisolated(_:file:line:) │ │ │ └── index.html │ │ ├── assumeisolated(_:file:line:) │ │ │ └── index.html │ │ ├── clearstates() │ │ │ └── index.html │ │ ├── hasnext() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(dataprovider:pagesize:) │ │ │ └── index.html │ │ ├── next() │ │ │ └── index.html │ │ ├── preconditionisolated(_:file:line:) │ │ │ └── index.html │ │ ├── renew() │ │ │ └── index.html │ │ ├── restorestate() │ │ │ └── index.html │ │ └── savestate() │ │ │ └── index.html │ │ ├── basetechnicalerror │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── asaferror │ │ │ └── index.html │ │ ├── cantconnecttohost │ │ │ └── index.html │ │ ├── datanotallowed │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── error-implementations │ │ │ └── index.html │ │ ├── index.html │ │ ├── localizeddescription │ │ │ └── index.html │ │ ├── nointernetconnection │ │ │ └── index.html │ │ └── timeout │ │ │ └── index.html │ │ ├── baseurlcachereadererror │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── asaferror │ │ │ └── index.html │ │ ├── cantcasttojson │ │ │ └── index.html │ │ ├── cantloaddatafromcache │ │ │ └── index.html │ │ ├── cantserializejson │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── error-implementations │ │ │ └── index.html │ │ ├── index.html │ │ └── localizeddescription │ │ │ └── index.html │ │ ├── cancellabletask │ │ ├── cancel() │ │ │ └── index.html │ │ └── index.html │ │ ├── chainbuilder │ │ ├── add(provider:) │ │ │ └── index.html │ │ ├── build()-36597 │ │ │ └── index.html │ │ ├── build()-5c7qf │ │ │ └── index.html │ │ ├── build()-78200 │ │ │ └── index.html │ │ ├── build()-9ggos │ │ │ └── index.html │ │ ├── build()-9rmnl │ │ │ └── index.html │ │ ├── builddataloading()-36w4o │ │ │ └── index.html │ │ ├── builddataloading()-88wft │ │ │ └── index.html │ │ ├── encode(as:) │ │ │ └── index.html │ │ ├── index.html │ │ ├── route(_:_:) │ │ │ └── index.html │ │ ├── route │ │ │ └── index.html │ │ └── set(metadata:) │ │ │ └── index.html │ │ ├── chainconfigbuilder │ │ ├── index.html │ │ ├── set(arrayencodingstrategy:) │ │ │ └── index.html │ │ ├── set(boolencodingstartegy:) │ │ │ └── index.html │ │ ├── set(dictencodindstrategy:) │ │ │ └── index.html │ │ └── set(query:) │ │ │ └── index.html │ │ ├── combinecompatiblenode │ │ ├── i │ │ │ └── index.html │ │ ├── index.html │ │ ├── noderesultpublisher() │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:)-34z2f │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:)-9k894 │ │ │ └── index.html │ │ ├── noderesultpublisher(logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:logcontext:) │ │ │ └── index.html │ │ └── o │ │ │ └── index.html │ │ ├── dataloadingresponseprocessor │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── dtoconvertible │ │ └── index.html │ │ ├── dtodecodable │ │ ├── dto │ │ │ └── index.html │ │ ├── from(dto:) │ │ │ └── index.html │ │ └── index.html │ │ ├── dtoencodable │ │ ├── dto │ │ │ └── index.html │ │ ├── index.html │ │ └── todto() │ │ │ └── index.html │ │ ├── dtoencodernode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(rawencodable:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher() │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process() │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ ├── process(_:logcontext:) │ │ │ └── index.html │ │ └── rawencodable │ │ │ └── index.html │ │ ├── dtomappernode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher() │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process() │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── encodablerequestmodel │ │ ├── encoding │ │ │ └── index.html │ │ ├── index.html │ │ ├── metadata │ │ │ └── index.html │ │ ├── raw │ │ │ └── index.html │ │ └── route │ │ │ └── index.html │ │ ├── entryinputdtooutputnode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher() │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process() │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── errorarrayjsonmappiong │ │ ├── asaferror │ │ │ └── index.html │ │ ├── cantfindkeyinraw(_:) │ │ │ └── index.html │ │ ├── error-implementations │ │ │ └── index.html │ │ ├── index.html │ │ └── localizeddescription │ │ │ └── index.html │ │ ├── etagconstants │ │ ├── etagrequestheaderkey │ │ │ └── index.html │ │ ├── etagresponseheaderkey │ │ │ └── index.html │ │ └── index.html │ │ ├── foundation │ │ ├── characterset │ │ │ ├── afurlqueryallowed │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── index.html │ │ └── url │ │ │ ├── index.html │ │ │ ├── url() │ │ │ └── index.html │ │ │ ├── urlrouteprovider-implementations │ │ │ └── index.html │ │ │ └── withorderedquery() │ │ │ └── index.html │ │ ├── headerinjectornode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── headers │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:headers:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── ifconnectionfailedfromcachenode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── cachereadernode │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:cachereadernode:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── index.html │ │ ├── json │ │ └── index.html │ │ ├── jsonencoding │ │ ├── default │ │ │ └── index.html │ │ ├── encode(urlparameters:parameters:) │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(options:) │ │ │ └── index.html │ │ ├── options │ │ │ └── index.html │ │ └── prettyprinted │ │ │ └── index.html │ │ ├── log │ │ ├── +=(_:_:) │ │ │ └── index.html │ │ ├── add(message:) │ │ │ └── index.html │ │ ├── delimeter │ │ │ └── index.html │ │ ├── description │ │ │ └── index.html │ │ ├── id │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(_:id:delimeter:order:) │ │ │ └── index.html │ │ ├── message │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ └── order │ │ │ └── index.html │ │ ├── logable │ │ ├── add(message:) │ │ │ └── index.html │ │ ├── description │ │ │ └── index.html │ │ ├── id │ │ │ └── index.html │ │ ├── index.html │ │ ├── next │ │ │ └── index.html │ │ └── order │ │ │ └── index.html │ │ ├── loggernode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── filters │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:filters:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher() │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process() │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── loggingcontext │ │ ├── actor-implementations │ │ │ └── index.html │ │ ├── add(_:) │ │ │ └── index.html │ │ ├── assertisolated(_:file:line:) │ │ │ └── index.html │ │ ├── assumeisolated(_:file:line:) │ │ │ └── index.html │ │ ├── index.html │ │ ├── log │ │ │ └── index.html │ │ └── preconditionisolated(_:file:line:) │ │ │ └── index.html │ │ ├── loggingcontextprotocol │ │ ├── add(_:) │ │ │ └── index.html │ │ ├── index.html │ │ └── log │ │ │ └── index.html │ │ ├── logorder │ │ ├── dtomappernode │ │ │ └── index.html │ │ ├── index.html │ │ ├── requestcreatornode │ │ │ └── index.html │ │ ├── requestencodingnode │ │ │ └── index.html │ │ ├── requestsendernode │ │ │ └── index.html │ │ ├── responsedataparsernode │ │ │ └── index.html │ │ ├── responsedatapreprocessornode │ │ │ └── index.html │ │ ├── responsehttperrorprocessornode │ │ │ └── index.html │ │ ├── responseprocessornode │ │ │ └── index.html │ │ ├── voidionode │ │ │ └── index.html │ │ └── voidoutputnode │ │ │ └── index.html │ │ ├── mappingutils │ │ ├── arrayjsonkey │ │ │ └── index.html │ │ └── index.html │ │ ├── metadataconnectornode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:metadata:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── metadata │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher() │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process() │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── metadataprovider │ │ ├── index.html │ │ └── metadata() │ │ │ └── index.html │ │ ├── method │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── connect │ │ │ └── index.html │ │ ├── delete │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── get │ │ │ └── index.html │ │ ├── hash(into:) │ │ │ └── index.html │ │ ├── hashvalue │ │ │ └── index.html │ │ ├── head │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(rawvalue:) │ │ │ └── index.html │ │ ├── options │ │ │ └── index.html │ │ ├── patch │ │ │ └── index.html │ │ ├── post │ │ │ └── index.html │ │ ├── put │ │ │ └── index.html │ │ ├── rawrepresentable-implementations │ │ │ └── index.html │ │ └── trace │ │ │ └── index.html │ │ ├── modelinputnode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher() │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process() │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── multipartfileprovider │ │ ├── customwithurl(url:filename:mimetype:) │ │ │ └── index.html │ │ ├── data(data:filename:mimetype:) │ │ │ └── index.html │ │ ├── index.html │ │ └── url(url:) │ │ │ └── index.html │ │ ├── multipartformdatafactory │ │ ├── index.html │ │ └── produce() │ │ │ └── index.html │ │ ├── multipartmodel │ │ ├── dtodecodable-implementations │ │ │ └── index.html │ │ ├── dtoencodable-implementations │ │ │ └── index.html │ │ ├── files │ │ │ └── index.html │ │ ├── from(dto:) │ │ │ └── index.html │ │ ├── from(raw:) │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(payloadmodel:) │ │ │ └── index.html │ │ ├── init(payloadmodel:files:) │ │ │ └── index.html │ │ ├── payloadmodel │ │ │ └── index.html │ │ ├── raw │ │ │ └── index.html │ │ ├── rawdecodable-implementations │ │ │ └── index.html │ │ ├── rawencodable-implementations │ │ │ └── index.html │ │ ├── todto() │ │ │ └── index.html │ │ └── toraw() │ │ │ └── index.html │ │ ├── multipartrequestcreatornode │ │ ├── append(multipartform:with:) │ │ │ └── index.html │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:multipartformdatafactory:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── multiparturlrequest │ │ ├── data │ │ │ └── index.html │ │ ├── headers │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(method:url:headers:data:) │ │ │ └── index.html │ │ ├── method │ │ │ └── index.html │ │ └── url │ │ │ └── index.html │ │ ├── multiparturlrequesttrasformatornode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:method:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── method │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── node │ │ ├── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ └── objectname │ │ │ └── index.html │ │ ├── nodedataresponse │ │ ├── index.html │ │ ├── result │ │ │ └── index.html │ │ ├── urlrequest │ │ │ └── index.html │ │ └── urlresponse │ │ │ └── index.html │ │ ├── noderesult │ │ └── index.html │ │ ├── parameterencoding │ │ ├── encode(urlparameters:parameters:) │ │ │ └── index.html │ │ └── index.html │ │ ├── parameters │ │ └── index.html │ │ ├── parametersencoding │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── formurl │ │ │ └── index.html │ │ ├── index.html │ │ ├── json │ │ │ └── index.html │ │ ├── raw │ │ │ └── index.html │ │ └── urlquery │ │ │ └── index.html │ │ ├── rawdecodable │ │ ├── from(raw:)-8fypw │ │ │ └── index.html │ │ ├── from(raw:)-972w2 │ │ │ └── index.html │ │ ├── index.html │ │ └── raw │ │ │ └── index.html │ │ ├── rawencodable │ │ ├── index.html │ │ ├── raw │ │ │ └── index.html │ │ ├── toraw()-153t9 │ │ │ └── index.html │ │ └── toraw()-30gim │ │ │ └── index.html │ │ ├── rawencodernode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher() │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process() │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── rawmappable │ │ └── index.html │ │ ├── rawmappablecodableerror │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── asaferror │ │ │ └── index.html │ │ ├── cantmapobjecttoraw │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── error-implementations │ │ │ └── index.html │ │ ├── index.html │ │ └── localizeddescription │ │ │ └── index.html │ │ ├── rawurlrequest │ │ ├── datarequest │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(datarequest:) │ │ │ └── index.html │ │ └── tourlrequest() │ │ │ └── index.html │ │ ├── requestcreatornode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:providers:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ ├── process(_:logcontext:) │ │ │ └── index.html │ │ └── providers │ │ │ └── index.html │ │ ├── requestencodernode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── encoding │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:encoding:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── nextnode │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── requestencodingmodel │ │ ├── encoding │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(urlparameters:raw:encoding:) │ │ │ └── index.html │ │ ├── raw │ │ │ └── index.html │ │ └── urlparameters │ │ │ └── index.html │ │ ├── requestmodel │ │ ├── index.html │ │ ├── metadata │ │ │ └── index.html │ │ └── raw │ │ │ └── index.html │ │ ├── requestprocessinglayernode │ │ └── index.html │ │ ├── requestrouternode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:route:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── nextnode │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ ├── process(_:logcontext:) │ │ │ └── index.html │ │ └── route │ │ │ └── index.html │ │ ├── requestsendernode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── cancel(logcontext:) │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(rawresponseprocessor:datataskactor:manager:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ ├── process(_:logcontext:) │ │ │ └── index.html │ │ ├── rawresponseprocessor-swift.property │ │ │ └── index.html │ │ └── rawresponseprocessor-swift.typealias │ │ │ └── index.html │ │ ├── responsedataparsernode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:) │ │ │ └── index.html │ │ ├── json(from:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── responsedataparsernodeerror │ │ ├── asaferror │ │ │ └── index.html │ │ ├── cantcastdesirializeddatatojson(_:) │ │ │ └── index.html │ │ ├── cantdeserializejson(_:) │ │ │ └── index.html │ │ ├── error-implementations │ │ │ └── index.html │ │ ├── index.html │ │ └── localizeddescription │ │ │ └── index.html │ │ ├── responsedatapreprocessornode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── responsehttperrorprocessornode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── httperror │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── responsehttperrorprocessornodeerror │ │ ├── asaferror │ │ │ └── index.html │ │ ├── badrequest(_:) │ │ │ └── index.html │ │ ├── error-implementations │ │ │ └── index.html │ │ ├── forbidden(_:) │ │ │ └── index.html │ │ ├── index.html │ │ ├── internalservererror(_:) │ │ │ └── index.html │ │ ├── localizeddescription │ │ │ └── index.html │ │ ├── notfound │ │ │ └── index.html │ │ └── unauthorized(_:) │ │ │ └── index.html │ │ ├── responsepostprocessorlayernode │ │ └── index.html │ │ ├── responseprocessinglayernode │ │ └── index.html │ │ ├── responseprocessornode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── responseprocessornodeerror │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── asaferror │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── error-implementations │ │ │ └── index.html │ │ ├── index.html │ │ ├── localizeddescription │ │ │ └── index.html │ │ └── rawresponsenothavemetadata │ │ │ └── index.html │ │ ├── routablerequestmodel │ │ ├── index.html │ │ ├── metadata │ │ │ └── index.html │ │ ├── raw │ │ │ └── index.html │ │ └── route │ │ │ └── index.html │ │ ├── serverrequestsmanager │ │ ├── index.html │ │ ├── manager │ │ │ └── index.html │ │ └── shared │ │ │ └── index.html │ │ ├── servicechainprovider │ │ ├── index.html │ │ ├── providerequestdatachain(with:) │ │ │ └── index.html │ │ ├── providerequestjsonchain(with:) │ │ │ └── index.html │ │ └── providerequestmultipartchain() │ │ │ └── index.html │ │ ├── statestorable │ │ ├── clearstates() │ │ │ └── index.html │ │ ├── index.html │ │ ├── restorestate() │ │ │ └── index.html │ │ └── savestate() │ │ │ └── index.html │ │ ├── swift │ │ ├── array │ │ │ ├── dto │ │ │ │ └── index.html │ │ │ ├── dtodecodable-implementations │ │ │ │ └── index.html │ │ │ ├── dtoencodable-implementations │ │ │ │ └── index.html │ │ │ ├── from(dto:) │ │ │ │ └── index.html │ │ │ ├── from(raw:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── rawdecodable-implementations │ │ │ │ └── index.html │ │ │ ├── rawencodable-implementations │ │ │ │ └── index.html │ │ │ ├── todto() │ │ │ │ └── index.html │ │ │ └── toraw() │ │ │ │ └── index.html │ │ ├── dictionary │ │ │ ├── dto │ │ │ │ └── index.html │ │ │ ├── dtodecodable-implementations │ │ │ │ └── index.html │ │ │ ├── dtoencodable-implementations │ │ │ │ └── index.html │ │ │ ├── from(dto:) │ │ │ │ └── index.html │ │ │ ├── from(raw:)-311kg │ │ │ │ └── index.html │ │ │ ├── from(raw:)-g0s3 │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── rawdecodable-implementations │ │ │ │ └── index.html │ │ │ ├── rawencodable-implementations │ │ │ │ └── index.html │ │ │ ├── todto() │ │ │ │ └── index.html │ │ │ ├── toraw()-2j7bl │ │ │ │ └── index.html │ │ │ └── toraw()-3zzm7 │ │ │ │ └── index.html │ │ ├── index.html │ │ ├── optional │ │ │ ├── +(_:_:) │ │ │ │ └── index.html │ │ │ ├── from(dto:) │ │ │ │ └── index.html │ │ │ ├── from(raw:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── result │ │ │ ├── asyncflatmap(_:) │ │ │ │ └── index.html │ │ │ ├── asyncflatmaperror(_:) │ │ │ │ └── index.html │ │ │ ├── error │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── map(_:) │ │ │ │ └── index.html │ │ │ ├── value │ │ │ │ └── index.html │ │ │ ├── withcheckedcancellation(_:) │ │ │ │ └── index.html │ │ │ └── withmappedexceptions(_:_:) │ │ │ │ └── index.html │ │ └── string │ │ │ ├── index.html │ │ │ └── linetabdeilimeter │ │ │ └── index.html │ │ ├── technicaerrormappernode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── tokenrefresheractorprotocol │ │ ├── index.html │ │ └── refresh(logcontext:) │ │ │ └── index.html │ │ ├── tokenrefreshernode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(tokenrefreshchain:) │ │ │ └── index.html │ │ ├── init(tokenrefresheractor:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher() │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process() │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── transportlayernode │ │ └── index.html │ │ ├── transporturlparameters │ │ ├── headers │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(method:url:headers:) │ │ │ └── index.html │ │ ├── method │ │ │ └── index.html │ │ └── url │ │ │ └── index.html │ │ ├── transporturlrequest │ │ ├── headers │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(method:url:headers:raw:) │ │ │ └── index.html │ │ ├── init(with:raw:) │ │ │ └── index.html │ │ ├── method │ │ │ └── index.html │ │ ├── raw │ │ │ └── index.html │ │ └── url │ │ │ └── index.html │ │ ├── urlcachereadernode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── urlcachewriternode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init() │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── urlchainbuilder │ │ ├── add(provider:) │ │ │ └── index.html │ │ ├── build()-48qf9 │ │ │ └── index.html │ │ ├── build()-4q4yd │ │ │ └── index.html │ │ ├── build()-5r4dy │ │ │ └── index.html │ │ ├── build()-6nvql │ │ │ └── index.html │ │ ├── build()-9dwl0 │ │ │ └── index.html │ │ ├── builddataloading()-3c99j │ │ │ └── index.html │ │ ├── builddataloading()-6uznv │ │ │ └── index.html │ │ ├── config │ │ │ └── index.html │ │ ├── encode(as:) │ │ │ └── index.html │ │ ├── encoding │ │ │ └── index.html │ │ ├── headersproviders │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(servicechainprovider:config:logfilter:) │ │ │ └── index.html │ │ ├── logfilter │ │ │ └── index.html │ │ ├── metadata │ │ │ └── index.html │ │ ├── metadataconnectorchain(root:)-1mz2j │ │ │ └── index.html │ │ ├── metadataconnectorchain(root:)-40n3 │ │ │ └── index.html │ │ ├── method │ │ │ └── index.html │ │ ├── requestrouternode(root:) │ │ │ └── index.html │ │ ├── route(_:_:) │ │ │ └── index.html │ │ ├── route │ │ │ └── index.html │ │ ├── servicechainprovider │ │ │ └── index.html │ │ ├── set(arrayencodingstrategy:) │ │ │ └── index.html │ │ ├── set(boolencodingstartegy:) │ │ │ └── index.html │ │ ├── set(dictencodindstrategy:) │ │ │ └── index.html │ │ ├── set(metadata:) │ │ │ └── index.html │ │ └── set(query:) │ │ │ └── index.html │ │ ├── urlchainconfigmodel │ │ ├── encoding │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(method:route:metadata:encoding:) │ │ │ └── index.html │ │ ├── metadata │ │ │ └── index.html │ │ ├── method │ │ │ └── index.html │ │ └── route │ │ │ └── index.html │ │ ├── urldataresponse │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── data │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(request:response:data:) │ │ │ └── index.html │ │ ├── request │ │ │ └── index.html │ │ └── response │ │ │ └── index.html │ │ ├── urlencoding │ │ ├── arrayencoding-swift.enum │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── brackets │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── nobrackets │ │ │ │ └── index.html │ │ ├── arrayencoding-swift.property │ │ │ └── index.html │ │ ├── boolencoding-swift.enum │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── literal │ │ │ │ └── index.html │ │ │ └── numeric │ │ │ │ └── index.html │ │ ├── boolencoding-swift.property │ │ │ └── index.html │ │ ├── default │ │ │ └── index.html │ │ ├── destination-swift.enum │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── httpbody │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── methoddependent │ │ │ │ └── index.html │ │ │ └── querystring │ │ │ │ └── index.html │ │ ├── destination-swift.property │ │ │ └── index.html │ │ ├── encode(urlparameters:parameters:) │ │ │ └── index.html │ │ ├── escape(_:) │ │ │ └── index.html │ │ ├── httpbody │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(destination:arrayencoding:boolencoding:) │ │ │ └── index.html │ │ ├── querycomponents(fromkey:value:) │ │ │ └── index.html │ │ └── querystring │ │ │ └── index.html │ │ ├── urletagreadernode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── etagheaderkey │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:etagheaderkey:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── urletagsavernode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── etagheaderkey │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:etagheaderkey:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── urljsonrequestencodingnode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── urlnetworkrequest │ │ ├── index.html │ │ ├── init(urlrequest:) │ │ │ └── index.html │ │ └── urlrequest │ │ │ └── index.html │ │ ├── urlnotmodifiedtriggernode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── cachereader │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:cachereader:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── urlprocessedresponse │ │ ├── data │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(dataresponse:json:) │ │ │ └── index.html │ │ ├── json │ │ │ └── index.html │ │ ├── request │ │ │ └── index.html │ │ └── response │ │ │ └── index.html │ │ ├── urlqueryarraykeyencodingbracketsstartegy │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── brackets │ │ │ └── index.html │ │ ├── encode(value:) │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── index.html │ │ └── nobrackets │ │ │ └── index.html │ │ ├── urlqueryarraykeyencodingstartegy │ │ ├── encode(value:) │ │ │ └── index.html │ │ └── index.html │ │ ├── urlqueryboolencodingdefaultstartegy │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── asbool │ │ │ └── index.html │ │ ├── asint │ │ │ └── index.html │ │ ├── encode(value:) │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ └── index.html │ │ ├── urlqueryboolencodingstartegy │ │ ├── encode(value:) │ │ │ └── index.html │ │ └── index.html │ │ ├── urlqueryconfigmodel │ │ ├── arrayencodingstrategy │ │ │ └── index.html │ │ ├── boolencodingstartegy │ │ │ └── index.html │ │ ├── dictencodindstrategy │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(query:) │ │ │ └── index.html │ │ ├── init(query:boolencodingstartegy:arrayencodingstrategy:dictencodindstrategy:) │ │ │ └── index.html │ │ └── query │ │ │ └── index.html │ │ ├── urlquerydictionarykeyencodingdefaultstrategy │ │ ├── encode(queryitemname:dictionarykey:) │ │ │ └── index.html │ │ └── index.html │ │ ├── urlquerydictionarykeyencodingstrategy │ │ ├── encode(queryitemname:dictionarykey:) │ │ │ └── index.html │ │ └── index.html │ │ ├── urlqueryinjectornode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── config │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:config:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── makequerycomponents(from:by:) │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── nodeerror │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── urlqueryinjectornodeerror │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── asaferror │ │ │ └── index.html │ │ ├── cantcreateurlcomponentsfromurlstring │ │ │ └── index.html │ │ ├── cantcreateurlfromurlcomponents │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── error-implementations │ │ │ └── index.html │ │ ├── index.html │ │ └── localizeddescription │ │ │ └── index.html │ │ ├── urlrequesttrasformatornode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:method:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── method │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── urlrouteerror │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── asaferror │ │ │ └── index.html │ │ ├── cantbuildurl │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── error-implementations │ │ │ └── index.html │ │ ├── index.html │ │ └── localizeddescription │ │ │ └── index.html │ │ ├── urlrouteprovider │ │ ├── index.html │ │ └── url() │ │ │ └── index.html │ │ ├── urlservicechainprovider │ │ ├── index.html │ │ ├── init(session:) │ │ │ └── index.html │ │ ├── providerequestdatachain(with:) │ │ │ └── index.html │ │ ├── providerequestjsonchain(with:) │ │ │ └── index.html │ │ ├── providerequestmultipartchain() │ │ │ └── index.html │ │ ├── provideresponsedatachain() │ │ │ └── index.html │ │ ├── provideresponsejsonchain() │ │ │ └── index.html │ │ ├── provideresponsemultipartchain() │ │ │ └── index.html │ │ └── session │ │ │ └── index.html │ │ ├── urlsessiondatataskactor │ │ ├── actor-implementations │ │ │ └── index.html │ │ ├── assertisolated(_:file:line:) │ │ │ └── index.html │ │ ├── assumeisolated(_:file:line:) │ │ │ └── index.html │ │ ├── canceltask() │ │ │ └── index.html │ │ ├── index.html │ │ ├── preconditionisolated(_:file:line:) │ │ │ └── index.html │ │ └── store(task:) │ │ │ └── index.html │ │ ├── urlsessiondatataskactorprotocol │ │ ├── canceltask() │ │ │ └── index.html │ │ ├── index.html │ │ └── store(task:) │ │ │ └── index.html │ │ ├── voidinputnode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(next:) │ │ │ └── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── next │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher() │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process() │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ ├── voidionode │ │ ├── asyncnode-implementations │ │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ │ └── index.html │ │ ├── erasetoanynode() │ │ │ └── index.html │ │ ├── index.html │ │ ├── logviewobjectname │ │ │ └── index.html │ │ ├── node-implementations │ │ │ └── index.html │ │ ├── noderesultpublisher() │ │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(logcontext:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:) │ │ │ └── index.html │ │ ├── noderesultpublisher(on:logcontext:) │ │ │ └── index.html │ │ ├── objectname │ │ │ └── index.html │ │ ├── process() │ │ │ └── index.html │ │ ├── process(_:) │ │ │ └── index.html │ │ └── process(_:logcontext:) │ │ │ └── index.html │ │ └── voidoutputnode │ │ ├── asyncnode-implementations │ │ └── index.html │ │ ├── combinecompatiblenode-implementations │ │ └── index.html │ │ ├── erasetoanynode() │ │ └── index.html │ │ ├── index.html │ │ ├── logviewobjectname │ │ └── index.html │ │ ├── node-implementations │ │ └── index.html │ │ ├── noderesultpublisher() │ │ └── index.html │ │ ├── noderesultpublisher(for:) │ │ └── index.html │ │ ├── noderesultpublisher(for:logcontext:) │ │ └── index.html │ │ ├── noderesultpublisher(for:on:) │ │ └── index.html │ │ ├── noderesultpublisher(for:on:logcontext:) │ │ └── index.html │ │ ├── noderesultpublisher(logcontext:) │ │ └── index.html │ │ ├── noderesultpublisher(on:) │ │ └── index.html │ │ ├── noderesultpublisher(on:logcontext:) │ │ └── index.html │ │ ├── objectname │ │ └── index.html │ │ ├── process() │ │ └── index.html │ │ ├── process(_:) │ │ └── index.html │ │ └── process(_:logcontext:) │ │ └── index.html ├── favicon.ico ├── favicon.svg ├── img │ ├── added-icon.832a5d2c.svg │ ├── deprecated-icon.7bf1740a.svg │ └── modified-icon.efb2697d.svg ├── index.html ├── index │ └── index.json ├── js │ ├── 337.274a8ccc.js │ ├── 37.3cabdf6d.js │ ├── 523.3af1b2ef.js │ ├── 903.b3710a74.js │ ├── chunk-vendors.bdb7cbba.js │ ├── documentation-topic.f9ef3692.js │ ├── highlight-js-bash-js.702f0c5c.js │ ├── highlight-js-c-js.063069d3.js │ ├── highlight-js-cpp-js.458a9ae4.js │ ├── highlight-js-css-js.bfc4251f.js │ ├── highlight-js-custom-markdown.78c9f6ed.js │ ├── highlight-js-custom-swift.738731d1.js │ ├── highlight-js-diff-js.4db9a783.js │ ├── highlight-js-http-js.f78e83c2.js │ ├── highlight-js-java-js.4fe21e94.js │ ├── highlight-js-javascript-js.dfc9d16d.js │ ├── highlight-js-json-js.2a1856ba.js │ ├── highlight-js-llvm-js.26121771.js │ ├── highlight-js-markdown-js.a2f456af.js │ ├── highlight-js-objectivec-js.74dea052.js │ ├── highlight-js-perl-js.da6eda82.js │ ├── highlight-js-php-js.c458ffa4.js │ ├── highlight-js-python-js.60354774.js │ ├── highlight-js-ruby-js.7272231f.js │ ├── highlight-js-scss-js.adcd11a2.js │ ├── highlight-js-shell-js.0ad5b20f.js │ ├── highlight-js-swift-js.bdd5bff5.js │ ├── highlight-js-xml-js.0d78f903.js │ ├── index.2871ffbd.js │ ├── topic.2687cdff.js │ └── tutorials-overview.2eff1231.js └── metadata.json └── xcresultparser └── xcresultparser /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # CHANGELOG -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Assets.xcassets/Image.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Image.imageset/MkYC3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Assets.xcassets/Image.imageset/MkYC3-1.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Image.imageset/MkYC3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Assets.xcassets/Image.imageset/MkYC3.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Assets.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/logo.imageset/web trello-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Assets.xcassets/logo.imageset/web trello-1.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/logo.imageset/web trello-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Assets.xcassets/logo.imageset/web trello-2.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/logo.imageset/web trello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Assets.xcassets/logo.imageset/web trello.png -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Extensions/UIStoryboard+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Extensions/UIStoryboard+Extension.swift -------------------------------------------------------------------------------- /Example/Example/Features/GroupFeature/GroupConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Features/GroupFeature/GroupConfigurator.swift -------------------------------------------------------------------------------- /Example/Example/Features/GroupFeature/GroupPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Features/GroupFeature/GroupPresenter.swift -------------------------------------------------------------------------------- /Example/Example/Features/GroupFeature/GroupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Features/GroupFeature/GroupViewController.swift -------------------------------------------------------------------------------- /Example/Example/Flows/AuthFlow/Credentials.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Flows/AuthFlow/Credentials.swift -------------------------------------------------------------------------------- /Example/Example/Flows/AuthFlow/LoginConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Flows/AuthFlow/LoginConfigurator.swift -------------------------------------------------------------------------------- /Example/Example/Flows/AuthFlow/LoginPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Flows/AuthFlow/LoginPresenter.swift -------------------------------------------------------------------------------- /Example/Example/Flows/AuthFlow/LoginRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Flows/AuthFlow/LoginRouter.swift -------------------------------------------------------------------------------- /Example/Example/Flows/AuthFlow/LoginViewController.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Flows/AuthFlow/LoginViewController.storyboard -------------------------------------------------------------------------------- /Example/Example/Flows/AuthFlow/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Flows/AuthFlow/LoginViewController.swift -------------------------------------------------------------------------------- /Example/Example/Flows/FeatureListFlow/Cells/FeatureCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Flows/FeatureListFlow/Cells/FeatureCell.swift -------------------------------------------------------------------------------- /Example/Example/Flows/FeatureListFlow/Cells/FeatureCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Flows/FeatureListFlow/Cells/FeatureCell.xib -------------------------------------------------------------------------------- /Example/Example/Flows/FeatureListFlow/FeatureListPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Flows/FeatureListFlow/FeatureListPresenter.swift -------------------------------------------------------------------------------- /Example/Example/Flows/FeatureListFlow/FeatureListRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Flows/FeatureListFlow/FeatureListRouter.swift -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/Utils/ErrorRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Utils/ErrorRepresentable.swift -------------------------------------------------------------------------------- /Example/Example/Utils/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Utils/Message.swift -------------------------------------------------------------------------------- /Example/Example/Utils/Message.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Example/Utils/Message.xib -------------------------------------------------------------------------------- /Example/Modules/MockServer/MockServer/FakeChainBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Modules/MockServer/MockServer/FakeChainBuilder.swift -------------------------------------------------------------------------------- /Example/Modules/MockServer/MockServer/MockServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Modules/MockServer/MockServer/MockServer.swift -------------------------------------------------------------------------------- /Example/Modules/MockServer/MockServer/ServerConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Modules/MockServer/MockServer/ServerConstants.swift -------------------------------------------------------------------------------- /Example/Modules/MockServer/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Modules/MockServer/Package.swift -------------------------------------------------------------------------------- /Example/Modules/Models/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Modules/Models/Package.swift -------------------------------------------------------------------------------- /Example/Modules/Services/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Modules/Services/Package.swift -------------------------------------------------------------------------------- /Example/Modules/Services/Services/AuthService/AuthService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Modules/Services/Services/AuthService/AuthService.swift -------------------------------------------------------------------------------- /Example/Modules/Services/Services/URLProviders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Example/Modules/Services/Services/URLProviders.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Makefile -------------------------------------------------------------------------------- /NodeKit/NodeKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NodeKit/NodeKit/CacheNode/ETag/ETagConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/CacheNode/ETag/ETagConstants.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/CacheNode/ETag/URLETagReaderNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/CacheNode/ETag/URLETagReaderNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/CacheNode/ETag/URLETagSaverNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/CacheNode/ETag/URLETagSaverNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/CacheNode/FirstCachePolicyNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/CacheNode/FirstCachePolicyNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/CacheNode/IfServerFailsFromCacheNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/CacheNode/IfServerFailsFromCacheNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/CacheNode/URLCacheReaderNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/CacheNode/URLCacheReaderNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/CacheNode/URLCacheWriterNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/CacheNode/URLCacheWriterNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/CacheNode/URLNotModifiedTriggerNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/CacheNode/URLNotModifiedTriggerNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Chains/ChainBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Chains/ChainBuilder.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Chains/ServiceChainProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Chains/ServiceChainProvider.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Chains/URLChainConfigModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Chains/URLChainConfigModel.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Core/Convertion/DTOConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Core/Convertion/DTOConvertible.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Core/Convertion/Multipart/MultipartModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Core/Convertion/Multipart/MultipartModel.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Core/Convertion/RawMappable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Core/Convertion/RawMappable.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Core/Node/Async/AnyAsyncNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Core/Node/Async/AnyAsyncNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Core/Node/Async/AnyAsyncStreamNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Core/Node/Async/AnyAsyncStreamNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Core/Node/Async/AsyncNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Core/Node/Async/AsyncNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Core/Node/Async/AsyncStreamNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Core/Node/Async/AsyncStreamNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Core/Node/Combine/CombineCompatibleNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Core/Node/Combine/CombineCompatibleNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Core/Node/Node.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Core/Node/Node.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Core/Node/NodeResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Core/Node/NodeResult.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Encodings/Models/RequestEncodingModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Encodings/Models/RequestEncodingModel.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Encodings/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Encodings/ParameterEncoding.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Encodings/RequestEncodingNodeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Encodings/RequestEncodingNodeError.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Encodings/URLJsonRequestEncodingNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Encodings/URLJsonRequestEncodingNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Info.plist -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/DTOProcessingLayer/DTOMapperNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/DTOProcessingLayer/DTOMapperNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/DTOProcessingLayer/RawEncoderNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/DTOProcessingLayer/RawEncoderNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/DefaultLogOrder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/DefaultLogOrder.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/InputProcessingLayer/DTOEncoderNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/InputProcessingLayer/DTOEncoderNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/InputProcessingLayer/ModelInputNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/InputProcessingLayer/ModelInputNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/InputProcessingLayer/VoidIONode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/InputProcessingLayer/VoidIONode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/InputProcessingLayer/VoidInputNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/InputProcessingLayer/VoidInputNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/InputProcessingLayer/VoidOutputNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/InputProcessingLayer/VoidOutputNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/LayerTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/LayerTypes.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/Protocols/URLRouteProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/Protocols/URLRouteProvider.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/RequestBuildingLayer/Models/Method.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/RequestBuildingLayer/Models/Method.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/Utils/AccessSafe/AccessSafeNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/Utils/AccessSafe/AccessSafeNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/Utils/AccessSafe/TokenRefresherNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/Utils/AccessSafe/TokenRefresherNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/Utils/HeaderInjectorNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/Utils/HeaderInjectorNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Layers/Utils/RequestAborterNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Layers/Utils/RequestAborterNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/NodeKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/NodeKit.h -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/AsyncIterator/AsyncIterator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/AsyncIterator/AsyncIterator.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/AsyncIterator/AsyncPagerDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/AsyncIterator/AsyncPagerDataProvider.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/AsyncIterator/AsyncPagerIterator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/AsyncIterator/AsyncPagerIterator.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/AsyncIterator/StateStorable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/AsyncIterator/StateStorable.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/CancellableTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/CancellableTask.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/Logging/Chain/LogChain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/Logging/Chain/LogChain.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/Logging/Chain/LogableChain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/Logging/Chain/LogableChain.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/Logging/Log/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/Logging/Log/Log.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/Logging/Log/LogSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/Logging/Log/LogSession.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/Logging/Log/LogType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/Logging/Log/LogType.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/Logging/Log/LoggingProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/Logging/Log/LoggingProxy.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/Logging/LoggerExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/Logging/LoggerExtensions.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/Logging/LoggerNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/Logging/LoggerNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/Logging/LoggerStreamNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/Logging/LoggerStreamNode.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/Logging/LoggingContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/Logging/LoggingContext.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/Mapping/CodableRawMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/Mapping/CodableRawMapper.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/MetadataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/MetadataProvider.swift -------------------------------------------------------------------------------- /NodeKit/NodeKit/Utils/UrlRouting/UrlRouting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKit/Utils/UrlRouting/UrlRouting.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/AborterMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/AborterMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/AsyncNodeMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/AsyncNodeMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/AsyncPagerDataProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/AsyncPagerDataProviderMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/AsyncStreamNodeMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/AsyncStreamNodeMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/Builder/ChainBuilderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/Builder/ChainBuilderMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/Builder/ChainConfigBuilderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/Builder/ChainConfigBuilderMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/Builder/ServiceChainProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/Builder/ServiceChainProviderMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/CancellableTaskMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/CancellableTaskMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/CombineCompatibleNodeMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/CombineCompatibleNodeMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/DTOConvertibleMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/DTOConvertibleMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/DTODecodableMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/DTODecodableMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/DTOEncodableMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/DTOEncodableMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/LogSessionMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/LogSessionMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/LoggingContextMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/LoggingContextMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/LoggingProxyMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/LoggingProxyMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/MetadataProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/MetadataProviderMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/MockError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/MockError.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/MultipartFormDataFactoryMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/MultipartFormDataFactoryMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/MultipartFormDataMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/MultipartFormDataMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/NetworkMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/NetworkMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/RawDecodableMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/RawDecodableMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/RawEncodableMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/RawEncodableMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/RawMappableMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/RawMappableMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/TokenRefresherActorMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/TokenRefresherActorMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/URLProtocolMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/URLProtocolMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/URLRouteProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/URLRouteProviderMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/URLServiceChainProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/URLServiceChainProviderMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/URLSessionDataTaskActorMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/URLSessionDataTaskActorMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/URLSessionDataTaskMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/URLSessionDataTaskMock.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/Utils/Array+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/Utils/Array+Extension.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/Utils/DispatchQueue+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/Utils/DispatchQueue+Extension.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/Utils/Equatable/Log+Equatalbe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/Utils/Equatable/Log+Equatalbe.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitMock/Utils/Result+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitMock/Utils/Result+Extension.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/IntegrationTests/FromURLCodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/IntegrationTests/FromURLCodingTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/IntegrationTests/SimpleURLChainTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/IntegrationTests/SimpleURLChainTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/IntegrationTests/URLResponsesStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/IntegrationTests/URLResponsesStub.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/MyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/MyTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/Resources/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/Resources/LICENSE.txt -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Cache/ETag/TestUtls.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Cache/ETag/TestUtls.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Cache/FirstCachePolicyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Cache/FirstCachePolicyTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Coding/DTODecodableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Coding/DTODecodableTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Coding/EncodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Coding/EncodingTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Coding/RawDecodableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Coding/RawDecodableTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Core/AsyncNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Core/AsyncNodeTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Core/AsyncStreamNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Core/AsyncStreamNodeTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Core/NodeResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Core/NodeResultTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Logging/LogableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Logging/LogableTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Logging/LoggingContextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Logging/LoggingContextTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Network/MultipartModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Network/MultipartModelTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Network/URLRoutingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Network/URLRoutingTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Nodes/AbortingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Nodes/AbortingTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Nodes/AccessSafeNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Nodes/AccessSafeNodeTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Nodes/CacheReaderNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Nodes/CacheReaderNodeTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Nodes/DTOEncoderNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Nodes/DTOEncoderNodeTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Nodes/DTOMapperNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Nodes/DTOMapperNodeTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Nodes/LoggerNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Nodes/LoggerNodeTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Nodes/LoggerStreamNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Nodes/LoggerStreamNodeTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Nodes/ModelInputNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Nodes/ModelInputNodeTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Nodes/RawEncoderNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Nodes/RawEncoderNodeTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Nodes/URLETagSaverNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Nodes/URLETagSaverNodeTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Nodes/VoidIONodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Nodes/VoidIONodeTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Nodes/VoidInputNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Nodes/VoidInputNodeTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitTests/UnitTests/Nodes/VoidOutputNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitTests/UnitTests/Nodes/VoidOutputNodeTests.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitThirdParty/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitThirdParty/Package.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitThirdParty/Source/Alamofire/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitThirdParty/Source/Alamofire/AFError.swift -------------------------------------------------------------------------------- /NodeKit/NodeKitThirdParty/Source/Alamofire/HTTPHeaders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/NodeKit/NodeKitThirdParty/Source/Alamofire/HTTPHeaders.swift -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /TechDocs/Chains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/Chains.md -------------------------------------------------------------------------------- /TechDocs/ContributionGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/ContributionGuide.md -------------------------------------------------------------------------------- /TechDocs/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/Documentation.md -------------------------------------------------------------------------------- /TechDocs/Header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/Header.svg -------------------------------------------------------------------------------- /TechDocs/Header.umdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/Header.umdx -------------------------------------------------------------------------------- /TechDocs/Log/Log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/Log/Log.md -------------------------------------------------------------------------------- /TechDocs/Log/log_chaining.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/Log/log_chaining.svg -------------------------------------------------------------------------------- /TechDocs/Log/log_chaining.umdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/Log/log_chaining.umdx -------------------------------------------------------------------------------- /TechDocs/Log/log_nodes_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/Log/log_nodes_tree.svg -------------------------------------------------------------------------------- /TechDocs/Log/log_nodes_tree.umdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/Log/log_nodes_tree.umdx -------------------------------------------------------------------------------- /TechDocs/MainConcept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/MainConcept.md -------------------------------------------------------------------------------- /TechDocs/Models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/Models.md -------------------------------------------------------------------------------- /TechDocs/NodeKitHeader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/NodeKitHeader.svg -------------------------------------------------------------------------------- /TechDocs/NodeKitHeader.umdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/NodeKitHeader.umdx -------------------------------------------------------------------------------- /TechDocs/Nodes/Existing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/Nodes/Existing.md -------------------------------------------------------------------------------- /TechDocs/Testing/NodeKitMock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/Testing/NodeKitMock.md -------------------------------------------------------------------------------- /TechDocs/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/TechDocs/Usage.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/css/523.e9a069b0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/css/523.e9a069b0.css -------------------------------------------------------------------------------- /docs/css/675.40c3bcb2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/css/675.40c3bcb2.css -------------------------------------------------------------------------------- /docs/css/documentation-topic.b186e79f.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/css/documentation-topic.b186e79f.css -------------------------------------------------------------------------------- /docs/css/index.ff036a9e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/css/index.ff036a9e.css -------------------------------------------------------------------------------- /docs/css/topic.672a9049.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/css/topic.672a9049.css -------------------------------------------------------------------------------- /docs/css/tutorials-overview.6eb589ed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/css/tutorials-overview.6eb589ed.css -------------------------------------------------------------------------------- /docs/data/documentation/nodekit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/aborter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/aborter.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/aborter/cancel(logcontext:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/aborter/cancel(logcontext:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/aborternode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/aborternode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/aborternode/aborter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/aborternode/aborter.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/aborternode/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/aborternode/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/aborternode/objectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/aborternode/objectname.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/aborternode/process().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/aborternode/process().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/aborternode/process(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/aborternode/process(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/accesssafenode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/accesssafenode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/accesssafenode/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/accesssafenode/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/accesssafenode/objectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/accesssafenode/objectname.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/accesssafenode/process(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/accesssafenode/process(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/accesssafenodeerror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/accesssafenodeerror.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/anyasyncnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/anyasyncnode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/anyasyncnode/objectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/anyasyncnode/objectname.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/anyasyncnode/process().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/anyasyncnode/process().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/anyasyncnode/process(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/anyasyncnode/process(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asynciterator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asynciterator.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asynciterator/hasnext().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asynciterator/hasnext().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asynciterator/next().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asynciterator/next().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asynciterator/renew().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asynciterator/renew().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asynciterator/value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asynciterator/value.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asyncnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asyncnode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asyncnode/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asyncnode/input.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asyncnode/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asyncnode/output.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asyncnode/process().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asyncnode/process().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asyncnode/process(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asyncnode/process(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asyncpagerdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asyncpagerdata.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asyncpagerdata/len.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asyncpagerdata/len.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asyncpagerdata/value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asyncpagerdata/value.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asyncpagerdataprovider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asyncpagerdataprovider.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asyncpageriterator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asyncpageriterator.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asyncpageriterator/next().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asyncpageriterator/next().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/asyncpageriterator/renew().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/asyncpageriterator/renew().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/basetechnicalerror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/basetechnicalerror.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/basetechnicalerror/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/basetechnicalerror/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/basetechnicalerror/timeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/basetechnicalerror/timeout.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/baseurlcachereadererror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/baseurlcachereadererror.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/cancellabletask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/cancellabletask.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/cancellabletask/cancel().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/cancellabletask/cancel().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/chainbuilder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/chainbuilder.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/chainbuilder/add(provider:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/chainbuilder/add(provider:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/chainbuilder/build()-36597.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/chainbuilder/build()-36597.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/chainbuilder/encode(as:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/chainbuilder/encode(as:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/chainbuilder/route(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/chainbuilder/route(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/chainbuilder/route.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/chainbuilder/route.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/chainconfigbuilder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/chainconfigbuilder.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/combinecompatiblenode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/combinecompatiblenode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/combinecompatiblenode/i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/combinecompatiblenode/i.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/combinecompatiblenode/o.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/combinecompatiblenode/o.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtoconvertible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtoconvertible.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtodecodable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtodecodable.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtodecodable/dto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtodecodable/dto.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtodecodable/from(dto:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtodecodable/from(dto:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtoencodable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtoencodable.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtoencodable/dto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtoencodable/dto.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtoencodable/todto().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtoencodable/todto().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtoencodernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtoencodernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtoencodernode/objectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtoencodernode/objectname.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtoencodernode/process().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtoencodernode/process().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtomappernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtomappernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtomappernode/init(next:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtomappernode/init(next:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtomappernode/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtomappernode/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtomappernode/objectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtomappernode/objectname.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtomappernode/process().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtomappernode/process().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/dtomappernode/process(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/dtomappernode/process(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/encodablerequestmodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/encodablerequestmodel.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/encodablerequestmodel/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/encodablerequestmodel/raw.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/entryinputdtooutputnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/entryinputdtooutputnode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/errorarrayjsonmappiong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/errorarrayjsonmappiong.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/etagconstants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/etagconstants.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/foundation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/foundation.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/foundation/characterset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/foundation/characterset.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/foundation/url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/foundation/url.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/foundation/url/url().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/foundation/url/url().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/headerinjectornode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/headerinjectornode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/headerinjectornode/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/headerinjectornode/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/json.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/jsonencoding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/jsonencoding.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/jsonencoding/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/jsonencoding/default.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/jsonencoding/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/jsonencoding/options.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/log.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/log/+=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/log/+=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/log/add(message:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/log/add(message:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/log/delimeter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/log/delimeter.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/log/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/log/description.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/log/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/log/id.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/log/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/log/message.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/log/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/log/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/log/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/log/order.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/logable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/logable.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/logable/add(message:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/logable/add(message:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/logable/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/logable/description.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/logable/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/logable/id.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/logable/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/logable/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/logable/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/logable/order.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/loggernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/loggernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/loggernode/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/loggernode/filters.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/loggernode/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/loggernode/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/loggernode/objectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/loggernode/objectname.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/loggernode/process().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/loggernode/process().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/loggernode/process(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/loggernode/process(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/loggingcontext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/loggingcontext.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/loggingcontext/add(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/loggingcontext/add(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/loggingcontext/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/loggingcontext/log.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/loggingcontextprotocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/loggingcontextprotocol.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/logorder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/logorder.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/logorder/dtomappernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/logorder/dtomappernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/logorder/voidionode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/logorder/voidionode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/logorder/voidoutputnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/logorder/voidoutputnode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/mappingutils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/mappingutils.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/mappingutils/arrayjsonkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/mappingutils/arrayjsonkey.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/metadataconnectornode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/metadataconnectornode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/metadataprovider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/metadataprovider.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/method.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/method.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/method/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/method/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/method/connect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/method/connect.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/method/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/method/delete.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/method/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/method/get.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/method/hash(into:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/method/hash(into:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/method/hashvalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/method/hashvalue.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/method/head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/method/head.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/method/init(rawvalue:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/method/init(rawvalue:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/method/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/method/options.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/method/patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/method/patch.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/method/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/method/post.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/method/put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/method/put.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/method/trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/method/trace.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/modelinputnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/modelinputnode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/modelinputnode/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/modelinputnode/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/modelinputnode/objectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/modelinputnode/objectname.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/modelinputnode/process().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/modelinputnode/process().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/multipartfileprovider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/multipartfileprovider.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/multipartformdatafactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/multipartformdatafactory.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/multipartmodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/multipartmodel.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/multipartmodel/files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/multipartmodel/files.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/multipartmodel/from(dto:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/multipartmodel/from(dto:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/multipartmodel/from(raw:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/multipartmodel/from(raw:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/multipartmodel/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/multipartmodel/raw.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/multipartmodel/todto().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/multipartmodel/todto().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/multipartmodel/toraw().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/multipartmodel/toraw().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/multiparturlrequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/multiparturlrequest.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/multiparturlrequest/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/multiparturlrequest/data.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/multiparturlrequest/url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/multiparturlrequest/url.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/node.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/node/logviewobjectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/node/logviewobjectname.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/node/objectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/node/objectname.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/nodedataresponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/nodedataresponse.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/nodedataresponse/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/nodedataresponse/result.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/noderesult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/noderesult.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/parameterencoding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/parameterencoding.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/parameters.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/parametersencoding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/parametersencoding.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/parametersencoding/json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/parametersencoding/json.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/parametersencoding/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/parametersencoding/raw.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/rawdecodable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/rawdecodable.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/rawdecodable/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/rawdecodable/raw.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/rawencodable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/rawencodable.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/rawencodable/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/rawencodable/raw.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/rawencodernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/rawencodernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/rawencodernode/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/rawencodernode/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/rawencodernode/objectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/rawencodernode/objectname.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/rawencodernode/process().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/rawencodernode/process().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/rawmappable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/rawmappable.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/rawmappablecodableerror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/rawmappablecodableerror.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/rawurlrequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/rawurlrequest.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/rawurlrequest/datarequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/rawurlrequest/datarequest.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/requestcreatornode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/requestcreatornode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/requestcreatornode/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/requestcreatornode/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/requestencodernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/requestencodernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/requestencodernode/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/requestencodernode/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/requestencodingmodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/requestencodingmodel.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/requestencodingmodel/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/requestencodingmodel/raw.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/requestmodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/requestmodel.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/requestmodel/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/requestmodel/metadata.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/requestmodel/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/requestmodel/raw.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/requestrouternode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/requestrouternode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/requestrouternode/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/requestrouternode/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/requestrouternode/route.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/requestrouternode/route.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/requestsendernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/requestsendernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/responsedataparsernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/responsedataparsernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/responseprocessornode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/responseprocessornode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/routablerequestmodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/routablerequestmodel.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/routablerequestmodel/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/routablerequestmodel/raw.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/serverrequestsmanager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/serverrequestsmanager.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/servicechainprovider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/servicechainprovider.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/statestorable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/statestorable.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/statestorable/savestate().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/statestorable/savestate().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/array.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/array/dto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/array/dto.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/array/from(dto:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/array/from(dto:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/array/from(raw:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/array/from(raw:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/array/todto().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/array/todto().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/array/toraw().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/array/toraw().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/dictionary.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/dictionary/dto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/dictionary/dto.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/dictionary/todto().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/dictionary/todto().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/optional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/optional.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/optional/+(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/optional/+(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/optional/from(dto:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/optional/from(dto:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/optional/from(raw:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/optional/from(raw:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/result.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/result/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/result/error.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/result/map(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/result/map(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/result/value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/result/value.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/swift/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/swift/string.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/technicaerrormappernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/technicaerrormappernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/tokenrefreshernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/tokenrefreshernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/transportlayernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/transportlayernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/transporturlparameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/transporturlparameters.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/transporturlrequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/transporturlrequest.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/transporturlrequest/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/transporturlrequest/raw.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/transporturlrequest/url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/transporturlrequest/url.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlcachereadernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlcachereadernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlcachewriternode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlcachewriternode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlcachewriternode/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlcachewriternode/init().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlchainbuilder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlchainbuilder.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlchainbuilder/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlchainbuilder/config.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlchainbuilder/encoding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlchainbuilder/encoding.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlchainbuilder/logfilter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlchainbuilder/logfilter.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlchainbuilder/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlchainbuilder/metadata.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlchainbuilder/method.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlchainbuilder/method.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlchainbuilder/route.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlchainbuilder/route.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlchainconfigmodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlchainconfigmodel.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlchainconfigmodel/route.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlchainconfigmodel/route.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urldataresponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urldataresponse.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urldataresponse/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urldataresponse/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urldataresponse/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urldataresponse/data.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urldataresponse/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urldataresponse/request.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urldataresponse/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urldataresponse/response.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlencoding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlencoding.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlencoding/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlencoding/default.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlencoding/escape(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlencoding/escape(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlencoding/httpbody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlencoding/httpbody.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlencoding/querystring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlencoding/querystring.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urletagreadernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urletagreadernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urletagreadernode/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urletagreadernode/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urletagsavernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urletagsavernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urletagsavernode/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urletagsavernode/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlnetworkrequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlnetworkrequest.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlnotmodifiedtriggernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlnotmodifiedtriggernode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlprocessedresponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlprocessedresponse.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlprocessedresponse/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlprocessedresponse/data.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlprocessedresponse/json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlprocessedresponse/json.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlqueryconfigmodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlqueryconfigmodel.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlqueryconfigmodel/query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlqueryconfigmodel/query.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlqueryinjectornode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlqueryinjectornode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlqueryinjectornode/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlqueryinjectornode/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlqueryinjectornodeerror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlqueryinjectornodeerror.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlrouteerror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlrouteerror.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlrouteerror/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlrouteerror/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlrouteerror/asaferror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlrouteerror/asaferror.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlrouteprovider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlrouteprovider.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlrouteprovider/url().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlrouteprovider/url().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlservicechainprovider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlservicechainprovider.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/urlsessiondatataskactor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/urlsessiondatataskactor.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/voidinputnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/voidinputnode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/voidinputnode/init(next:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/voidinputnode/init(next:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/voidinputnode/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/voidinputnode/next.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/voidinputnode/objectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/voidinputnode/objectname.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/voidinputnode/process().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/voidinputnode/process().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/voidinputnode/process(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/voidinputnode/process(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/voidionode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/voidionode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/voidionode/objectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/voidionode/objectname.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/voidionode/process().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/voidionode/process().json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/voidionode/process(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/voidionode/process(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/voidoutputnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/voidoutputnode.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/voidoutputnode/objectname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/voidoutputnode/objectname.json -------------------------------------------------------------------------------- /docs/data/documentation/nodekit/voidoutputnode/process().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/data/documentation/nodekit/voidoutputnode/process().json -------------------------------------------------------------------------------- /docs/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/developer-og.jpg -------------------------------------------------------------------------------- /docs/documentation/nodekit/aborter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/aborter/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/aborternode/aborter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/aborternode/aborter/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/aborternode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/aborternode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/aborternode/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/aborternode/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/aborternode/objectname/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/aborternode/objectname/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/aborternode/process()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/aborternode/process()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/aborternode/process(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/aborternode/process(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/accesssafenode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/accesssafenode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/accesssafenode/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/accesssafenode/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/accesssafenodeerror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/accesssafenodeerror/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/anyasyncnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/anyasyncnode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/anyasyncnode/objectname/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/anyasyncnode/objectname/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/anyasyncnode/process()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/anyasyncnode/process()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/anyasyncnode/process(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/anyasyncnode/process(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asynciterator/hasnext()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asynciterator/hasnext()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asynciterator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asynciterator/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asynciterator/next()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asynciterator/next()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asynciterator/renew()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asynciterator/renew()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asynciterator/value/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asynciterator/value/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asyncnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asyncnode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asyncnode/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asyncnode/input/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asyncnode/output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asyncnode/output/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asyncnode/process()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asyncnode/process()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asyncnode/process(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asyncnode/process(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asyncpagerdata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asyncpagerdata/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asyncpagerdata/len/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asyncpagerdata/len/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asyncpagerdata/value/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asyncpagerdata/value/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asyncpagerdataprovider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asyncpagerdataprovider/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/asyncpageriterator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/asyncpageriterator/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/basetechnicalerror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/basetechnicalerror/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/baseurlcachereadererror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/baseurlcachereadererror/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/cancellabletask/cancel()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/cancellabletask/cancel()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/cancellabletask/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/cancellabletask/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/chainbuilder/encode(as:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/chainbuilder/encode(as:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/chainbuilder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/chainbuilder/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/chainbuilder/route(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/chainbuilder/route(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/chainbuilder/route/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/chainbuilder/route/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/chainconfigbuilder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/chainconfigbuilder/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/combinecompatiblenode/i/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/combinecompatiblenode/i/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/combinecompatiblenode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/combinecompatiblenode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/combinecompatiblenode/o/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/combinecompatiblenode/o/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/dtoconvertible/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/dtoconvertible/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/dtodecodable/dto/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/dtodecodable/dto/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/dtodecodable/from(dto:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/dtodecodable/from(dto:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/dtodecodable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/dtodecodable/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/dtoencodable/dto/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/dtoencodable/dto/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/dtoencodable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/dtoencodable/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/dtoencodable/todto()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/dtoencodable/todto()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/dtoencodernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/dtoencodernode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/dtoencodernode/process()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/dtoencodernode/process()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/dtomappernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/dtomappernode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/dtomappernode/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/dtomappernode/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/dtomappernode/objectname/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/dtomappernode/objectname/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/dtomappernode/process()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/dtomappernode/process()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/encodablerequestmodel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/encodablerequestmodel/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/entryinputdtooutputnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/entryinputdtooutputnode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/errorarrayjsonmappiong/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/errorarrayjsonmappiong/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/etagconstants/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/etagconstants/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/foundation/characterset/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/foundation/characterset/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/foundation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/foundation/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/foundation/url/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/foundation/url/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/foundation/url/url()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/foundation/url/url()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/headerinjectornode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/headerinjectornode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/headerinjectornode/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/headerinjectornode/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/json/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/json/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/jsonencoding/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/jsonencoding/default/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/jsonencoding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/jsonencoding/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/jsonencoding/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/jsonencoding/options/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/log/+=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/log/+=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/log/add(message:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/log/add(message:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/log/delimeter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/log/delimeter/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/log/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/log/description/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/log/id/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/log/id/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/log/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/log/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/log/message/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/log/message/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/log/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/log/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/log/order/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/log/order/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/logable/add(message:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/logable/add(message:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/logable/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/logable/description/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/logable/id/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/logable/id/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/logable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/logable/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/logable/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/logable/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/logable/order/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/logable/order/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/loggernode/filters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/loggernode/filters/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/loggernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/loggernode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/loggernode/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/loggernode/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/loggernode/objectname/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/loggernode/objectname/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/loggernode/process()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/loggernode/process()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/loggernode/process(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/loggernode/process(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/loggingcontext/add(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/loggingcontext/add(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/loggingcontext/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/loggingcontext/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/loggingcontext/log/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/loggingcontext/log/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/loggingcontextprotocol/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/loggingcontextprotocol/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/logorder/dtomappernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/logorder/dtomappernode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/logorder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/logorder/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/logorder/voidionode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/logorder/voidionode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/logorder/voidoutputnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/logorder/voidoutputnode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/mappingutils/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/mappingutils/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/metadataconnectornode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/metadataconnectornode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/metadataprovider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/metadataprovider/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/method/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/method/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/method/connect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/method/connect/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/method/delete/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/method/delete/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/method/get/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/method/get/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/method/hash(into:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/method/hash(into:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/method/hashvalue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/method/hashvalue/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/method/head/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/method/head/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/method/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/method/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/method/init(rawvalue:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/method/init(rawvalue:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/method/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/method/options/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/method/patch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/method/patch/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/method/post/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/method/post/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/method/put/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/method/put/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/method/trace/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/method/trace/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/modelinputnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/modelinputnode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/modelinputnode/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/modelinputnode/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/modelinputnode/process()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/modelinputnode/process()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/multipartfileprovider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/multipartfileprovider/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/multipartformdatafactory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/multipartformdatafactory/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/multipartmodel/files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/multipartmodel/files/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/multipartmodel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/multipartmodel/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/multipartmodel/raw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/multipartmodel/raw/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/multipartmodel/todto()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/multipartmodel/todto()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/multipartmodel/toraw()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/multipartmodel/toraw()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/multiparturlrequest/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/multiparturlrequest/data/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/multiparturlrequest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/multiparturlrequest/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/multiparturlrequest/url/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/multiparturlrequest/url/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/node/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/node/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/node/logviewobjectname/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/node/logviewobjectname/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/node/objectname/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/node/objectname/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/nodedataresponse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/nodedataresponse/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/nodedataresponse/result/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/nodedataresponse/result/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/noderesult/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/noderesult/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/parameterencoding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/parameterencoding/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/parameters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/parameters/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/parametersencoding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/parametersencoding/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/parametersencoding/json/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/parametersencoding/json/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/parametersencoding/raw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/parametersencoding/raw/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/rawdecodable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/rawdecodable/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/rawdecodable/raw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/rawdecodable/raw/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/rawencodable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/rawencodable/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/rawencodable/raw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/rawencodable/raw/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/rawencodernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/rawencodernode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/rawencodernode/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/rawencodernode/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/rawencodernode/process()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/rawencodernode/process()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/rawmappable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/rawmappable/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/rawmappablecodableerror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/rawmappablecodableerror/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/rawurlrequest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/rawurlrequest/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/requestcreatornode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/requestcreatornode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/requestcreatornode/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/requestcreatornode/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/requestencodernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/requestencodernode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/requestencodernode/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/requestencodernode/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/requestencodingmodel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/requestencodingmodel/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/requestencodingmodel/raw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/requestencodingmodel/raw/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/requestmodel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/requestmodel/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/requestmodel/metadata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/requestmodel/metadata/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/requestmodel/raw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/requestmodel/raw/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/requestrouternode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/requestrouternode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/requestrouternode/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/requestrouternode/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/requestrouternode/route/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/requestrouternode/route/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/requestsendernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/requestsendernode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/responsedataparsernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/responsedataparsernode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/responseprocessornode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/responseprocessornode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/routablerequestmodel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/routablerequestmodel/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/routablerequestmodel/raw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/routablerequestmodel/raw/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/serverrequestsmanager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/serverrequestsmanager/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/servicechainprovider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/servicechainprovider/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/statestorable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/statestorable/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/array/dto/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/array/dto/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/array/from(dto:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/array/from(dto:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/array/from(raw:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/array/from(raw:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/array/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/array/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/array/todto()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/array/todto()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/array/toraw()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/array/toraw()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/dictionary/dto/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/dictionary/dto/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/dictionary/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/dictionary/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/dictionary/todto()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/dictionary/todto()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/optional/+(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/optional/+(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/optional/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/optional/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/result/error/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/result/error/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/result/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/result/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/result/map(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/result/map(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/result/value/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/result/value/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/swift/string/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/swift/string/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/technicaerrormappernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/technicaerrormappernode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/tokenrefreshernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/tokenrefreshernode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/transportlayernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/transportlayernode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/transporturlparameters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/transporturlparameters/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/transporturlrequest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/transporturlrequest/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/transporturlrequest/raw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/transporturlrequest/raw/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/transporturlrequest/url/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/transporturlrequest/url/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlcachereadernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlcachereadernode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlcachewriternode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlcachewriternode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlchainbuilder/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlchainbuilder/config/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlchainbuilder/encoding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlchainbuilder/encoding/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlchainbuilder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlchainbuilder/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlchainbuilder/metadata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlchainbuilder/metadata/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlchainbuilder/method/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlchainbuilder/method/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlchainbuilder/route/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlchainbuilder/route/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlchainconfigmodel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlchainconfigmodel/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urldataresponse/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urldataresponse/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urldataresponse/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urldataresponse/data/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urldataresponse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urldataresponse/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urldataresponse/request/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urldataresponse/request/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urldataresponse/response/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urldataresponse/response/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlencoding/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlencoding/default/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlencoding/escape(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlencoding/escape(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlencoding/httpbody/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlencoding/httpbody/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlencoding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlencoding/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlencoding/querystring/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlencoding/querystring/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urletagreadernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urletagreadernode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urletagreadernode/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urletagreadernode/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urletagsavernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urletagsavernode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urletagsavernode/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urletagsavernode/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlnetworkrequest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlnetworkrequest/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlprocessedresponse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlprocessedresponse/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlqueryconfigmodel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlqueryconfigmodel/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlqueryinjectornode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlqueryinjectornode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlrouteerror/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlrouteerror/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlrouteerror/asaferror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlrouteerror/asaferror/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlrouteerror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlrouteerror/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlrouteprovider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlrouteprovider/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlrouteprovider/url()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlrouteprovider/url()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlservicechainprovider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlservicechainprovider/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/urlsessiondatataskactor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/urlsessiondatataskactor/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/voidinputnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/voidinputnode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/voidinputnode/next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/voidinputnode/next/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/voidinputnode/objectname/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/voidinputnode/objectname/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/voidinputnode/process()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/voidinputnode/process()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/voidionode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/voidionode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/voidionode/objectname/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/voidionode/objectname/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/voidionode/process()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/voidionode/process()/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/voidionode/process(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/voidionode/process(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/voidoutputnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/voidoutputnode/index.html -------------------------------------------------------------------------------- /docs/documentation/nodekit/voidoutputnode/process()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/documentation/nodekit/voidoutputnode/process()/index.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/img/added-icon.832a5d2c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/img/added-icon.832a5d2c.svg -------------------------------------------------------------------------------- /docs/img/deprecated-icon.7bf1740a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/img/deprecated-icon.7bf1740a.svg -------------------------------------------------------------------------------- /docs/img/modified-icon.efb2697d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/img/modified-icon.efb2697d.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/index/index.json -------------------------------------------------------------------------------- /docs/js/337.274a8ccc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/337.274a8ccc.js -------------------------------------------------------------------------------- /docs/js/37.3cabdf6d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/37.3cabdf6d.js -------------------------------------------------------------------------------- /docs/js/523.3af1b2ef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/523.3af1b2ef.js -------------------------------------------------------------------------------- /docs/js/903.b3710a74.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/903.b3710a74.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.bdb7cbba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/chunk-vendors.bdb7cbba.js -------------------------------------------------------------------------------- /docs/js/documentation-topic.f9ef3692.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/documentation-topic.f9ef3692.js -------------------------------------------------------------------------------- /docs/js/highlight-js-bash-js.702f0c5c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-bash-js.702f0c5c.js -------------------------------------------------------------------------------- /docs/js/highlight-js-c-js.063069d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-c-js.063069d3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-cpp-js.458a9ae4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-cpp-js.458a9ae4.js -------------------------------------------------------------------------------- /docs/js/highlight-js-css-js.bfc4251f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-css-js.bfc4251f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-markdown.78c9f6ed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-custom-markdown.78c9f6ed.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-swift.738731d1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-custom-swift.738731d1.js -------------------------------------------------------------------------------- /docs/js/highlight-js-diff-js.4db9a783.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-diff-js.4db9a783.js -------------------------------------------------------------------------------- /docs/js/highlight-js-http-js.f78e83c2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-http-js.f78e83c2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-java-js.4fe21e94.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-java-js.4fe21e94.js -------------------------------------------------------------------------------- /docs/js/highlight-js-javascript-js.dfc9d16d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-javascript-js.dfc9d16d.js -------------------------------------------------------------------------------- /docs/js/highlight-js-json-js.2a1856ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-json-js.2a1856ba.js -------------------------------------------------------------------------------- /docs/js/highlight-js-llvm-js.26121771.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-llvm-js.26121771.js -------------------------------------------------------------------------------- /docs/js/highlight-js-markdown-js.a2f456af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-markdown-js.a2f456af.js -------------------------------------------------------------------------------- /docs/js/highlight-js-objectivec-js.74dea052.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-objectivec-js.74dea052.js -------------------------------------------------------------------------------- /docs/js/highlight-js-perl-js.da6eda82.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-perl-js.da6eda82.js -------------------------------------------------------------------------------- /docs/js/highlight-js-php-js.c458ffa4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-php-js.c458ffa4.js -------------------------------------------------------------------------------- /docs/js/highlight-js-python-js.60354774.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-python-js.60354774.js -------------------------------------------------------------------------------- /docs/js/highlight-js-ruby-js.7272231f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-ruby-js.7272231f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-scss-js.adcd11a2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-scss-js.adcd11a2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-shell-js.0ad5b20f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-shell-js.0ad5b20f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-swift-js.bdd5bff5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-swift-js.bdd5bff5.js -------------------------------------------------------------------------------- /docs/js/highlight-js-xml-js.0d78f903.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/highlight-js-xml-js.0d78f903.js -------------------------------------------------------------------------------- /docs/js/index.2871ffbd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/index.2871ffbd.js -------------------------------------------------------------------------------- /docs/js/topic.2687cdff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/topic.2687cdff.js -------------------------------------------------------------------------------- /docs/js/tutorials-overview.2eff1231.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/js/tutorials-overview.2eff1231.js -------------------------------------------------------------------------------- /docs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/docs/metadata.json -------------------------------------------------------------------------------- /xcresultparser/xcresultparser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/NodeKit/HEAD/xcresultparser/xcresultparser --------------------------------------------------------------------------------