lemon-core 4.2.1 → 4.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/common/runtime-helper.d.ts +84 -0
- package/dist/common/runtime-helper.js +172 -0
- package/dist/common/runtime-helper.js.map +1 -0
- package/dist/common/test-helper.d.ts +5 -2
- package/dist/common/test-helper.js +6 -3
- package/dist/common/test-helper.js.map +1 -1
- package/dist/cores/dynamo/dynamo-service.d.ts +2 -2
- package/dist/cores/dynamo/dynamo-service.js +17 -1
- package/dist/cores/dynamo/dynamo-service.js.map +1 -1
- package/dist/cores/lambda/jwt-secret.d.ts +10 -0
- package/dist/cores/lambda/jwt-secret.js +25 -0
- package/dist/cores/lambda/jwt-secret.js.map +1 -0
- package/dist/cores/lambda/lambda-web-handler.d.ts +1 -1
- package/dist/cores/storage/storage-service.d.ts +72 -10
- package/dist/cores/storage/storage-service.js +84 -45
- package/dist/cores/storage/storage-service.js.map +1 -1
- package/dist/docs/.nojekyll +1 -0
- package/dist/docs/assets/hierarchy.js +1 -0
- package/dist/docs/assets/highlight.css +141 -0
- package/dist/docs/assets/icons.js +18 -0
- package/dist/docs/assets/icons.svg +1 -0
- package/dist/docs/assets/main.js +60 -0
- package/dist/docs/assets/navigation.js +1 -0
- package/dist/docs/assets/search.js +1 -0
- package/dist/docs/assets/style.css +1633 -0
- package/dist/docs/classes/APIProxyClient.html +13 -0
- package/dist/docs/classes/APIService.html +51 -0
- package/dist/docs/classes/AWSKMSService.html +46 -0
- package/dist/docs/classes/AWSModule.html +20 -0
- package/dist/docs/classes/AWSS3Service.html +45 -0
- package/dist/docs/classes/AWSSNSService.html +31 -0
- package/dist/docs/classes/AWSSQSService.html +27 -0
- package/dist/docs/classes/AbstractElastic6Instance.html +36 -0
- package/dist/docs/classes/AbstractManager.html +91 -0
- package/dist/docs/classes/AbstractProxy.html +56 -0
- package/dist/docs/classes/AbstractTransformer.html +23 -0
- package/dist/docs/classes/CacheService.html +88 -0
- package/dist/docs/classes/ConfigModule.html +17 -0
- package/dist/docs/classes/CoreManager.html +109 -0
- package/dist/docs/classes/CoreService.html +28 -0
- package/dist/docs/classes/DummyCacheService.html +84 -0
- package/dist/docs/classes/DummyController.html +42 -0
- package/dist/docs/classes/DummyDynamoService.html +90 -0
- package/dist/docs/classes/DummyElastic6Service.html +119 -0
- package/dist/docs/classes/DummyRedisStorageService.html +42 -0
- package/dist/docs/classes/DummyStorageService.html +47 -0
- package/dist/docs/classes/DynamoQueryService.html +25 -0
- package/dist/docs/classes/DynamoScanService.html +13 -0
- package/dist/docs/classes/DynamoService.html +82 -0
- package/dist/docs/classes/DynamoStorageService.html +44 -0
- package/dist/docs/classes/Elastic6Instance.html +49 -0
- package/dist/docs/classes/Elastic6QueryService.html +59 -0
- package/dist/docs/classes/Elastic6Service.html +124 -0
- package/dist/docs/classes/Elastic6Synchronizer.html +13 -0
- package/dist/docs/classes/ElasticIndexService.html +56 -0
- package/dist/docs/classes/GeneralAPIController.html +61 -0
- package/dist/docs/classes/GeneralController.html +27 -0
- package/dist/docs/classes/GeneralKeyMaker.html +12 -0
- package/dist/docs/classes/GeneralModelFilter.html +39 -0
- package/dist/docs/classes/GeneralWEBController.html +40 -0
- package/dist/docs/classes/HangulService.html +70 -0
- package/dist/docs/classes/HttpStorageService.html +34 -0
- package/dist/docs/classes/LambdaALBHandler.html +32 -0
- package/dist/docs/classes/LambdaCognitoHandler.html +13 -0
- package/dist/docs/classes/LambdaDynamoStreamHandler.html +25 -0
- package/dist/docs/classes/LambdaHandler.html +36 -0
- package/dist/docs/classes/LambdaModule.html +26 -0
- package/dist/docs/classes/LambdaNotificationHandler.html +22 -0
- package/dist/docs/classes/LambdaSNSHandler.html +15 -0
- package/dist/docs/classes/LambdaSQSHandler.html +15 -0
- package/dist/docs/classes/LambdaSubHandler.html +10 -0
- package/dist/docs/classes/LambdaWEBHandler.html +37 -0
- package/dist/docs/classes/LambdaWSSHandler.html +17 -0
- package/dist/docs/classes/ManagerProxy.html +51 -0
- package/dist/docs/classes/MocksAPIService.html +29 -0
- package/dist/docs/classes/ModelUtil.html +13 -0
- package/dist/docs/classes/ProtocolModule.html +17 -0
- package/dist/docs/classes/ProxyStorageService.html +133 -0
- package/dist/docs/classes/RedisStorageService.html +38 -0
- package/dist/docs/classes/TypedStorageService.html +89 -0
- package/dist/docs/classes/UniqueFieldManager.html +35 -0
- package/dist/docs/classes/_web.MyHttpHeaderTool.html +82 -0
- package/dist/docs/classes/elasticsearch.BaseConnectionPool.html +39 -0
- package/dist/docs/classes/elasticsearch.Client.html +110 -0
- package/dist/docs/classes/elasticsearch.CloudConnectionPool.html +40 -0
- package/dist/docs/classes/elasticsearch.Connection.html +22 -0
- package/dist/docs/classes/elasticsearch.ConnectionPool.html +50 -0
- package/dist/docs/classes/elasticsearch.Serializer.html +6 -0
- package/dist/docs/classes/elasticsearch.Transport.html +20 -0
- package/dist/docs/classes/elasticsearch.errors.ConfigurationError.html +33 -0
- package/dist/docs/classes/elasticsearch.errors.ConnectionError.html +34 -0
- package/dist/docs/classes/elasticsearch.errors.DeserializationError.html +34 -0
- package/dist/docs/classes/elasticsearch.errors.ElasticsearchClientError.html +33 -0
- package/dist/docs/classes/elasticsearch.errors.NoLivingConnectionsError.html +34 -0
- package/dist/docs/classes/elasticsearch.errors.RequestAbortedError.html +34 -0
- package/dist/docs/classes/elasticsearch.errors.ResponseError.html +37 -0
- package/dist/docs/classes/elasticsearch.errors.SerializationError.html +34 -0
- package/dist/docs/classes/elasticsearch.errors.TimeoutError.html +34 -0
- package/dist/docs/functions/GETERR.html +5 -0
- package/dist/docs/functions/GETERR_.html +5 -0
- package/dist/docs/functions/NUL404.html +3 -0
- package/dist/docs/functions/_ES6.html +7 -0
- package/dist/docs/functions/_event.html +4 -0
- package/dist/docs/functions/_info.html +2 -0
- package/dist/docs/functions/_it.html +2 -0
- package/dist/docs/functions/_protocol.html +5 -0
- package/dist/docs/functions/_slack.html +6 -0
- package/dist/docs/functions/_web.buildResponse.html +9 -0
- package/dist/docs/functions/_web.failure.html +1 -0
- package/dist/docs/functions/_web.mxNextFailure.html +2 -0
- package/dist/docs/functions/_web.mxNextHandler.html +2 -0
- package/dist/docs/functions/_web.notfound.html +1 -0
- package/dist/docs/functions/_web.promised.html +4 -0
- package/dist/docs/functions/_web.redirect.html +1 -0
- package/dist/docs/functions/_web.success.html +1 -0
- package/dist/docs/functions/_wss.buildResponse.html +1 -0
- package/dist/docs/functions/_wss.failure.html +1 -0
- package/dist/docs/functions/_wss.notfound.html +1 -0
- package/dist/docs/functions/_wss.success.html +1 -0
- package/dist/docs/functions/asErrorPayload.html +2 -0
- package/dist/docs/functions/asIdentityId.html +3 -0
- package/dist/docs/functions/asyncCredentials.html +5 -0
- package/dist/docs/functions/awsConfig.html +10 -0
- package/dist/docs/functions/buildEngine.html +7 -0
- package/dist/docs/functions/buildExpress.html +4 -0
- package/dist/docs/functions/buildReportError.html +4 -0
- package/dist/docs/functions/convDate.html +1 -0
- package/dist/docs/functions/convDateToTS.html +5 -0
- package/dist/docs/functions/convDateToTime.html +3 -0
- package/dist/docs/functions/createHttpWebProxy.html +11 -0
- package/dist/docs/functions/createSigV4Proxy.html +14 -0
- package/dist/docs/functions/doReportCallback.html +4 -0
- package/dist/docs/functions/doReportError.html +6 -0
- package/dist/docs/functions/doReportMetric.html +6 -0
- package/dist/docs/functions/doReportSlack.html +5 -0
- package/dist/docs/functions/do_parallel.html +8 -0
- package/dist/docs/functions/environ.html +3 -0
- package/dist/docs/functions/expect2.html +4 -0
- package/dist/docs/functions/filterFields.html +5 -0
- package/dist/docs/functions/fromTTL.html +4 -0
- package/dist/docs/functions/getHelloArn.html +4 -0
- package/dist/docs/functions/getIdentityId.html +3 -0
- package/dist/docs/functions/isLambda.html +5 -0
- package/dist/docs/functions/isUserAuthorized.html +8 -0
- package/dist/docs/functions/lib.toDDB.html +2 -0
- package/dist/docs/functions/lib.toJavascript.html +2 -0
- package/dist/docs/functions/loadDataYml.html +2 -0
- package/dist/docs/functions/loadJsonSync.html +2 -0
- package/dist/docs/functions/marshal.html +6 -0
- package/dist/docs/functions/my_parallel.html +13 -0
- package/dist/docs/functions/my_sequence.html +8 -0
- package/dist/docs/functions/onlyDefined.html +2 -0
- package/dist/docs/functions/parseRange.html +3 -0
- package/dist/docs/functions/sleep.html +3 -0
- package/dist/docs/functions/sourceToItem.html +7 -0
- package/dist/docs/functions/toTTL.html +4 -0
- package/dist/docs/functions/waited.html +5 -0
- package/dist/docs/hierarchy.html +1 -0
- package/dist/docs/index.html +366 -0
- package/dist/docs/interfaces/APIHeaders.html +2 -0
- package/dist/docs/interfaces/APIServiceClient.html +11 -0
- package/dist/docs/interfaces/ApiHttpProxy.html +17 -0
- package/dist/docs/interfaces/AutocompleteSearchParam.html +19 -0
- package/dist/docs/interfaces/AwsConfigParams.html +12 -0
- package/dist/docs/interfaces/BatchResult.html +8 -0
- package/dist/docs/interfaces/Body.html +7 -0
- package/dist/docs/interfaces/BuildExpressOptions.html +13 -0
- package/dist/docs/interfaces/CacheEntry.html +8 -0
- package/dist/docs/interfaces/CacheKeyMakable.html +10 -0
- package/dist/docs/interfaces/CacheOptions.html +10 -0
- package/dist/docs/interfaces/CacheSupportable.html +14 -0
- package/dist/docs/interfaces/CallbackData.html +12 -0
- package/dist/docs/interfaces/CallbackParam.html +11 -0
- package/dist/docs/interfaces/CoreConfigService.html +15 -0
- package/dist/docs/interfaces/CoreKey.html +13 -0
- package/dist/docs/interfaces/CoreKeyMakeable.html +13 -0
- package/dist/docs/interfaces/CoreKmsService.html +8 -0
- package/dist/docs/interfaces/CoreModel.html +40 -0
- package/dist/docs/interfaces/CoreModelFilterable.html +10 -0
- package/dist/docs/interfaces/CoreModifier.html +11 -0
- package/dist/docs/interfaces/CoreServices.html +6 -0
- package/dist/docs/interfaces/CoreSnsService.html +8 -0
- package/dist/docs/interfaces/CoreWEBController.html +8 -0
- package/dist/docs/interfaces/Cores.html +17 -0
- package/dist/docs/interfaces/CronEvent.html +6 -0
- package/dist/docs/interfaces/CronParam.html +3 -0
- package/dist/docs/interfaces/DynamoOption.html +6 -0
- package/dist/docs/interfaces/DynamoQueryResult.html +8 -0
- package/dist/docs/interfaces/DynamoScanResult.html +8 -0
- package/dist/docs/interfaces/DynamoSimpleQueriable.html +15 -0
- package/dist/docs/interfaces/DynamoSimpleScannable.html +10 -0
- package/dist/docs/interfaces/DynamoStreamBody.html +9 -0
- package/dist/docs/interfaces/DynamoStreamCallback.html +1 -0
- package/dist/docs/interfaces/DynamoStreamFilter.html +2 -0
- package/dist/docs/interfaces/DynamoStreamParam.html +5 -0
- package/dist/docs/interfaces/Elastic6ContructParams.html +17 -0
- package/dist/docs/interfaces/Elastic6Item.html +6 -0
- package/dist/docs/interfaces/Elastic6Option.html +24 -0
- package/dist/docs/interfaces/Elastic6SearchParams.html +8 -0
- package/dist/docs/interfaces/Elastic6SimpleQueriable.html +11 -0
- package/dist/docs/interfaces/ElasticItem.html +6 -0
- package/dist/docs/interfaces/ElasticOption.html +22 -0
- package/dist/docs/interfaces/EngineConsole.html +12 -0
- package/dist/docs/interfaces/EngineCore.html +15 -0
- package/dist/docs/interfaces/EngineModule.html +15 -0
- package/dist/docs/interfaces/EngineModules.html +14 -0
- package/dist/docs/interfaces/EngineOption.html +8 -0
- package/dist/docs/interfaces/EngineScope.html +6 -0
- package/dist/docs/interfaces/ExpressFactory.html +5 -0
- package/dist/docs/interfaces/ExpressFactoryResult.html +11 -0
- package/dist/docs/interfaces/Filter.html +2 -0
- package/dist/docs/interfaces/GeneralFuntion.html +5 -0
- package/dist/docs/interfaces/GeneralItem.html +6 -0
- package/dist/docs/interfaces/HighlightTerm.html +2 -0
- package/dist/docs/interfaces/Incrementable.html +10 -0
- package/dist/docs/interfaces/InternalKey.html +4 -0
- package/dist/docs/interfaces/InternalModel.html +13 -0
- package/dist/docs/interfaces/LambdaHandlerService.html +20 -0
- package/dist/docs/interfaces/LemonEngine.html +29 -0
- package/dist/docs/interfaces/MetricPostBody.html +6 -0
- package/dist/docs/interfaces/ModelSynchronizer.html +8 -0
- package/dist/docs/interfaces/NextContext.html +29 -0
- package/dist/docs/interfaces/NextIdentity.html +28 -0
- package/dist/docs/interfaces/NextIdentityAccess.html +37 -0
- package/dist/docs/interfaces/NextIdentityCognito.html +46 -0
- package/dist/docs/interfaces/NextIdentityJwt.html +36 -0
- package/dist/docs/interfaces/NotificationBody.html +1 -0
- package/dist/docs/interfaces/NotificationParam.html +16 -0
- package/dist/docs/interfaces/ParrallelCallback.html +1 -0
- package/dist/docs/interfaces/ParrallelParam.html +10 -0
- package/dist/docs/interfaces/ParsedVersion.html +14 -0
- package/dist/docs/interfaces/ProtocolBody.html +2 -0
- package/dist/docs/interfaces/ProtocolParam.html +14 -0
- package/dist/docs/interfaces/ProtocolService.html +48 -0
- package/dist/docs/interfaces/ProtocolTransformer.html +13 -0
- package/dist/docs/interfaces/QueryResult.html +11 -0
- package/dist/docs/interfaces/RedisOptions.html +8 -0
- package/dist/docs/interfaces/RetryOptions.html +8 -0
- package/dist/docs/interfaces/Reversable.html +6 -0
- package/dist/docs/interfaces/SearchBody.html +10 -0
- package/dist/docs/interfaces/SearchProxyBody.html +13 -0
- package/dist/docs/interfaces/SearchQuery.html +19 -0
- package/dist/docs/interfaces/SearchResponse.html +5 -0
- package/dist/docs/interfaces/SearchResult.html +10 -0
- package/dist/docs/interfaces/SimpleSearchParam.html +16 -0
- package/dist/docs/interfaces/SimpleSet.html +7 -0
- package/dist/docs/interfaces/SlackAction.html +5 -0
- package/dist/docs/interfaces/SlackAttachment.html +24 -0
- package/dist/docs/interfaces/SlackPostBody.html +5 -0
- package/dist/docs/interfaces/StorageMakeable.html +10 -0
- package/dist/docs/interfaces/StorageModel.html +16 -0
- package/dist/docs/interfaces/StorageService.html +46 -0
- package/dist/docs/interfaces/Timeout.html +10 -0
- package/dist/docs/interfaces/Transformable.html +20 -0
- package/dist/docs/interfaces/Updatable.html +7 -0
- package/dist/docs/interfaces/View.html +21 -0
- package/dist/docs/interfaces/_web.HttpHeaderSet.html +5 -0
- package/dist/docs/interfaces/_web.HttpHeaderTool.html +26 -0
- package/dist/docs/interfaces/_web.VerifyTokenBody.html +4 -0
- package/dist/docs/interfaces/_web.VerifyTokenResult.html +6 -0
- package/dist/docs/interfaces/elasticsearch.ApiResponse.html +6 -0
- package/dist/docs/interfaces/elasticsearch.ClientExtendsCallbackOptions.html +4 -0
- package/dist/docs/interfaces/elasticsearch.ClientOptions.html +30 -0
- package/dist/docs/interfaces/elasticsearch.NodeOptions.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestEvent.html +6 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.AsyncSearchDelete.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.AsyncSearchGet.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.AsyncSearchStatus.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.AsyncSearchSubmit.html +52 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.AutoscalingDeleteAutoscalingPolicy.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.AutoscalingGetAutoscalingCapacity.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.AutoscalingGetAutoscalingPolicy.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.AutoscalingPutAutoscalingPolicy.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Bulk.html +21 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatAliases.html +15 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatAllocation.html +16 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatCount.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatFielddata.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatHealth.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatHelp.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatIndices.html +21 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatMaster.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatMlDataFrameAnalytics.html +16 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatMlDatafeeds.html +16 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatMlJobs.html +17 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatMlTrainedModels.html +18 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatNodeattrs.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatNodes.html +17 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatPendingTasks.html +15 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatPlugins.html +15 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatRecovery.html +17 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatRepositories.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatSegments.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatShards.html +17 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatSnapshots.html +16 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatTasks.html +17 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatTemplates.html +15 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatThreadPool.html +16 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CatTransforms.html +17 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CcrDeleteAutoFollowPattern.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CcrFollow.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CcrFollowInfo.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CcrFollowStats.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CcrForgetFollower.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CcrGetAutoFollowPattern.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CcrPauseAutoFollowPattern.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CcrPauseFollow.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CcrPutAutoFollowPattern.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CcrResumeAutoFollowPattern.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CcrResumeFollow.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CcrStats.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.CcrUnfollow.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClearScroll.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClosePointInTime.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterAllocationExplain.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterDeleteComponentTemplate.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterDeleteVotingConfigExclusions.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterExistsComponentTemplate.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterGetComponentTemplate.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterGetSettings.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterHealth.html +19 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterPendingTasks.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterPostVotingConfigExclusions.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterPutComponentTemplate.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterPutSettings.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterRemoteInfo.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterReroute.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterState.html +17 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ClusterStats.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Count.html +24 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Create.html +18 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.DanglingIndicesDeleteDanglingIndex.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.DanglingIndicesImportDanglingIndex.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.DanglingIndicesListDanglingIndices.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Delete.html +18 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.DeleteByQuery.html +45 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.DeleteByQueryRethrottle.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.DeleteScript.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.EnrichDeletePolicy.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.EnrichExecutePolicy.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.EnrichGetPolicy.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.EnrichPutPolicy.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.EnrichStats.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.EqlDelete.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.EqlGet.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.EqlGetStatus.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.EqlSearch.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Exists.html +22 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ExistsSource.html +21 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Explain.html +25 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.FeaturesGetFeatures.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.FieldCaps.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Generic.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Get.html +22 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.GetScript.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.GetScriptContext.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.GetScriptLanguages.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.GetSource.html +21 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.GraphExplore.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IlmDeleteLifecycle.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IlmExplainLifecycle.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IlmGetLifecycle.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IlmGetStatus.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IlmMoveToStep.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IlmPutLifecycle.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IlmRemovePolicy.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IlmRetry.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IlmStart.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IlmStop.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Index.html +22 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesAddBlock.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesAnalyze.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesClearCache.html +15 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesClone.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesClose.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesCreate.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesCreateDataStream.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesDataStreamsStats.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesDelete.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesDeleteAlias.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesDeleteDataStream.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesDeleteIndexTemplate.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesDeleteTemplate.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesExists.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesExistsAlias.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesExistsIndexTemplate.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesExistsTemplate.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesExistsType.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesFlush.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesFlushSynced.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesForcemerge.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesFreeze.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesGet.html +16 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesGetAlias.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesGetDataStream.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesGetFieldMapping.html +16 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesGetIndexTemplate.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesGetMapping.html +15 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesGetSettings.html +16 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesGetTemplate.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesGetUpgrade.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesMigrateToDataStream.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesOpen.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesPromoteDataStream.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesPutAlias.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesPutIndexTemplate.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesPutMapping.html +17 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesPutSettings.html +16 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesPutTemplate.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesRecovery.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesRefresh.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesReloadSearchAnalyzers.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesResolveIndex.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesRollover.html +15 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesSegments.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesShardStores.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesShrink.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesSimulateIndexTemplate.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesSimulateTemplate.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesSplit.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesStats.html +19 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesUnfreeze.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesUpdateAliases.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesUpgrade.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IndicesValidateQuery.html +22 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Info.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IngestDeletePipeline.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IngestGetPipeline.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IngestProcessorGrok.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IngestPutPipeline.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.IngestSimulate.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.LicenseDelete.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.LicenseGet.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.LicenseGetBasicStatus.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.LicenseGetTrialStatus.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.LicensePost.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.LicensePostStartBasic.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.LicensePostStartTrial.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.LogstashDeletePipeline.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.LogstashGetPipeline.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.LogstashPutPipeline.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Mget.html +20 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MigrationDeprecations.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlCloseJob.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlDeleteCalendar.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlDeleteCalendarEvent.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlDeleteCalendarJob.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlDeleteDataFrameAnalytics.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlDeleteDatafeed.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlDeleteExpiredData.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlDeleteFilter.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlDeleteForecast.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlDeleteJob.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlDeleteModelSnapshot.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlDeleteTrainedModel.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlEstimateModelMemory.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlEvaluateDataFrame.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlExplainDataFrameAnalytics.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlFlushJob.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlForecast.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetBuckets.html +19 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetCalendarEvents.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetCalendars.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetCategories.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetDataFrameAnalytics.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetDataFrameAnalyticsStats.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetDatafeedStats.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetDatafeeds.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetFilters.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetInfluencers.html +17 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetJobStats.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetJobs.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetModelSnapshots.html +16 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetOverallBuckets.html +17 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetRecords.html +17 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetTrainedModels.html +16 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlGetTrainedModelsStats.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlInfo.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlOpenJob.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlPostCalendarEvents.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlPostData.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlPreviewDatafeed.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlPutCalendar.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlPutCalendarJob.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlPutDataFrameAnalytics.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlPutDatafeed.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlPutFilter.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlPutJob.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlPutTrainedModel.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlRevertModelSnapshot.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlSetUpgradeMode.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlStartDataFrameAnalytics.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlStartDatafeed.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlStopDataFrameAnalytics.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlStopDatafeed.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlUpdateDataFrameAnalytics.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlUpdateDatafeed.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlUpdateFilter.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlUpdateJob.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlUpdateModelSnapshot.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlUpgradeJobSnapshot.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlValidate.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MlValidateDetector.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MonitoringBulk.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Msearch.html +17 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.MsearchTemplate.html +15 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Mtermvectors.html +22 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.NodesHotThreads.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.NodesInfo.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.NodesReloadSecureSettings.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.NodesStats.html +18 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.NodesUsage.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.OpenPointInTime.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Ping.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.PutScript.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.RankEval.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Reindex.html +16 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ReindexRethrottle.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.RenderSearchTemplate.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.RollupDeleteJob.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.RollupGetJobs.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.RollupGetRollupCaps.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.RollupGetRollupIndexCaps.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.RollupPutJob.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.RollupRollup.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.RollupRollupSearch.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.RollupStartJob.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.RollupStopJob.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.ScriptsPainlessExecute.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Scroll.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Search.html +55 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SearchShards.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SearchTemplate.html +23 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SearchableSnapshotsClearCache.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SearchableSnapshotsMount.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SearchableSnapshotsRepositoryStats.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SearchableSnapshotsStats.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityAuthenticate.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityChangePassword.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityClearApiKeyCache.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityClearCachedPrivileges.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityClearCachedRealms.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityClearCachedRoles.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityCreateApiKey.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityDeletePrivileges.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityDeleteRole.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityDeleteRoleMapping.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityDeleteUser.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityDisableUser.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityEnableUser.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityGetApiKey.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityGetBuiltinPrivileges.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityGetPrivileges.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityGetRole.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityGetRoleMapping.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityGetToken.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityGetUser.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityGetUserPrivileges.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityGrantApiKey.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityHasPrivileges.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityInvalidateApiKey.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityInvalidateToken.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityPutPrivileges.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityPutRole.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityPutRoleMapping.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SecurityPutUser.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SlmDeleteLifecycle.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SlmExecuteLifecycle.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SlmExecuteRetention.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SlmGetLifecycle.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SlmGetStats.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SlmGetStatus.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SlmPutLifecycle.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SlmStart.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SlmStop.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SnapshotCleanupRepository.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SnapshotClone.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SnapshotCreate.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SnapshotCreateRepository.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SnapshotDelete.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SnapshotDeleteRepository.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SnapshotGet.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SnapshotGetRepository.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SnapshotRestore.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SnapshotStatus.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SnapshotVerifyRepository.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SqlClearCursor.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SqlQuery.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SqlTranslate.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.SslCertificates.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.TasksCancel.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.TasksGet.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.TasksList.html +14 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Termvectors.html +22 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.TextStructureFindStructure.html +22 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.TransformDeleteTransform.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.TransformGetTransform.html +12 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.TransformGetTransformStats.html +11 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.TransformPreviewTransform.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.TransformPutTransform.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.TransformStartTransform.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.TransformStopTransform.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.TransformUpdateTransform.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.Update.html +25 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.UpdateByQuery.html +47 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.UpdateByQueryRethrottle.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.WatcherAckWatch.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.WatcherActivateWatch.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.WatcherDeactivateWatch.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.WatcherDeleteWatch.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.WatcherExecuteWatch.html +10 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.WatcherGetWatch.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.WatcherPutWatch.html +13 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.WatcherQueryWatches.html +8 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.WatcherStart.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.WatcherStats.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.WatcherStop.html +7 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.XpackInfo.html +9 -0
- package/dist/docs/interfaces/elasticsearch.RequestParams.XpackUsage.html +8 -0
- package/dist/docs/interfaces/elasticsearch.ResurrectEvent.html +6 -0
- package/dist/docs/media/2019-11-26-23-43-47.png +0 -0
- package/dist/docs/media/CODE_OF_CONDUCT.md +76 -0
- package/dist/docs/media/HOW_TO_UPGRADE_V4.md +185 -0
- package/dist/docs/media/LICENSE +21 -0
- package/dist/docs/media/lemon-core-ms-arch.png +0 -0
- package/dist/docs/media/lemon-protocol-flow.png +0 -0
- package/dist/docs/modules/_sns.html +1 -0
- package/dist/docs/modules/_sqs.html +1 -0
- package/dist/docs/modules/_web.html +1 -0
- package/dist/docs/modules/_wss.html +1 -0
- package/dist/docs/modules/elasticsearch.RequestParams.html +1 -0
- package/dist/docs/modules/elasticsearch.errors.html +1 -0
- package/dist/docs/modules/elasticsearch.html +1 -0
- package/dist/docs/modules/lib.html +1 -0
- package/dist/docs/modules/tools.html +1 -0
- package/dist/docs/modules.html +1 -0
- package/dist/docs/types/ALBEvent.html +1 -0
- package/dist/docs/types/ALBHandler.html +1 -0
- package/dist/docs/types/ALBResult.html +1 -0
- package/dist/docs/types/APIHttpMethod.html +2 -0
- package/dist/docs/types/CacheKey.html +2 -0
- package/dist/docs/types/CognitoHandler.html +1 -0
- package/dist/docs/types/ConfigService.html +1 -0
- package/dist/docs/types/Context.html +1 -0
- package/dist/docs/types/CoreModelFilter.html +5 -0
- package/dist/docs/types/CronHandler.html +1 -0
- package/dist/docs/types/CronNextHandler.html +1 -0
- package/dist/docs/types/DDSEvent.html +1 -0
- package/dist/docs/types/DynamoScanFilter.html +1 -0
- package/dist/docs/types/DynamoStreamEvent.html +1 -0
- package/dist/docs/types/DynamoStreamHandler.html +1 -0
- package/dist/docs/types/DynamoStreamNextHandler.html +1 -0
- package/dist/docs/types/EngineLogger.html +1 -0
- package/dist/docs/types/EngineType.html +2 -0
- package/dist/docs/types/FailedItem.html +2 -0
- package/dist/docs/types/HandlerType.html +1 -0
- package/dist/docs/types/KEY_TYPE.html +1 -0
- package/dist/docs/types/KeyValueMap.html +2 -0
- package/dist/docs/types/MyHandler.html +1 -0
- package/dist/docs/types/NextDecoder.html +2 -0
- package/dist/docs/types/NextHandler.html +6 -0
- package/dist/docs/types/NextMode.html +5 -0
- package/dist/docs/types/NotificationHandler.html +1 -0
- package/dist/docs/types/NotificationNextHandler.html +6 -0
- package/dist/docs/types/QueryTerm.html +6 -0
- package/dist/docs/types/SNSEvent.html +1 -0
- package/dist/docs/types/SNSHandler.html +1 -0
- package/dist/docs/types/SQSEvent.html +1 -0
- package/dist/docs/types/SQSHandler.html +1 -0
- package/dist/docs/types/STAGE.html +1 -0
- package/dist/docs/types/SearchType.html +1 -0
- package/dist/docs/types/SortTerm.html +6 -0
- package/dist/docs/types/WEBEvent.html +1 -0
- package/dist/docs/types/WEBHandler.html +1 -0
- package/dist/docs/types/WEBResult.html +1 -0
- package/dist/docs/types/WSSEvent.html +1 -0
- package/dist/docs/types/WSSHandler.html +1 -0
- package/dist/docs/types/WSSResult.html +1 -0
- package/dist/docs/types/elasticsearch.ApiError.html +1 -0
- package/dist/docs/variables/CORE_FIELDS.html +1 -0
- package/dist/docs/variables/DEFAULT_TIME_ZONE.html +1 -0
- package/dist/docs/variables/ENGINE_KEY_IN_SCOPE.html +2 -0
- package/dist/docs/variables/_ERROR.html +2 -0
- package/dist/docs/variables/_ES6.html +5 -0
- package/dist/docs/variables/_T.html +39 -0
- package/dist/docs/variables/_U.html +1 -0
- package/dist/docs/variables/_engine.html +1 -0
- package/dist/docs/variables/_err.html +1 -0
- package/dist/docs/variables/_hangul.html +1 -0
- package/dist/docs/variables/_inf.html +1 -0
- package/dist/docs/variables/_log.html +1 -0
- package/dist/docs/variables/_rand.html +7 -0
- package/dist/docs/variables/default.html +16 -0
- package/dist/docs/variables/do_parrallel.html +12 -0
- package/dist/docs/variables/elasticsearch.events.html +1 -0
- package/dist/docs/variables/my_parrallel.html +17 -0
- package/dist/engine/utilities.d.ts +3 -3
- package/dist/engine/utilities.js +11 -10
- package/dist/engine/utilities.js.map +1 -1
- package/dist/exec-cli.d.ts +2 -0
- package/dist/exec-cli.js +211 -0
- package/dist/exec-cli.js.map +1 -0
- package/dist/extended/abstract-service.js +2 -2
- package/dist/extended/abstract-service.js.map +1 -1
- package/dist/helpers/helpers.d.ts +65 -10
- package/dist/helpers/helpers.js +155 -17
- package/dist/helpers/helpers.js.map +1 -1
- package/dist/helpers/index.d.ts +1 -0
- package/dist/helpers/index.js +1 -0
- package/dist/helpers/index.js.map +1 -1
- package/dist/helpers/types.d.ts +217 -0
- package/dist/helpers/types.js +3 -0
- package/dist/helpers/types.js.map +1 -0
- package/dist/lib/dynamo/expressions.d.ts +14 -0
- package/dist/lib/dynamo/expressions.js +212 -0
- package/dist/lib/dynamo/expressions.js.map +1 -0
- package/dist/lib/dynamo/query.d.ts +43 -0
- package/dist/lib/dynamo/query.js +246 -0
- package/dist/lib/dynamo/query.js.map +1 -0
- package/dist/lib/dynamo/scan.d.ts +33 -0
- package/dist/lib/dynamo/scan.js +172 -0
- package/dist/lib/dynamo/scan.js.map +1 -0
- package/dist/lib/dynamo/serializer.d.ts +12 -0
- package/dist/lib/dynamo/serializer.js +243 -0
- package/dist/lib/dynamo/serializer.js.map +1 -0
- package/dist/lib/dynamo/utils.d.ts +15 -0
- package/dist/lib/dynamo/utils.js +129 -0
- package/dist/lib/dynamo/utils.js.map +1 -0
- package/dist/tools/shared.d.ts +35 -0
- package/dist/tools/shared.js +134 -0
- package/dist/tools/shared.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ResurrectEvent | lemon-core</title><meta name="description" content="Documentation for lemon-core"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">lemon-core</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="../modules/elasticsearch.html">elasticsearch</a></li><li><a href="" aria-current="page">ResurrectEvent</a></li></ul><h1>Interface ResurrectEvent</h1></div><div class="tsd-signature"><span class="tsd-signature-keyword">interface</span> <span class="tsd-kind-interface">ResurrectEvent</span> <span class="tsd-signature-symbol">{</span><br/> <a class="tsd-kind-property" href="#connection">connection</a><span class="tsd-signature-symbol">:</span> <a href="../classes/elasticsearch.Connection.html" class="tsd-signature-type tsd-kind-class">Connection</a><span class="tsd-signature-symbol">;</span><br/> <a class="tsd-kind-property" href="#isalive">isAlive</a><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">;</span><br/> <a class="tsd-kind-property" href="#name">name</a><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">;</span><br/> <a class="tsd-kind-property" href="#request">request</a><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{</span> <span class="tsd-kind-property">id</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span> <span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">;</span><br/> <a class="tsd-kind-property" href="#strategy">strategy</a><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">;</span><br/><span class="tsd-signature-symbol">}</span></div><aside class="tsd-sources"><ul><li>Defined in node_modules/@elastic/elasticsearch/lib/pool/index.d.ts:70</li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h5 class="tsd-index-heading uppercase">Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="#connection" class="tsd-index-link tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>connection</span></a>
|
|
2
|
+
<a href="#isalive" class="tsd-index-link tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>is<wbr/>Alive</span></a>
|
|
3
|
+
<a href="#name" class="tsd-index-link tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>name</span></a>
|
|
4
|
+
<a href="#request" class="tsd-index-link tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>request</span></a>
|
|
5
|
+
<a href="#strategy" class="tsd-index-link tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>strategy</span></a>
|
|
6
|
+
</div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Properties</h2></summary><section><section class="tsd-panel tsd-member tsd-is-external"><h3 class="tsd-anchor-link" id="connection"><span>connection</span><a href="#connection" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">connection</span><span class="tsd-signature-symbol">:</span> <a href="../classes/elasticsearch.Connection.html" class="tsd-signature-type tsd-kind-class">Connection</a></div><aside class="tsd-sources"><ul><li>Defined in node_modules/@elastic/elasticsearch/lib/pool/index.d.ts:73</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-external"><h3 class="tsd-anchor-link" id="isalive"><span>is<wbr/>Alive</span><a href="#isalive" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">isAlive</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources"><ul><li>Defined in node_modules/@elastic/elasticsearch/lib/pool/index.d.ts:72</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-external"><h3 class="tsd-anchor-link" id="name"><span>name</span><a href="#name" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in node_modules/@elastic/elasticsearch/lib/pool/index.d.ts:74</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-external"><h3 class="tsd-anchor-link" id="request"><span>request</span><a href="#request" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">request</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{</span> <span class="tsd-kind-property">id</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span> <span class="tsd-signature-symbol">}</span></div><aside class="tsd-sources"><ul><li>Defined in node_modules/@elastic/elasticsearch/lib/pool/index.d.ts:75</li></ul></aside></section><section class="tsd-panel tsd-member tsd-is-external"><h3 class="tsd-anchor-link" id="strategy"><span>strategy</span><a href="#strategy" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">strategy</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in node_modules/@elastic/elasticsearch/lib/pool/index.d.ts:71</li></ul></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#connection" class="tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>connection</span></a><a href="#isalive" class="tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>is<wbr/>Alive</span></a><a href="#name" class="tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>name</span></a><a href="#request" class="tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>request</span></a><a href="#strategy" class="tsd-is-external"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>strategy</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">lemon-core</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
Binary file
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
|
8
|
+
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
|
9
|
+
level of experience, education, socio-economic status, nationality, personal
|
|
10
|
+
appearance, race, religion, or sexual identity and orientation.
|
|
11
|
+
|
|
12
|
+
## Our Standards
|
|
13
|
+
|
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
|
15
|
+
include:
|
|
16
|
+
|
|
17
|
+
* Using welcoming and inclusive language
|
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
|
19
|
+
* Gracefully accepting constructive criticism
|
|
20
|
+
* Focusing on what is best for the community
|
|
21
|
+
* Showing empathy towards other community members
|
|
22
|
+
|
|
23
|
+
Examples of unacceptable behavior by participants include:
|
|
24
|
+
|
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
|
+
advances
|
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
28
|
+
* Public or private harassment
|
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
|
30
|
+
address, without explicit permission
|
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
32
|
+
professional setting
|
|
33
|
+
|
|
34
|
+
## Our Responsibilities
|
|
35
|
+
|
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
|
38
|
+
response to any instances of unacceptable behavior.
|
|
39
|
+
|
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
|
44
|
+
threatening, offensive, or harmful.
|
|
45
|
+
|
|
46
|
+
## Scope
|
|
47
|
+
|
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
|
49
|
+
when an individual is representing the project or its community. Examples of
|
|
50
|
+
representing a project or community include using an official project e-mail
|
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
|
53
|
+
further defined and clarified by project maintainers.
|
|
54
|
+
|
|
55
|
+
## Enforcement
|
|
56
|
+
|
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
+
reported by contacting the project team at steve@lemoncloud.io. All
|
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
|
63
|
+
|
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
|
66
|
+
members of the project's leadership.
|
|
67
|
+
|
|
68
|
+
## Attribution
|
|
69
|
+
|
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
71
|
+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
|
72
|
+
|
|
73
|
+
[homepage]: https://www.contributor-covenant.org
|
|
74
|
+
|
|
75
|
+
For answers to common questions about this code of conduct, see
|
|
76
|
+
https://www.contributor-covenant.org/faq
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
# UPGRADE GUIDE: lemon-core V3 to V4
|
|
2
|
+
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
## 0. Update lemon-core Version
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install lemon-core@^4.1.8 --save
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## 1. Upgrade Node.js Version
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
nvm install 22
|
|
17
|
+
nvm use 22
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
* Update `.nvmrc` file to `22`
|
|
21
|
+
|
|
22
|
+
```diff
|
|
23
|
+
- 18.19.1
|
|
24
|
+
+ 22.15.1
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
* Update `config.js` Node.js runtime version of your profile
|
|
28
|
+
|
|
29
|
+
```diff
|
|
30
|
+
lemon: {
|
|
31
|
+
name: 'lemon-app',
|
|
32
|
+
- runtime: 'nodejs18.x',
|
|
33
|
+
+ runtime: 'nodejs22.x',
|
|
34
|
+
},
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
* Update plugins in serverless.yml
|
|
38
|
+
|
|
39
|
+
```diff
|
|
40
|
+
plugins:
|
|
41
|
+
- - serverless-offline
|
|
42
|
+
+ # - serverless-offline # WARN: fails in Node.js 22.x
|
|
43
|
+
- serverless-aws-documentation
|
|
44
|
+
- serverless-prune-plugin
|
|
45
|
+
- serverless-plugin-log-retention
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
> ### Note
|
|
49
|
+
>
|
|
50
|
+
> If you **don’t modify the `plugins` section** in `serverless.yml`, you may encounter the following issues:
|
|
51
|
+
>
|
|
52
|
+
> When running `npm run deploy` in a Node.js 22, you may encounter the following error:
|
|
53
|
+
>
|
|
54
|
+
> ```bash
|
|
55
|
+
> Error [ERR_REQUIRE_ASYNC_MODULE]: require() cannot be used on an ESM graph with top-level await. Use import() instead. To see where the top-level await comes from, use --experimental-print-required-tla.
|
|
56
|
+
> ```
|
|
57
|
+
>
|
|
58
|
+
> **Workaround**: Execute the deployment command in **Node.js 18** (`nvm use 18`), while keeping the Lambda runtime as `nodejs22.x`.
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## 2. Install `lemon-devkit`
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
npm install --save-dev lemon-devkit
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
### package.json Summary
|
|
69
|
+
|
|
70
|
+
```diff
|
|
71
|
+
{
|
|
72
|
+
"engines": {
|
|
73
|
+
- "node": ">=14",
|
|
74
|
+
+ "node": ">=22"
|
|
75
|
+
},
|
|
76
|
+
"dependencies": {
|
|
77
|
+
- "lemon-core": "^3.x",
|
|
78
|
+
+ "lemon-core": "^4.x",
|
|
79
|
+
},
|
|
80
|
+
"devDependencies": {
|
|
81
|
+
- "lemon-devkit": "^0.0.3",
|
|
82
|
+
+ "lemon-devkit": "^0.0.8",
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
## 3. AWS SDK: v2 to v3 Migration
|
|
90
|
+
|
|
91
|
+
### 3.1 Credential Management
|
|
92
|
+
|
|
93
|
+
Replace legacy `credentials` with `asyncCredentials()`:
|
|
94
|
+
|
|
95
|
+
```ts
|
|
96
|
+
import { asyncCredentials } from 'lemon-core';
|
|
97
|
+
const credentials = await asyncCredentials(PROFILE);
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
* **\[express.ts Updates]**
|
|
101
|
+
|
|
102
|
+
```diff
|
|
103
|
+
export const credentials = async (name?: string) => {
|
|
104
|
+
const profile = $engine.environ('PROFILE', NAME) as string;
|
|
105
|
+
- return $core.tools.credentials(profile);
|
|
106
|
+
+ return $core.tools.asyncCredentials(profile);
|
|
107
|
+
};
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
### 3.2 Client Initialization
|
|
111
|
+
|
|
112
|
+
Use `awsConfig($engine, region)` for v3 clients:
|
|
113
|
+
|
|
114
|
+
```ts
|
|
115
|
+
import { SQSClient } from '@aws-sdk/client-sqs';
|
|
116
|
+
import $engine, { awsConfig } from 'lemon-core';
|
|
117
|
+
|
|
118
|
+
const client = new SQSClient(awsConfig($engine, 'ap-northeast-2'));
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
## 4. Update src/cores
|
|
124
|
+
|
|
125
|
+
To update the src/cores directory in your project using the latest version from [lemon-templates-api](https://github.com/lemoncloud-io/lemon-templates-api), follow these steps:
|
|
126
|
+
|
|
127
|
+
1. In your project: Delete the existing src/cores folder.
|
|
128
|
+
2. From lemon-templates-api: Copy the entire src/cores directory.
|
|
129
|
+
3. In your project: Paste the copied src/cores directory into the same path (src/cores).
|
|
130
|
+
|
|
131
|
+
## 5. DynamoDB IAM Permissions (v4.1.x)
|
|
132
|
+
|
|
133
|
+
Starting from `lemon-core@4.1.x`, batch operations require additional IAM permissions.
|
|
134
|
+
|
|
135
|
+
### Required Permissions
|
|
136
|
+
|
|
137
|
+
```yaml
|
|
138
|
+
iamRoleStatements:
|
|
139
|
+
- Effect: Allow
|
|
140
|
+
Action:
|
|
141
|
+
# Existing permissions
|
|
142
|
+
- dynamodb:GetItem
|
|
143
|
+
- dynamodb:PutItem
|
|
144
|
+
- dynamodb:UpdateItem
|
|
145
|
+
- dynamodb:DeleteItem
|
|
146
|
+
- dynamodb:Query
|
|
147
|
+
- dynamodb:Scan
|
|
148
|
+
# NEW: v4.1.x batch operations
|
|
149
|
+
- dynamodb:BatchGetItem
|
|
150
|
+
- dynamodb:BatchWriteItem
|
|
151
|
+
Resource:
|
|
152
|
+
- "arn:aws:dynamodb:${aws:region}:${aws:accountId}:table/${self:custom.tables.main}"
|
|
153
|
+
- "arn:aws:dynamodb:${aws:region}:${aws:accountId}:table/${self:custom.tables.main}/index/*"
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
### New Batch Methods
|
|
157
|
+
|
|
158
|
+
| Method | Description | Required Permission |
|
|
159
|
+
|--------|-------------|---------------------|
|
|
160
|
+
| `mreadItem` | Batch read (max 100 items/request) | `BatchGetItem` |
|
|
161
|
+
| `msaveItem` | Batch save (max 25 items/request) | `BatchWriteItem` |
|
|
162
|
+
| `mupdateItem` | Batch update (max 25 items/request) | `BatchWriteItem` |
|
|
163
|
+
| `saveAllUpdates({ useBatch: true })` | AbstractProxy batch mode | `BatchWriteItem` |
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
## At-a-Glance Checklist
|
|
168
|
+
|
|
169
|
+
* [ ] **Upgrade lemon-core** to `^4.1.8`
|
|
170
|
+
* [ ] **Upgrade to Node.js 22**
|
|
171
|
+
* Update `.nvmrc`
|
|
172
|
+
* Update `config.js` runtime
|
|
173
|
+
* Comment out `serverless-offline` plugin
|
|
174
|
+
* [ ] **Install lemon-devkit** (devDependency)
|
|
175
|
+
* [ ] **Migrate AWS SDK v2 → v3**
|
|
176
|
+
* `credentials()` → `asyncCredentials()`
|
|
177
|
+
* Use `awsConfig($engine, region)`
|
|
178
|
+
* [ ] **Update src/cores** from lemon-templates-api
|
|
179
|
+
* [ ] **Add DynamoDB IAM Permissions** (v4.1.x)
|
|
180
|
+
* `dynamodb:BatchGetItem`
|
|
181
|
+
* `dynamodb:BatchWriteItem`
|
|
182
|
+
* [ ] **Review CI/CD environments**
|
|
183
|
+
* Ensure Node.js 22 in `serverless.yml`, `Dockerfile`, etc.
|
|
184
|
+
|
|
185
|
+
---
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 LemonCloud Co Ltd.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>$sns | lemon-core</title><meta name="description" content="Documentation for lemon-core"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">lemon-core</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="" aria-current="page">$sns</a></li></ul><h1>Namespace $sns</h1></div><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-References"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>References</h2></summary><dl class="tsd-member-summaries"><dt class="tsd-member-summary" id="lambdasnshandler"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Class"><use href="../assets/icons.svg#icon-128"></use></svg><span>LambdaSNSHandler</span><span> → </span><a href="../classes/LambdaSNSHandler.html">LambdaSNSHandler</a><a href="#lambdasnshandler" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd></dl></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-References"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>References</summary><div><a href="#lambdasnshandler"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Reference"><use href="../assets/icons.svg#icon-4194304"></use></svg><span>Lambda<wbr/>SNS<wbr/>Handler</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">lemon-core</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>$sqs | lemon-core</title><meta name="description" content="Documentation for lemon-core"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">lemon-core</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="" aria-current="page">$sqs</a></li></ul><h1>Namespace $sqs</h1></div><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-References"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>References</h2></summary><dl class="tsd-member-summaries"><dt class="tsd-member-summary" id="lambdasqshandler"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Class"><use href="../assets/icons.svg#icon-128"></use></svg><span>LambdaSQSHandler</span><span> → </span><a href="../classes/LambdaSQSHandler.html">LambdaSQSHandler</a><a href="#lambdasqshandler" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd></dl></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-References"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>References</summary><div><a href="#lambdasqshandler"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Reference"><use href="../assets/icons.svg#icon-4194304"></use></svg><span>Lambda<wbr/>SQS<wbr/>Handler</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">lemon-core</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>$web | lemon-core</title><meta name="description" content="Documentation for lemon-core"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">lemon-core</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="" aria-current="page">$web</a></li></ul><h1>Namespace $web</h1></div><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Classes"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Classes</h2></summary><dl class="tsd-member-summaries"><dt class="tsd-member-summary" id="myhttpheadertool"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Class"><use href="../assets/icons.svg#icon-128"></use></svg><a href="../classes/_web.MyHttpHeaderTool.html">MyHttpHeaderTool</a><a href="#myhttpheadertool" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd></dl></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Interfaces"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Interfaces</h2></summary><dl class="tsd-member-summaries"><dt class="tsd-member-summary" id="httpheaderset"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Interface"><use href="../assets/icons.svg#icon-256"></use></svg><a href="../interfaces/_web.HttpHeaderSet.html">HttpHeaderSet</a><a href="#httpheaderset" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd><dt class="tsd-member-summary" id="httpheadertool"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Interface"><use href="../assets/icons.svg#icon-256"></use></svg><a href="../interfaces/_web.HttpHeaderTool.html">HttpHeaderTool</a><a href="#httpheadertool" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd><dt class="tsd-member-summary" id="verifytokenbody"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Interface"><use href="../assets/icons.svg#icon-256"></use></svg><a href="../interfaces/_web.VerifyTokenBody.html">VerifyTokenBody</a><a href="#verifytokenbody" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd><dt class="tsd-member-summary" id="verifytokenresult"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Interface"><use href="../assets/icons.svg#icon-256"></use></svg><a href="../interfaces/_web.VerifyTokenResult.html">VerifyTokenResult</a><a href="#verifytokenresult" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd></dl></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Functions"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Functions</h2></summary><dl class="tsd-member-summaries"><dt class="tsd-member-summary" id="buildresponse"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><a href="../functions/_web.buildResponse.html">buildResponse</a><a href="#buildresponse" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd><dt class="tsd-member-summary" id="failure"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><a href="../functions/_web.failure.html">failure</a><a href="#failure" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd><dt class="tsd-member-summary" id="mxnextfailure"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><a href="../functions/_web.mxNextFailure.html">mxNextFailure</a><a href="#mxnextfailure" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd><dt class="tsd-member-summary" id="mxnexthandler"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><a href="../functions/_web.mxNextHandler.html">mxNextHandler</a><a href="#mxnexthandler" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd><dt class="tsd-member-summary" id="notfound"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><a href="../functions/_web.notfound.html">notfound</a><a href="#notfound" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd><dt class="tsd-member-summary" id="promised"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><a href="../functions/_web.promised.html">promised</a><a href="#promised" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd><dt class="tsd-member-summary" id="redirect"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><a href="../functions/_web.redirect.html">redirect</a><a href="#redirect" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd><dt class="tsd-member-summary" id="success"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><a href="../functions/_web.success.html">success</a><a href="#success" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd></dl></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-References"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>References</h2></summary><dl class="tsd-member-summaries"><dt class="tsd-member-summary" id="corewebcontroller"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Interface"><use href="../assets/icons.svg#icon-256"></use></svg><span>CoreWEBController</span><span> → </span><a href="../interfaces/CoreWEBController.html">CoreWEBController</a><a href="#corewebcontroller" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd><dt class="tsd-member-summary" id="lambdawebhandler"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Class"><use href="../assets/icons.svg#icon-128"></use></svg><span>LambdaWEBHandler</span><span> → </span><a href="../classes/LambdaWEBHandler.html">LambdaWEBHandler</a><a href="#lambdawebhandler" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd></dl></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Classes"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Classes</summary><div><a href="#myhttpheadertool"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Class"><use href="../assets/icons.svg#icon-128"></use></svg><span>My<wbr/>Http<wbr/>Header<wbr/>Tool</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Interfaces"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Interfaces</summary><div><a href="#httpheaderset"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Interface"><use href="../assets/icons.svg#icon-256"></use></svg><span>Http<wbr/>Header<wbr/>Set</span></a><a href="#httpheadertool"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Interface"><use href="../assets/icons.svg#icon-256"></use></svg><span>Http<wbr/>Header<wbr/>Tool</span></a><a href="#verifytokenbody"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Interface"><use href="../assets/icons.svg#icon-256"></use></svg><span>Verify<wbr/>Token<wbr/>Body</span></a><a href="#verifytokenresult"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Interface"><use href="../assets/icons.svg#icon-256"></use></svg><span>Verify<wbr/>Token<wbr/>Result</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Functions"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Functions</summary><div><a href="#buildresponse"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><span>build<wbr/>Response</span></a><a href="#failure"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><span>failure</span></a><a href="#mxnextfailure"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><span>mx<wbr/>Next<wbr/>Failure</span></a><a href="#mxnexthandler"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><span>mx<wbr/>Next<wbr/>Handler</span></a><a href="#notfound"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><span>notfound</span></a><a href="#promised"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><span>promised</span></a><a href="#redirect"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><span>redirect</span></a><a href="#success"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><span>success</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-References"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>References</summary><div><a href="#corewebcontroller"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Reference"><use href="../assets/icons.svg#icon-4194304"></use></svg><span>Core<wbr/>WEB<wbr/>Controller</span></a><a href="#lambdawebhandler"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Reference"><use href="../assets/icons.svg#icon-4194304"></use></svg><span>Lambda<wbr/>WEB<wbr/>Handler</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">lemon-core</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>$wss | lemon-core</title><meta name="description" content="Documentation for lemon-core"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">lemon-core</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="" aria-current="page">$wss</a></li></ul><h1>Namespace $wss</h1></div><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Functions"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Functions</h2></summary><dl class="tsd-member-summaries"><dt class="tsd-member-summary" id="buildresponse"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><a href="../functions/_wss.buildResponse.html">buildResponse</a><a href="#buildresponse" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd><dt class="tsd-member-summary" id="failure"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><a href="../functions/_wss.failure.html">failure</a><a href="#failure" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd><dt class="tsd-member-summary" id="notfound"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><a href="../functions/_wss.notfound.html">notfound</a><a href="#notfound" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd><dt class="tsd-member-summary" id="success"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><a href="../functions/_wss.success.html">success</a><a href="#success" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd></dl></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-References"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>References</h2></summary><dl class="tsd-member-summaries"><dt class="tsd-member-summary" id="lambdawsshandler"><span class="tsd-member-summary-name"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Class"><use href="../assets/icons.svg#icon-128"></use></svg><span>LambdaWSSHandler</span><span> → </span><a href="../classes/LambdaWSSHandler.html">LambdaWSSHandler</a><a href="#lambdawsshandler" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></span></dt><dd class="tsd-member-summary"></dd></dl></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Functions"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Functions</summary><div><a href="#buildresponse"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><span>build<wbr/>Response</span></a><a href="#failure"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><span>failure</span></a><a href="#notfound"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><span>notfound</span></a><a href="#success"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Function"><use href="../assets/icons.svg#icon-64"></use></svg><span>success</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-References"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>References</summary><div><a href="#lambdawsshandler"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Reference"><use href="../assets/icons.svg#icon-4194304"></use></svg><span>Lambda<wbr/>WSS<wbr/>Handler</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">lemon-core</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|