├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── SECURITY.md ├── deployment ├── build-s3-dist.sh ├── cdk-solution-helper │ ├── .gitignore │ ├── README.md │ ├── index.js │ ├── package-lock.json │ └── package.json └── get-cdk-version.js └── source ├── .eslintignore ├── .prettierignore ├── .prettierrc.yml ├── email-templates ├── processing_complete.email.template └── processing_failure.email.template ├── images ├── architecture.png └── ui-components.png ├── infrastructure ├── .gitignore ├── .npmignore ├── bin │ └── dus.ts ├── cdk.json ├── jest.config.js ├── lib │ ├── api │ │ ├── case-manager.ts │ │ ├── model-schema │ │ │ ├── case-response.ts │ │ │ ├── create-case-body.ts │ │ │ ├── document-response.ts │ │ │ ├── index.ts │ │ │ ├── redact-request-body.ts │ │ │ └── upload-document-body.ts │ │ ├── request-processor.ts │ │ ├── rest-api-documentation │ │ │ ├── api-documentation.ts │ │ │ ├── case.ts │ │ │ ├── cases.ts │ │ │ ├── document.ts │ │ │ ├── inferences.ts │ │ │ ├── redact.ts │ │ │ ├── root.ts │ │ │ └── search.ts │ │ └── rest-endpoint.ts │ ├── application-setup.ts │ ├── dus-stack.ts │ ├── govcloud │ │ └── cfn-resource-observer.ts │ ├── layers │ │ ├── java-user-agent.ts │ │ ├── node-user-agent.ts │ │ ├── python-user-agent.ts │ │ ├── runtime-libs.ts │ │ └── shared-lib.ts │ ├── metrics │ │ └── custom-dashboard.ts │ ├── notifications │ │ └── notification-manager.ts │ ├── s3web │ │ ├── static-site.ts │ │ └── ui-asset.ts │ ├── samples │ │ └── copy-samples.ts │ ├── search │ │ ├── indexed-storage-params.ts │ │ ├── indexed-storage.ts │ │ ├── kendra-case-storage.ts │ │ └── open-search-case-storage.ts │ ├── ui-infrastructure.ts │ ├── utils │ │ ├── asset-bundling.ts │ │ ├── aws-deployment-partition-aspects.ts │ │ ├── cfn-nag-suppressions.ts │ │ ├── common-utils.ts │ │ ├── constants.ts │ │ ├── custom-infra-setup.ts │ │ ├── lambda-aspect.ts │ │ ├── lambda-runtimes.ts │ │ ├── nested-stack-parameters.ts │ │ └── solution-helper.ts │ ├── vpc │ │ └── vpc-stack.ts │ └── workflow │ │ ├── entity-detection │ │ └── entity-detection-workflow.ts │ │ ├── fragments │ │ ├── failure-fragment.ts │ │ └── stepfunction-callbacks.ts │ │ ├── redaction │ │ └── redaction-workflow.ts │ │ ├── standard │ │ ├── abstract-workflow.ts │ │ └── standard-workflow.ts │ │ ├── textract │ │ └── textract-workflow.ts │ │ └── workflow-config.ts ├── package-lock.json ├── package.json ├── test │ ├── api │ │ ├── case-manager.test.ts │ │ ├── request-processor.test.ts │ │ ├── rest-api-documentation │ │ │ └── api-documentation.test.ts │ │ └── rest-end-point.test.ts │ ├── application-setup.test.ts │ ├── dus-stack.test.ts │ ├── framework │ │ ├── Dockerfile │ │ ├── cdk-to-asl.ts │ │ ├── sfn-client-wrapper.ts │ │ ├── sfn-local-container.ts │ │ ├── sfn-mock-config-validator.ts │ │ ├── sfn-test-builder.ts │ │ └── test │ │ │ ├── cdk-to-asl.test.ts │ │ │ ├── sfn-client-wrapper.test.ts │ │ │ ├── sfn-local-container.test.ts │ │ │ ├── sfn-mock-config-validator.test.ts │ │ │ └── sfn-test-builder.test.ts │ ├── govcloud │ │ └── cfn-resource-observer.test.ts │ ├── integration │ │ ├── entity-detection │ │ │ ├── integ-test-data │ │ │ │ ├── entity-detection-workflow.integ.mockconfig.json │ │ │ │ ├── expected-test-outputs.json │ │ │ │ └── input-data.json │ │ │ └── integ.entity-detection-workflow.test.ts │ │ ├── redaction │ │ │ ├── integ-test-data │ │ │ │ ├── expected-test-outputs.json │ │ │ │ ├── input-data.json │ │ │ │ └── redaction-workflow.integ.mockconfig.json │ │ │ └── integ.redaction-workflow.test.ts │ │ └── textract │ │ │ ├── integ-test-data │ │ │ ├── expected-test-outputs.json │ │ │ ├── input-data.json │ │ │ ├── makefile │ │ │ └── textract-workflow.integ.mockconfig.json │ │ │ └── integ.textract-workflow.test.ts │ ├── layers │ │ ├── java-user-agent.test.ts │ │ ├── node-user-agent.test.ts │ │ ├── python-user-agent.test.ts │ │ ├── runtime-lib.test.ts │ │ └── shared-lib.test.ts │ ├── metrics │ │ └── custom-dashboard.test.ts │ ├── mock-lambda-func │ │ ├── .gitignore │ │ ├── infrastructure │ │ │ └── test │ │ │ │ └── mock-lambda-func │ │ │ │ └── python-lambda │ │ │ │ ├── poetry.lock │ │ │ │ └── pyproject.toml │ │ ├── java-lambda │ │ │ ├── checkstyle.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── example │ │ │ │ └── Handler.java │ │ ├── node-lambda │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ └── python-lambda │ │ │ ├── .gitignore │ │ │ ├── __init__.py │ │ │ ├── function.py │ │ │ ├── poetry.lock │ │ │ └── pyproject.toml │ ├── mock-ui │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ └── public │ │ │ └── index.html │ ├── notifications │ │ └── notification-manager.test.ts │ ├── s3web │ │ ├── static-site.test.ts │ │ └── ui-asset.test.ts │ ├── samples │ │ └── copy_samples.test.ts │ ├── search │ │ ├── indexed-storage.test.ts │ │ ├── kendra-case-storage.test.ts │ │ └── open-search-case-storage.test.ts │ ├── ui-infrstructure.test.ts │ ├── utils │ │ ├── asset-bundling.test.ts │ │ ├── aws-deployment-partition-aspect.test.ts │ │ ├── cfn-nag-suppressions.test.ts │ │ ├── common-utils.test.ts │ │ ├── custom-infra-setup.test.ts │ │ ├── lambda-aspect.test.ts │ │ ├── lambda-runtimes.test.ts │ │ └── solution-helper.test.ts │ ├── vpc │ │ └── vpc-stack.test.ts │ └── workflow │ │ ├── entity-detection │ │ └── entity-detection-workflow.test.ts │ │ ├── fragments │ │ └── failure-fragment.test.ts │ │ ├── redaction │ │ └── redaction-workflow.test.ts │ │ ├── standard │ │ └── standard-workflow-state-machine.test.ts │ │ ├── textract │ │ └── textract-workflow.test.ts │ │ └── workflow-config.test.ts └── tsconfig.json ├── lambda ├── .eslintrc.js ├── create-presigned-url │ ├── index.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── test │ │ ├── index.spec.js │ │ └── utils │ │ │ ├── env-setup.spec.js │ │ │ └── generate-signed-url.spec.js │ └── utils │ │ ├── env-setup.js │ │ └── generate-signed-url.js ├── custom-resource │ ├── .coveragerc │ ├── .gitignore │ ├── __init__.py │ ├── cfn_response.py │ ├── lambda_func.py │ ├── lambda_ops_metrics.py │ ├── operations │ │ ├── __init__.py │ │ ├── anonymous_metrics.py │ │ ├── copy_email_templates.py │ │ ├── copy_sample_documents.py │ │ ├── copy_web_ui.py │ │ ├── copy_workflow_config_to_ddb.py │ │ ├── cw_loggroup_policy.py │ │ ├── gen_uuid.py │ │ ├── operation_types.py │ │ ├── shared.py │ │ ├── update_s3_policy.py │ │ └── webconfig.py │ ├── poetry.lock │ ├── pyproject.toml │ ├── test │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── fixtures │ │ │ ├── __init__.py │ │ │ ├── anonymous_metrics_events.py │ │ │ ├── copy_sample_documents.py │ │ │ ├── copy_template_events.py │ │ │ ├── copy_web_ui_events.py │ │ │ ├── copy_workflow_config_events.py │ │ │ ├── cw_loggroup_policy_events.py │ │ │ ├── gen_uuid_events.py │ │ │ ├── update_s3_policy_events.py │ │ │ └── webconfig_events.py │ │ ├── operations │ │ │ ├── __init__.py │ │ │ ├── test_anonymous_metric.py │ │ │ ├── test_copy_email_templates.py │ │ │ ├── test_copy_samples.py │ │ │ ├── test_copy_web_ui.py │ │ │ ├── test_copy_workflow_config_to_ddb.py │ │ │ ├── test_cw_loggroup_policy.py │ │ │ ├── test_gen_uuid.py │ │ │ ├── test_shared.py │ │ │ ├── test_update_s3_policy.py │ │ │ └── test_webconfig.py │ │ ├── test_lambda_func.py │ │ ├── test_lambda_ops_metrics.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── test_lambda_context_parser.py │ │ │ ├── test_metrics.py │ │ │ └── test_metrics_payload.py │ └── utils │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── data.py │ │ ├── lambda_context_parser.py │ │ ├── metrics.py │ │ └── metrics_payload.py ├── entity-detection │ ├── entity-detection-sync.js │ ├── index.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── test │ │ ├── entity-detection-sync.spec.js │ │ ├── event-test-data.js │ │ └── utils │ │ │ ├── entity │ │ │ ├── entity-context.spec.js │ │ │ ├── entity-detector.spec.js │ │ │ ├── generic-entity-detection-strategy.spec.js │ │ │ ├── medical-entity-detection-strategy.spec.js │ │ │ └── pii-entity-detection-stategy.spec.js │ │ │ ├── generic.spec.js │ │ │ └── sync.spec.js │ └── utils │ │ ├── entity │ │ ├── entity-context.js │ │ ├── entity-detector.js │ │ ├── generic-entity-detection-strategy.js │ │ ├── medical-entity-detection-strategy.js │ │ └── pii-entity-detection-strategy.js │ │ ├── generic.js │ │ └── sync.js ├── fetch-records │ ├── index.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── test │ │ ├── index.spec.js │ │ └── utils │ │ │ ├── doc-access-checkers.spec.js │ │ │ ├── env-setup.spec.js │ │ │ ├── fetch-case.spec.js │ │ │ └── fetch-document.spec.js │ └── utils │ │ ├── doc-access-checkers.js │ │ ├── env-setup.js │ │ ├── fetch-case.js │ │ └── fetch-document.js ├── get-inferences │ ├── index.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── test │ │ ├── index.spec.js │ │ └── utils │ │ │ └── get-inferences.spec.js │ └── utils │ │ └── get-inferences.js ├── layers │ ├── aws-node-user-agent-config │ │ ├── index.js │ │ ├── jest.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── test │ │ │ └── index.spec.js │ ├── aws-sdk-lib │ │ ├── package-lock.json │ │ └── package.json │ ├── aws_boto3 │ │ ├── .gitignore │ │ ├── poetry.lock │ │ └── pyproject.toml │ ├── common-node-lib │ │ ├── aoss │ │ │ └── aoss-proxy.js │ │ ├── batch-job │ │ │ └── initiate-job.js │ │ ├── cognito │ │ │ └── decode-jwt-token.js │ │ ├── constants.js │ │ ├── ddb │ │ │ ├── ddb-case-update.js │ │ │ └── ddb-get-case.js │ │ ├── event-bridge │ │ │ └── event-dispatcher.js │ │ ├── index.js │ │ ├── jest.config.js │ │ ├── metrics │ │ │ ├── case-status.js │ │ │ ├── cloudwatch.js │ │ │ ├── documents.js │ │ │ ├── file-types.js │ │ │ ├── utils │ │ │ │ └── send-metrics.js │ │ │ └── workflows.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── response-formatter │ │ │ ├── error-response.js │ │ │ └── success-response.js │ │ ├── s3 │ │ │ ├── get-request-account-id.js │ │ │ ├── s3-download.js │ │ │ ├── s3-get-head-object.js │ │ │ ├── s3-get-tags.js │ │ │ ├── s3-inferences.js │ │ │ └── s3-upload.js │ │ ├── sqs │ │ │ └── sqs-poller.js │ │ ├── stepfunctions │ │ │ └── task-notify.js │ │ ├── test │ │ │ ├── aoss │ │ │ │ └── aoss-proxy.spec.js │ │ │ ├── batch-job │ │ │ │ └── initiate-job.spec.js │ │ │ ├── cognito │ │ │ │ └── decode-jwt-token.spec.js │ │ │ ├── ddb │ │ │ │ ├── ddb-case-update.spec.js │ │ │ │ └── ddb-get-case.spec.js │ │ │ ├── event-bridge │ │ │ │ └── event-dispatcher.spec.js │ │ │ ├── event-test-data.js │ │ │ ├── metrics │ │ │ │ ├── case-status.spec.js │ │ │ │ ├── cloudwatch.spec.js │ │ │ │ ├── documents.spec.js │ │ │ │ ├── file-types.spec.js │ │ │ │ ├── utils │ │ │ │ │ └── send-metrics.spec.js │ │ │ │ └── workflows.spec.js │ │ │ ├── response-formatter │ │ │ │ ├── error-response.spec.js │ │ │ │ └── success-response.spec.js │ │ │ ├── s3 │ │ │ │ ├── get-request-account-id.spec.js │ │ │ │ ├── s3-download.spec.js │ │ │ │ ├── s3-get-tags.spec.js │ │ │ │ ├── s3-inferences.spec.js │ │ │ │ └── s3-upload.spec.js │ │ │ ├── sqs │ │ │ │ └── sqs-poller.spec.js │ │ │ ├── stepfunctions │ │ │ │ └── stepfunctions-task-notify.spec.js │ │ │ └── utils │ │ │ │ ├── compare-maps.spec.js │ │ │ │ └── validate-case-access.spec.js │ │ └── utils │ │ │ ├── compare-maps.js │ │ │ └── validate-case-access.js │ ├── custom-java-sdk-config │ │ ├── checkstyle.xml │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── builder │ │ │ │ │ └── config │ │ │ │ │ └── CustomUserAgentConfig.java │ │ │ └── resources │ │ │ │ └── log4j2.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── builder │ │ │ └── config │ │ │ └── CustomUserAgentConfigTest.java │ └── custom_boto3_init │ │ ├── .coveragerc │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── custom_config.py │ │ ├── helper.py │ │ ├── poetry.lock │ │ ├── pyproject.toml │ │ ├── setup.py │ │ └── test │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_layer_env_config.py │ │ └── test_service_instance_creation.py ├── redact-content │ ├── checkstyle.xml │ ├── pom.xml │ ├── resources │ │ └── log4j2.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── builder │ │ │ └── lambda │ │ │ ├── RedactionApiHandler.java │ │ │ ├── RedactionSfnHandler.java │ │ │ ├── model │ │ │ ├── ApiRequestBody.java │ │ │ ├── BoundingBox.java │ │ │ ├── Document.java │ │ │ ├── EntityDetails.java │ │ │ ├── EventDataBody.java │ │ │ ├── EventDataDocument.java │ │ │ ├── EventDataInput.java │ │ │ ├── FileType.java │ │ │ ├── PhraseRedaction.java │ │ │ ├── TextractBlock.java │ │ │ ├── TextractDetectText.java │ │ │ ├── TextractGeometry.java │ │ │ └── TextractRelationship.java │ │ │ └── utils │ │ │ ├── ApiRequestProcessor.java │ │ │ ├── CloudWatchMetrics.java │ │ │ ├── Constants.java │ │ │ ├── DependencyFactory.java │ │ │ ├── FileUtils.java │ │ │ ├── ImageRedactor.java │ │ │ ├── LambdaContextParser.java │ │ │ ├── PdfRedactor.java │ │ │ ├── PhraseFinder.java │ │ │ ├── Redactor.java │ │ │ ├── RequestProcessor.java │ │ │ ├── S3Storage.java │ │ │ ├── SfnRequestProcessor.java │ │ │ └── StepFunctionConnector.java │ │ └── test │ │ └── java │ │ ├── com │ │ └── builder │ │ │ └── lambda │ │ │ ├── RedactionApiHandlerTest.java │ │ │ ├── RedactionSfnHandlerTest.java │ │ │ ├── model │ │ │ ├── ApiRequestBodyTest.java │ │ │ ├── BoundingBoxTest.java │ │ │ ├── DocumentTest.java │ │ │ ├── EntityDetailsTest.java │ │ │ ├── EventDataBodyTest.java │ │ │ ├── EventDataDocumentTest.java │ │ │ ├── EventDataInputTest.java │ │ │ ├── PhraseRedactionTest.java │ │ │ ├── TextractBlockTest.java │ │ │ ├── TextractDetectTextTest.java │ │ │ ├── TextractGeometryTest.java │ │ │ └── TextractRelationshipTest.java │ │ │ └── utils │ │ │ ├── ApiRequestProcessorTest.java │ │ │ ├── CloudWatchMetricsTest.java │ │ │ ├── DependencyFactoryTest.java │ │ │ ├── FileUtilsTest.java │ │ │ ├── ImageRedactorTest.java │ │ │ ├── LambdaContextParserTest.java │ │ │ ├── PdfRedactorTest.java │ │ │ ├── PhraseFinderTest.java │ │ │ ├── S3StorageTest.java │ │ │ ├── SfnRequestProcessorTest.java │ │ │ └── StepFunctionConnectorTest.java │ │ └── resources │ │ ├── apiRequestBody-entities.json │ │ ├── apiRequestBody-phrases.json │ │ ├── apiRequestBody.json │ │ ├── badEventBody1.json │ │ ├── eventBody1.json │ │ ├── eventBody2.json │ │ ├── patient_intake_form_sample.jpg │ │ ├── redactData.json │ │ └── textract-detectText.json ├── search │ ├── index.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── test │ │ ├── event-test-data.js │ │ ├── index.spec.js │ │ └── utils │ │ │ ├── env-setup.spec.js │ │ │ └── seach-kendra.spec.js │ └── utils │ │ ├── env-setup.js │ │ └── search-kendra.js ├── send-notification │ ├── index.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── test │ │ ├── event-test-data.js │ │ ├── index.spec.js │ │ └── utils │ │ │ ├── s3-read.spec.js │ │ │ └── sns-send-notification.spec.js │ └── utils │ │ ├── s3-read.js │ │ └── sns-send-notification.js ├── text-extract │ ├── index.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── test │ │ ├── event-test-data.js │ │ ├── index.spec.js │ │ ├── textract-sync.spec.js │ │ └── utils │ │ │ ├── generic.spec.js │ │ │ ├── pdf-splitter.spec.js │ │ │ └── sync.spec.js │ ├── textract-sync.js │ └── utils │ │ ├── generic.js │ │ ├── pdf-splitter.js │ │ └── sync.js ├── upload-document │ ├── config │ │ └── ddb-loader.js │ ├── index.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── test │ │ ├── config │ │ │ ├── config-data.js │ │ │ └── ddb-loader.spec.js │ │ ├── index.spec.js │ │ └── utils │ │ │ ├── create-case.spec.js │ │ │ ├── env-setup.spec.js │ │ │ ├── fetch-case.spec.js │ │ │ ├── start-job.spec.js │ │ │ └── upload-document.spec.js │ └── utils │ │ ├── create-case.js │ │ ├── env-setup.js │ │ ├── fetch-case.js │ │ ├── start-job.js │ │ └── upload-document.js └── workflow-orchestrator │ ├── config │ └── ddb-loader.js │ ├── index.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── test │ ├── config │ │ ├── config-data.js │ │ └── ddb-loader.spec.js │ ├── event-test-data.js │ ├── index.spec.js │ └── utils │ │ ├── env-setup.spec.js │ │ ├── kendra-upload.spec.js │ │ ├── open-search-upload │ │ ├── open-search-upload.spec.js │ │ └── strategies │ │ │ ├── generic-entity-strategy.spec.js │ │ │ ├── medical-entity-strategy.spec.js │ │ │ └── textract-strategy.spec.js │ │ ├── s3-event-trigger.spec.js │ │ └── sfn-event-trigger.spec.js │ └── utils │ ├── env-setup.js │ ├── kendra-upload.js │ ├── open-search-upload │ ├── open-search-upload.js │ └── strategies │ │ ├── generic-entity-strategy.js │ │ ├── medical-entity-strategy.js │ │ └── textract-strategy.js │ ├── s3-event-trigger.js │ ├── search-storage-utils.js │ └── sfn-event-trigger.js ├── pre-build-jars.sh ├── run-all-tests.sh ├── sample-documents ├── Finance │ ├── Lacey city bonds.png │ ├── Spokane accounting.png │ ├── USDC balance sheet.png │ └── USDE balance sheet.png ├── Medical │ ├── Causes_of_Chronic_Kidney_Disease_NIDDK.pdf │ ├── Chronic_Kidney_Disease_Tests_Diagnosis__NIDDK.pdf │ ├── Diabetes_Diet_Eating_and_Physical_Activity_NIDDK.pdf │ ├── Diabetes_Gum_Disease_and_Other_Dental_Problems_NIDDK.pdf │ ├── Diabetes_Heart_Disease_and_Stroke_NIDDK.pdf │ ├── Diabetes_Tests_and_Diagnosis_NIDDK.pdf │ ├── Eating_Right_for_Chronic_Kidney_Disease_NIDDK.pdf │ ├── HIPAA Release Form.pdf │ ├── High_Blood_Pressure_Kidney_Disease_NIDDK.pdf │ ├── Identify_Evaluate_Patients_with_Chronic_Kidney_Disease_NIDDK.pdf │ ├── Insulin_Medicines_and_Other_Diabetes_Treatments_NIDDK.pdf │ ├── Kidney_Transplant_NIDDK.pdf │ ├── Managing_Chronic_Kidney_Disease_NIDDK.pdf │ ├── Managing_Diabetes_NIDDK.pdf │ ├── Medical History Form.png │ ├── Medical Insurance Claim Form.pdf │ ├── Medical Progress Tracker.png │ ├── Nutrition_for_Advanced_Chronic_Kidney_Disease_in_Adults_NIDDK.pdf │ ├── PersonaSpecific │ │ ├── GeneralPublic │ │ │ └── pdf │ │ │ │ └── Creatine_Kinase_-_MedlinePlus_Medical_Test.pdf │ │ ├── HealthcareProvider │ │ │ └── pdf │ │ │ │ ├── Muscular_Dystrophy_NIH.pdf │ │ │ │ └── What_is_Muscular_Dystrophy_-_CDC.pdf │ │ └── Scientist │ │ │ └── pdf │ │ │ ├── How_is_muscular_dystrophy_diagnosed__NICHD.pdf │ │ │ ├── Muscular_Dystrophy_Information_Page_National_Institute_of_Neurological_Disorders_and_Stroke.pdf │ │ │ └── Muscular_Dystrophy__Hope_Through_Research_-_National_Institute_Of_Neurological_Disorders_And_Stroke.pdf │ ├── Pregnancy_if_You_Have_Diabetes_NIDDK.pdf │ ├── Preventing_Chronic_Kidney_Disease_NIDDK.pdf │ ├── Preventing_Diabetes_Problems_NIDDK.pdf │ ├── Preventing_Type_2_Diabetes_NIDDK.pdf │ ├── The_A1C_Test_Diabetes_NIDDK.pdf │ ├── What_If_My_Kidneys_Fail_NIDDK.pdf │ ├── What_Is_Chronic_Kidney_Disease_NIDDK.pdf │ └── What_is_Diabetes_NIDDK.pdf ├── Misc │ ├── employmentapp.png │ ├── expense.png │ └── management.png └── Research │ └── employmentapp.png ├── ui ├── .gitignore ├── README.md ├── jest.config.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.png │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ ├── mockServiceWorker.js │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── __test__ │ │ ├── CreateCaseView.test.tsx │ │ ├── DocumentRenderer.test.tsx │ │ ├── DocumentTable.test.tsx │ │ ├── DocumentView.test.tsx │ │ ├── EntitiesList.test.tsx │ │ ├── EntityDetectionTab.test.tsx │ │ ├── FileUpload.test.tsx │ │ ├── KendraDocumentResults.test.tsx │ │ ├── KendraHighlightedText.test.tsx │ │ ├── KendraResultPage.test.tsx │ │ ├── KendraResultTitle.test.tsx │ │ ├── KendraResults.test.tsx │ │ ├── KendraTopResults.test.tsx │ │ ├── KeyValueList.test.tsx │ │ ├── Pdf.test.tsx │ │ ├── RawTextLines.test.tsx │ │ ├── SearchView.test.tsx │ │ ├── SelectedFile.test.tsx │ │ ├── SelectedFileList.test.tsx │ │ ├── TableResults.test.tsx │ │ ├── TextractTab.test.tsx │ │ ├── UploadDocumentView.test.tsx │ │ ├── __snapshots__ │ │ │ └── TableResults.test.tsx.snap │ │ ├── index.test.js │ │ ├── internal.test.tsx │ │ ├── mocks │ │ │ └── App.js │ │ ├── test_data.js │ │ └── utils │ │ │ └── tesUtils.tsx │ ├── components │ │ ├── CreateCaseView │ │ │ ├── CreateCaseView.tsx │ │ │ └── form-content.tsx │ │ ├── DocumentRenderer │ │ │ ├── DocumentRenderer.css │ │ │ └── DocumentRenderer.tsx │ │ ├── DocumentTable │ │ │ ├── DocumentTable.tsx │ │ │ ├── common-components.tsx │ │ │ ├── full-page-header.tsx │ │ │ ├── i18n-strings │ │ │ │ ├── app-layout.ts │ │ │ │ ├── index.ts │ │ │ │ ├── pagination.ts │ │ │ │ ├── split-panel.ts │ │ │ │ └── text-filter.ts │ │ │ ├── info-link.tsx │ │ │ ├── interfaces.ts │ │ │ ├── table-config.tsx │ │ │ ├── use-collection.ts │ │ │ └── utils.tsx │ │ ├── DocumentView │ │ │ ├── DocumentView.css │ │ │ └── DocumentView.tsx │ │ ├── EntitiesList.css │ │ ├── EntitiesList.tsx │ │ ├── EntityDetectionTab.tsx │ │ ├── FileUpload │ │ │ ├── FileUpload.tsx │ │ │ ├── SelectedFile │ │ │ │ ├── SelectedFile.css │ │ │ │ └── SelectedFile.tsx │ │ │ ├── SelectedFileList │ │ │ │ ├── SelectedFileList.css │ │ │ │ └── SelectedFileList.tsx │ │ │ ├── interfaces.ts │ │ │ └── internal.ts │ │ ├── KeyValueList.tsx │ │ ├── Pdf │ │ │ ├── Pdf.css │ │ │ └── Pdf.tsx │ │ ├── RawTextLines │ │ │ ├── RawTextLines.css │ │ │ └── RawTextLines.tsx │ │ ├── SearchView │ │ │ ├── Kendra │ │ │ │ ├── KendraDocumentResults.tsx │ │ │ │ ├── KendraHighlightedText.tsx │ │ │ │ ├── KendraResultPage.tsx │ │ │ │ ├── KendraResultTitle.tsx │ │ │ │ ├── KendraResults.tsx │ │ │ │ └── KendraTopResults.tsx │ │ │ ├── OpenSearch │ │ │ │ ├── OpenSearchQueryResults.tsx │ │ │ │ ├── OpenSearchResultPage.tsx │ │ │ │ ├── OpenSearchResultTitle.tsx │ │ │ │ └── OpenSearchResults.tsx │ │ │ └── SearchView.tsx │ │ ├── TableResults │ │ │ ├── TableResults.css │ │ │ └── TableResults.tsx │ │ ├── TextractTab.tsx │ │ ├── UploadDocumentView.tsx │ │ ├── buttons │ │ │ └── StartJobButton.tsx │ │ ├── entityUtils.ts │ │ └── makeData.ts │ ├── index.css │ ├── index.js │ ├── jest.setup.ts │ ├── mock │ │ └── api │ │ │ ├── handler.ts │ │ │ └── server.ts │ ├── models │ │ └── requests │ │ │ ├── baseRequest.ts │ │ │ ├── getDocumentRequest.ts │ │ │ ├── inferenceRequest.ts │ │ │ └── uploadDocumentRequest.ts │ ├── resolver.js │ ├── store │ │ ├── api │ │ │ └── api.ts │ │ ├── hooks │ │ │ └── hooks.ts │ │ ├── reducers │ │ │ ├── caseApiSlice.ts │ │ │ ├── documentApiSlice.ts │ │ │ ├── documentSlice.ts │ │ │ ├── entitySlice.ts │ │ │ ├── inferenceApiSlice.ts │ │ │ ├── redactApiSlice.ts │ │ │ ├── rootReducer.ts │ │ │ └── searchApiSlice.ts │ │ └── store.ts │ ├── test_data │ │ ├── comprehend-responses │ │ │ └── insulinPdfEntities.json │ │ ├── kendra │ │ │ └── kendraQueryResponse.json │ │ └── textract-responses │ │ │ ├── dischargeSummaryPng.json │ │ │ ├── textractResp2PagePdf.json │ │ │ ├── textractRespMulti.json │ │ │ └── textractResponseInsulinPdf.json │ └── utils │ │ ├── __test__ │ │ ├── common-renderers.test.tsx │ │ └── document.test.js │ │ ├── apiHelper.ts │ │ ├── common-renderers.tsx │ │ ├── constants.ts │ │ ├── document.ts │ │ ├── info-panel-contents.tsx │ │ └── interfaces.ts └── tsconfig.json └── workflow-config ├── default.json ├── multi-doc-textract-entity-medical-pii.json ├── multi-doc-textract-entity-pii.json ├── multi-doc-textract-entity.json ├── multi-doc-textract-with-feature-type.json ├── single-doc-entity-detection.json ├── single-doc-entity-redaction.json ├── single-doc-textract-entitty-pii.json ├── single-doc-textract-entity-medical.json ├── single-doc-textract-entity-pii.json ├── single-doc-textract-entity.json └── single-doc-textract.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/SECURITY.md -------------------------------------------------------------------------------- /deployment/build-s3-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/deployment/build-s3-dist.sh -------------------------------------------------------------------------------- /deployment/cdk-solution-helper/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /deployment/cdk-solution-helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/deployment/cdk-solution-helper/README.md -------------------------------------------------------------------------------- /deployment/cdk-solution-helper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/deployment/cdk-solution-helper/index.js -------------------------------------------------------------------------------- /deployment/cdk-solution-helper/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/deployment/cdk-solution-helper/package-lock.json -------------------------------------------------------------------------------- /deployment/cdk-solution-helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/deployment/cdk-solution-helper/package.json -------------------------------------------------------------------------------- /deployment/get-cdk-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/deployment/get-cdk-version.js -------------------------------------------------------------------------------- /source/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/.eslintignore -------------------------------------------------------------------------------- /source/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/.prettierignore -------------------------------------------------------------------------------- /source/.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/.prettierrc.yml -------------------------------------------------------------------------------- /source/email-templates/processing_complete.email.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/email-templates/processing_complete.email.template -------------------------------------------------------------------------------- /source/email-templates/processing_failure.email.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/email-templates/processing_failure.email.template -------------------------------------------------------------------------------- /source/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/images/architecture.png -------------------------------------------------------------------------------- /source/images/ui-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/images/ui-components.png -------------------------------------------------------------------------------- /source/infrastructure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/.gitignore -------------------------------------------------------------------------------- /source/infrastructure/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/.npmignore -------------------------------------------------------------------------------- /source/infrastructure/bin/dus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/bin/dus.ts -------------------------------------------------------------------------------- /source/infrastructure/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/cdk.json -------------------------------------------------------------------------------- /source/infrastructure/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/jest.config.js -------------------------------------------------------------------------------- /source/infrastructure/lib/api/case-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/case-manager.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/model-schema/case-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/model-schema/case-response.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/model-schema/create-case-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/model-schema/create-case-body.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/model-schema/document-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/model-schema/document-response.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/model-schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/model-schema/index.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/model-schema/redact-request-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/model-schema/redact-request-body.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/model-schema/upload-document-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/model-schema/upload-document-body.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/request-processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/request-processor.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/rest-api-documentation/api-documentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/rest-api-documentation/api-documentation.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/rest-api-documentation/case.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/rest-api-documentation/case.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/rest-api-documentation/cases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/rest-api-documentation/cases.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/rest-api-documentation/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/rest-api-documentation/document.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/rest-api-documentation/inferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/rest-api-documentation/inferences.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/rest-api-documentation/redact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/rest-api-documentation/redact.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/rest-api-documentation/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/rest-api-documentation/root.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/rest-api-documentation/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/rest-api-documentation/search.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/api/rest-endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/api/rest-endpoint.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/application-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/application-setup.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/dus-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/dus-stack.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/govcloud/cfn-resource-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/govcloud/cfn-resource-observer.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/layers/java-user-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/layers/java-user-agent.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/layers/node-user-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/layers/node-user-agent.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/layers/python-user-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/layers/python-user-agent.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/layers/runtime-libs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/layers/runtime-libs.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/layers/shared-lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/layers/shared-lib.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/metrics/custom-dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/metrics/custom-dashboard.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/notifications/notification-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/notifications/notification-manager.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/s3web/static-site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/s3web/static-site.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/s3web/ui-asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/s3web/ui-asset.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/samples/copy-samples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/samples/copy-samples.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/search/indexed-storage-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/search/indexed-storage-params.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/search/indexed-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/search/indexed-storage.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/search/kendra-case-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/search/kendra-case-storage.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/search/open-search-case-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/search/open-search-case-storage.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/ui-infrastructure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/ui-infrastructure.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/utils/asset-bundling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/utils/asset-bundling.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/utils/aws-deployment-partition-aspects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/utils/aws-deployment-partition-aspects.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/utils/cfn-nag-suppressions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/utils/cfn-nag-suppressions.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/utils/common-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/utils/common-utils.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/utils/constants.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/utils/custom-infra-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/utils/custom-infra-setup.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/utils/lambda-aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/utils/lambda-aspect.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/utils/lambda-runtimes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/utils/lambda-runtimes.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/utils/nested-stack-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/utils/nested-stack-parameters.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/utils/solution-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/utils/solution-helper.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/vpc/vpc-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/vpc/vpc-stack.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/workflow/entity-detection/entity-detection-workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/workflow/entity-detection/entity-detection-workflow.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/workflow/fragments/failure-fragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/workflow/fragments/failure-fragment.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/workflow/fragments/stepfunction-callbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/workflow/fragments/stepfunction-callbacks.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/workflow/redaction/redaction-workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/workflow/redaction/redaction-workflow.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/workflow/standard/abstract-workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/workflow/standard/abstract-workflow.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/workflow/standard/standard-workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/workflow/standard/standard-workflow.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/workflow/textract/textract-workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/workflow/textract/textract-workflow.ts -------------------------------------------------------------------------------- /source/infrastructure/lib/workflow/workflow-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/lib/workflow/workflow-config.ts -------------------------------------------------------------------------------- /source/infrastructure/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/package-lock.json -------------------------------------------------------------------------------- /source/infrastructure/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/package.json -------------------------------------------------------------------------------- /source/infrastructure/test/api/case-manager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/api/case-manager.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/api/request-processor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/api/request-processor.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/api/rest-api-documentation/api-documentation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/api/rest-api-documentation/api-documentation.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/api/rest-end-point.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/api/rest-end-point.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/application-setup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/application-setup.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/dus-stack.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/dus-stack.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/framework/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM 'amazon/aws-stepfunctions-local' -------------------------------------------------------------------------------- /source/infrastructure/test/framework/cdk-to-asl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/framework/cdk-to-asl.ts -------------------------------------------------------------------------------- /source/infrastructure/test/framework/sfn-client-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/framework/sfn-client-wrapper.ts -------------------------------------------------------------------------------- /source/infrastructure/test/framework/sfn-local-container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/framework/sfn-local-container.ts -------------------------------------------------------------------------------- /source/infrastructure/test/framework/sfn-mock-config-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/framework/sfn-mock-config-validator.ts -------------------------------------------------------------------------------- /source/infrastructure/test/framework/sfn-test-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/framework/sfn-test-builder.ts -------------------------------------------------------------------------------- /source/infrastructure/test/framework/test/cdk-to-asl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/framework/test/cdk-to-asl.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/framework/test/sfn-client-wrapper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/framework/test/sfn-client-wrapper.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/framework/test/sfn-local-container.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/framework/test/sfn-local-container.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/framework/test/sfn-mock-config-validator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/framework/test/sfn-mock-config-validator.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/framework/test/sfn-test-builder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/framework/test/sfn-test-builder.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/govcloud/cfn-resource-observer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/govcloud/cfn-resource-observer.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/integration/entity-detection/integ-test-data/expected-test-outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/integration/entity-detection/integ-test-data/expected-test-outputs.json -------------------------------------------------------------------------------- /source/infrastructure/test/integration/entity-detection/integ-test-data/input-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/integration/entity-detection/integ-test-data/input-data.json -------------------------------------------------------------------------------- /source/infrastructure/test/integration/entity-detection/integ.entity-detection-workflow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/integration/entity-detection/integ.entity-detection-workflow.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/integration/redaction/integ-test-data/expected-test-outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/integration/redaction/integ-test-data/expected-test-outputs.json -------------------------------------------------------------------------------- /source/infrastructure/test/integration/redaction/integ-test-data/input-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/integration/redaction/integ-test-data/input-data.json -------------------------------------------------------------------------------- /source/infrastructure/test/integration/redaction/integ.redaction-workflow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/integration/redaction/integ.redaction-workflow.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/integration/textract/integ-test-data/expected-test-outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/integration/textract/integ-test-data/expected-test-outputs.json -------------------------------------------------------------------------------- /source/infrastructure/test/integration/textract/integ-test-data/input-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/integration/textract/integ-test-data/input-data.json -------------------------------------------------------------------------------- /source/infrastructure/test/integration/textract/integ-test-data/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/integration/textract/integ-test-data/makefile -------------------------------------------------------------------------------- /source/infrastructure/test/integration/textract/integ.textract-workflow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/integration/textract/integ.textract-workflow.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/layers/java-user-agent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/layers/java-user-agent.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/layers/node-user-agent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/layers/node-user-agent.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/layers/python-user-agent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/layers/python-user-agent.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/layers/runtime-lib.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/layers/runtime-lib.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/layers/shared-lib.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/layers/shared-lib.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/metrics/custom-dashboard.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/metrics/custom-dashboard.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/mock-lambda-func/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/mock-lambda-func/.gitignore -------------------------------------------------------------------------------- /source/infrastructure/test/mock-lambda-func/java-lambda/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/mock-lambda-func/java-lambda/checkstyle.xml -------------------------------------------------------------------------------- /source/infrastructure/test/mock-lambda-func/java-lambda/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/mock-lambda-func/java-lambda/pom.xml -------------------------------------------------------------------------------- /source/infrastructure/test/mock-lambda-func/java-lambda/src/main/java/example/Handler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/mock-lambda-func/java-lambda/src/main/java/example/Handler.java -------------------------------------------------------------------------------- /source/infrastructure/test/mock-lambda-func/node-lambda/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/mock-lambda-func/node-lambda/package-lock.json -------------------------------------------------------------------------------- /source/infrastructure/test/mock-lambda-func/node-lambda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/mock-lambda-func/node-lambda/package.json -------------------------------------------------------------------------------- /source/infrastructure/test/mock-lambda-func/python-lambda/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/mock-lambda-func/python-lambda/.gitignore -------------------------------------------------------------------------------- /source/infrastructure/test/mock-lambda-func/python-lambda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/mock-lambda-func/python-lambda/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/test/mock-lambda-func/python-lambda/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/mock-lambda-func/python-lambda/function.py -------------------------------------------------------------------------------- /source/infrastructure/test/mock-lambda-func/python-lambda/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/mock-lambda-func/python-lambda/poetry.lock -------------------------------------------------------------------------------- /source/infrastructure/test/mock-lambda-func/python-lambda/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/mock-lambda-func/python-lambda/pyproject.toml -------------------------------------------------------------------------------- /source/infrastructure/test/mock-ui/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /source/infrastructure/test/mock-ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/mock-ui/package-lock.json -------------------------------------------------------------------------------- /source/infrastructure/test/mock-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/mock-ui/package.json -------------------------------------------------------------------------------- /source/infrastructure/test/mock-ui/public/index.html: -------------------------------------------------------------------------------- 1 | Blank test file -------------------------------------------------------------------------------- /source/infrastructure/test/notifications/notification-manager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/notifications/notification-manager.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/s3web/static-site.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/s3web/static-site.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/s3web/ui-asset.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/s3web/ui-asset.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/samples/copy_samples.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/samples/copy_samples.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/search/indexed-storage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/search/indexed-storage.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/search/kendra-case-storage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/search/kendra-case-storage.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/search/open-search-case-storage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/search/open-search-case-storage.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/ui-infrstructure.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/ui-infrstructure.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/utils/asset-bundling.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/utils/asset-bundling.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/utils/aws-deployment-partition-aspect.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/utils/aws-deployment-partition-aspect.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/utils/cfn-nag-suppressions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/utils/cfn-nag-suppressions.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/utils/common-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/utils/common-utils.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/utils/custom-infra-setup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/utils/custom-infra-setup.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/utils/lambda-aspect.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/utils/lambda-aspect.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/utils/lambda-runtimes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/utils/lambda-runtimes.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/utils/solution-helper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/utils/solution-helper.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/vpc/vpc-stack.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/vpc/vpc-stack.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/workflow/entity-detection/entity-detection-workflow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/workflow/entity-detection/entity-detection-workflow.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/workflow/fragments/failure-fragment.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/workflow/fragments/failure-fragment.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/workflow/redaction/redaction-workflow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/workflow/redaction/redaction-workflow.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/workflow/standard/standard-workflow-state-machine.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/workflow/standard/standard-workflow-state-machine.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/workflow/textract/textract-workflow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/workflow/textract/textract-workflow.test.ts -------------------------------------------------------------------------------- /source/infrastructure/test/workflow/workflow-config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/test/workflow/workflow-config.test.ts -------------------------------------------------------------------------------- /source/infrastructure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/infrastructure/tsconfig.json -------------------------------------------------------------------------------- /source/lambda/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/.eslintrc.js -------------------------------------------------------------------------------- /source/lambda/create-presigned-url/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/create-presigned-url/index.js -------------------------------------------------------------------------------- /source/lambda/create-presigned-url/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/create-presigned-url/jest.config.js -------------------------------------------------------------------------------- /source/lambda/create-presigned-url/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/create-presigned-url/package-lock.json -------------------------------------------------------------------------------- /source/lambda/create-presigned-url/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/create-presigned-url/package.json -------------------------------------------------------------------------------- /source/lambda/create-presigned-url/test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/create-presigned-url/test/index.spec.js -------------------------------------------------------------------------------- /source/lambda/create-presigned-url/test/utils/env-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/create-presigned-url/test/utils/env-setup.spec.js -------------------------------------------------------------------------------- /source/lambda/create-presigned-url/test/utils/generate-signed-url.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/create-presigned-url/test/utils/generate-signed-url.spec.js -------------------------------------------------------------------------------- /source/lambda/create-presigned-url/utils/env-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/create-presigned-url/utils/env-setup.js -------------------------------------------------------------------------------- /source/lambda/create-presigned-url/utils/generate-signed-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/create-presigned-url/utils/generate-signed-url.js -------------------------------------------------------------------------------- /source/lambda/custom-resource/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/.coveragerc -------------------------------------------------------------------------------- /source/lambda/custom-resource/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/.gitignore -------------------------------------------------------------------------------- /source/lambda/custom-resource/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/__init__.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/cfn_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/cfn_response.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/lambda_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/lambda_func.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/lambda_ops_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/lambda_ops_metrics.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/operations/__init__.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/operations/anonymous_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/operations/anonymous_metrics.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/operations/copy_email_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/operations/copy_email_templates.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/operations/copy_sample_documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/operations/copy_sample_documents.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/operations/copy_web_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/operations/copy_web_ui.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/operations/copy_workflow_config_to_ddb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/operations/copy_workflow_config_to_ddb.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/operations/cw_loggroup_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/operations/cw_loggroup_policy.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/operations/gen_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/operations/gen_uuid.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/operations/operation_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/operations/operation_types.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/operations/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/operations/shared.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/operations/update_s3_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/operations/update_s3_policy.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/operations/webconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/operations/webconfig.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/poetry.lock -------------------------------------------------------------------------------- /source/lambda/custom-resource/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/pyproject.toml -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/__init__.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/conftest.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/fixtures/__init__.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/fixtures/anonymous_metrics_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/fixtures/anonymous_metrics_events.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/fixtures/copy_sample_documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/fixtures/copy_sample_documents.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/fixtures/copy_template_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/fixtures/copy_template_events.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/fixtures/copy_web_ui_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/fixtures/copy_web_ui_events.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/fixtures/copy_workflow_config_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/fixtures/copy_workflow_config_events.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/fixtures/cw_loggroup_policy_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/fixtures/cw_loggroup_policy_events.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/fixtures/gen_uuid_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/fixtures/gen_uuid_events.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/fixtures/update_s3_policy_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/fixtures/update_s3_policy_events.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/fixtures/webconfig_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/fixtures/webconfig_events.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/operations/__init__.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/operations/test_anonymous_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/operations/test_anonymous_metric.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/operations/test_copy_email_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/operations/test_copy_email_templates.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/operations/test_copy_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/operations/test_copy_samples.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/operations/test_copy_web_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/operations/test_copy_web_ui.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/operations/test_copy_workflow_config_to_ddb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/operations/test_copy_workflow_config_to_ddb.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/operations/test_cw_loggroup_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/operations/test_cw_loggroup_policy.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/operations/test_gen_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/operations/test_gen_uuid.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/operations/test_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/operations/test_shared.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/operations/test_update_s3_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/operations/test_update_s3_policy.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/operations/test_webconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/operations/test_webconfig.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/test_lambda_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/test_lambda_func.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/test_lambda_ops_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/test_lambda_ops_metrics.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/utils/__init__.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/utils/test_lambda_context_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/utils/test_lambda_context_parser.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/utils/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/utils/test_metrics.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/test/utils/test_metrics_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/test/utils/test_metrics_payload.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/lambda/custom-resource/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/utils/constants.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/utils/data.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/utils/lambda_context_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/utils/lambda_context_parser.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/utils/metrics.py -------------------------------------------------------------------------------- /source/lambda/custom-resource/utils/metrics_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/custom-resource/utils/metrics_payload.py -------------------------------------------------------------------------------- /source/lambda/entity-detection/entity-detection-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/entity-detection-sync.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/index.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/jest.config.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/package-lock.json -------------------------------------------------------------------------------- /source/lambda/entity-detection/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/package.json -------------------------------------------------------------------------------- /source/lambda/entity-detection/test/entity-detection-sync.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/test/entity-detection-sync.spec.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/test/event-test-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/test/event-test-data.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/test/utils/entity/entity-context.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/test/utils/entity/entity-context.spec.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/test/utils/entity/entity-detector.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/test/utils/entity/entity-detector.spec.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/test/utils/entity/generic-entity-detection-strategy.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/test/utils/entity/generic-entity-detection-strategy.spec.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/test/utils/entity/medical-entity-detection-strategy.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/test/utils/entity/medical-entity-detection-strategy.spec.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/test/utils/entity/pii-entity-detection-stategy.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/test/utils/entity/pii-entity-detection-stategy.spec.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/test/utils/generic.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/test/utils/generic.spec.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/test/utils/sync.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/test/utils/sync.spec.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/utils/entity/entity-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/utils/entity/entity-context.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/utils/entity/entity-detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/utils/entity/entity-detector.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/utils/entity/generic-entity-detection-strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/utils/entity/generic-entity-detection-strategy.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/utils/entity/medical-entity-detection-strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/utils/entity/medical-entity-detection-strategy.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/utils/entity/pii-entity-detection-strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/utils/entity/pii-entity-detection-strategy.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/utils/generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/utils/generic.js -------------------------------------------------------------------------------- /source/lambda/entity-detection/utils/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/entity-detection/utils/sync.js -------------------------------------------------------------------------------- /source/lambda/fetch-records/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/fetch-records/index.js -------------------------------------------------------------------------------- /source/lambda/fetch-records/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/fetch-records/jest.config.js -------------------------------------------------------------------------------- /source/lambda/fetch-records/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/fetch-records/package-lock.json -------------------------------------------------------------------------------- /source/lambda/fetch-records/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/fetch-records/package.json -------------------------------------------------------------------------------- /source/lambda/fetch-records/test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/fetch-records/test/index.spec.js -------------------------------------------------------------------------------- /source/lambda/fetch-records/test/utils/doc-access-checkers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/fetch-records/test/utils/doc-access-checkers.spec.js -------------------------------------------------------------------------------- /source/lambda/fetch-records/test/utils/env-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/fetch-records/test/utils/env-setup.spec.js -------------------------------------------------------------------------------- /source/lambda/fetch-records/test/utils/fetch-case.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/fetch-records/test/utils/fetch-case.spec.js -------------------------------------------------------------------------------- /source/lambda/fetch-records/test/utils/fetch-document.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/fetch-records/test/utils/fetch-document.spec.js -------------------------------------------------------------------------------- /source/lambda/fetch-records/utils/doc-access-checkers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/fetch-records/utils/doc-access-checkers.js -------------------------------------------------------------------------------- /source/lambda/fetch-records/utils/env-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/fetch-records/utils/env-setup.js -------------------------------------------------------------------------------- /source/lambda/fetch-records/utils/fetch-case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/fetch-records/utils/fetch-case.js -------------------------------------------------------------------------------- /source/lambda/fetch-records/utils/fetch-document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/fetch-records/utils/fetch-document.js -------------------------------------------------------------------------------- /source/lambda/get-inferences/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/get-inferences/index.js -------------------------------------------------------------------------------- /source/lambda/get-inferences/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/get-inferences/jest.config.js -------------------------------------------------------------------------------- /source/lambda/get-inferences/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/get-inferences/package-lock.json -------------------------------------------------------------------------------- /source/lambda/get-inferences/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/get-inferences/package.json -------------------------------------------------------------------------------- /source/lambda/get-inferences/test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/get-inferences/test/index.spec.js -------------------------------------------------------------------------------- /source/lambda/get-inferences/test/utils/get-inferences.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/get-inferences/test/utils/get-inferences.spec.js -------------------------------------------------------------------------------- /source/lambda/get-inferences/utils/get-inferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/get-inferences/utils/get-inferences.js -------------------------------------------------------------------------------- /source/lambda/layers/aws-node-user-agent-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/aws-node-user-agent-config/index.js -------------------------------------------------------------------------------- /source/lambda/layers/aws-node-user-agent-config/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/aws-node-user-agent-config/jest.config.js -------------------------------------------------------------------------------- /source/lambda/layers/aws-node-user-agent-config/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/aws-node-user-agent-config/package-lock.json -------------------------------------------------------------------------------- /source/lambda/layers/aws-node-user-agent-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/aws-node-user-agent-config/package.json -------------------------------------------------------------------------------- /source/lambda/layers/aws-node-user-agent-config/test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/aws-node-user-agent-config/test/index.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/aws-sdk-lib/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/aws-sdk-lib/package-lock.json -------------------------------------------------------------------------------- /source/lambda/layers/aws-sdk-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/aws-sdk-lib/package.json -------------------------------------------------------------------------------- /source/lambda/layers/aws_boto3/.gitignore: -------------------------------------------------------------------------------- 1 | *.dist-info* 2 | jp.py 3 | dist/ -------------------------------------------------------------------------------- /source/lambda/layers/aws_boto3/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/aws_boto3/poetry.lock -------------------------------------------------------------------------------- /source/lambda/layers/aws_boto3/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/aws_boto3/pyproject.toml -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/aoss/aoss-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/aoss/aoss-proxy.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/batch-job/initiate-job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/batch-job/initiate-job.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/cognito/decode-jwt-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/cognito/decode-jwt-token.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/constants.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/ddb/ddb-case-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/ddb/ddb-case-update.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/ddb/ddb-get-case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/ddb/ddb-get-case.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/event-bridge/event-dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/event-bridge/event-dispatcher.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/index.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/jest.config.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/metrics/case-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/metrics/case-status.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/metrics/cloudwatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/metrics/cloudwatch.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/metrics/documents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/metrics/documents.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/metrics/file-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/metrics/file-types.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/metrics/utils/send-metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/metrics/utils/send-metrics.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/metrics/workflows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/metrics/workflows.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/package-lock.json -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/package.json -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/response-formatter/error-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/response-formatter/error-response.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/response-formatter/success-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/response-formatter/success-response.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/s3/get-request-account-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/s3/get-request-account-id.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/s3/s3-download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/s3/s3-download.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/s3/s3-get-head-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/s3/s3-get-head-object.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/s3/s3-get-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/s3/s3-get-tags.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/s3/s3-inferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/s3/s3-inferences.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/s3/s3-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/s3/s3-upload.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/sqs/sqs-poller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/sqs/sqs-poller.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/stepfunctions/task-notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/stepfunctions/task-notify.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/aoss/aoss-proxy.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/aoss/aoss-proxy.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/batch-job/initiate-job.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/batch-job/initiate-job.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/cognito/decode-jwt-token.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/cognito/decode-jwt-token.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/ddb/ddb-case-update.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/ddb/ddb-case-update.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/ddb/ddb-get-case.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/ddb/ddb-get-case.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/event-bridge/event-dispatcher.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/event-bridge/event-dispatcher.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/event-test-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/event-test-data.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/metrics/case-status.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/metrics/case-status.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/metrics/cloudwatch.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/metrics/cloudwatch.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/metrics/documents.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/metrics/documents.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/metrics/file-types.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/metrics/file-types.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/metrics/utils/send-metrics.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/metrics/utils/send-metrics.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/metrics/workflows.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/metrics/workflows.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/response-formatter/error-response.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/response-formatter/error-response.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/response-formatter/success-response.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/response-formatter/success-response.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/s3/get-request-account-id.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/s3/get-request-account-id.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/s3/s3-download.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/s3/s3-download.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/s3/s3-get-tags.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/s3/s3-get-tags.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/s3/s3-inferences.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/s3/s3-inferences.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/s3/s3-upload.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/s3/s3-upload.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/sqs/sqs-poller.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/sqs/sqs-poller.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/stepfunctions/stepfunctions-task-notify.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/stepfunctions/stepfunctions-task-notify.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/utils/compare-maps.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/utils/compare-maps.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/test/utils/validate-case-access.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/test/utils/validate-case-access.spec.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/utils/compare-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/utils/compare-maps.js -------------------------------------------------------------------------------- /source/lambda/layers/common-node-lib/utils/validate-case-access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/common-node-lib/utils/validate-case-access.js -------------------------------------------------------------------------------- /source/lambda/layers/custom-java-sdk-config/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom-java-sdk-config/checkstyle.xml -------------------------------------------------------------------------------- /source/lambda/layers/custom-java-sdk-config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom-java-sdk-config/pom.xml -------------------------------------------------------------------------------- /source/lambda/layers/custom-java-sdk-config/src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom-java-sdk-config/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /source/lambda/layers/custom_boto3_init/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom_boto3_init/.coveragerc -------------------------------------------------------------------------------- /source/lambda/layers/custom_boto3_init/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom_boto3_init/.gitignore -------------------------------------------------------------------------------- /source/lambda/layers/custom_boto3_init/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom_boto3_init/__init__.py -------------------------------------------------------------------------------- /source/lambda/layers/custom_boto3_init/custom_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom_boto3_init/custom_config.py -------------------------------------------------------------------------------- /source/lambda/layers/custom_boto3_init/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom_boto3_init/helper.py -------------------------------------------------------------------------------- /source/lambda/layers/custom_boto3_init/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom_boto3_init/poetry.lock -------------------------------------------------------------------------------- /source/lambda/layers/custom_boto3_init/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom_boto3_init/pyproject.toml -------------------------------------------------------------------------------- /source/lambda/layers/custom_boto3_init/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom_boto3_init/setup.py -------------------------------------------------------------------------------- /source/lambda/layers/custom_boto3_init/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom_boto3_init/test/__init__.py -------------------------------------------------------------------------------- /source/lambda/layers/custom_boto3_init/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom_boto3_init/test/conftest.py -------------------------------------------------------------------------------- /source/lambda/layers/custom_boto3_init/test/test_layer_env_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom_boto3_init/test/test_layer_env_config.py -------------------------------------------------------------------------------- /source/lambda/layers/custom_boto3_init/test/test_service_instance_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/layers/custom_boto3_init/test/test_service_instance_creation.py -------------------------------------------------------------------------------- /source/lambda/redact-content/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/checkstyle.xml -------------------------------------------------------------------------------- /source/lambda/redact-content/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/pom.xml -------------------------------------------------------------------------------- /source/lambda/redact-content/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/resources/log4j2.xml -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/RedactionApiHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/RedactionApiHandler.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/RedactionSfnHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/RedactionSfnHandler.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/model/ApiRequestBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/model/ApiRequestBody.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/model/BoundingBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/model/BoundingBox.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/model/Document.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/model/Document.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/model/EntityDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/model/EntityDetails.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/model/EventDataBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/model/EventDataBody.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/model/EventDataDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/model/EventDataDocument.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/model/EventDataInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/model/EventDataInput.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/model/FileType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/model/FileType.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/model/PhraseRedaction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/model/PhraseRedaction.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/model/TextractBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/model/TextractBlock.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/model/TextractDetectText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/model/TextractDetectText.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/model/TextractGeometry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/model/TextractGeometry.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/model/TextractRelationship.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/model/TextractRelationship.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/utils/ApiRequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/utils/ApiRequestProcessor.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/utils/CloudWatchMetrics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/utils/CloudWatchMetrics.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/utils/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/utils/Constants.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/utils/DependencyFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/utils/DependencyFactory.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/utils/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/utils/FileUtils.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/utils/ImageRedactor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/utils/ImageRedactor.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/utils/LambdaContextParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/utils/LambdaContextParser.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/utils/PdfRedactor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/utils/PdfRedactor.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/utils/PhraseFinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/utils/PhraseFinder.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/utils/Redactor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/utils/Redactor.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/utils/RequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/utils/RequestProcessor.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/utils/S3Storage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/utils/S3Storage.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/utils/SfnRequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/utils/SfnRequestProcessor.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/main/java/com/builder/lambda/utils/StepFunctionConnector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/main/java/com/builder/lambda/utils/StepFunctionConnector.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/RedactionApiHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/RedactionApiHandlerTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/RedactionSfnHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/RedactionSfnHandlerTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/model/ApiRequestBodyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/model/ApiRequestBodyTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/model/BoundingBoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/model/BoundingBoxTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/model/DocumentTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/model/DocumentTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/model/EntityDetailsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/model/EntityDetailsTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/model/EventDataBodyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/model/EventDataBodyTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/model/EventDataDocumentTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/model/EventDataDocumentTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/model/EventDataInputTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/model/EventDataInputTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/model/PhraseRedactionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/model/PhraseRedactionTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/model/TextractBlockTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/model/TextractBlockTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/model/TextractDetectTextTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/model/TextractDetectTextTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/model/TextractGeometryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/model/TextractGeometryTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/model/TextractRelationshipTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/model/TextractRelationshipTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/utils/ApiRequestProcessorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/utils/ApiRequestProcessorTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/utils/CloudWatchMetricsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/utils/CloudWatchMetricsTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/utils/DependencyFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/utils/DependencyFactoryTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/utils/FileUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/utils/FileUtilsTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/utils/ImageRedactorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/utils/ImageRedactorTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/utils/LambdaContextParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/utils/LambdaContextParserTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/utils/PdfRedactorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/utils/PdfRedactorTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/utils/PhraseFinderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/utils/PhraseFinderTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/utils/S3StorageTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/utils/S3StorageTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/utils/SfnRequestProcessorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/utils/SfnRequestProcessorTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/com/builder/lambda/utils/StepFunctionConnectorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/com/builder/lambda/utils/StepFunctionConnectorTest.java -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/resources/apiRequestBody-entities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/resources/apiRequestBody-entities.json -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/resources/apiRequestBody-phrases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/resources/apiRequestBody-phrases.json -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/resources/apiRequestBody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/resources/apiRequestBody.json -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/resources/badEventBody1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/resources/badEventBody1.json -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/resources/eventBody1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/resources/eventBody1.json -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/resources/eventBody2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/resources/eventBody2.json -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/resources/patient_intake_form_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/resources/patient_intake_form_sample.jpg -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/resources/redactData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/resources/redactData.json -------------------------------------------------------------------------------- /source/lambda/redact-content/src/test/java/resources/textract-detectText.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/redact-content/src/test/java/resources/textract-detectText.json -------------------------------------------------------------------------------- /source/lambda/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/search/index.js -------------------------------------------------------------------------------- /source/lambda/search/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/search/jest.config.js -------------------------------------------------------------------------------- /source/lambda/search/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/search/package-lock.json -------------------------------------------------------------------------------- /source/lambda/search/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/search/package.json -------------------------------------------------------------------------------- /source/lambda/search/test/event-test-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/search/test/event-test-data.js -------------------------------------------------------------------------------- /source/lambda/search/test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/search/test/index.spec.js -------------------------------------------------------------------------------- /source/lambda/search/test/utils/env-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/search/test/utils/env-setup.spec.js -------------------------------------------------------------------------------- /source/lambda/search/test/utils/seach-kendra.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/search/test/utils/seach-kendra.spec.js -------------------------------------------------------------------------------- /source/lambda/search/utils/env-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/search/utils/env-setup.js -------------------------------------------------------------------------------- /source/lambda/search/utils/search-kendra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/search/utils/search-kendra.js -------------------------------------------------------------------------------- /source/lambda/send-notification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/send-notification/index.js -------------------------------------------------------------------------------- /source/lambda/send-notification/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/send-notification/jest.config.js -------------------------------------------------------------------------------- /source/lambda/send-notification/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/send-notification/package-lock.json -------------------------------------------------------------------------------- /source/lambda/send-notification/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/send-notification/package.json -------------------------------------------------------------------------------- /source/lambda/send-notification/test/event-test-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/send-notification/test/event-test-data.js -------------------------------------------------------------------------------- /source/lambda/send-notification/test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/send-notification/test/index.spec.js -------------------------------------------------------------------------------- /source/lambda/send-notification/test/utils/s3-read.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/send-notification/test/utils/s3-read.spec.js -------------------------------------------------------------------------------- /source/lambda/send-notification/test/utils/sns-send-notification.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/send-notification/test/utils/sns-send-notification.spec.js -------------------------------------------------------------------------------- /source/lambda/send-notification/utils/s3-read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/send-notification/utils/s3-read.js -------------------------------------------------------------------------------- /source/lambda/send-notification/utils/sns-send-notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/send-notification/utils/sns-send-notification.js -------------------------------------------------------------------------------- /source/lambda/text-extract/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/text-extract/index.js -------------------------------------------------------------------------------- /source/lambda/text-extract/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/text-extract/jest.config.js -------------------------------------------------------------------------------- /source/lambda/text-extract/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/text-extract/package-lock.json -------------------------------------------------------------------------------- /source/lambda/text-extract/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/text-extract/package.json -------------------------------------------------------------------------------- /source/lambda/text-extract/test/event-test-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/text-extract/test/event-test-data.js -------------------------------------------------------------------------------- /source/lambda/text-extract/test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/text-extract/test/index.spec.js -------------------------------------------------------------------------------- /source/lambda/text-extract/test/textract-sync.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/text-extract/test/textract-sync.spec.js -------------------------------------------------------------------------------- /source/lambda/text-extract/test/utils/generic.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/text-extract/test/utils/generic.spec.js -------------------------------------------------------------------------------- /source/lambda/text-extract/test/utils/pdf-splitter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/text-extract/test/utils/pdf-splitter.spec.js -------------------------------------------------------------------------------- /source/lambda/text-extract/test/utils/sync.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/text-extract/test/utils/sync.spec.js -------------------------------------------------------------------------------- /source/lambda/text-extract/textract-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/text-extract/textract-sync.js -------------------------------------------------------------------------------- /source/lambda/text-extract/utils/generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/text-extract/utils/generic.js -------------------------------------------------------------------------------- /source/lambda/text-extract/utils/pdf-splitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/text-extract/utils/pdf-splitter.js -------------------------------------------------------------------------------- /source/lambda/text-extract/utils/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/text-extract/utils/sync.js -------------------------------------------------------------------------------- /source/lambda/upload-document/config/ddb-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/config/ddb-loader.js -------------------------------------------------------------------------------- /source/lambda/upload-document/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/index.js -------------------------------------------------------------------------------- /source/lambda/upload-document/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/jest.config.js -------------------------------------------------------------------------------- /source/lambda/upload-document/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/package-lock.json -------------------------------------------------------------------------------- /source/lambda/upload-document/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/package.json -------------------------------------------------------------------------------- /source/lambda/upload-document/test/config/config-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/test/config/config-data.js -------------------------------------------------------------------------------- /source/lambda/upload-document/test/config/ddb-loader.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/test/config/ddb-loader.spec.js -------------------------------------------------------------------------------- /source/lambda/upload-document/test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/test/index.spec.js -------------------------------------------------------------------------------- /source/lambda/upload-document/test/utils/create-case.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/test/utils/create-case.spec.js -------------------------------------------------------------------------------- /source/lambda/upload-document/test/utils/env-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/test/utils/env-setup.spec.js -------------------------------------------------------------------------------- /source/lambda/upload-document/test/utils/fetch-case.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/test/utils/fetch-case.spec.js -------------------------------------------------------------------------------- /source/lambda/upload-document/test/utils/start-job.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/test/utils/start-job.spec.js -------------------------------------------------------------------------------- /source/lambda/upload-document/test/utils/upload-document.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/test/utils/upload-document.spec.js -------------------------------------------------------------------------------- /source/lambda/upload-document/utils/create-case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/utils/create-case.js -------------------------------------------------------------------------------- /source/lambda/upload-document/utils/env-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/utils/env-setup.js -------------------------------------------------------------------------------- /source/lambda/upload-document/utils/fetch-case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/utils/fetch-case.js -------------------------------------------------------------------------------- /source/lambda/upload-document/utils/start-job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/utils/start-job.js -------------------------------------------------------------------------------- /source/lambda/upload-document/utils/upload-document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/upload-document/utils/upload-document.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/config/ddb-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/config/ddb-loader.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/index.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/jest.config.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/package-lock.json -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/package.json -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/test/config/config-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/test/config/config-data.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/test/config/ddb-loader.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/test/config/ddb-loader.spec.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/test/event-test-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/test/event-test-data.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/test/index.spec.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/test/utils/env-setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/test/utils/env-setup.spec.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/test/utils/kendra-upload.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/test/utils/kendra-upload.spec.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/test/utils/open-search-upload/open-search-upload.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/test/utils/open-search-upload/open-search-upload.spec.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/test/utils/open-search-upload/strategies/textract-strategy.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/test/utils/open-search-upload/strategies/textract-strategy.spec.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/test/utils/s3-event-trigger.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/test/utils/s3-event-trigger.spec.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/test/utils/sfn-event-trigger.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/test/utils/sfn-event-trigger.spec.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/utils/env-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/utils/env-setup.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/utils/kendra-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/utils/kendra-upload.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/utils/open-search-upload/open-search-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/utils/open-search-upload/open-search-upload.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/utils/open-search-upload/strategies/generic-entity-strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/utils/open-search-upload/strategies/generic-entity-strategy.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/utils/open-search-upload/strategies/medical-entity-strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/utils/open-search-upload/strategies/medical-entity-strategy.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/utils/open-search-upload/strategies/textract-strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/utils/open-search-upload/strategies/textract-strategy.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/utils/s3-event-trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/utils/s3-event-trigger.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/utils/search-storage-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/utils/search-storage-utils.js -------------------------------------------------------------------------------- /source/lambda/workflow-orchestrator/utils/sfn-event-trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/lambda/workflow-orchestrator/utils/sfn-event-trigger.js -------------------------------------------------------------------------------- /source/pre-build-jars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/pre-build-jars.sh -------------------------------------------------------------------------------- /source/run-all-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/run-all-tests.sh -------------------------------------------------------------------------------- /source/sample-documents/Finance/Lacey city bonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Finance/Lacey city bonds.png -------------------------------------------------------------------------------- /source/sample-documents/Finance/Spokane accounting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Finance/Spokane accounting.png -------------------------------------------------------------------------------- /source/sample-documents/Finance/USDC balance sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Finance/USDC balance sheet.png -------------------------------------------------------------------------------- /source/sample-documents/Finance/USDE balance sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Finance/USDE balance sheet.png -------------------------------------------------------------------------------- /source/sample-documents/Medical/Causes_of_Chronic_Kidney_Disease_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Causes_of_Chronic_Kidney_Disease_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Chronic_Kidney_Disease_Tests_Diagnosis__NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Chronic_Kidney_Disease_Tests_Diagnosis__NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Diabetes_Diet_Eating_and_Physical_Activity_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Diabetes_Diet_Eating_and_Physical_Activity_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Diabetes_Gum_Disease_and_Other_Dental_Problems_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Diabetes_Gum_Disease_and_Other_Dental_Problems_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Diabetes_Heart_Disease_and_Stroke_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Diabetes_Heart_Disease_and_Stroke_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Diabetes_Tests_and_Diagnosis_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Diabetes_Tests_and_Diagnosis_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Eating_Right_for_Chronic_Kidney_Disease_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Eating_Right_for_Chronic_Kidney_Disease_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/HIPAA Release Form.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/HIPAA Release Form.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/High_Blood_Pressure_Kidney_Disease_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/High_Blood_Pressure_Kidney_Disease_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Identify_Evaluate_Patients_with_Chronic_Kidney_Disease_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Identify_Evaluate_Patients_with_Chronic_Kidney_Disease_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Insulin_Medicines_and_Other_Diabetes_Treatments_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Insulin_Medicines_and_Other_Diabetes_Treatments_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Kidney_Transplant_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Kidney_Transplant_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Managing_Chronic_Kidney_Disease_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Managing_Chronic_Kidney_Disease_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Managing_Diabetes_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Managing_Diabetes_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Medical History Form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Medical History Form.png -------------------------------------------------------------------------------- /source/sample-documents/Medical/Medical Insurance Claim Form.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Medical Insurance Claim Form.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Medical Progress Tracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Medical Progress Tracker.png -------------------------------------------------------------------------------- /source/sample-documents/Medical/Nutrition_for_Advanced_Chronic_Kidney_Disease_in_Adults_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Nutrition_for_Advanced_Chronic_Kidney_Disease_in_Adults_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/PersonaSpecific/HealthcareProvider/pdf/Muscular_Dystrophy_NIH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/PersonaSpecific/HealthcareProvider/pdf/Muscular_Dystrophy_NIH.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Pregnancy_if_You_Have_Diabetes_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Pregnancy_if_You_Have_Diabetes_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Preventing_Chronic_Kidney_Disease_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Preventing_Chronic_Kidney_Disease_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Preventing_Diabetes_Problems_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Preventing_Diabetes_Problems_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/Preventing_Type_2_Diabetes_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/Preventing_Type_2_Diabetes_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/The_A1C_Test_Diabetes_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/The_A1C_Test_Diabetes_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/What_If_My_Kidneys_Fail_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/What_If_My_Kidneys_Fail_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/What_Is_Chronic_Kidney_Disease_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/What_Is_Chronic_Kidney_Disease_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Medical/What_is_Diabetes_NIDDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Medical/What_is_Diabetes_NIDDK.pdf -------------------------------------------------------------------------------- /source/sample-documents/Misc/employmentapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Misc/employmentapp.png -------------------------------------------------------------------------------- /source/sample-documents/Misc/expense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Misc/expense.png -------------------------------------------------------------------------------- /source/sample-documents/Misc/management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Misc/management.png -------------------------------------------------------------------------------- /source/sample-documents/Research/employmentapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/sample-documents/Research/employmentapp.png -------------------------------------------------------------------------------- /source/ui/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | public/runtimeConfig.json 3 | 4 | 5 | -------------------------------------------------------------------------------- /source/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/README.md -------------------------------------------------------------------------------- /source/ui/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/jest.config.js -------------------------------------------------------------------------------- /source/ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/package-lock.json -------------------------------------------------------------------------------- /source/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/package.json -------------------------------------------------------------------------------- /source/ui/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/public/favicon.png -------------------------------------------------------------------------------- /source/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/public/index.html -------------------------------------------------------------------------------- /source/ui/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/public/logo192.png -------------------------------------------------------------------------------- /source/ui/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/public/logo512.png -------------------------------------------------------------------------------- /source/ui/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/public/manifest.json -------------------------------------------------------------------------------- /source/ui/public/mockServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/public/mockServiceWorker.js -------------------------------------------------------------------------------- /source/ui/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/public/robots.txt -------------------------------------------------------------------------------- /source/ui/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/App.css -------------------------------------------------------------------------------- /source/ui/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/App.js -------------------------------------------------------------------------------- /source/ui/src/__test__/CreateCaseView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/CreateCaseView.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/DocumentRenderer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/DocumentRenderer.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/DocumentTable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/DocumentTable.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/DocumentView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/DocumentView.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/EntitiesList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/EntitiesList.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/EntityDetectionTab.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/EntityDetectionTab.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/FileUpload.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/FileUpload.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/KendraDocumentResults.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/KendraDocumentResults.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/KendraHighlightedText.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/KendraHighlightedText.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/KendraResultPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/KendraResultPage.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/KendraResultTitle.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/KendraResultTitle.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/KendraResults.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/KendraResults.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/KendraTopResults.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/KendraTopResults.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/KeyValueList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/KeyValueList.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/Pdf.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/Pdf.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/RawTextLines.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/RawTextLines.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/SearchView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/SearchView.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/SelectedFile.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/SelectedFile.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/SelectedFileList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/SelectedFileList.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/TableResults.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/TableResults.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/TextractTab.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/TextractTab.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/UploadDocumentView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/UploadDocumentView.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/__snapshots__/TableResults.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/__snapshots__/TableResults.test.tsx.snap -------------------------------------------------------------------------------- /source/ui/src/__test__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/index.test.js -------------------------------------------------------------------------------- /source/ui/src/__test__/internal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/internal.test.tsx -------------------------------------------------------------------------------- /source/ui/src/__test__/mocks/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/mocks/App.js -------------------------------------------------------------------------------- /source/ui/src/__test__/test_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/test_data.js -------------------------------------------------------------------------------- /source/ui/src/__test__/utils/tesUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/__test__/utils/tesUtils.tsx -------------------------------------------------------------------------------- /source/ui/src/components/CreateCaseView/CreateCaseView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/CreateCaseView/CreateCaseView.tsx -------------------------------------------------------------------------------- /source/ui/src/components/CreateCaseView/form-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/CreateCaseView/form-content.tsx -------------------------------------------------------------------------------- /source/ui/src/components/DocumentRenderer/DocumentRenderer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentRenderer/DocumentRenderer.css -------------------------------------------------------------------------------- /source/ui/src/components/DocumentRenderer/DocumentRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentRenderer/DocumentRenderer.tsx -------------------------------------------------------------------------------- /source/ui/src/components/DocumentTable/DocumentTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentTable/DocumentTable.tsx -------------------------------------------------------------------------------- /source/ui/src/components/DocumentTable/common-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentTable/common-components.tsx -------------------------------------------------------------------------------- /source/ui/src/components/DocumentTable/full-page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentTable/full-page-header.tsx -------------------------------------------------------------------------------- /source/ui/src/components/DocumentTable/i18n-strings/app-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentTable/i18n-strings/app-layout.ts -------------------------------------------------------------------------------- /source/ui/src/components/DocumentTable/i18n-strings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentTable/i18n-strings/index.ts -------------------------------------------------------------------------------- /source/ui/src/components/DocumentTable/i18n-strings/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentTable/i18n-strings/pagination.ts -------------------------------------------------------------------------------- /source/ui/src/components/DocumentTable/i18n-strings/split-panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentTable/i18n-strings/split-panel.ts -------------------------------------------------------------------------------- /source/ui/src/components/DocumentTable/i18n-strings/text-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentTable/i18n-strings/text-filter.ts -------------------------------------------------------------------------------- /source/ui/src/components/DocumentTable/info-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentTable/info-link.tsx -------------------------------------------------------------------------------- /source/ui/src/components/DocumentTable/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentTable/interfaces.ts -------------------------------------------------------------------------------- /source/ui/src/components/DocumentTable/table-config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentTable/table-config.tsx -------------------------------------------------------------------------------- /source/ui/src/components/DocumentTable/use-collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentTable/use-collection.ts -------------------------------------------------------------------------------- /source/ui/src/components/DocumentTable/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentTable/utils.tsx -------------------------------------------------------------------------------- /source/ui/src/components/DocumentView/DocumentView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentView/DocumentView.css -------------------------------------------------------------------------------- /source/ui/src/components/DocumentView/DocumentView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/DocumentView/DocumentView.tsx -------------------------------------------------------------------------------- /source/ui/src/components/EntitiesList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/EntitiesList.css -------------------------------------------------------------------------------- /source/ui/src/components/EntitiesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/EntitiesList.tsx -------------------------------------------------------------------------------- /source/ui/src/components/EntityDetectionTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/EntityDetectionTab.tsx -------------------------------------------------------------------------------- /source/ui/src/components/FileUpload/FileUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/FileUpload/FileUpload.tsx -------------------------------------------------------------------------------- /source/ui/src/components/FileUpload/SelectedFile/SelectedFile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/FileUpload/SelectedFile/SelectedFile.css -------------------------------------------------------------------------------- /source/ui/src/components/FileUpload/SelectedFile/SelectedFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/FileUpload/SelectedFile/SelectedFile.tsx -------------------------------------------------------------------------------- /source/ui/src/components/FileUpload/SelectedFileList/SelectedFileList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/FileUpload/SelectedFileList/SelectedFileList.css -------------------------------------------------------------------------------- /source/ui/src/components/FileUpload/SelectedFileList/SelectedFileList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/FileUpload/SelectedFileList/SelectedFileList.tsx -------------------------------------------------------------------------------- /source/ui/src/components/FileUpload/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/FileUpload/interfaces.ts -------------------------------------------------------------------------------- /source/ui/src/components/FileUpload/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/FileUpload/internal.ts -------------------------------------------------------------------------------- /source/ui/src/components/KeyValueList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/KeyValueList.tsx -------------------------------------------------------------------------------- /source/ui/src/components/Pdf/Pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/Pdf/Pdf.css -------------------------------------------------------------------------------- /source/ui/src/components/Pdf/Pdf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/Pdf/Pdf.tsx -------------------------------------------------------------------------------- /source/ui/src/components/RawTextLines/RawTextLines.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/RawTextLines/RawTextLines.css -------------------------------------------------------------------------------- /source/ui/src/components/RawTextLines/RawTextLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/RawTextLines/RawTextLines.tsx -------------------------------------------------------------------------------- /source/ui/src/components/SearchView/Kendra/KendraDocumentResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/SearchView/Kendra/KendraDocumentResults.tsx -------------------------------------------------------------------------------- /source/ui/src/components/SearchView/Kendra/KendraHighlightedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/SearchView/Kendra/KendraHighlightedText.tsx -------------------------------------------------------------------------------- /source/ui/src/components/SearchView/Kendra/KendraResultPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/SearchView/Kendra/KendraResultPage.tsx -------------------------------------------------------------------------------- /source/ui/src/components/SearchView/Kendra/KendraResultTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/SearchView/Kendra/KendraResultTitle.tsx -------------------------------------------------------------------------------- /source/ui/src/components/SearchView/Kendra/KendraResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/SearchView/Kendra/KendraResults.tsx -------------------------------------------------------------------------------- /source/ui/src/components/SearchView/Kendra/KendraTopResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/SearchView/Kendra/KendraTopResults.tsx -------------------------------------------------------------------------------- /source/ui/src/components/SearchView/OpenSearch/OpenSearchQueryResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/SearchView/OpenSearch/OpenSearchQueryResults.tsx -------------------------------------------------------------------------------- /source/ui/src/components/SearchView/OpenSearch/OpenSearchResultPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/SearchView/OpenSearch/OpenSearchResultPage.tsx -------------------------------------------------------------------------------- /source/ui/src/components/SearchView/OpenSearch/OpenSearchResultTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/SearchView/OpenSearch/OpenSearchResultTitle.tsx -------------------------------------------------------------------------------- /source/ui/src/components/SearchView/OpenSearch/OpenSearchResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/SearchView/OpenSearch/OpenSearchResults.tsx -------------------------------------------------------------------------------- /source/ui/src/components/SearchView/SearchView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/SearchView/SearchView.tsx -------------------------------------------------------------------------------- /source/ui/src/components/TableResults/TableResults.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/TableResults/TableResults.css -------------------------------------------------------------------------------- /source/ui/src/components/TableResults/TableResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/TableResults/TableResults.tsx -------------------------------------------------------------------------------- /source/ui/src/components/TextractTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/TextractTab.tsx -------------------------------------------------------------------------------- /source/ui/src/components/UploadDocumentView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/UploadDocumentView.tsx -------------------------------------------------------------------------------- /source/ui/src/components/buttons/StartJobButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/buttons/StartJobButton.tsx -------------------------------------------------------------------------------- /source/ui/src/components/entityUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/entityUtils.ts -------------------------------------------------------------------------------- /source/ui/src/components/makeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/components/makeData.ts -------------------------------------------------------------------------------- /source/ui/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/index.css -------------------------------------------------------------------------------- /source/ui/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/index.js -------------------------------------------------------------------------------- /source/ui/src/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/jest.setup.ts -------------------------------------------------------------------------------- /source/ui/src/mock/api/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/mock/api/handler.ts -------------------------------------------------------------------------------- /source/ui/src/mock/api/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/mock/api/server.ts -------------------------------------------------------------------------------- /source/ui/src/models/requests/baseRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/models/requests/baseRequest.ts -------------------------------------------------------------------------------- /source/ui/src/models/requests/getDocumentRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/models/requests/getDocumentRequest.ts -------------------------------------------------------------------------------- /source/ui/src/models/requests/inferenceRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/models/requests/inferenceRequest.ts -------------------------------------------------------------------------------- /source/ui/src/models/requests/uploadDocumentRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/models/requests/uploadDocumentRequest.ts -------------------------------------------------------------------------------- /source/ui/src/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/resolver.js -------------------------------------------------------------------------------- /source/ui/src/store/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/store/api/api.ts -------------------------------------------------------------------------------- /source/ui/src/store/hooks/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/store/hooks/hooks.ts -------------------------------------------------------------------------------- /source/ui/src/store/reducers/caseApiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/store/reducers/caseApiSlice.ts -------------------------------------------------------------------------------- /source/ui/src/store/reducers/documentApiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/store/reducers/documentApiSlice.ts -------------------------------------------------------------------------------- /source/ui/src/store/reducers/documentSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/store/reducers/documentSlice.ts -------------------------------------------------------------------------------- /source/ui/src/store/reducers/entitySlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/store/reducers/entitySlice.ts -------------------------------------------------------------------------------- /source/ui/src/store/reducers/inferenceApiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/store/reducers/inferenceApiSlice.ts -------------------------------------------------------------------------------- /source/ui/src/store/reducers/redactApiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/store/reducers/redactApiSlice.ts -------------------------------------------------------------------------------- /source/ui/src/store/reducers/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/store/reducers/rootReducer.ts -------------------------------------------------------------------------------- /source/ui/src/store/reducers/searchApiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/store/reducers/searchApiSlice.ts -------------------------------------------------------------------------------- /source/ui/src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/store/store.ts -------------------------------------------------------------------------------- /source/ui/src/test_data/comprehend-responses/insulinPdfEntities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/test_data/comprehend-responses/insulinPdfEntities.json -------------------------------------------------------------------------------- /source/ui/src/test_data/kendra/kendraQueryResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/test_data/kendra/kendraQueryResponse.json -------------------------------------------------------------------------------- /source/ui/src/test_data/textract-responses/dischargeSummaryPng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/test_data/textract-responses/dischargeSummaryPng.json -------------------------------------------------------------------------------- /source/ui/src/test_data/textract-responses/textractResp2PagePdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/test_data/textract-responses/textractResp2PagePdf.json -------------------------------------------------------------------------------- /source/ui/src/test_data/textract-responses/textractRespMulti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/test_data/textract-responses/textractRespMulti.json -------------------------------------------------------------------------------- /source/ui/src/test_data/textract-responses/textractResponseInsulinPdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/test_data/textract-responses/textractResponseInsulinPdf.json -------------------------------------------------------------------------------- /source/ui/src/utils/__test__/common-renderers.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/utils/__test__/common-renderers.test.tsx -------------------------------------------------------------------------------- /source/ui/src/utils/__test__/document.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/utils/__test__/document.test.js -------------------------------------------------------------------------------- /source/ui/src/utils/apiHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/utils/apiHelper.ts -------------------------------------------------------------------------------- /source/ui/src/utils/common-renderers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/utils/common-renderers.tsx -------------------------------------------------------------------------------- /source/ui/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/utils/constants.ts -------------------------------------------------------------------------------- /source/ui/src/utils/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/utils/document.ts -------------------------------------------------------------------------------- /source/ui/src/utils/info-panel-contents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/utils/info-panel-contents.tsx -------------------------------------------------------------------------------- /source/ui/src/utils/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/src/utils/interfaces.ts -------------------------------------------------------------------------------- /source/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/ui/tsconfig.json -------------------------------------------------------------------------------- /source/workflow-config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/workflow-config/default.json -------------------------------------------------------------------------------- /source/workflow-config/multi-doc-textract-entity-medical-pii.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/workflow-config/multi-doc-textract-entity-medical-pii.json -------------------------------------------------------------------------------- /source/workflow-config/multi-doc-textract-entity-pii.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/workflow-config/multi-doc-textract-entity-pii.json -------------------------------------------------------------------------------- /source/workflow-config/multi-doc-textract-entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/workflow-config/multi-doc-textract-entity.json -------------------------------------------------------------------------------- /source/workflow-config/multi-doc-textract-with-feature-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/workflow-config/multi-doc-textract-with-feature-type.json -------------------------------------------------------------------------------- /source/workflow-config/single-doc-entity-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/workflow-config/single-doc-entity-detection.json -------------------------------------------------------------------------------- /source/workflow-config/single-doc-entity-redaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/workflow-config/single-doc-entity-redaction.json -------------------------------------------------------------------------------- /source/workflow-config/single-doc-textract-entitty-pii.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/workflow-config/single-doc-textract-entitty-pii.json -------------------------------------------------------------------------------- /source/workflow-config/single-doc-textract-entity-medical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/workflow-config/single-doc-textract-entity-medical.json -------------------------------------------------------------------------------- /source/workflow-config/single-doc-textract-entity-pii.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/workflow-config/single-doc-textract-entity-pii.json -------------------------------------------------------------------------------- /source/workflow-config/single-doc-textract-entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/workflow-config/single-doc-textract-entity.json -------------------------------------------------------------------------------- /source/workflow-config/single-doc-textract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/enhanced-document-understanding-on-aws/HEAD/source/workflow-config/single-doc-textract.json --------------------------------------------------------------------------------