@bitblit/ratchet-epsilon-common 4.0.419-alpha → 4.0.421-alpha
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/lib/background/background-dynamo-log-table-handler.d.ts +11 -0
- package/lib/background/background-dynamo-log-table-handler.js +38 -0
- package/lib/background/background-dynamo-log-table-handler.js.map +1 -0
- package/lib/background/background-entry.d.ts +4 -0
- package/lib/background/background-entry.js +2 -0
- package/lib/background/background-entry.js.map +1 -0
- package/lib/background/background-execution-event-type.d.ts +8 -0
- package/lib/background/background-execution-event-type.js +8 -0
- package/lib/background/background-execution-event-type.js.map +1 -0
- package/lib/background/background-execution-event.d.ts +8 -0
- package/lib/background/background-execution-event.js +2 -0
- package/lib/background/background-execution-event.js.map +1 -0
- package/lib/background/background-execution-listener.d.ts +5 -0
- package/lib/background/background-execution-listener.js +2 -0
- package/lib/background/background-execution-listener.js.map +1 -0
- package/lib/background/background-handler.d.ts +29 -0
- package/lib/background/background-handler.js +280 -0
- package/lib/background/background-handler.js.map +1 -0
- package/lib/background/background-http-adapter-handler.d.ts +22 -0
- package/lib/background/background-http-adapter-handler.js +129 -0
- package/lib/background/background-http-adapter-handler.js.map +1 -0
- package/lib/background/background-meta-response-internal.d.ts +5 -0
- package/lib/background/background-meta-response-internal.js +2 -0
- package/lib/background/background-meta-response-internal.js.map +1 -0
- package/lib/background/background-process-handling.d.ts +5 -0
- package/lib/background/background-process-handling.js +5 -0
- package/lib/background/background-process-handling.js.map +1 -0
- package/lib/background/background-process-log-table-entry.d.ts +11 -0
- package/lib/background/background-process-log-table-entry.js +2 -0
- package/lib/background/background-process-log-table-entry.js.map +1 -0
- package/lib/background/background-queue-response-internal.d.ts +8 -0
- package/lib/background/background-queue-response-internal.js +2 -0
- package/lib/background/background-queue-response-internal.js.map +1 -0
- package/lib/background/background-validator.d.ts +17 -0
- package/lib/background/background-validator.js +87 -0
- package/lib/background/background-validator.js.map +1 -0
- package/lib/background/epsilon-background-process-error.d.ts +30 -0
- package/lib/background/epsilon-background-process-error.js +94 -0
- package/lib/background/epsilon-background-process-error.js.map +1 -0
- package/lib/background/index.d.ts +20 -0
- package/lib/background/index.js +21 -0
- package/lib/background/index.js.map +1 -0
- package/lib/background/internal-background-entry.d.ts +8 -0
- package/lib/background/internal-background-entry.js +2 -0
- package/lib/background/internal-background-entry.js.map +1 -0
- package/lib/background/manager/abstract-background-manager.d.ts +19 -0
- package/lib/background/manager/abstract-background-manager.js +90 -0
- package/lib/background/manager/abstract-background-manager.js.map +1 -0
- package/lib/background/manager/aws-large-payload-s3-sqs-sns-background-manager.d.ts +19 -0
- package/lib/background/manager/aws-large-payload-s3-sqs-sns-background-manager.js +58 -0
- package/lib/background/manager/aws-large-payload-s3-sqs-sns-background-manager.js.map +1 -0
- package/lib/background/manager/aws-sqs-sns-background-manager.d.ts +23 -0
- package/lib/background/manager/aws-sqs-sns-background-manager.js +154 -0
- package/lib/background/manager/aws-sqs-sns-background-manager.js.map +1 -0
- package/lib/background/manager/background-manager-like.d.ts +18 -0
- package/lib/background/manager/background-manager-like.js +2 -0
- package/lib/background/manager/background-manager-like.js.map +1 -0
- package/lib/background/manager/single-thread-local-background-manager.d.ts +15 -0
- package/lib/background/manager/single-thread-local-background-manager.js +46 -0
- package/lib/background/manager/single-thread-local-background-manager.js.map +1 -0
- package/lib/background/s3-background-transaction-logger.d.ts +17 -0
- package/lib/background/s3-background-transaction-logger.js +53 -0
- package/lib/background/s3-background-transaction-logger.js.map +1 -0
- package/lib/build/index.d.ts +1 -0
- package/lib/build/index.js +2 -0
- package/lib/build/index.js.map +1 -0
- package/lib/build/ratchet-epsilon-common-info.d.ts +5 -0
- package/lib/build/ratchet-epsilon-common-info.js +15 -0
- package/lib/build/ratchet-epsilon-common-info.js.map +1 -0
- package/lib/built-in/background/echo-processor.d.ts +7 -0
- package/lib/built-in/background/echo-processor.js +16 -0
- package/lib/built-in/background/echo-processor.js.map +1 -0
- package/lib/built-in/background/log-and-enqueue-echo-processor.d.ts +6 -0
- package/lib/built-in/background/log-and-enqueue-echo-processor.js +13 -0
- package/lib/built-in/background/log-and-enqueue-echo-processor.js.map +1 -0
- package/lib/built-in/background/log-message-background-error-processor.d.ts +5 -0
- package/lib/built-in/background/log-message-background-error-processor.js +7 -0
- package/lib/built-in/background/log-message-background-error-processor.js.map +1 -0
- package/lib/built-in/background/no-op-processor.d.ts +6 -0
- package/lib/built-in/background/no-op-processor.js +10 -0
- package/lib/built-in/background/no-op-processor.js.map +1 -0
- package/lib/built-in/background/retry-processor.d.ts +16 -0
- package/lib/built-in/background/retry-processor.js +41 -0
- package/lib/built-in/background/retry-processor.js.map +1 -0
- package/lib/built-in/background/sample-delay-processor.d.ts +6 -0
- package/lib/built-in/background/sample-delay-processor.js +14 -0
- package/lib/built-in/background/sample-delay-processor.js.map +1 -0
- package/lib/built-in/background/sample-input-validated-processor-data.d.ts +4 -0
- package/lib/built-in/background/sample-input-validated-processor-data.js +2 -0
- package/lib/built-in/background/sample-input-validated-processor-data.js.map +1 -0
- package/lib/built-in/background/sample-input-validated-processor.d.ts +8 -0
- package/lib/built-in/background/sample-input-validated-processor.js +13 -0
- package/lib/built-in/background/sample-input-validated-processor.js.map +1 -0
- package/lib/built-in/built-in-trace-id-generators.d.ts +5 -0
- package/lib/built-in/built-in-trace-id-generators.js +20 -0
- package/lib/built-in/built-in-trace-id-generators.js.map +1 -0
- package/lib/built-in/daemon/daemon-authorizer-function.d.ts +3 -0
- package/lib/built-in/daemon/daemon-authorizer-function.js +2 -0
- package/lib/built-in/daemon/daemon-authorizer-function.js.map +1 -0
- package/lib/built-in/daemon/daemon-config.d.ts +8 -0
- package/lib/built-in/daemon/daemon-config.js +2 -0
- package/lib/built-in/daemon/daemon-config.js.map +1 -0
- package/lib/built-in/daemon/daemon-group-selection-function.d.ts +2 -0
- package/lib/built-in/daemon/daemon-group-selection-function.js +2 -0
- package/lib/built-in/daemon/daemon-group-selection-function.js.map +1 -0
- package/lib/built-in/daemon/daemon-handler.d.ts +16 -0
- package/lib/built-in/daemon/daemon-handler.js +60 -0
- package/lib/built-in/daemon/daemon-handler.js.map +1 -0
- package/lib/built-in/daemon/daemon-process-state-list.d.ts +5 -0
- package/lib/built-in/daemon/daemon-process-state-list.js +2 -0
- package/lib/built-in/daemon/daemon-process-state-list.js.map +1 -0
- package/lib/built-in/http/apollo/apollo-util.d.ts +10 -0
- package/lib/built-in/http/apollo/apollo-util.js +37 -0
- package/lib/built-in/http/apollo/apollo-util.js.map +1 -0
- package/lib/built-in/http/apollo/default-epsilon-apollo-context.d.ts +10 -0
- package/lib/built-in/http/apollo/default-epsilon-apollo-context.js +2 -0
- package/lib/built-in/http/apollo/default-epsilon-apollo-context.js.map +1 -0
- package/lib/built-in/http/apollo/epsilon-apollo-cors-method.d.ts +6 -0
- package/lib/built-in/http/apollo/epsilon-apollo-cors-method.js +6 -0
- package/lib/built-in/http/apollo/epsilon-apollo-cors-method.js.map +1 -0
- package/lib/built-in/http/apollo/epsilon-lambda-apollo-context-function-argument.d.ts +5 -0
- package/lib/built-in/http/apollo/epsilon-lambda-apollo-context-function-argument.js +2 -0
- package/lib/built-in/http/apollo/epsilon-lambda-apollo-context-function-argument.js.map +1 -0
- package/lib/built-in/http/apollo/epsilon-lambda-apollo-options.d.ts +10 -0
- package/lib/built-in/http/apollo/epsilon-lambda-apollo-options.js +2 -0
- package/lib/built-in/http/apollo/epsilon-lambda-apollo-options.js.map +1 -0
- package/lib/built-in/http/apollo-filter.d.ts +10 -0
- package/lib/built-in/http/apollo-filter.js +111 -0
- package/lib/built-in/http/apollo-filter.js.map +1 -0
- package/lib/built-in/http/built-in-auth-filters.d.ts +9 -0
- package/lib/built-in/http/built-in-auth-filters.js +108 -0
- package/lib/built-in/http/built-in-auth-filters.js.map +1 -0
- package/lib/built-in/http/built-in-authorizers.d.ts +8 -0
- package/lib/built-in/http/built-in-authorizers.js +40 -0
- package/lib/built-in/http/built-in-authorizers.js.map +1 -0
- package/lib/built-in/http/built-in-filters.d.ts +26 -0
- package/lib/built-in/http/built-in-filters.js +212 -0
- package/lib/built-in/http/built-in-filters.js.map +1 -0
- package/lib/built-in/http/built-in-handlers.d.ts +9 -0
- package/lib/built-in/http/built-in-handlers.js +70 -0
- package/lib/built-in/http/built-in-handlers.js.map +1 -0
- package/lib/built-in/http/log-level-manipulation-filter.d.ts +6 -0
- package/lib/built-in/http/log-level-manipulation-filter.js +17 -0
- package/lib/built-in/http/log-level-manipulation-filter.js.map +1 -0
- package/lib/built-in/http/run-handler-as-filter.d.ts +14 -0
- package/lib/built-in/http/run-handler-as-filter.js +79 -0
- package/lib/built-in/http/run-handler-as-filter.js.map +1 -0
- package/lib/built-in/index.d.ts +26 -0
- package/lib/built-in/index.js +27 -0
- package/lib/built-in/index.js.map +1 -0
- package/lib/cli/index.d.ts +2 -0
- package/lib/cli/index.js +3 -0
- package/lib/cli/index.js.map +1 -0
- package/lib/cli/ratchet-cli-handler.d.ts +6 -0
- package/lib/cli/ratchet-cli-handler.js +21 -0
- package/lib/cli/ratchet-cli-handler.js.map +1 -0
- package/lib/cli/run-background-process-from-command-line.d.ts +3 -0
- package/lib/cli/run-background-process-from-command-line.js +23 -0
- package/lib/cli/run-background-process-from-command-line.js.map +1 -0
- package/lib/config/background/background-aws-config.d.ts +7 -0
- package/lib/config/background/background-aws-config.js +2 -0
- package/lib/config/background/background-aws-config.js.map +1 -0
- package/lib/config/background/background-config.d.ts +14 -0
- package/lib/config/background/background-config.js +2 -0
- package/lib/config/background/background-config.js.map +1 -0
- package/lib/config/background/background-error-processor.d.ts +4 -0
- package/lib/config/background/background-error-processor.js +2 -0
- package/lib/config/background/background-error-processor.js.map +1 -0
- package/lib/config/background/background-processor.d.ts +6 -0
- package/lib/config/background/background-processor.js +2 -0
- package/lib/config/background/background-processor.js.map +1 -0
- package/lib/config/background/background-transaction-log.d.ts +8 -0
- package/lib/config/background/background-transaction-log.js +2 -0
- package/lib/config/background/background-transaction-log.js.map +1 -0
- package/lib/config/background/background-transaction-logger.d.ts +5 -0
- package/lib/config/background/background-transaction-logger.js +2 -0
- package/lib/config/background/background-transaction-logger.js.map +1 -0
- package/lib/config/cron/abstract-cron-entry.d.ts +12 -0
- package/lib/config/cron/abstract-cron-entry.js +2 -0
- package/lib/config/cron/abstract-cron-entry.js.map +1 -0
- package/lib/config/cron/cron-background-entry.d.ts +6 -0
- package/lib/config/cron/cron-background-entry.js +2 -0
- package/lib/config/cron/cron-background-entry.js.map +1 -0
- package/lib/config/cron/cron-config.d.ts +6 -0
- package/lib/config/cron/cron-config.js +2 -0
- package/lib/config/cron/cron-config.js.map +1 -0
- package/lib/config/dynamo-db-config.d.ts +5 -0
- package/lib/config/dynamo-db-config.js +2 -0
- package/lib/config/dynamo-db-config.js.map +1 -0
- package/lib/config/epsilon-config.d.ts +24 -0
- package/lib/config/epsilon-config.js +2 -0
- package/lib/config/epsilon-config.js.map +1 -0
- package/lib/config/epsilon-lambda-event-handler.d.ts +7 -0
- package/lib/config/epsilon-lambda-event-handler.js +2 -0
- package/lib/config/epsilon-lambda-event-handler.js.map +1 -0
- package/lib/config/epsilon-logger-config.d.ts +13 -0
- package/lib/config/epsilon-logger-config.js +2 -0
- package/lib/config/epsilon-logger-config.js.map +1 -0
- package/lib/config/generic-aws-event-handler-function.d.ts +1 -0
- package/lib/config/generic-aws-event-handler-function.js +2 -0
- package/lib/config/generic-aws-event-handler-function.js.map +1 -0
- package/lib/config/http/authorizer-function.d.ts +4 -0
- package/lib/config/http/authorizer-function.js +2 -0
- package/lib/config/http/authorizer-function.js.map +1 -0
- package/lib/config/http/epsilon-authorization-context.d.ts +5 -0
- package/lib/config/http/epsilon-authorization-context.js +2 -0
- package/lib/config/http/epsilon-authorization-context.js.map +1 -0
- package/lib/config/http/extended-api-gateway-event.d.ts +7 -0
- package/lib/config/http/extended-api-gateway-event.js +2 -0
- package/lib/config/http/extended-api-gateway-event.js.map +1 -0
- package/lib/config/http/filter-chain-context.d.ts +14 -0
- package/lib/config/http/filter-chain-context.js +2 -0
- package/lib/config/http/filter-chain-context.js.map +1 -0
- package/lib/config/http/filter-function.d.ts +2 -0
- package/lib/config/http/filter-function.js +2 -0
- package/lib/config/http/filter-function.js.map +1 -0
- package/lib/config/http/handler-function.d.ts +3 -0
- package/lib/config/http/handler-function.js +2 -0
- package/lib/config/http/handler-function.js.map +1 -0
- package/lib/config/http/http-config.d.ts +15 -0
- package/lib/config/http/http-config.js +2 -0
- package/lib/config/http/http-config.js.map +1 -0
- package/lib/config/http/http-processing-config.d.ts +11 -0
- package/lib/config/http/http-processing-config.js +2 -0
- package/lib/config/http/http-processing-config.js.map +1 -0
- package/lib/config/http/mapped-http-processing-config.d.ts +7 -0
- package/lib/config/http/mapped-http-processing-config.js +2 -0
- package/lib/config/http/mapped-http-processing-config.js.map +1 -0
- package/lib/config/http/null-returned-object-handling.d.ts +6 -0
- package/lib/config/http/null-returned-object-handling.js +6 -0
- package/lib/config/http/null-returned-object-handling.js.map +1 -0
- package/lib/config/index.d.ts +35 -0
- package/lib/config/index.js +36 -0
- package/lib/config/index.js.map +1 -0
- package/lib/config/inter-api/inter-api-aws-config.d.ts +5 -0
- package/lib/config/inter-api/inter-api-aws-config.js +2 -0
- package/lib/config/inter-api/inter-api-aws-config.js.map +1 -0
- package/lib/config/inter-api/inter-api-config.d.ts +6 -0
- package/lib/config/inter-api/inter-api-config.js +2 -0
- package/lib/config/inter-api/inter-api-config.js.map +1 -0
- package/lib/config/inter-api/inter-api-process-mapping.d.ts +6 -0
- package/lib/config/inter-api/inter-api-process-mapping.js +2 -0
- package/lib/config/inter-api/inter-api-process-mapping.js.map +1 -0
- package/lib/config/logging-trace-id-generator.d.ts +2 -0
- package/lib/config/logging-trace-id-generator.js +2 -0
- package/lib/config/logging-trace-id-generator.js.map +1 -0
- package/lib/config/no-handlers-found-error.d.ts +3 -0
- package/lib/config/no-handlers-found-error.js +7 -0
- package/lib/config/no-handlers-found-error.js.map +1 -0
- package/lib/config/open-api/open-api-document-components.d.ts +4 -0
- package/lib/config/open-api/open-api-document-components.js +2 -0
- package/lib/config/open-api/open-api-document-components.js.map +1 -0
- package/lib/config/open-api/open-api-document-path.d.ts +2 -0
- package/lib/config/open-api/open-api-document-path.js +2 -0
- package/lib/config/open-api/open-api-document-path.js.map +1 -0
- package/lib/config/open-api/open-api-document.d.ts +6 -0
- package/lib/config/open-api/open-api-document.js +2 -0
- package/lib/config/open-api/open-api-document.js.map +1 -0
- package/lib/config/s3-config.d.ts +6 -0
- package/lib/config/s3-config.js +2 -0
- package/lib/config/s3-config.js.map +1 -0
- package/lib/config/sns-config.d.ts +5 -0
- package/lib/config/sns-config.js +2 -0
- package/lib/config/sns-config.js.map +1 -0
- package/lib/config/sqs-config.d.ts +5 -0
- package/lib/config/sqs-config.js +2 -0
- package/lib/config/sqs-config.js.map +1 -0
- package/lib/epsilon-build-properties.d.ts +9 -0
- package/lib/epsilon-build-properties.js +25 -0
- package/lib/epsilon-build-properties.js.map +1 -0
- package/lib/epsilon-constants.d.ts +16 -0
- package/lib/epsilon-constants.js +47 -0
- package/lib/epsilon-constants.js.map +1 -0
- package/lib/epsilon-global-handler.d.ts +20 -0
- package/lib/epsilon-global-handler.js +177 -0
- package/lib/epsilon-global-handler.js.map +1 -0
- package/lib/epsilon-instance.d.ts +14 -0
- package/lib/epsilon-instance.js +2 -0
- package/lib/epsilon-instance.js.map +1 -0
- package/lib/epsilon-logging-extension-processor.d.ts +6 -0
- package/lib/epsilon-logging-extension-processor.js +16 -0
- package/lib/epsilon-logging-extension-processor.js.map +1 -0
- package/lib/http/auth/api-gateway-adapter-authentication-handler.d.ts +8 -0
- package/lib/http/auth/api-gateway-adapter-authentication-handler.js +73 -0
- package/lib/http/auth/api-gateway-adapter-authentication-handler.js.map +1 -0
- package/lib/http/auth/auth0-web-token-manipulator.d.ts +13 -0
- package/lib/http/auth/auth0-web-token-manipulator.js +62 -0
- package/lib/http/auth/auth0-web-token-manipulator.js.map +1 -0
- package/lib/http/auth/basic-auth-token.d.ts +4 -0
- package/lib/http/auth/basic-auth-token.js +2 -0
- package/lib/http/auth/basic-auth-token.js.map +1 -0
- package/lib/http/auth/google-web-token-manipulator.d.ts +14 -0
- package/lib/http/auth/google-web-token-manipulator.js +71 -0
- package/lib/http/auth/google-web-token-manipulator.js.map +1 -0
- package/lib/http/auth/jwt-ratchet-local-web-token-manipulator.d.ts +11 -0
- package/lib/http/auth/jwt-ratchet-local-web-token-manipulator.js +27 -0
- package/lib/http/auth/jwt-ratchet-local-web-token-manipulator.js.map +1 -0
- package/lib/http/auth/local-web-token-manipulator.d.ts +19 -0
- package/lib/http/auth/local-web-token-manipulator.js +83 -0
- package/lib/http/auth/local-web-token-manipulator.js.map +1 -0
- package/lib/http/auth/web-token-manipulator.d.ts +4 -0
- package/lib/http/auth/web-token-manipulator.js +2 -0
- package/lib/http/auth/web-token-manipulator.js.map +1 -0
- package/lib/http/error/bad-gateway.d.ts +5 -0
- package/lib/http/error/bad-gateway.js +10 -0
- package/lib/http/error/bad-gateway.js.map +1 -0
- package/lib/http/error/bad-request-error.d.ts +5 -0
- package/lib/http/error/bad-request-error.js +10 -0
- package/lib/http/error/bad-request-error.js.map +1 -0
- package/lib/http/error/conflict-error.d.ts +5 -0
- package/lib/http/error/conflict-error.js +10 -0
- package/lib/http/error/conflict-error.js.map +1 -0
- package/lib/http/error/forbidden-error.d.ts +5 -0
- package/lib/http/error/forbidden-error.js +10 -0
- package/lib/http/error/forbidden-error.js.map +1 -0
- package/lib/http/error/gateway-timeout.d.ts +5 -0
- package/lib/http/error/gateway-timeout.js +10 -0
- package/lib/http/error/gateway-timeout.js.map +1 -0
- package/lib/http/error/method-not-allowed-error.d.ts +5 -0
- package/lib/http/error/method-not-allowed-error.js +10 -0
- package/lib/http/error/method-not-allowed-error.js.map +1 -0
- package/lib/http/error/misconfigured-error.d.ts +5 -0
- package/lib/http/error/misconfigured-error.js +10 -0
- package/lib/http/error/misconfigured-error.js.map +1 -0
- package/lib/http/error/not-found-error.d.ts +5 -0
- package/lib/http/error/not-found-error.js +10 -0
- package/lib/http/error/not-found-error.js.map +1 -0
- package/lib/http/error/not-implemented.d.ts +5 -0
- package/lib/http/error/not-implemented.js +10 -0
- package/lib/http/error/not-implemented.js.map +1 -0
- package/lib/http/error/request-timeout-error.d.ts +5 -0
- package/lib/http/error/request-timeout-error.js +10 -0
- package/lib/http/error/request-timeout-error.js.map +1 -0
- package/lib/http/error/service-unavailable.d.ts +5 -0
- package/lib/http/error/service-unavailable.js +10 -0
- package/lib/http/error/service-unavailable.js.map +1 -0
- package/lib/http/error/too-many-requests-error.d.ts +5 -0
- package/lib/http/error/too-many-requests-error.js +10 -0
- package/lib/http/error/too-many-requests-error.js.map +1 -0
- package/lib/http/error/unauthorized-error.d.ts +5 -0
- package/lib/http/error/unauthorized-error.js +10 -0
- package/lib/http/error/unauthorized-error.js.map +1 -0
- package/lib/http/event-util.d.ts +27 -0
- package/lib/http/event-util.js +209 -0
- package/lib/http/event-util.js.map +1 -0
- package/lib/http/index.d.ts +29 -0
- package/lib/http/index.js +30 -0
- package/lib/http/index.js.map +1 -0
- package/lib/http/response-util.d.ts +10 -0
- package/lib/http/response-util.js +142 -0
- package/lib/http/response-util.js.map +1 -0
- package/lib/http/route/epsilon-router.d.ts +8 -0
- package/lib/http/route/epsilon-router.js +2 -0
- package/lib/http/route/epsilon-router.js.map +1 -0
- package/lib/http/route/extended-auth-response-context.d.ts +6 -0
- package/lib/http/route/extended-auth-response-context.js +2 -0
- package/lib/http/route/extended-auth-response-context.js.map +1 -0
- package/lib/http/route/route-mapping.d.ts +12 -0
- package/lib/http/route/route-mapping.js +2 -0
- package/lib/http/route/route-mapping.js.map +1 -0
- package/lib/http/route/route-validator-config.d.ts +5 -0
- package/lib/http/route/route-validator-config.js +2 -0
- package/lib/http/route/route-validator-config.js.map +1 -0
- package/lib/http/route/router-util.d.ts +23 -0
- package/lib/http/route/router-util.js +234 -0
- package/lib/http/route/router-util.js.map +1 -0
- package/lib/http/web-handler.d.ts +23 -0
- package/lib/http/web-handler.js +118 -0
- package/lib/http/web-handler.js.map +1 -0
- package/lib/http/web-v2-handler.d.ts +10 -0
- package/lib/http/web-v2-handler.js +23 -0
- package/lib/http/web-v2-handler.js.map +1 -0
- package/lib/inter-api/index.d.ts +2 -0
- package/lib/inter-api/index.js +3 -0
- package/lib/inter-api/index.js.map +1 -0
- package/lib/inter-api/inter-api-entry.d.ts +7 -0
- package/lib/inter-api/inter-api-entry.js +2 -0
- package/lib/inter-api/inter-api-entry.js.map +1 -0
- package/lib/inter-api/inter-api-util.d.ts +10 -0
- package/lib/inter-api/inter-api-util.js +60 -0
- package/lib/inter-api/inter-api-util.js.map +1 -0
- package/lib/inter-api-manager.d.ts +14 -0
- package/lib/inter-api-manager.js +66 -0
- package/lib/inter-api-manager.js.map +1 -0
- package/lib/lambda-event-handler/cron-epsilon-lambda-event-handler.d.ts +14 -0
- package/lib/lambda-event-handler/cron-epsilon-lambda-event-handler.js +74 -0
- package/lib/lambda-event-handler/cron-epsilon-lambda-event-handler.js.map +1 -0
- package/lib/lambda-event-handler/dynamo-epsilon-lambda-event-handler.d.ts +11 -0
- package/lib/lambda-event-handler/dynamo-epsilon-lambda-event-handler.js +36 -0
- package/lib/lambda-event-handler/dynamo-epsilon-lambda-event-handler.js.map +1 -0
- package/lib/lambda-event-handler/generic-sns-epsilon-lambda-event-handler.d.ts +10 -0
- package/lib/lambda-event-handler/generic-sns-epsilon-lambda-event-handler.js +32 -0
- package/lib/lambda-event-handler/generic-sns-epsilon-lambda-event-handler.js.map +1 -0
- package/lib/lambda-event-handler/generic-sqs-epsilon-lambda-event-handler.d.ts +11 -0
- package/lib/lambda-event-handler/generic-sqs-epsilon-lambda-event-handler.js +36 -0
- package/lib/lambda-event-handler/generic-sqs-epsilon-lambda-event-handler.js.map +1 -0
- package/lib/lambda-event-handler/index.d.ts +6 -0
- package/lib/lambda-event-handler/index.js +7 -0
- package/lib/lambda-event-handler/index.js.map +1 -0
- package/lib/lambda-event-handler/inter-api-epsilon-lambda-event-handler.d.ts +10 -0
- package/lib/lambda-event-handler/inter-api-epsilon-lambda-event-handler.js +24 -0
- package/lib/lambda-event-handler/inter-api-epsilon-lambda-event-handler.js.map +1 -0
- package/lib/lambda-event-handler/s3-epsilon-lambda-event-handler.d.ts +10 -0
- package/lib/lambda-event-handler/s3-epsilon-lambda-event-handler.js +42 -0
- package/lib/lambda-event-handler/s3-epsilon-lambda-event-handler.js.map +1 -0
- package/lib/local-container-server.d.ts +11 -0
- package/lib/local-container-server.js +85 -0
- package/lib/local-container-server.js.map +1 -0
- package/lib/local-server-cert.d.ts +5 -0
- package/lib/local-server-cert.js +68 -0
- package/lib/local-server-cert.js.map +1 -0
- package/lib/local-server.d.ts +19 -0
- package/lib/local-server.js +203 -0
- package/lib/local-server.js.map +1 -0
- package/lib/open-api-util/index.d.ts +3 -0
- package/lib/open-api-util/index.js +4 -0
- package/lib/open-api-util/index.js.map +1 -0
- package/lib/open-api-util/open-api-doc-modifications.d.ts +8 -0
- package/lib/open-api-util/open-api-doc-modifications.js +2 -0
- package/lib/open-api-util/open-api-doc-modifications.js.map +1 -0
- package/lib/open-api-util/open-api-doc-modifier.d.ts +7 -0
- package/lib/open-api-util/open-api-doc-modifier.js +80 -0
- package/lib/open-api-util/open-api-doc-modifier.js.map +1 -0
- package/lib/open-api-util/yaml-combiner.d.ts +3 -0
- package/lib/open-api-util/yaml-combiner.js +28 -0
- package/lib/open-api-util/yaml-combiner.js.map +1 -0
- package/lib/sample/index.d.ts +3 -0
- package/lib/sample/index.js +4 -0
- package/lib/sample/index.js.map +1 -0
- package/lib/sample/sample-server-components.d.ts +10 -0
- package/lib/sample/sample-server-components.js +181 -0
- package/lib/sample/sample-server-components.js.map +1 -0
- package/lib/sample/sample-server-static-files.d.ts +5 -0
- package/lib/sample/sample-server-static-files.js +609 -0
- package/lib/sample/sample-server-static-files.js.map +1 -0
- package/lib/sample/test-error-server.d.ts +10 -0
- package/lib/sample/test-error-server.js +45 -0
- package/lib/sample/test-error-server.js.map +1 -0
- package/lib/util/aws-util.d.ts +8 -0
- package/lib/util/aws-util.js +66 -0
- package/lib/util/aws-util.js.map +1 -0
- package/lib/util/context-util.d.ts +34 -0
- package/lib/util/context-util.js +104 -0
- package/lib/util/context-util.js.map +1 -0
- package/lib/util/cron-util.d.ts +11 -0
- package/lib/util/cron-util.js +69 -0
- package/lib/util/cron-util.js.map +1 -0
- package/lib/util/epsilon-config-parser.d.ts +14 -0
- package/lib/util/epsilon-config-parser.js +66 -0
- package/lib/util/epsilon-config-parser.js.map +1 -0
- package/lib/util/index.d.ts +4 -0
- package/lib/util/index.js +5 -0
- package/lib/util/index.js.map +1 -0
- package/package.json +25 -27
- package/lib/index.mjs +0 -2
- package/lib/types.d.ts +0 -1202
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"background-aws-config.js","sourceRoot":"","sources":["../../../src/config/background/background-aws-config.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { BackgroundProcessor } from './background-processor.js';
|
|
2
|
+
import { BackgroundErrorProcessor } from './background-error-processor.js';
|
|
3
|
+
import { BackgroundExecutionListener } from '../../background/background-execution-listener.js';
|
|
4
|
+
import { BackgroundTransactionLogger } from './background-transaction-logger.js';
|
|
5
|
+
export interface BackgroundConfig {
|
|
6
|
+
transactionLogger?: BackgroundTransactionLogger;
|
|
7
|
+
errorProcessor?: BackgroundErrorProcessor;
|
|
8
|
+
httpStatusEndpoint?: string;
|
|
9
|
+
httpMetaEndpoint?: string;
|
|
10
|
+
httpSubmissionPath: string;
|
|
11
|
+
implyTypeFromPathSuffix: boolean;
|
|
12
|
+
processors: BackgroundProcessor<any>[];
|
|
13
|
+
executionListeners?: BackgroundExecutionListener<any>[];
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"background-config.js","sourceRoot":"","sources":["../../../src/config/background/background-config.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"background-error-processor.js","sourceRoot":"","sources":["../../../src/config/background/background-error-processor.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"background-processor.js","sourceRoot":"","sources":["../../../src/config/background/background-processor.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"background-transaction-log.js","sourceRoot":"","sources":["../../../src/config/background/background-transaction-log.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"background-transaction-logger.js","sourceRoot":"","sources":["../../../src/config/background/background-transaction-logger.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface AbstractCronEntry {
|
|
2
|
+
name?: string;
|
|
3
|
+
eventFilter?: RegExp;
|
|
4
|
+
minuteFilter?: number[];
|
|
5
|
+
hourFilter?: number[];
|
|
6
|
+
dayOfWeekFilter?: number[];
|
|
7
|
+
dayOfMonthFilter?: number[];
|
|
8
|
+
monthOfYearFilter?: number[];
|
|
9
|
+
contextMatchFilter?: RegExp;
|
|
10
|
+
contextNoMatchFilter?: RegExp;
|
|
11
|
+
overrideTimezone?: string;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"abstract-cron-entry.js","sourceRoot":"","sources":["../../../src/config/cron/abstract-cron-entry.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cron-background-entry.js","sourceRoot":"","sources":["../../../src/config/cron/cron-background-entry.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cron-config.js","sourceRoot":"","sources":["../../../src/config/cron/cron-config.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dynamo-db-config.js","sourceRoot":"","sources":["../../src/config/dynamo-db-config.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { HttpConfig } from './http/http-config.js';
|
|
2
|
+
import { BackgroundConfig } from './background/background-config.js';
|
|
3
|
+
import { CronConfig } from './cron/cron-config.js';
|
|
4
|
+
import { DynamoDbConfig } from './dynamo-db-config.js';
|
|
5
|
+
import { S3Config } from './s3-config.js';
|
|
6
|
+
import { SnsConfig } from './sns-config.js';
|
|
7
|
+
import { EpsilonLoggerConfig } from './epsilon-logger-config.js';
|
|
8
|
+
import { InterApiConfig } from './inter-api/inter-api-config.js';
|
|
9
|
+
import { SqsConfig } from './sqs-config.js';
|
|
10
|
+
export interface EpsilonConfig {
|
|
11
|
+
label?: string;
|
|
12
|
+
disableLastResortTimeout?: boolean;
|
|
13
|
+
throwErrorIfNoSuitableEventHandlers?: boolean;
|
|
14
|
+
openApiYamlString: string;
|
|
15
|
+
httpConfig?: HttpConfig;
|
|
16
|
+
backgroundConfig?: BackgroundConfig;
|
|
17
|
+
interApiConfig?: InterApiConfig;
|
|
18
|
+
cron?: CronConfig;
|
|
19
|
+
dynamoDb?: DynamoDbConfig;
|
|
20
|
+
s3?: S3Config;
|
|
21
|
+
sns?: SnsConfig;
|
|
22
|
+
sqs?: SqsConfig;
|
|
23
|
+
loggerConfig?: EpsilonLoggerConfig;
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"epsilon-config.js","sourceRoot":"","sources":["../../src/config/epsilon-config.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Context, ProxyResult } from 'aws-lambda';
|
|
2
|
+
export interface EpsilonLambdaEventHandler<T> {
|
|
3
|
+
handlesEvent(evt: any): boolean;
|
|
4
|
+
extractLabel(evt: T, context: Context): string;
|
|
5
|
+
processEvent(evt: T, context: Context): Promise<ProxyResult>;
|
|
6
|
+
processUncaughtError?(evt: T, context: Context, err: Error): Promise<ProxyResult>;
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"epsilon-lambda-event-handler.js","sourceRoot":"","sources":["../../src/config/epsilon-lambda-event-handler.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { LoggerLevelName } from '@bitblit/ratchet-common/logger/logger-level-name';
|
|
2
|
+
import { LogMessageFormatType } from '@bitblit/ratchet-common/logger/log-message-format-type';
|
|
3
|
+
import { LoggingTraceIdGenerator } from './logging-trace-id-generator.js';
|
|
4
|
+
export interface EpsilonLoggerConfig {
|
|
5
|
+
envParamLogLevelName?: string;
|
|
6
|
+
queryParamLogLevelName?: string;
|
|
7
|
+
queryParamTracePrefixName?: string;
|
|
8
|
+
traceIdGenerator?: LoggingTraceIdGenerator;
|
|
9
|
+
logMessageFormatType?: LogMessageFormatType;
|
|
10
|
+
traceHeaderName?: string;
|
|
11
|
+
traceDepthHeaderName?: string;
|
|
12
|
+
epsilonStartEndMessageLogLevel?: LoggerLevelName;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"epsilon-logger-config.js","sourceRoot":"","sources":["../../src/config/epsilon-logger-config.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type GenericAwsEventHandlerFunction<T> = (event: T) => Promise<void>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generic-aws-event-handler-function.js","sourceRoot":"","sources":["../../src/config/generic-aws-event-handler-function.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { RouteMapping } from '../../http/route/route-mapping.js';
|
|
2
|
+
import { EpsilonAuthorizationContext } from './epsilon-authorization-context.js';
|
|
3
|
+
import { ExtendedAPIGatewayEvent } from './extended-api-gateway-event.js';
|
|
4
|
+
export type AuthorizerFunction = (authData: EpsilonAuthorizationContext<any>, event?: ExtendedAPIGatewayEvent, route?: RouteMapping) => Promise<boolean>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authorizer-function.js","sourceRoot":"","sources":["../../../src/config/http/authorizer-function.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"epsilon-authorization-context.js","sourceRoot":"","sources":["../../../src/config/http/epsilon-authorization-context.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { APIGatewayEvent } from 'aws-lambda';
|
|
2
|
+
import { EpsilonAuthorizationContext } from './epsilon-authorization-context.js';
|
|
3
|
+
export interface ExtendedAPIGatewayEvent extends APIGatewayEvent {
|
|
4
|
+
parsedBody: any;
|
|
5
|
+
authorization: EpsilonAuthorizationContext<any>;
|
|
6
|
+
convertedFromV2Event: boolean;
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"extended-api-gateway-event.js","sourceRoot":"","sources":["../../../src/config/http/extended-api-gateway-event.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Context, ProxyResult } from 'aws-lambda';
|
|
2
|
+
import { ExtendedAPIGatewayEvent } from './extended-api-gateway-event.js';
|
|
3
|
+
import { RouteAndParse } from '../../http/web-handler.js';
|
|
4
|
+
import { ModelValidator } from '@bitblit/ratchet-misc/model-validator/model-validator';
|
|
5
|
+
import { AuthorizerFunction } from './authorizer-function.js';
|
|
6
|
+
export interface FilterChainContext {
|
|
7
|
+
event: ExtendedAPIGatewayEvent;
|
|
8
|
+
context: Context;
|
|
9
|
+
rawResult: any;
|
|
10
|
+
result: ProxyResult;
|
|
11
|
+
routeAndParse: RouteAndParse;
|
|
12
|
+
modelValidator: ModelValidator;
|
|
13
|
+
authenticators: Map<string, AuthorizerFunction>;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filter-chain-context.js","sourceRoot":"","sources":["../../../src/config/http/filter-chain-context.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filter-function.js","sourceRoot":"","sources":["../../../src/config/http/filter-function.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"handler-function.js","sourceRoot":"","sources":["../../../src/config/http/handler-function.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HandlerFunction } from './handler-function.js';
|
|
2
|
+
import { AuthorizerFunction } from './authorizer-function.js';
|
|
3
|
+
import { HttpProcessingConfig } from './http-processing-config.js';
|
|
4
|
+
import { ModelValidator } from '@bitblit/ratchet-misc/model-validator/model-validator';
|
|
5
|
+
import { MappedHttpProcessingConfig } from './mapped-http-processing-config.js';
|
|
6
|
+
export interface HttpConfig {
|
|
7
|
+
defaultMetaHandling: HttpProcessingConfig;
|
|
8
|
+
overrideMetaHandling?: MappedHttpProcessingConfig[];
|
|
9
|
+
handlers: Map<string, HandlerFunction<any>>;
|
|
10
|
+
authorizers?: Map<string, AuthorizerFunction>;
|
|
11
|
+
staticContentRoutes?: Record<string, string>;
|
|
12
|
+
prefixesToStripBeforeRouteMatch?: string[];
|
|
13
|
+
overrideModelValidator?: ModelValidator;
|
|
14
|
+
filterHandledRouteMatches?: string[];
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"http-config.js","sourceRoot":"","sources":["../../../src/config/http/http-config.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { NullReturnedObjectHandling } from './null-returned-object-handling.js';
|
|
2
|
+
import { FilterFunction } from './filter-function.js';
|
|
3
|
+
export interface HttpProcessingConfig {
|
|
4
|
+
configName?: string;
|
|
5
|
+
timeoutMS: number;
|
|
6
|
+
overrideAuthorizerName?: string;
|
|
7
|
+
preFilters?: FilterFunction[];
|
|
8
|
+
postFilters?: FilterFunction[];
|
|
9
|
+
errorFilters?: FilterFunction[];
|
|
10
|
+
nullReturnedObjectHandling?: NullReturnedObjectHandling;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"http-processing-config.js","sourceRoot":"","sources":["../../../src/config/http/http-processing-config.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mapped-http-processing-config.js","sourceRoot":"","sources":["../../../src/config/http/mapped-http-processing-config.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"null-returned-object-handling.js","sourceRoot":"","sources":["../../../src/config/http/null-returned-object-handling.ts"],"names":[],"mappings":"AACA,MAAM,CAAC,MAAM,0BAA0B,GAAG;IACxC,KAAK,EAAE,OAAO;IACd,oBAAoB,EAAE,sBAAsB;IAC5C,yBAAyB,EAAE,2BAA2B;CACvD,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export * from './dynamo-db-config.js';
|
|
2
|
+
export * from './epsilon-config.js';
|
|
3
|
+
export * from './epsilon-lambda-event-handler.js';
|
|
4
|
+
export * from './epsilon-logger-config.js';
|
|
5
|
+
export * from './generic-aws-event-handler-function.js';
|
|
6
|
+
export * from './logging-trace-id-generator.js';
|
|
7
|
+
export * from './no-handlers-found-error.js';
|
|
8
|
+
export * from './s3-config.js';
|
|
9
|
+
export * from './sns-config.js';
|
|
10
|
+
export * from './sqs-config.js';
|
|
11
|
+
export * from './background/background-aws-config.js';
|
|
12
|
+
export * from './background/background-config.js';
|
|
13
|
+
export * from './background/background-error-processor.js';
|
|
14
|
+
export * from './background/background-processor.js';
|
|
15
|
+
export * from './background/background-transaction-log.js';
|
|
16
|
+
export * from './background/background-transaction-logger.js';
|
|
17
|
+
export * from './cron/abstract-cron-entry.js';
|
|
18
|
+
export * from './cron/cron-background-entry.js';
|
|
19
|
+
export * from './cron/cron-config.js';
|
|
20
|
+
export * from './http/authorizer-function.js';
|
|
21
|
+
export * from './http/epsilon-authorization-context.js';
|
|
22
|
+
export * from './http/extended-api-gateway-event.js';
|
|
23
|
+
export * from './http/filter-chain-context.js';
|
|
24
|
+
export * from './http/filter-function.js';
|
|
25
|
+
export * from './http/handler-function.js';
|
|
26
|
+
export * from './http/http-config.js';
|
|
27
|
+
export * from './http/http-processing-config.js';
|
|
28
|
+
export * from './http/mapped-http-processing-config.js';
|
|
29
|
+
export * from './http/null-returned-object-handling.js';
|
|
30
|
+
export * from './inter-api/inter-api-aws-config.js';
|
|
31
|
+
export * from './inter-api/inter-api-config.js';
|
|
32
|
+
export * from './inter-api/inter-api-process-mapping.js';
|
|
33
|
+
export * from './open-api/open-api-document-components.js';
|
|
34
|
+
export * from './open-api/open-api-document-path.js';
|
|
35
|
+
export * from './open-api/open-api-document.js';
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export * from './dynamo-db-config.js';
|
|
2
|
+
export * from './epsilon-config.js';
|
|
3
|
+
export * from './epsilon-lambda-event-handler.js';
|
|
4
|
+
export * from './epsilon-logger-config.js';
|
|
5
|
+
export * from './generic-aws-event-handler-function.js';
|
|
6
|
+
export * from './logging-trace-id-generator.js';
|
|
7
|
+
export * from './no-handlers-found-error.js';
|
|
8
|
+
export * from './s3-config.js';
|
|
9
|
+
export * from './sns-config.js';
|
|
10
|
+
export * from './sqs-config.js';
|
|
11
|
+
export * from './background/background-aws-config.js';
|
|
12
|
+
export * from './background/background-config.js';
|
|
13
|
+
export * from './background/background-error-processor.js';
|
|
14
|
+
export * from './background/background-processor.js';
|
|
15
|
+
export * from './background/background-transaction-log.js';
|
|
16
|
+
export * from './background/background-transaction-logger.js';
|
|
17
|
+
export * from './cron/abstract-cron-entry.js';
|
|
18
|
+
export * from './cron/cron-background-entry.js';
|
|
19
|
+
export * from './cron/cron-config.js';
|
|
20
|
+
export * from './http/authorizer-function.js';
|
|
21
|
+
export * from './http/epsilon-authorization-context.js';
|
|
22
|
+
export * from './http/extended-api-gateway-event.js';
|
|
23
|
+
export * from './http/filter-chain-context.js';
|
|
24
|
+
export * from './http/filter-function.js';
|
|
25
|
+
export * from './http/handler-function.js';
|
|
26
|
+
export * from './http/http-config.js';
|
|
27
|
+
export * from './http/http-processing-config.js';
|
|
28
|
+
export * from './http/mapped-http-processing-config.js';
|
|
29
|
+
export * from './http/null-returned-object-handling.js';
|
|
30
|
+
export * from './inter-api/inter-api-aws-config.js';
|
|
31
|
+
export * from './inter-api/inter-api-config.js';
|
|
32
|
+
export * from './inter-api/inter-api-process-mapping.js';
|
|
33
|
+
export * from './open-api/open-api-document-components.js';
|
|
34
|
+
export * from './open-api/open-api-document-path.js';
|
|
35
|
+
export * from './open-api/open-api-document.js';
|
|
36
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAIA,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mCAAmC,CAAC;AAClD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,yCAAyC,CAAC;AACxD,cAAc,iCAAiC,CAAC;AAChD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uCAAuC,CAAC;AACtD,cAAc,mCAAmC,CAAC;AAClD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,sCAAsC,CAAC;AACrD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,+BAA+B,CAAC;AAC9C,cAAc,iCAAiC,CAAC;AAChD,cAAc,uBAAuB,CAAC;AACtC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yCAAyC,CAAC;AACxD,cAAc,sCAAsC,CAAC;AACrD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,kCAAkC,CAAC;AACjD,cAAc,yCAAyC,CAAC;AACxD,cAAc,yCAAyC,CAAC;AACxD,cAAc,qCAAqC,CAAC;AACpD,cAAc,iCAAiC,CAAC;AAChD,cAAc,0CAA0C,CAAC;AACzD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,sCAAsC,CAAC;AACrD,cAAc,iCAAiC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inter-api-aws-config.js","sourceRoot":"","sources":["../../../src/config/inter-api/inter-api-aws-config.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inter-api-config.js","sourceRoot":"","sources":["../../../src/config/inter-api/inter-api-config.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inter-api-process-mapping.js","sourceRoot":"","sources":["../../../src/config/inter-api/inter-api-process-mapping.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logging-trace-id-generator.js","sourceRoot":"","sources":["../../src/config/logging-trace-id-generator.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"no-handlers-found-error.js","sourceRoot":"","sources":["../../src/config/no-handlers-found-error.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,oBAAqB,SAAQ,KAAK;IAC7C,YAAY,GAAY;QACtB,KAAK,CAAC,GAAG,IAAI,mBAAmB,CAAC,CAAC;QAClC,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,oBAAoB,CAAC,SAAS,CAAC,CAAC;IAC9D,CAAC;CACF"}
|