├── .c8rc.json ├── .changeset ├── README.md └── config.json ├── .eslint_dictionary.json ├── .eslintignore ├── .eslintrc.cjs ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── build_with_cache │ │ └── action.yml │ ├── install_with_cache │ │ └── action.yml │ ├── restore_build_cache │ │ └── action.yml │ ├── restore_install_cache │ │ └── action.yml │ ├── run_with_e2e_account │ │ └── action.yml │ ├── select_e2e_account │ │ └── action.yml │ ├── setup_baseline_version │ │ └── action.yml │ ├── setup_node │ │ └── action.yml │ └── setup_profile │ │ └── action.yml ├── dependabot.yml ├── dependency_review_config.yml └── workflows │ ├── canary_checks.yml │ ├── deprecate_release.yml │ ├── e2e_resource_cleanup.yml │ ├── health_checks.yml │ ├── issue-pending-response.yml │ ├── restore_release.yml │ ├── snapshot_release.yml │ └── validate_cdk_release.yml ├── .gitignore ├── .husky ├── .gitignore ├── pre-commit └── pre-push ├── .prettierignore ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── PROJECT_ARCHITECTURE.md ├── README.md ├── api-extractor.base.json ├── markdown-assets ├── README.md ├── component-diagram.png ├── diagram-save-screenshot.png ├── high-level-arch.png └── simple-dependency-graph.png ├── package.json ├── packages ├── ai-constructs │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── conversation │ │ │ ├── conversation_handler_construct.test.ts │ │ │ ├── conversation_handler_construct.ts │ │ │ ├── index.ts │ │ │ ├── runtime │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── bedrock_converse_adapter.test.ts │ │ │ │ ├── bedrock_converse_adapter.ts │ │ │ │ ├── conversation_message_history_retriever.test.ts │ │ │ │ ├── conversation_message_history_retriever.ts │ │ │ │ ├── conversation_turn_executor.test.ts │ │ │ │ ├── conversation_turn_executor.ts │ │ │ │ ├── conversation_turn_response_sender.test.ts │ │ │ │ ├── conversation_turn_response_sender.ts │ │ │ │ ├── default_handler.ts │ │ │ │ ├── errors.ts │ │ │ │ ├── event-tools-provider │ │ │ │ │ ├── event_tools_provider.test.ts │ │ │ │ │ ├── event_tools_provider.ts │ │ │ │ │ ├── graphql_query_factory.test.ts │ │ │ │ │ ├── graphql_query_factory.ts │ │ │ │ │ ├── graphql_tool.test.ts │ │ │ │ │ ├── graphql_tool.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── executable_tool_factory.test.ts │ │ │ │ ├── executable_tool_factory.ts │ │ │ │ ├── graphql_request_executor.test.ts │ │ │ │ ├── graphql_request_executor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── lazy.ts │ │ │ │ ├── types.ts │ │ │ │ ├── user_agent_provider.test.ts │ │ │ │ └── user_agent_provider.ts │ │ │ └── test-assets │ │ │ │ └── custom_handler.ts │ │ ├── index.internal.ts │ │ └── index.ts │ ├── tsconfig.json │ └── typedoc.json ├── ampx │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── typedoc.json ├── auth-construct │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── construct.test.ts │ │ ├── construct.ts │ │ ├── defaults.ts │ │ ├── index.ts │ │ ├── test-assets │ │ │ └── lambda │ │ │ │ └── handler.js │ │ ├── trigger_events.ts │ │ └── types.ts │ ├── tsconfig.json │ └── typedoc.json ├── backend-ai │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── conversation │ │ │ ├── factory.test.ts │ │ │ ├── factory.ts │ │ │ ├── index.ts │ │ │ ├── runtime │ │ │ │ └── index.ts │ │ │ └── test-assets │ │ │ │ ├── with-custom-entry │ │ │ │ ├── custom_handler.ts │ │ │ │ └── resource.ts │ │ │ │ └── with-default-entry │ │ │ │ ├── handler.ts │ │ │ │ └── resource.ts │ │ ├── index.internal.ts │ │ └── index.ts │ ├── tsconfig.json │ └── typedoc.json ├── backend-auth │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── access_builder.test.ts │ │ ├── access_builder.ts │ │ ├── auth_access_policy_arbiter.test.ts │ │ ├── auth_access_policy_arbiter.ts │ │ ├── factory.test.ts │ │ ├── factory.ts │ │ ├── index.ts │ │ ├── lambda │ │ │ ├── .eslintrc.json │ │ │ ├── reference_auth_initializer.test.ts │ │ │ └── reference_auth_initializer.ts │ │ ├── reference_construct.test.ts │ │ ├── reference_construct.ts │ │ ├── reference_factory.test.ts │ │ ├── reference_factory.ts │ │ ├── test-resources │ │ │ └── sample_data.ts │ │ ├── translate_auth_props.test.ts │ │ ├── translate_auth_props.ts │ │ ├── types.ts │ │ ├── userpool_access_policy_factory.test.ts │ │ └── userpool_access_policy_factory.ts │ ├── tsconfig.json │ └── typedoc.json ├── backend-data │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── app_sync_policy_generator.test.ts │ │ ├── app_sync_policy_generator.ts │ │ ├── assets │ │ │ ├── js_resolver_handler.ts │ │ │ └── tsconfig.json │ │ ├── convert_authorization_modes.test.ts │ │ ├── convert_authorization_modes.ts │ │ ├── convert_functions.test.ts │ │ ├── convert_functions.ts │ │ ├── convert_js_resolvers.test.ts │ │ ├── convert_js_resolvers.ts │ │ ├── convert_schema.test.ts │ │ ├── convert_schema.ts │ │ ├── factory.test.ts │ │ ├── factory.ts │ │ ├── index.ts │ │ ├── logging_options_parser.test.ts │ │ ├── logging_options_parser.ts │ │ ├── resolve_entry_path.test.ts │ │ ├── resolve_entry_path.ts │ │ ├── types.ts │ │ ├── validate_authorization_modes.test.ts │ │ └── validate_authorization_modes.ts │ ├── test-assets │ │ ├── test-lambda │ │ │ └── mock.txt │ │ └── test-sql-handler │ │ │ └── oddList.sql │ ├── tsconfig.json │ └── typedoc.json ├── backend-deployer │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── cdk_deployer.test.ts │ │ ├── cdk_deployer.ts │ │ ├── cdk_deployer_singleton_factory.ts │ │ ├── cdk_error_mapper.test.ts │ │ ├── cdk_error_mapper.ts │ │ ├── index.ts │ │ ├── test-assets │ │ │ ├── .eslintrc.json │ │ │ ├── ts-error-app │ │ │ │ ├── file.ts │ │ │ │ └── tsconfig.json │ │ │ └── valid-app │ │ │ │ ├── file.ts │ │ │ │ └── tsconfig.json │ │ ├── ts_compiler.test.ts │ │ ├── ts_compiler.ts │ │ └── types.ts │ ├── tsconfig.json │ └── typedoc.json ├── backend-function │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── constants.ts │ │ ├── factory.test.ts │ │ ├── factory.ts │ │ ├── function_construct_base.ts │ │ ├── function_env_translator.test.ts │ │ ├── function_env_translator.ts │ │ ├── function_env_type_generator.test.ts │ │ ├── function_env_type_generator.ts │ │ ├── index.internal.ts │ │ ├── index.ts │ │ ├── lambda-shims │ │ │ ├── .eslintrc.json │ │ │ ├── cjs_shim.ts │ │ │ ├── invoke_ssm_shim.ts │ │ │ ├── resolve_ssm_params.test.ts │ │ │ ├── resolve_ssm_params.ts │ │ │ ├── resolve_ssm_params_sdk_v2.test.ts │ │ │ └── resolve_ssm_params_sdk_v2.ts │ │ ├── layer_parser.test.ts │ │ ├── layer_parser.ts │ │ ├── logging_options_parser.test.ts │ │ ├── logging_options_parser.ts │ │ ├── provided_function_factory.test.ts │ │ ├── provided_function_factory.ts │ │ ├── resource_access_acceptor.ts │ │ ├── runtime │ │ │ ├── get_amplify_clients_configuration.test.ts │ │ │ ├── get_amplify_clients_configuration.ts │ │ │ └── index.ts │ │ ├── schedule_parser.test.ts │ │ ├── schedule_parser.ts │ │ ├── static_env_types.ts │ │ └── test-assets │ │ │ ├── default-lambda │ │ │ ├── handler.ts │ │ │ └── resource.ts │ │ │ ├── lambda-with-dependencies │ │ │ ├── handler.ts │ │ │ ├── resource.ts │ │ │ └── response_generator.ts │ │ │ └── provided-node-lambda │ │ │ ├── handler.ts │ │ │ └── resource.ts │ ├── tsconfig.json │ └── typedoc.json ├── backend-output-schemas │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── ai │ │ │ └── conversation │ │ │ │ ├── index.ts │ │ │ │ └── v1.ts │ │ ├── auth │ │ │ ├── index.ts │ │ │ └── v1.ts │ │ ├── custom │ │ │ ├── index.ts │ │ │ └── v1.ts │ │ ├── function │ │ │ ├── index.ts │ │ │ └── v1.ts │ │ ├── graphql │ │ │ ├── index.ts │ │ │ └── v1.ts │ │ ├── index.ts │ │ ├── platform │ │ │ ├── index.ts │ │ │ └── stack_metadata_schemas.ts │ │ ├── stack │ │ │ ├── index.ts │ │ │ └── v1.ts │ │ └── storage │ │ │ ├── index.ts │ │ │ └── v1.ts │ ├── tsconfig.json │ └── typedoc.json ├── backend-output-storage │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── stack_metadata_output_storage_strategy.test.ts │ │ ├── stack_metadata_output_storage_strategy.ts │ │ ├── store_attribution_metadata.test.ts │ │ └── store_attribution_metadata.ts │ ├── tsconfig.json │ └── typedoc.json ├── backend-platform-test-stubs │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── amplify_stack_stub.ts │ │ ├── backend_secret_resolver_stub.ts │ │ ├── construct_container_stub.ts │ │ ├── import_path_verifier_stub.ts │ │ ├── index.ts │ │ ├── resource_name_validator_stub.ts │ │ ├── ssm_environment_entries_generator_stub.ts │ │ ├── stable_backend_identifiers_stub.ts │ │ └── stack_resolver_stub.ts │ ├── tsconfig.json │ └── typedoc.json ├── backend-secret │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── secret.test.ts │ │ ├── secret.ts │ │ ├── secret_error.test.ts │ │ ├── secret_error.ts │ │ ├── ssm_secret.test.ts │ │ ├── ssm_secret.ts │ │ ├── ssm_secret_with_amplify_error_handling.test.ts │ │ └── ssm_secret_with_amplify_error_handling.ts │ ├── tsconfig.json │ └── typedoc.json ├── backend-storage │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── access_builder.test.ts │ │ ├── access_builder.ts │ │ ├── constants.ts │ │ ├── construct.test.ts │ │ ├── construct.ts │ │ ├── factory.test.ts │ │ ├── factory.ts │ │ ├── index.ts │ │ ├── private_types.ts │ │ ├── storage_access_orchestrator.test.ts │ │ ├── storage_access_orchestrator.ts │ │ ├── storage_access_policy_factory.test.ts │ │ ├── storage_access_policy_factory.ts │ │ ├── storage_container_entry_generator.test.ts │ │ ├── storage_container_entry_generator.ts │ │ ├── storage_outputs_aspect.test.ts │ │ ├── storage_outputs_aspect.ts │ │ ├── types.ts │ │ ├── validate_storage_access_paths.test.ts │ │ └── validate_storage_access_paths.ts │ ├── tsconfig.json │ └── typedoc.json ├── backend │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── backend.ts │ │ ├── backend_factory.test.ts │ │ ├── backend_factory.ts │ │ ├── backend_id_scoped_stable_backend_identifiers.test.ts │ │ ├── backend_id_scoped_stable_backend_identifiers.ts │ │ ├── backend_identifier.ts │ │ ├── default_stack_factory.test.ts │ │ ├── default_stack_factory.ts │ │ ├── engine │ │ │ ├── amplify_stack.test.ts │ │ │ ├── amplify_stack.ts │ │ │ ├── backend-secret │ │ │ │ ├── backend_secret.test.ts │ │ │ │ ├── backend_secret.ts │ │ │ │ ├── backend_secret_fetcher_factory.test.ts │ │ │ │ ├── backend_secret_fetcher_factory.ts │ │ │ │ ├── backend_secret_fetcher_provider_factory.test.ts │ │ │ │ ├── backend_secret_fetcher_provider_factory.ts │ │ │ │ ├── backend_secret_resolver.test.ts │ │ │ │ ├── backend_secret_resolver.ts │ │ │ │ └── lambda │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── backend_secret_fetcher.test.ts │ │ │ │ │ ├── backend_secret_fetcher.ts │ │ │ │ │ └── backend_secret_fetcher_types.ts │ │ │ ├── backend_id_scoped_ssm_environment_entries_generator.test.ts │ │ │ ├── backend_id_scoped_ssm_environment_entries_generator.ts │ │ │ ├── branch-linker │ │ │ │ ├── branch_linker_construct.test.ts │ │ │ │ ├── branch_linker_construct.ts │ │ │ │ └── lambda │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── branch_linker.test.ts │ │ │ │ │ ├── branch_linker.ts │ │ │ │ │ └── branch_linker_types.ts │ │ │ ├── custom_outputs_accumulator.test.ts │ │ │ ├── custom_outputs_accumulator.ts │ │ │ ├── nested_stack_resolver.test.ts │ │ │ ├── nested_stack_resolver.ts │ │ │ ├── singleton_construct_container.test.ts │ │ │ ├── singleton_construct_container.ts │ │ │ └── validations │ │ │ │ ├── default_resource_name_validator.test.ts │ │ │ │ ├── default_resource_name_validator.ts │ │ │ │ ├── toggleable_import_path_verifier.test.ts │ │ │ │ └── toggleable_import_path_verifier.ts │ │ ├── environment_variables.ts │ │ ├── function │ │ │ └── runtime │ │ │ │ └── index.ts │ │ ├── index.internal.ts │ │ ├── index.ts │ │ ├── is_browser.test.ts │ │ ├── is_browser.ts │ │ ├── project_environment_main_stack_creator.ts │ │ ├── secret.ts │ │ └── types │ │ │ └── platform.ts │ ├── tsconfig.json │ └── typedoc.json ├── cli-core │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── format │ │ │ ├── format.test.ts │ │ │ └── format.ts │ │ ├── index.ts │ │ ├── loggers │ │ │ ├── amplify_event_logger_for_ci_cd.test.ts │ │ │ ├── amplify_event_logger_for_sandbox.test.ts │ │ │ ├── amplify_event_loggers.ts │ │ │ ├── amplify_io_events_bridge.test.ts │ │ │ ├── amplify_io_events_bridge.ts │ │ │ ├── amplify_io_events_bridge_singleton_factory.ts │ │ │ ├── cfn-deployment-progress │ │ │ │ ├── cfn_deployment_progress_logger.ts │ │ │ │ └── rewritable_block.ts │ │ │ └── test-assets │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── add_function_storage_cdk_events.ts │ │ │ │ ├── delete_function_storage_cdk_events.ts │ │ │ │ ├── destroy_cdk_structured_events.ts │ │ │ │ ├── failed_auth_structured_cdk_events.ts │ │ │ │ ├── hotswap_lambda_data_resources_cdk_events.ts │ │ │ │ ├── new_deployment_structured_cdk_events.ts │ │ │ │ ├── noop_cdk_events.ts │ │ │ │ └── update_amplify_outputs_structured_cdk_events.ts │ │ ├── notices │ │ │ ├── notices.ts │ │ │ ├── notices_manifest_validator.test.ts │ │ │ └── notices_manifest_validator.ts │ │ ├── package-manager-controller │ │ │ ├── execute_with_debugger_logger.test.ts │ │ │ ├── execute_with_debugger_logger.ts │ │ │ ├── get_package_manager_name.ts │ │ │ ├── lock-file-reader │ │ │ │ ├── npm_lock_file_reader.test.ts │ │ │ │ ├── npm_lock_file_reader.ts │ │ │ │ ├── pnpm_lock_file_reader.test.ts │ │ │ │ ├── pnpm_lock_file_reader.ts │ │ │ │ ├── types.ts │ │ │ │ ├── yarn_classic_lock_file_reader.test.ts │ │ │ │ ├── yarn_classic_lock_file_reader.ts │ │ │ │ ├── yarn_modern_lock_file_reader.test.ts │ │ │ │ └── yarn_modern_lock_file_reader.ts │ │ │ ├── npm_package_manager_controller.test.ts │ │ │ ├── npm_package_manager_controller.ts │ │ │ ├── package_manager_controller_base.ts │ │ │ ├── package_manager_controller_factory.test.ts │ │ │ ├── package_manager_controller_factory.ts │ │ │ ├── pnpm_package_manager_controller.test.ts │ │ │ ├── pnpm_package_manager_controller.ts │ │ │ ├── yarn_classic_package_manager_controller.test.ts │ │ │ ├── yarn_classic_package_manager_controller.ts │ │ │ ├── yarn_modern_package_manager_controller.test.ts │ │ │ └── yarn_modern_package_manager_controller.ts │ │ ├── printer.ts │ │ ├── printer │ │ │ ├── printer.test.ts │ │ │ └── printer.ts │ │ └── prompter │ │ │ └── amplify_prompts.ts │ ├── tsconfig.json │ └── typedoc.json ├── cli │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── ampx.ts │ │ ├── backend-identifier │ │ │ ├── backend_identifier_resolver.test.ts │ │ │ ├── backend_identifier_resolver.ts │ │ │ ├── backend_identifier_with_sandbox_fallback.test.ts │ │ │ ├── backend_identifier_with_sandbox_fallback.ts │ │ │ ├── local_namespace_resolver.test.ts │ │ │ └── local_namespace_resolver.ts │ │ ├── client-config │ │ │ ├── client_config_generator_adapter.ts │ │ │ └── client_config_lifecycle_handler.ts │ │ ├── command_middleware.test.ts │ │ ├── command_middleware.ts │ │ ├── commands │ │ │ ├── configure │ │ │ │ ├── configure_command.ts │ │ │ │ ├── configure_command_factory.test.ts │ │ │ │ ├── configure_command_factory.ts │ │ │ │ ├── configure_profile_command.test.ts │ │ │ │ ├── configure_profile_command.ts │ │ │ │ ├── profile_controller.test.ts │ │ │ │ ├── profile_controller.ts │ │ │ │ └── telemetry │ │ │ │ │ ├── configure_telemetry_command.test.ts │ │ │ │ │ └── configure_telemetry_command.ts │ │ │ ├── generate │ │ │ │ ├── forms │ │ │ │ │ ├── generate_forms_command.test.ts │ │ │ │ │ └── generate_forms_command.ts │ │ │ │ ├── generate_command.ts │ │ │ │ ├── generate_command_factory.test.ts │ │ │ │ ├── generate_command_factory.ts │ │ │ │ ├── graphql-client-code │ │ │ │ │ ├── generate_api_code_adapter.ts │ │ │ │ │ ├── generate_graphql_client_code_command.test.ts │ │ │ │ │ └── generate_graphql_client_code_command.ts │ │ │ │ ├── outputs │ │ │ │ │ ├── generate_outputs_command.test.ts │ │ │ │ │ └── generate_outputs_command.ts │ │ │ │ └── schema-from-database │ │ │ │ │ ├── generate_schema_command.test.ts │ │ │ │ │ └── generate_schema_command.ts │ │ │ ├── info │ │ │ │ ├── info_command.test.ts │ │ │ │ ├── info_command.ts │ │ │ │ └── info_command_factory.ts │ │ │ ├── notices │ │ │ │ ├── notices_acknowledge_command.test.ts │ │ │ │ ├── notices_acknowledge_command.ts │ │ │ │ ├── notices_command.test.ts │ │ │ │ ├── notices_command.ts │ │ │ │ ├── notices_command_factory.ts │ │ │ │ ├── notices_list_command.test.ts │ │ │ │ └── notices_list_command.ts │ │ │ ├── open │ │ │ │ └── open.ts │ │ │ ├── pipeline-deploy │ │ │ │ ├── pipeline_deploy_command.test.ts │ │ │ │ ├── pipeline_deploy_command.ts │ │ │ │ └── pipeline_deploy_command_factory.ts │ │ │ └── sandbox │ │ │ │ ├── option_types.ts │ │ │ │ ├── sandbox-delete │ │ │ │ ├── sandbox_delete_command.test.ts │ │ │ │ └── sandbox_delete_command.ts │ │ │ │ ├── sandbox-secret │ │ │ │ ├── sandbox_secret_command.test.ts │ │ │ │ ├── sandbox_secret_command.ts │ │ │ │ ├── sandbox_secret_command_factory.test.ts │ │ │ │ ├── sandbox_secret_command_factory.ts │ │ │ │ ├── sandbox_secret_get_command.test.ts │ │ │ │ ├── sandbox_secret_get_command.ts │ │ │ │ ├── sandbox_secret_list_command.test.ts │ │ │ │ ├── sandbox_secret_list_command.ts │ │ │ │ ├── sandbox_secret_remove_command.test.ts │ │ │ │ ├── sandbox_secret_remove_command.ts │ │ │ │ ├── sandbox_secret_set_command.test.ts │ │ │ │ └── sandbox_secret_set_command.ts │ │ │ │ ├── sandbox-seed │ │ │ │ ├── sandbox_seed_command.test.ts │ │ │ │ ├── sandbox_seed_command.ts │ │ │ │ ├── sandbox_seed_policy_command.test.ts │ │ │ │ └── sandbox_seed_policy_command.ts │ │ │ │ ├── sandbox_command.test.ts │ │ │ │ ├── sandbox_command.ts │ │ │ │ ├── sandbox_command_factory.ts │ │ │ │ ├── sandbox_event_handler_factory.test.ts │ │ │ │ ├── sandbox_event_handler_factory.ts │ │ │ │ ├── sandbox_id_resolver.test.ts │ │ │ │ └── sandbox_id_resolver.ts │ │ ├── error_handler.test.ts │ │ ├── error_handler.ts │ │ ├── extract_command_info.test.ts │ │ ├── extract_command_info.ts │ │ ├── extract_sub_commands.ts │ │ ├── form-generation │ │ │ ├── default_form_generation_output_paths.ts │ │ │ └── form_generation_handler.ts │ │ ├── info │ │ │ ├── cdk_info_provider.test.ts │ │ │ ├── cdk_info_provider.ts │ │ │ ├── env_info_provider.test.ts │ │ │ ├── env_info_provider.ts │ │ │ └── env_info_provider_types.ts │ │ ├── kebab_case.ts │ │ ├── main_parser_factory.test.ts │ │ ├── main_parser_factory.ts │ │ ├── notices │ │ │ ├── notice_predicates_evaluator.test.ts │ │ │ ├── notice_predicates_evaluator.ts │ │ │ ├── notices_controller.test.ts │ │ │ ├── notices_controller.ts │ │ │ ├── notices_files.ts │ │ │ ├── notices_manifest_fetcher.test.ts │ │ │ ├── notices_manifest_fetcher.ts │ │ │ ├── notices_printer.test.ts │ │ │ ├── notices_printer.ts │ │ │ ├── notices_renderer.test.ts │ │ │ └── notices_renderer.ts │ │ ├── sdk_profile_resolver_provider.test.ts │ │ ├── sdk_profile_resolver_provider.ts │ │ ├── seed-policy-generation │ │ │ ├── generate_seed_policy_template.test.ts │ │ │ └── generate_seed_policy_template.ts │ │ ├── test-utils │ │ │ ├── .eslintrc.json │ │ │ └── command_runner.ts │ │ ├── verify_command_name.test.ts │ │ └── verify_command_name.ts │ ├── tsconfig.json │ └── typedoc.json ├── client-config │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── client-config-contributor │ │ │ ├── client_config_contributor_factory.ts │ │ │ ├── client_config_contributor_v1.test.ts │ │ │ └── client_config_contributor_v1.ts │ │ ├── client-config-schema │ │ │ ├── client_config_v1.1.ts │ │ │ ├── client_config_v1.2.ts │ │ │ ├── client_config_v1.3.ts │ │ │ ├── client_config_v1.4.ts │ │ │ ├── client_config_v1.ts │ │ │ ├── schema_v1.1.json │ │ │ ├── schema_v1.2.json │ │ │ ├── schema_v1.3.json │ │ │ ├── schema_v1.4.json │ │ │ └── schema_v1.json │ │ ├── client-config-types │ │ │ ├── .eslintrc.json │ │ │ ├── analytics_client_config.ts │ │ │ ├── auth_client_config.ts │ │ │ ├── client_config.ts │ │ │ ├── client_config_contributor.ts │ │ │ ├── custom_client_config.ts │ │ │ ├── geo_client_config.ts │ │ │ ├── graphql_client_config.ts │ │ │ ├── mobile │ │ │ │ └── client_config_mobile_types.ts │ │ │ ├── notifications_client_config.ts │ │ │ ├── platform_client_config.ts │ │ │ └── storage_client_config.ts │ │ ├── client-config-writer │ │ │ ├── client_config_formatter.ts │ │ │ ├── client_config_formatter_default.test.ts │ │ │ ├── client_config_formatter_default.ts │ │ │ ├── client_config_formatter_legacy.test.ts │ │ │ ├── client_config_formatter_legacy.ts │ │ │ ├── client_config_to_legacy_converter.test.ts │ │ │ ├── client_config_to_legacy_converter.ts │ │ │ ├── client_config_to_mobile_legacy_converter.test.ts │ │ │ ├── client_config_to_mobile_legacy_converter.ts │ │ │ ├── client_config_writer.test.ts │ │ │ └── client_config_writer.ts │ │ ├── client_config_generator.ts │ │ ├── client_config_generator_factory.ts │ │ ├── generate_client_config.ts │ │ ├── generate_client_config_to_file.ts │ │ ├── generate_empty_client_config_to_file.test.ts │ │ ├── generate_empty_client_config_to_file.ts │ │ ├── index.internal.ts │ │ ├── index.ts │ │ ├── model_introspection_schema_adapter.test.ts │ │ ├── model_introspection_schema_adapter.ts │ │ ├── paths │ │ │ ├── get_client_config_name.ts │ │ │ ├── get_client_config_path.test.ts │ │ │ ├── get_client_config_path.ts │ │ │ └── index.ts │ │ ├── unified_client_config_generator.test.ts │ │ ├── unified_client_config_generator.ts │ │ └── write_client_config_to_file.ts │ ├── tsconfig.json │ └── typedoc.json ├── create-amplify │ ├── .eslintrc.json │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── amplify_project_creator.test.ts │ │ ├── amplify_project_creator.ts │ │ ├── create_amplify.ts │ │ ├── default_packages.json │ │ ├── get_project_root.test.ts │ │ ├── get_project_root.ts │ │ ├── gitignore_initializer.test.ts │ │ ├── gitignore_initializer.ts │ │ ├── initial_project_file_generator.test.ts │ │ ├── initial_project_file_generator.ts │ │ ├── project_root_validator.test.ts │ │ └── project_root_validator.ts │ ├── templates │ │ ├── .eslintrc.json │ │ └── basic-auth-data │ │ │ └── amplify │ │ │ ├── auth │ │ │ └── resource.ts │ │ │ ├── backend.ts │ │ │ └── data │ │ │ └── resource.ts │ ├── tsconfig.json │ └── typedoc.json ├── deployed-backend-client │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── backend_output_client.ts │ │ ├── backend_output_client_factory.ts │ │ ├── backend_output_fetcher_factory.test.ts │ │ ├── backend_output_fetcher_factory.ts │ │ ├── deployed-backend-client │ │ │ ├── arn_generator.test.ts │ │ │ ├── arn_generator.ts │ │ │ ├── arn_parser.test.ts │ │ │ ├── arn_parser.ts │ │ │ ├── deployed_resources_enumerator.test.ts │ │ │ ├── deployed_resources_enumerator.ts │ │ │ ├── stack_status_mapper.test.ts │ │ │ └── stack_status_mapper.ts │ │ ├── deployed_backend_client.test.ts │ │ ├── deployed_backend_client.ts │ │ ├── deployed_backend_client_factory.ts │ │ ├── deployed_backend_client_list_delete_failed_stacks.test.ts │ │ ├── deployed_backend_client_list_sandboxes.test.ts │ │ ├── deployed_backend_identifier.ts │ │ ├── index.ts │ │ ├── stack-name-resolvers │ │ │ ├── app_name_and_branch_main_stack_name_resolver.test.ts │ │ │ ├── app_name_and_branch_main_stack_name_resolver.ts │ │ │ ├── backend_identifier_main_stack_name_resolver.test.ts │ │ │ ├── backend_identifier_main_stack_name_resolver.ts │ │ │ └── passthrough_main_stack_name_resolver.ts │ │ ├── stack_metadata_output_retrieval_strategy.test.ts │ │ └── stack_metadata_output_retrieval_strategy.ts │ ├── tsconfig.json │ └── typedoc.json ├── eslint-rules │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── rules │ │ │ ├── amplify_error_name.test.ts │ │ │ ├── amplify_error_name.ts │ │ │ ├── amplify_error_no_instance_of.test.ts │ │ │ ├── amplify_error_no_instance_of.ts │ │ │ ├── backend_output_client_error_no_instance_of.test.ts │ │ │ ├── backent_output_client_error_no_instance_of.ts │ │ │ ├── find_nested_nodes.ts │ │ │ ├── no_amplify_errors.test.ts │ │ │ ├── no_amplify_errors.ts │ │ │ ├── no_empty_catch.test.ts │ │ │ ├── no_empty_catch.ts │ │ │ ├── prefer_amplify_errors.test.ts │ │ │ ├── prefer_amplify_errors.ts │ │ │ ├── propagate_error_cause.test.ts │ │ │ └── propagate_error_cause.ts │ └── tsconfig.json ├── form-generator │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── bundle.js │ ├── package.json │ ├── src │ │ ├── codegen_graphql_form_generation_result.ts │ │ ├── create_form_generator.ts │ │ ├── graphql_form_generator.ts │ │ ├── index.ts │ │ ├── local_codegen_graphql_form_generator.test.ts │ │ ├── local_codegen_graphql_form_generator.ts │ │ ├── s3_string_object_fetcher.ts │ │ └── transform_appsync_introspection_schema.ts │ ├── tsconfig.json │ └── typedoc.json ├── integration-tests │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── amplify_app_pool.ts │ │ ├── amplify_auth_credentials_factory.ts │ │ ├── async_lock.test.ts │ │ ├── async_lock.ts │ │ ├── cdk_version_finder.ts │ │ ├── constants.ts │ │ ├── define_backend_template_harness.ts │ │ ├── e2e_tooling_client_config.ts │ │ ├── find_deployed_resource.ts │ │ ├── npm_proxy_controller.ts │ │ ├── object_compare.ts │ │ ├── package_manager_sanity_checks.test.ts │ │ ├── process-controller │ │ │ ├── execa_process_killer.ts │ │ │ ├── predicated_action.ts │ │ │ ├── predicated_action_macros.ts │ │ │ ├── predicated_action_queue_builder.ts │ │ │ ├── process_controller.ts │ │ │ └── types.ts │ │ ├── resource-creation │ │ │ └── auth_resource_creator.ts │ │ ├── retry.ts │ │ ├── setup_package_manager.ts │ │ ├── setup_test_directory.ts │ │ ├── shared_secret.ts │ │ ├── short_uuid.ts │ │ ├── test-cdk-projects │ │ │ ├── .eslintrc.json │ │ │ └── auth-cdk │ │ │ │ └── test-cdk-project-auth-cdk-stack.ts │ │ ├── test-e2e │ │ │ ├── amplify_outputs_backwards_compatibility.test.ts │ │ │ ├── backend_output.test.ts │ │ │ ├── create_amplify.test.ts │ │ │ ├── deployment │ │ │ │ ├── access_testing_project.deployment.test.ts │ │ │ │ ├── advanced_auth_and_functions.deployment.test.ts │ │ │ │ ├── auth_cdk_project.deployment.test.ts │ │ │ │ ├── cdk.deployment.test.template.ts │ │ │ │ ├── circular_dep_auth_data_func.deployment.test.ts │ │ │ │ ├── circular_dep_data_func.deployment.test.ts │ │ │ │ ├── conversation_handler_project.deployment.test.ts │ │ │ │ ├── custom_outputs.deployment.test.ts │ │ │ │ ├── data_access_from_function_project.deployment.test.ts │ │ │ │ ├── data_storage_auth_with_triggers.deployment.test.ts │ │ │ │ ├── deployment.test.template.ts │ │ │ │ ├── minimal_with_typescript_idioms.deployment.test.ts │ │ │ │ └── reference_auth_project.deployment.test.ts │ │ │ ├── hosting.test.ts │ │ │ ├── iam_access_drift.test.ts │ │ │ ├── notices.test.ts │ │ │ ├── sandbox │ │ │ │ ├── access_testing_project.sandbox.test.ts │ │ │ │ ├── advanced_auth_and_functions.sandbox.test.ts │ │ │ │ ├── circular_dep_auth_data_func.sandbox.test.ts │ │ │ │ ├── circular_dep_data_func.sandbox.test.ts │ │ │ │ ├── conversation_handler_project.sandbox.test.ts │ │ │ │ ├── custom_outputs.sandbox.test.ts │ │ │ │ ├── data_access_from_function_project.sandbox.test.ts │ │ │ │ ├── data_storage_auth_with_triggers.sandbox.test.ts │ │ │ │ ├── minimal_with_typescript_idioms.sandbox.test.ts │ │ │ │ ├── reference_auth_project.sandbox.test.ts │ │ │ │ ├── sandbox.test.template.ts │ │ │ │ └── seed_test_project.sandbox.test.ts │ │ │ └── test_concurrency.ts │ │ ├── test-in-memory │ │ │ ├── backend_submodule_type_exports.test.ts │ │ │ ├── data_storage_auth_with_triggers.test.ts │ │ │ ├── data_without_auth.test.ts │ │ │ └── data_without_auth_no_auth_mode.test.ts │ │ ├── test-live-dependency-health-checks │ │ │ └── health_checks.test.ts │ │ ├── test-project-setup │ │ │ ├── access_testing_project.ts │ │ │ ├── advanced_auth_and_functions.ts │ │ │ ├── cdk │ │ │ │ ├── auth_cdk_project.ts │ │ │ │ ├── create_empty_cdk_project.ts │ │ │ │ ├── test_cdk_project_base.ts │ │ │ │ └── test_cdk_project_creator.ts │ │ │ ├── circular_dep_auth_data_func.ts │ │ │ ├── circular_dep_data_func.ts │ │ │ ├── conversation_handler_project.ts │ │ │ ├── create_empty_amplify_project.ts │ │ │ ├── custom_outputs.ts │ │ │ ├── data_access_from_function_project.ts │ │ │ ├── data_storage_auth_with_triggers.ts │ │ │ ├── live-dependency-health-checks-projects │ │ │ │ ├── README.md │ │ │ │ └── function_code_hotswap.ts │ │ │ ├── minimal_with_typescript_idioms.ts │ │ │ ├── reference_auth_project.ts │ │ │ ├── seed_test_project.ts │ │ │ ├── setup_deployed_backend_client.ts │ │ │ ├── setup_dir_as_esm_module.ts │ │ │ ├── test_project_base.ts │ │ │ └── test_project_creator.ts │ │ ├── test-projects │ │ │ ├── access-testing-project │ │ │ │ └── amplify │ │ │ │ │ ├── auth │ │ │ │ │ └── resource.ts │ │ │ │ │ ├── backend.ts │ │ │ │ │ └── data │ │ │ │ │ └── resource.ts │ │ │ ├── advanced-auth-and-functions │ │ │ │ └── amplify │ │ │ │ │ ├── auth │ │ │ │ │ └── resource.ts │ │ │ │ │ ├── backend.ts │ │ │ │ │ ├── func-src │ │ │ │ │ ├── handler_custom_sender.ts │ │ │ │ │ ├── handler_no_minify.ts │ │ │ │ │ ├── handler_provider.ts │ │ │ │ │ ├── handler_with_aws_sdk.ts │ │ │ │ │ ├── handler_with_aws_sqs.ts │ │ │ │ │ └── handler_with_ssm.ts │ │ │ │ │ ├── function.ts │ │ │ │ │ └── test_factories.ts │ │ │ ├── circular-dep-auth-data-func │ │ │ │ └── amplify │ │ │ │ │ ├── auth │ │ │ │ │ └── resource.ts │ │ │ │ │ ├── backend.ts │ │ │ │ │ ├── data │ │ │ │ │ └── resource.ts │ │ │ │ │ └── functions │ │ │ │ │ ├── api-function │ │ │ │ │ └── resource.ts │ │ │ │ │ ├── handler.ts │ │ │ │ │ └── pre-sign-up │ │ │ │ │ └── resource.ts │ │ │ ├── circular-dep-data-func │ │ │ │ └── amplify │ │ │ │ │ ├── auth │ │ │ │ │ └── resource.ts │ │ │ │ │ ├── backend.ts │ │ │ │ │ ├── data │ │ │ │ │ └── resource.ts │ │ │ │ │ └── functions │ │ │ │ │ ├── api-function │ │ │ │ │ └── resource.ts │ │ │ │ │ ├── custom-api-function │ │ │ │ │ ├── handler.ts │ │ │ │ │ └── resource.ts │ │ │ │ │ ├── handler.ts │ │ │ │ │ └── query-function │ │ │ │ │ └── resource.ts │ │ │ ├── conversation-handler │ │ │ │ ├── amplify │ │ │ │ │ ├── auth │ │ │ │ │ │ └── resource.ts │ │ │ │ │ ├── backend.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── custom-conversation-handler │ │ │ │ │ │ ├── custom_handler.ts │ │ │ │ │ │ └── resource.ts │ │ │ │ │ └── data │ │ │ │ │ │ ├── resource.ts │ │ │ │ │ │ └── thermometer.ts │ │ │ │ └── resources │ │ │ │ │ ├── sample-document.docx │ │ │ │ │ └── sample-image.png │ │ │ ├── custom-outputs │ │ │ │ └── amplify │ │ │ │ │ └── backend.ts │ │ │ ├── data-iterative-deploy │ │ │ │ ├── amplify │ │ │ │ │ ├── backend.ts │ │ │ │ │ └── data │ │ │ │ │ │ └── resource.ts │ │ │ │ └── update-1 │ │ │ │ │ └── data │ │ │ │ │ └── resource.ts │ │ │ ├── data-storage-auth-with-triggers-cjs │ │ │ │ ├── amplify │ │ │ │ │ ├── auth │ │ │ │ │ │ └── resource.cjs │ │ │ │ │ ├── backend.cjs │ │ │ │ │ ├── data │ │ │ │ │ │ ├── echo │ │ │ │ │ │ │ └── handler.cjs │ │ │ │ │ │ └── resource.cjs │ │ │ │ │ ├── func-src │ │ │ │ │ │ └── handler.cjs │ │ │ │ │ ├── function.cjs │ │ │ │ │ └── storage │ │ │ │ │ │ └── resource.cjs │ │ │ │ └── update-1 │ │ │ │ │ └── data │ │ │ │ │ └── resource.ts │ │ │ ├── data-storage-auth-with-triggers-js │ │ │ │ ├── amplify │ │ │ │ │ ├── auth │ │ │ │ │ │ └── resource.js │ │ │ │ │ ├── backend.js │ │ │ │ │ ├── data │ │ │ │ │ │ ├── echo │ │ │ │ │ │ │ └── handler.js │ │ │ │ │ │ └── resource.js │ │ │ │ │ ├── func-src │ │ │ │ │ │ └── handler.js │ │ │ │ │ ├── function.js │ │ │ │ │ └── storage │ │ │ │ │ │ └── resource.js │ │ │ │ └── update-1 │ │ │ │ │ └── data │ │ │ │ │ └── resource.ts │ │ │ ├── data-storage-auth-with-triggers-ts │ │ │ │ ├── amplify │ │ │ │ │ ├── auth │ │ │ │ │ │ └── resource.ts │ │ │ │ │ ├── backend.ts │ │ │ │ │ ├── data │ │ │ │ │ │ ├── echo │ │ │ │ │ │ │ ├── handler.ts │ │ │ │ │ │ │ └── handler2.ts │ │ │ │ │ │ ├── js_custom_fn.js │ │ │ │ │ │ └── resource.ts │ │ │ │ │ ├── func-src │ │ │ │ │ │ ├── handler.ts │ │ │ │ │ │ ├── handler_node16.ts │ │ │ │ │ │ └── response_generator.ts │ │ │ │ │ ├── function.ts │ │ │ │ │ ├── storage │ │ │ │ │ │ └── resource.ts │ │ │ │ │ └── test_factories.ts │ │ │ │ ├── hotswap-update-files │ │ │ │ │ ├── README.md │ │ │ │ │ ├── data │ │ │ │ │ │ └── resource.ts │ │ │ │ │ ├── func-src │ │ │ │ │ │ └── handler.ts │ │ │ │ │ └── function.ts │ │ │ │ ├── test-types │ │ │ │ │ └── env │ │ │ │ │ │ └── defaultNodeFunction.ts │ │ │ │ └── tsconfig.json │ │ │ ├── data_access_from_function │ │ │ │ └── amplify │ │ │ │ │ ├── backend.ts │ │ │ │ │ ├── data │ │ │ │ │ └── resource.ts │ │ │ │ │ └── functions │ │ │ │ │ ├── customer-s3-import │ │ │ │ │ ├── handler.ts │ │ │ │ │ └── resource.ts │ │ │ │ │ └── todo-count │ │ │ │ │ ├── handler.ts │ │ │ │ │ └── resource.ts │ │ │ ├── hosting-test-app │ │ │ │ ├── amplify │ │ │ │ │ ├── auth │ │ │ │ │ │ └── resource.ts │ │ │ │ │ ├── backend.ts │ │ │ │ │ ├── data │ │ │ │ │ │ └── resource.ts │ │ │ │ │ └── test_factories.ts │ │ │ │ └── package.json │ │ │ ├── live-dependency-health-checks-projects │ │ │ │ ├── README.md │ │ │ │ └── function-code-hotswap │ │ │ │ │ ├── amplify │ │ │ │ │ ├── backend.ts │ │ │ │ │ ├── func-src │ │ │ │ │ │ └── handler.ts │ │ │ │ │ └── function.ts │ │ │ │ │ └── hotswap-update-files │ │ │ │ │ └── func-src │ │ │ │ │ └── handler.ts │ │ │ ├── minimalist-project-with-typescript-idioms │ │ │ │ ├── .eslintrc.json │ │ │ │ └── amplify │ │ │ │ │ ├── backend.ts │ │ │ │ │ └── storage │ │ │ │ │ └── resource.ts │ │ │ ├── reference-auth │ │ │ │ ├── amplify │ │ │ │ │ ├── auth │ │ │ │ │ │ └── resource.ts │ │ │ │ │ ├── backend.ts │ │ │ │ │ ├── data │ │ │ │ │ │ ├── add-user-to-group │ │ │ │ │ │ │ ├── handler.ts │ │ │ │ │ │ │ └── resource.ts │ │ │ │ │ │ └── resource.ts │ │ │ │ │ └── storage │ │ │ │ │ │ └── resource.ts │ │ │ │ └── test-types │ │ │ │ │ └── env │ │ │ │ │ └── add-user-to-group.ts │ │ │ ├── seed-test-project │ │ │ │ └── amplify │ │ │ │ │ ├── auth │ │ │ │ │ └── resource.ts │ │ │ │ │ ├── backend.ts │ │ │ │ │ ├── data │ │ │ │ │ └── resource.ts │ │ │ │ │ └── seed │ │ │ │ │ └── seed.ts │ │ │ ├── standalone-data-auth-modes │ │ │ │ └── amplify │ │ │ │ │ ├── backend.ts │ │ │ │ │ ├── data │ │ │ │ │ ├── lambda_authorizer.ts │ │ │ │ │ └── resource.ts │ │ │ │ │ └── test_factories.ts │ │ │ └── standalone-data-sandbox-mode │ │ │ │ └── amplify │ │ │ │ ├── backend.ts │ │ │ │ ├── data │ │ │ │ └── resource.ts │ │ │ │ └── test_factories.ts │ │ └── types.ts │ └── tsconfig.json ├── model-generator │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── appsync_graphql_generation_result.test.ts │ │ ├── appsync_graphql_generation_result.ts │ │ ├── appsync_schema_fetcher.test.ts │ │ ├── appsync_schema_fetcher.ts │ │ ├── create_graphql_document_generator.test.ts │ │ ├── create_graphql_document_generator.ts │ │ ├── create_graphql_models_generator.test.ts │ │ ├── create_graphql_models_generator.ts │ │ ├── create_graphql_types_generator.test.ts │ │ ├── create_graphql_types_generator.ts │ │ ├── generate_api_code.test.ts │ │ ├── generate_api_code.ts │ │ ├── get_backend_output_with_error_handling.ts │ │ ├── graphql_document_generator.test.ts │ │ ├── graphql_document_generator.ts │ │ ├── graphql_models_generator.test.ts │ │ ├── graphql_models_generator.ts │ │ ├── graphql_types_generator.test.ts │ │ ├── graphql_types_generator.ts │ │ ├── index.ts │ │ ├── model_generator.ts │ │ ├── s3_string_object_fetcher.ts │ │ └── test-assets │ │ │ ├── .eslintrc.json │ │ │ └── appsync_schema.example.ts │ ├── tsconfig.json │ └── typedoc.json ├── platform-core │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── .eslintrc.json │ │ ├── backend_entry_point_locator.ts │ │ ├── backend_identifier_conversions.test.ts │ │ ├── backend_identifier_conversions.ts │ │ ├── caller_directory_extractor.test.ts │ │ ├── caller_directory_extractor.ts │ │ ├── cdk │ │ │ ├── .eslintrc.json │ │ │ ├── enum_converters.test.ts │ │ │ ├── enum_converters.ts │ │ │ └── index.ts │ │ ├── cdk_context_key.ts │ │ ├── config │ │ │ ├── get_config_dir_path.ts │ │ │ ├── local_configuration_controller.test.ts │ │ │ ├── local_configuration_controller.ts │ │ │ ├── local_configuration_controller_factory.ts │ │ │ ├── typed_configuration_file.test.ts │ │ │ ├── typed_configuration_file.ts │ │ │ ├── typed_configuration_file_factory.test.ts │ │ │ └── typed_configuration_file_factory.ts │ │ ├── errors │ │ │ ├── amplify_error.test.ts │ │ │ ├── amplify_error.ts │ │ │ ├── amplify_library_fault.ts │ │ │ ├── amplify_user_error.ts │ │ │ └── index.ts │ │ ├── extract_file_path_from_stack_trace_line.test.ts │ │ ├── extract_file_path_from_stack_trace_line.ts │ │ ├── index.internal.ts │ │ ├── index.ts │ │ ├── naming_convention_conversions.test.ts │ │ ├── naming_convention_conversions.ts │ │ ├── object_accumulator.test.ts │ │ ├── object_accumulator.ts │ │ ├── package_json_reader.test.ts │ │ ├── package_json_reader.ts │ │ ├── parameter_path_conversions.test.ts │ │ ├── parameter_path_conversions.ts │ │ ├── tag_name.ts │ │ ├── telemetry │ │ │ ├── account_id_fetcher.test.ts │ │ │ ├── account_id_fetcher.ts │ │ │ ├── constants.ts │ │ │ ├── get_local_project_id.test.ts │ │ │ ├── get_local_project_id.ts │ │ │ ├── get_telemetry_url.test.ts │ │ │ ├── get_telemetry_url.ts │ │ │ ├── region_fetcher.test.ts │ │ │ ├── region_fetcher.ts │ │ │ ├── serializable_error.test.ts │ │ │ ├── serializable_error.ts │ │ │ ├── set_span_attributes.test.ts │ │ │ ├── set_span_attributes.ts │ │ │ ├── telemetry_payload.ts │ │ │ ├── telemetry_payload_exporter.test.ts │ │ │ ├── telemetry_payload_exporter.ts │ │ │ ├── telemetry_span_processor_factory.test.ts │ │ │ ├── telemetry_span_processor_factory.ts │ │ │ ├── translate_error_to_telemetry_error_details.test.ts │ │ │ └── translate_error_to_telemetry_error_details.ts │ │ └── usage-data │ │ │ ├── account_id_fetcher.test.ts │ │ │ ├── account_id_fetcher.ts │ │ │ ├── constants.ts │ │ │ ├── get_installation_id.test.ts │ │ │ ├── get_installation_id.ts │ │ │ ├── get_usage_data_url.test.ts │ │ │ ├── get_usage_data_url.ts │ │ │ ├── noop_usage_data_emitter.ts │ │ │ ├── serializable_error.test.ts │ │ │ ├── serializable_error.ts │ │ │ ├── usage_data.ts │ │ │ ├── usage_data_emitter.test.ts │ │ │ ├── usage_data_emitter.ts │ │ │ ├── usage_data_emitter_factory.test.ts │ │ │ └── usage_data_emitter_factory.ts │ ├── tsconfig.json │ └── typedoc.json ├── plugin-types │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── amplify_function.ts │ │ ├── amplify_io_host.ts │ │ ├── amplify_resource_group_name.ts │ │ ├── auth_resources.ts │ │ ├── aws_client_provider.ts │ │ ├── backend_identifier.ts │ │ ├── backend_output.ts │ │ ├── backend_secret_resolver.ts │ │ ├── backend_stack_creator.ts │ │ ├── backend_stack_resolver.ts │ │ ├── construct_container.ts │ │ ├── construct_factory.ts │ │ ├── deep_partial.ts │ │ ├── deployment_type.ts │ │ ├── function_resources.ts │ │ ├── import_path_verifier.ts │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── log_level.ts │ │ ├── log_retention.ts │ │ ├── output_retrieval_strategy.ts │ │ ├── output_storage_strategy.ts │ │ ├── package_manager_controller.ts │ │ ├── resource_access_acceptor.ts │ │ ├── resource_name_validator.ts │ │ ├── resource_provider.ts │ │ ├── sdk_profile_resolver.ts │ │ ├── ssm_environment_entries_generator.ts │ │ ├── stable_backend_identifiers.ts │ │ └── stack_provider.ts │ ├── tsconfig.json │ └── typedoc.json ├── sandbox │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── cloudwatch_logs_monitor.test.ts │ │ ├── cloudwatch_logs_monitor.ts │ │ ├── file_watching_sandbox.test.ts │ │ ├── file_watching_sandbox.ts │ │ ├── files_changes_tracker.test.ts │ │ ├── files_changes_tracker.ts │ │ ├── index.ts │ │ ├── lambda_function_log_streamer.test.ts │ │ ├── lambda_function_log_streamer.ts │ │ ├── sandbox.ts │ │ ├── sandbox_executor.test.ts │ │ ├── sandbox_executor.ts │ │ └── sandbox_singleton_factory.ts │ ├── tsconfig.json │ └── typedoc.json ├── schema-generator │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── generate_schema.test.ts │ │ ├── generate_schema.ts │ │ └── index.ts │ ├── tsconfig.json │ └── typedoc.json └── seed │ ├── .npmignore │ ├── API.md │ ├── CHANGELOG.md │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ ├── auth-seed │ │ ├── auth_api.ts │ │ ├── auth_client.test.ts │ │ ├── auth_client.ts │ │ ├── config_reader.test.ts │ │ ├── config_reader.ts │ │ ├── mfa_flow.test.ts │ │ ├── mfa_flow.ts │ │ ├── persistent_password_flow.test.ts │ │ └── persistent_password_flow.ts │ ├── index.ts │ ├── secrets-seed │ │ ├── seed_secret.ts │ │ └── seed_secrets.test.ts │ └── types.ts │ ├── tsconfig.json │ └── typedoc.json ├── scripts ├── .eslintrc.json ├── check_api_changes.ts ├── check_api_extract.ts ├── check_changeset_completeness.ts ├── check_dependencies.ts ├── check_no_git_diff.ts ├── check_package_json.ts ├── check_package_lock.ts ├── check_package_versions.ts ├── check_pr_size.ts ├── cleanup_e2e_resources.ts ├── components │ ├── api-changes-validator │ │ ├── .gitignore │ │ ├── api_changes_validator.test.ts │ │ ├── api_changes_validator.ts │ │ ├── api_report_parser.ts │ │ ├── api_usage_generator.test.ts │ │ ├── api_usage_generator.ts │ │ ├── api_usage_statements_generators.ts │ │ ├── import_statements_renderer.ts │ │ ├── test-resources │ │ │ ├── .eslintrc.json │ │ │ └── test-projects │ │ │ │ ├── with-breaks │ │ │ │ ├── class-break-constructor │ │ │ │ │ ├── API.md │ │ │ │ │ ├── expected-error-message.txt │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── class-break-inheritance │ │ │ │ │ ├── API.md │ │ │ │ │ ├── expected-error-message.txt │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── class-break-properties │ │ │ │ │ ├── API.md │ │ │ │ │ ├── expected-error-message.txt │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── enum-break-remove-enum-member │ │ │ │ │ ├── API.md │ │ │ │ │ ├── expected-error-message.txt │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── function-break-change-return-type │ │ │ │ │ ├── API.md │ │ │ │ │ ├── expected-error-message.txt │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── function-break-make-parameter-mandatory │ │ │ │ │ ├── API.md │ │ │ │ │ ├── expected-error-message.txt │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── function-break-remove-optional-parameter │ │ │ │ │ ├── API.md │ │ │ │ │ ├── expected-error-message.txt │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ └── type-break-make-property-mandatory │ │ │ │ │ ├── API.md │ │ │ │ │ ├── expected-error-message.txt │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ └── index.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ └── without-breaks │ │ │ │ ├── project-with-namespace │ │ │ │ ├── API.md │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── some_namespace.ts │ │ │ │ │ ├── some_namespace_with_same_type.ts │ │ │ │ │ ├── some_nested_entry_point.ts │ │ │ │ │ ├── some_other_entry_point.ts │ │ │ │ │ ├── some_sub_namespace.ts │ │ │ │ │ └── types.ts │ │ │ │ └── tsconfig.json │ │ │ │ └── project-without-breaks │ │ │ │ ├── API.md │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ │ └── tsconfig.json │ │ ├── types.ts │ │ └── usage_statemets_renderer.ts │ ├── create_amplify_dep_updater.test.ts │ ├── create_amplify_dep_updater.ts │ ├── create_changeset_file.test.ts │ ├── create_changeset_file.ts │ ├── dependabot_version_update_handler.test.ts │ ├── dependabot_version_update_handler.ts │ ├── dependencies_validator.test.ts │ ├── dependencies_validator.ts │ ├── dist_tag_mover.ts │ ├── get_dependencies_from_package_lock.test.ts │ ├── get_dependencies_from_package_lock.ts │ ├── git_client.ts │ ├── github_client.ts │ ├── is_version_packages_commit.ts │ ├── npm_client.ts │ ├── package-json │ │ └── package_json.ts │ ├── package_lock_validator.test.ts │ ├── package_lock_validator.ts │ ├── release_deprecator.ts │ ├── release_lifecycle.test.ts │ ├── release_restorer.ts │ ├── release_tag_to_name_and_version.ts │ ├── sparse_test_matrix_generator.test.ts │ ├── sparse_test_matrix_generator.ts │ └── test-resources │ │ ├── dependency-linked-version-consistency-test-packages │ │ ├── package1 │ │ │ └── package.json │ │ └── package2 │ │ │ └── package.json │ │ ├── dependency-version-consistency-test-packages │ │ ├── package1 │ │ │ └── package.json │ │ └── package2 │ │ │ └── package.json │ │ ├── dependency-version-inconsistent-test-packages │ │ ├── package1 │ │ │ └── package.json │ │ ├── package2 │ │ │ └── package.json │ │ └── package3 │ │ │ └── package.json │ │ ├── dependency-version-multiple-inconsistencies-test-packages │ │ ├── package1 │ │ │ └── package.json │ │ ├── package2 │ │ │ └── package.json │ │ └── package3 │ │ │ └── package.json │ │ ├── inter-repo-dependency-version-consistency-test-packages │ │ ├── package1 │ │ │ └── package.json │ │ ├── package2 │ │ │ └── package.json │ │ └── package3 │ │ │ └── package.json │ │ ├── npm_ls_output.json │ │ ├── package_lock_valid.json │ │ ├── package_lock_with_localhost.json │ │ └── sparse-generator-test-stubs │ │ ├── test1.test.ts │ │ ├── test2.test.ts │ │ └── test3.test.ts ├── concurrent_workspace_script.ts ├── copy_template.ts ├── dependabot_handle_version_update.ts ├── deprecate_release.ts ├── do_include_e2e.ts ├── generate_sparse_test_matrix.ts ├── get_unit_test_dir_list.ts ├── is_version_packages_commit.ts ├── publish.ts ├── publish_local.ts ├── publish_runner.ts ├── publish_snapshot.ts ├── restore_release.ts ├── retry.js ├── run_tests.ts ├── select_e2e_test_account.ts ├── set_baseline_dependency_versions.ts ├── setup_test_project.ts ├── start_npm_proxy.ts ├── stop_npm_proxy.ts ├── tsconfig.json ├── update_create_amplify_deps.ts ├── update_tsconfig_refs.ts └── version_runner.ts ├── templates ├── README.md ├── construct │ ├── .npmignore │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ │ ├── construct.test.ts │ │ ├── construct.ts │ │ └── index.ts │ ├── tsconfig.json │ └── typedoc.json └── empty-package │ ├── .npmignore │ ├── README.md │ ├── api-extractor.json │ ├── package.json │ ├── src │ └── index.ts │ ├── tsconfig.json │ └── typedoc.json ├── test-projects ├── .eslintrc.json └── README.md ├── tsconfig.base.json ├── tsconfig.json ├── typedoc.json └── verdaccio.config.yaml /.c8rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.c8rc.json -------------------------------------------------------------------------------- /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.eslint_dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.eslint_dictionary.json -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/build_with_cache/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/actions/build_with_cache/action.yml -------------------------------------------------------------------------------- /.github/actions/install_with_cache/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/actions/install_with_cache/action.yml -------------------------------------------------------------------------------- /.github/actions/restore_build_cache/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/actions/restore_build_cache/action.yml -------------------------------------------------------------------------------- /.github/actions/restore_install_cache/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/actions/restore_install_cache/action.yml -------------------------------------------------------------------------------- /.github/actions/run_with_e2e_account/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/actions/run_with_e2e_account/action.yml -------------------------------------------------------------------------------- /.github/actions/select_e2e_account/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/actions/select_e2e_account/action.yml -------------------------------------------------------------------------------- /.github/actions/setup_baseline_version/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/actions/setup_baseline_version/action.yml -------------------------------------------------------------------------------- /.github/actions/setup_node/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/actions/setup_node/action.yml -------------------------------------------------------------------------------- /.github/actions/setup_profile/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/actions/setup_profile/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/dependency_review_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/dependency_review_config.yml -------------------------------------------------------------------------------- /.github/workflows/canary_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/workflows/canary_checks.yml -------------------------------------------------------------------------------- /.github/workflows/deprecate_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/workflows/deprecate_release.yml -------------------------------------------------------------------------------- /.github/workflows/e2e_resource_cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/workflows/e2e_resource_cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/health_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/workflows/health_checks.yml -------------------------------------------------------------------------------- /.github/workflows/issue-pending-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/workflows/issue-pending-response.yml -------------------------------------------------------------------------------- /.github/workflows/restore_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/workflows/restore_release.yml -------------------------------------------------------------------------------- /.github/workflows/snapshot_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/workflows/snapshot_release.yml -------------------------------------------------------------------------------- /.github/workflows/validate_cdk_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.github/workflows/validate_cdk_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /PROJECT_ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/PROJECT_ARCHITECTURE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/README.md -------------------------------------------------------------------------------- /api-extractor.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/api-extractor.base.json -------------------------------------------------------------------------------- /markdown-assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/markdown-assets/README.md -------------------------------------------------------------------------------- /markdown-assets/component-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/markdown-assets/component-diagram.png -------------------------------------------------------------------------------- /markdown-assets/diagram-save-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/markdown-assets/diagram-save-screenshot.png -------------------------------------------------------------------------------- /markdown-assets/high-level-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/markdown-assets/high-level-arch.png -------------------------------------------------------------------------------- /markdown-assets/simple-dependency-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/markdown-assets/simple-dependency-graph.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/package.json -------------------------------------------------------------------------------- /packages/ai-constructs/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/.npmignore -------------------------------------------------------------------------------- /packages/ai-constructs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/API.md -------------------------------------------------------------------------------- /packages/ai-constructs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/CHANGELOG.md -------------------------------------------------------------------------------- /packages/ai-constructs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/README.md -------------------------------------------------------------------------------- /packages/ai-constructs/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/api-extractor.json -------------------------------------------------------------------------------- /packages/ai-constructs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/package.json -------------------------------------------------------------------------------- /packages/ai-constructs/src/conversation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/src/conversation/index.ts -------------------------------------------------------------------------------- /packages/ai-constructs/src/conversation/runtime/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/src/conversation/runtime/.eslintrc.json -------------------------------------------------------------------------------- /packages/ai-constructs/src/conversation/runtime/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/src/conversation/runtime/errors.ts -------------------------------------------------------------------------------- /packages/ai-constructs/src/conversation/runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/src/conversation/runtime/index.ts -------------------------------------------------------------------------------- /packages/ai-constructs/src/conversation/runtime/lazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/src/conversation/runtime/lazy.ts -------------------------------------------------------------------------------- /packages/ai-constructs/src/conversation/runtime/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/src/conversation/runtime/types.ts -------------------------------------------------------------------------------- /packages/ai-constructs/src/index.internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/src/index.internal.ts -------------------------------------------------------------------------------- /packages/ai-constructs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/src/index.ts -------------------------------------------------------------------------------- /packages/ai-constructs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ai-constructs/tsconfig.json -------------------------------------------------------------------------------- /packages/ai-constructs/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/ampx/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ampx/.npmignore -------------------------------------------------------------------------------- /packages/ampx/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ampx/API.md -------------------------------------------------------------------------------- /packages/ampx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ampx/CHANGELOG.md -------------------------------------------------------------------------------- /packages/ampx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ampx/README.md -------------------------------------------------------------------------------- /packages/ampx/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ampx/api-extractor.json -------------------------------------------------------------------------------- /packages/ampx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ampx/package.json -------------------------------------------------------------------------------- /packages/ampx/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/ampx/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/ampx/tsconfig.json -------------------------------------------------------------------------------- /packages/ampx/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/auth-construct/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/auth-construct/.npmignore -------------------------------------------------------------------------------- /packages/auth-construct/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/auth-construct/API.md -------------------------------------------------------------------------------- /packages/auth-construct/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/auth-construct/CHANGELOG.md -------------------------------------------------------------------------------- /packages/auth-construct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/auth-construct/README.md -------------------------------------------------------------------------------- /packages/auth-construct/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/auth-construct/api-extractor.json -------------------------------------------------------------------------------- /packages/auth-construct/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/auth-construct/package.json -------------------------------------------------------------------------------- /packages/auth-construct/src/construct.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/auth-construct/src/construct.test.ts -------------------------------------------------------------------------------- /packages/auth-construct/src/construct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/auth-construct/src/construct.ts -------------------------------------------------------------------------------- /packages/auth-construct/src/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/auth-construct/src/defaults.ts -------------------------------------------------------------------------------- /packages/auth-construct/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/auth-construct/src/index.ts -------------------------------------------------------------------------------- /packages/auth-construct/src/test-assets/lambda/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/auth-construct/src/test-assets/lambda/handler.js -------------------------------------------------------------------------------- /packages/auth-construct/src/trigger_events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/auth-construct/src/trigger_events.ts -------------------------------------------------------------------------------- /packages/auth-construct/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/auth-construct/src/types.ts -------------------------------------------------------------------------------- /packages/auth-construct/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/auth-construct/tsconfig.json -------------------------------------------------------------------------------- /packages/auth-construct/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/backend-ai/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-ai/.npmignore -------------------------------------------------------------------------------- /packages/backend-ai/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-ai/API.md -------------------------------------------------------------------------------- /packages/backend-ai/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-ai/CHANGELOG.md -------------------------------------------------------------------------------- /packages/backend-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-ai/README.md -------------------------------------------------------------------------------- /packages/backend-ai/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-ai/api-extractor.json -------------------------------------------------------------------------------- /packages/backend-ai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-ai/package.json -------------------------------------------------------------------------------- /packages/backend-ai/src/conversation/factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-ai/src/conversation/factory.test.ts -------------------------------------------------------------------------------- /packages/backend-ai/src/conversation/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-ai/src/conversation/factory.ts -------------------------------------------------------------------------------- /packages/backend-ai/src/conversation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-ai/src/conversation/index.ts -------------------------------------------------------------------------------- /packages/backend-ai/src/conversation/runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-ai/src/conversation/runtime/index.ts -------------------------------------------------------------------------------- /packages/backend-ai/src/index.internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-ai/src/index.internal.ts -------------------------------------------------------------------------------- /packages/backend-ai/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/backend-ai/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-ai/tsconfig.json -------------------------------------------------------------------------------- /packages/backend-ai/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/backend-auth/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/.npmignore -------------------------------------------------------------------------------- /packages/backend-auth/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/API.md -------------------------------------------------------------------------------- /packages/backend-auth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/CHANGELOG.md -------------------------------------------------------------------------------- /packages/backend-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/README.md -------------------------------------------------------------------------------- /packages/backend-auth/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/api-extractor.json -------------------------------------------------------------------------------- /packages/backend-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/package.json -------------------------------------------------------------------------------- /packages/backend-auth/src/access_builder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/access_builder.test.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/access_builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/access_builder.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/auth_access_policy_arbiter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/auth_access_policy_arbiter.test.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/auth_access_policy_arbiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/auth_access_policy_arbiter.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/factory.test.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/factory.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/index.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/lambda/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/lambda/.eslintrc.json -------------------------------------------------------------------------------- /packages/backend-auth/src/lambda/reference_auth_initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/lambda/reference_auth_initializer.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/reference_construct.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/reference_construct.test.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/reference_construct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/reference_construct.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/reference_factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/reference_factory.test.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/reference_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/reference_factory.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/test-resources/sample_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/test-resources/sample_data.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/translate_auth_props.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/translate_auth_props.test.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/translate_auth_props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/translate_auth_props.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/types.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/userpool_access_policy_factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/userpool_access_policy_factory.test.ts -------------------------------------------------------------------------------- /packages/backend-auth/src/userpool_access_policy_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/src/userpool_access_policy_factory.ts -------------------------------------------------------------------------------- /packages/backend-auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-auth/tsconfig.json -------------------------------------------------------------------------------- /packages/backend-auth/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/backend-data/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/.npmignore -------------------------------------------------------------------------------- /packages/backend-data/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/API.md -------------------------------------------------------------------------------- /packages/backend-data/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/CHANGELOG.md -------------------------------------------------------------------------------- /packages/backend-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/README.md -------------------------------------------------------------------------------- /packages/backend-data/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/api-extractor.json -------------------------------------------------------------------------------- /packages/backend-data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/package.json -------------------------------------------------------------------------------- /packages/backend-data/src/app_sync_policy_generator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/app_sync_policy_generator.test.ts -------------------------------------------------------------------------------- /packages/backend-data/src/app_sync_policy_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/app_sync_policy_generator.ts -------------------------------------------------------------------------------- /packages/backend-data/src/assets/js_resolver_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/assets/js_resolver_handler.ts -------------------------------------------------------------------------------- /packages/backend-data/src/assets/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/assets/tsconfig.json -------------------------------------------------------------------------------- /packages/backend-data/src/convert_authorization_modes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/convert_authorization_modes.test.ts -------------------------------------------------------------------------------- /packages/backend-data/src/convert_authorization_modes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/convert_authorization_modes.ts -------------------------------------------------------------------------------- /packages/backend-data/src/convert_functions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/convert_functions.test.ts -------------------------------------------------------------------------------- /packages/backend-data/src/convert_functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/convert_functions.ts -------------------------------------------------------------------------------- /packages/backend-data/src/convert_js_resolvers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/convert_js_resolvers.test.ts -------------------------------------------------------------------------------- /packages/backend-data/src/convert_js_resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/convert_js_resolvers.ts -------------------------------------------------------------------------------- /packages/backend-data/src/convert_schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/convert_schema.test.ts -------------------------------------------------------------------------------- /packages/backend-data/src/convert_schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/convert_schema.ts -------------------------------------------------------------------------------- /packages/backend-data/src/factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/factory.test.ts -------------------------------------------------------------------------------- /packages/backend-data/src/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/factory.ts -------------------------------------------------------------------------------- /packages/backend-data/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/index.ts -------------------------------------------------------------------------------- /packages/backend-data/src/logging_options_parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/logging_options_parser.test.ts -------------------------------------------------------------------------------- /packages/backend-data/src/logging_options_parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/logging_options_parser.ts -------------------------------------------------------------------------------- /packages/backend-data/src/resolve_entry_path.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/resolve_entry_path.test.ts -------------------------------------------------------------------------------- /packages/backend-data/src/resolve_entry_path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/resolve_entry_path.ts -------------------------------------------------------------------------------- /packages/backend-data/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/types.ts -------------------------------------------------------------------------------- /packages/backend-data/src/validate_authorization_modes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/validate_authorization_modes.test.ts -------------------------------------------------------------------------------- /packages/backend-data/src/validate_authorization_modes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/src/validate_authorization_modes.ts -------------------------------------------------------------------------------- /packages/backend-data/test-assets/test-lambda/mock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/test-assets/test-lambda/mock.txt -------------------------------------------------------------------------------- /packages/backend-data/test-assets/test-sql-handler/oddList.sql: -------------------------------------------------------------------------------- 1 | SELECT * from post where id % 2 = 1; -------------------------------------------------------------------------------- /packages/backend-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-data/tsconfig.json -------------------------------------------------------------------------------- /packages/backend-data/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/backend-deployer/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/.npmignore -------------------------------------------------------------------------------- /packages/backend-deployer/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/API.md -------------------------------------------------------------------------------- /packages/backend-deployer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/CHANGELOG.md -------------------------------------------------------------------------------- /packages/backend-deployer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/README.md -------------------------------------------------------------------------------- /packages/backend-deployer/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/api-extractor.json -------------------------------------------------------------------------------- /packages/backend-deployer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/package.json -------------------------------------------------------------------------------- /packages/backend-deployer/src/cdk_deployer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/src/cdk_deployer.test.ts -------------------------------------------------------------------------------- /packages/backend-deployer/src/cdk_deployer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/src/cdk_deployer.ts -------------------------------------------------------------------------------- /packages/backend-deployer/src/cdk_deployer_singleton_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/src/cdk_deployer_singleton_factory.ts -------------------------------------------------------------------------------- /packages/backend-deployer/src/cdk_error_mapper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/src/cdk_error_mapper.test.ts -------------------------------------------------------------------------------- /packages/backend-deployer/src/cdk_error_mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/src/cdk_error_mapper.ts -------------------------------------------------------------------------------- /packages/backend-deployer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/src/index.ts -------------------------------------------------------------------------------- /packages/backend-deployer/src/test-assets/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/src/test-assets/.eslintrc.json -------------------------------------------------------------------------------- /packages/backend-deployer/src/test-assets/ts-error-app/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/src/test-assets/ts-error-app/file.ts -------------------------------------------------------------------------------- /packages/backend-deployer/src/test-assets/valid-app/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/src/test-assets/valid-app/file.ts -------------------------------------------------------------------------------- /packages/backend-deployer/src/test-assets/valid-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/src/test-assets/valid-app/tsconfig.json -------------------------------------------------------------------------------- /packages/backend-deployer/src/ts_compiler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/src/ts_compiler.test.ts -------------------------------------------------------------------------------- /packages/backend-deployer/src/ts_compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/src/ts_compiler.ts -------------------------------------------------------------------------------- /packages/backend-deployer/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/src/types.ts -------------------------------------------------------------------------------- /packages/backend-deployer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-deployer/tsconfig.json -------------------------------------------------------------------------------- /packages/backend-deployer/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/backend-function/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/.npmignore -------------------------------------------------------------------------------- /packages/backend-function/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/API.md -------------------------------------------------------------------------------- /packages/backend-function/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/CHANGELOG.md -------------------------------------------------------------------------------- /packages/backend-function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/README.md -------------------------------------------------------------------------------- /packages/backend-function/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/api-extractor.json -------------------------------------------------------------------------------- /packages/backend-function/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/package.json -------------------------------------------------------------------------------- /packages/backend-function/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/constants.ts -------------------------------------------------------------------------------- /packages/backend-function/src/factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/factory.test.ts -------------------------------------------------------------------------------- /packages/backend-function/src/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/factory.ts -------------------------------------------------------------------------------- /packages/backend-function/src/function_construct_base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/function_construct_base.ts -------------------------------------------------------------------------------- /packages/backend-function/src/function_env_translator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/function_env_translator.test.ts -------------------------------------------------------------------------------- /packages/backend-function/src/function_env_translator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/function_env_translator.ts -------------------------------------------------------------------------------- /packages/backend-function/src/function_env_type_generator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/function_env_type_generator.test.ts -------------------------------------------------------------------------------- /packages/backend-function/src/function_env_type_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/function_env_type_generator.ts -------------------------------------------------------------------------------- /packages/backend-function/src/index.internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/index.internal.ts -------------------------------------------------------------------------------- /packages/backend-function/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/index.ts -------------------------------------------------------------------------------- /packages/backend-function/src/lambda-shims/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/lambda-shims/.eslintrc.json -------------------------------------------------------------------------------- /packages/backend-function/src/lambda-shims/cjs_shim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/lambda-shims/cjs_shim.ts -------------------------------------------------------------------------------- /packages/backend-function/src/lambda-shims/invoke_ssm_shim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/lambda-shims/invoke_ssm_shim.ts -------------------------------------------------------------------------------- /packages/backend-function/src/lambda-shims/resolve_ssm_params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/lambda-shims/resolve_ssm_params.ts -------------------------------------------------------------------------------- /packages/backend-function/src/layer_parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/layer_parser.test.ts -------------------------------------------------------------------------------- /packages/backend-function/src/layer_parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/layer_parser.ts -------------------------------------------------------------------------------- /packages/backend-function/src/logging_options_parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/logging_options_parser.test.ts -------------------------------------------------------------------------------- /packages/backend-function/src/logging_options_parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/logging_options_parser.ts -------------------------------------------------------------------------------- /packages/backend-function/src/provided_function_factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/provided_function_factory.test.ts -------------------------------------------------------------------------------- /packages/backend-function/src/provided_function_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/provided_function_factory.ts -------------------------------------------------------------------------------- /packages/backend-function/src/resource_access_acceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/resource_access_acceptor.ts -------------------------------------------------------------------------------- /packages/backend-function/src/runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/runtime/index.ts -------------------------------------------------------------------------------- /packages/backend-function/src/schedule_parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/schedule_parser.test.ts -------------------------------------------------------------------------------- /packages/backend-function/src/schedule_parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/schedule_parser.ts -------------------------------------------------------------------------------- /packages/backend-function/src/static_env_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/src/static_env_types.ts -------------------------------------------------------------------------------- /packages/backend-function/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-function/tsconfig.json -------------------------------------------------------------------------------- /packages/backend-function/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/backend-output-schemas/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/.npmignore -------------------------------------------------------------------------------- /packages/backend-output-schemas/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/API.md -------------------------------------------------------------------------------- /packages/backend-output-schemas/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/CHANGELOG.md -------------------------------------------------------------------------------- /packages/backend-output-schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/README.md -------------------------------------------------------------------------------- /packages/backend-output-schemas/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/api-extractor.json -------------------------------------------------------------------------------- /packages/backend-output-schemas/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/package.json -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/ai/conversation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/ai/conversation/index.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/ai/conversation/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/ai/conversation/v1.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/auth/index.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/auth/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/auth/v1.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/custom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/custom/index.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/custom/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/custom/v1.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/function/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/function/index.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/function/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/function/v1.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/graphql/index.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/graphql/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/graphql/v1.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/index.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/platform/index.ts: -------------------------------------------------------------------------------- 1 | export * from './stack_metadata_schemas.js'; 2 | -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/stack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/stack/index.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/stack/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/stack/v1.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/storage/index.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/src/storage/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/src/storage/v1.ts -------------------------------------------------------------------------------- /packages/backend-output-schemas/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-schemas/tsconfig.json -------------------------------------------------------------------------------- /packages/backend-output-schemas/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/backend-output-storage/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-storage/.npmignore -------------------------------------------------------------------------------- /packages/backend-output-storage/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-storage/API.md -------------------------------------------------------------------------------- /packages/backend-output-storage/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-storage/CHANGELOG.md -------------------------------------------------------------------------------- /packages/backend-output-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-storage/README.md -------------------------------------------------------------------------------- /packages/backend-output-storage/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-storage/api-extractor.json -------------------------------------------------------------------------------- /packages/backend-output-storage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-storage/package.json -------------------------------------------------------------------------------- /packages/backend-output-storage/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-storage/src/index.ts -------------------------------------------------------------------------------- /packages/backend-output-storage/src/store_attribution_metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-storage/src/store_attribution_metadata.ts -------------------------------------------------------------------------------- /packages/backend-output-storage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-output-storage/tsconfig.json -------------------------------------------------------------------------------- /packages/backend-output-storage/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/backend-platform-test-stubs/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-platform-test-stubs/.npmignore -------------------------------------------------------------------------------- /packages/backend-platform-test-stubs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-platform-test-stubs/API.md -------------------------------------------------------------------------------- /packages/backend-platform-test-stubs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-platform-test-stubs/CHANGELOG.md -------------------------------------------------------------------------------- /packages/backend-platform-test-stubs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-platform-test-stubs/README.md -------------------------------------------------------------------------------- /packages/backend-platform-test-stubs/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-platform-test-stubs/api-extractor.json -------------------------------------------------------------------------------- /packages/backend-platform-test-stubs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-platform-test-stubs/package.json -------------------------------------------------------------------------------- /packages/backend-platform-test-stubs/src/amplify_stack_stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-platform-test-stubs/src/amplify_stack_stub.ts -------------------------------------------------------------------------------- /packages/backend-platform-test-stubs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-platform-test-stubs/src/index.ts -------------------------------------------------------------------------------- /packages/backend-platform-test-stubs/src/stack_resolver_stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-platform-test-stubs/src/stack_resolver_stub.ts -------------------------------------------------------------------------------- /packages/backend-platform-test-stubs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-platform-test-stubs/tsconfig.json -------------------------------------------------------------------------------- /packages/backend-platform-test-stubs/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/backend-secret/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-secret/.npmignore -------------------------------------------------------------------------------- /packages/backend-secret/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-secret/API.md -------------------------------------------------------------------------------- /packages/backend-secret/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-secret/CHANGELOG.md -------------------------------------------------------------------------------- /packages/backend-secret/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-secret/README.md -------------------------------------------------------------------------------- /packages/backend-secret/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-secret/api-extractor.json -------------------------------------------------------------------------------- /packages/backend-secret/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-secret/package.json -------------------------------------------------------------------------------- /packages/backend-secret/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-secret/src/index.ts -------------------------------------------------------------------------------- /packages/backend-secret/src/secret.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-secret/src/secret.test.ts -------------------------------------------------------------------------------- /packages/backend-secret/src/secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-secret/src/secret.ts -------------------------------------------------------------------------------- /packages/backend-secret/src/secret_error.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-secret/src/secret_error.test.ts -------------------------------------------------------------------------------- /packages/backend-secret/src/secret_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-secret/src/secret_error.ts -------------------------------------------------------------------------------- /packages/backend-secret/src/ssm_secret.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-secret/src/ssm_secret.test.ts -------------------------------------------------------------------------------- /packages/backend-secret/src/ssm_secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-secret/src/ssm_secret.ts -------------------------------------------------------------------------------- /packages/backend-secret/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-secret/tsconfig.json -------------------------------------------------------------------------------- /packages/backend-secret/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/backend-storage/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/.npmignore -------------------------------------------------------------------------------- /packages/backend-storage/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/API.md -------------------------------------------------------------------------------- /packages/backend-storage/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/CHANGELOG.md -------------------------------------------------------------------------------- /packages/backend-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/README.md -------------------------------------------------------------------------------- /packages/backend-storage/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/api-extractor.json -------------------------------------------------------------------------------- /packages/backend-storage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/package.json -------------------------------------------------------------------------------- /packages/backend-storage/src/access_builder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/access_builder.test.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/access_builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/access_builder.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/constants.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/construct.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/construct.test.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/construct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/construct.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/factory.test.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/factory.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/index.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/private_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/private_types.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/storage_access_orchestrator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/storage_access_orchestrator.test.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/storage_access_orchestrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/storage_access_orchestrator.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/storage_access_policy_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/storage_access_policy_factory.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/storage_container_entry_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/storage_container_entry_generator.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/storage_outputs_aspect.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/storage_outputs_aspect.test.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/storage_outputs_aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/storage_outputs_aspect.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/types.ts -------------------------------------------------------------------------------- /packages/backend-storage/src/validate_storage_access_paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/src/validate_storage_access_paths.ts -------------------------------------------------------------------------------- /packages/backend-storage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend-storage/tsconfig.json -------------------------------------------------------------------------------- /packages/backend-storage/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/backend/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/.npmignore -------------------------------------------------------------------------------- /packages/backend/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/API.md -------------------------------------------------------------------------------- /packages/backend/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/CHANGELOG.md -------------------------------------------------------------------------------- /packages/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/README.md -------------------------------------------------------------------------------- /packages/backend/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/api-extractor.json -------------------------------------------------------------------------------- /packages/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/package.json -------------------------------------------------------------------------------- /packages/backend/src/backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/backend.ts -------------------------------------------------------------------------------- /packages/backend/src/backend_factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/backend_factory.test.ts -------------------------------------------------------------------------------- /packages/backend/src/backend_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/backend_factory.ts -------------------------------------------------------------------------------- /packages/backend/src/backend_identifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/backend_identifier.ts -------------------------------------------------------------------------------- /packages/backend/src/default_stack_factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/default_stack_factory.test.ts -------------------------------------------------------------------------------- /packages/backend/src/default_stack_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/default_stack_factory.ts -------------------------------------------------------------------------------- /packages/backend/src/engine/amplify_stack.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/engine/amplify_stack.test.ts -------------------------------------------------------------------------------- /packages/backend/src/engine/amplify_stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/engine/amplify_stack.ts -------------------------------------------------------------------------------- /packages/backend/src/engine/backend-secret/backend_secret.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/engine/backend-secret/backend_secret.test.ts -------------------------------------------------------------------------------- /packages/backend/src/engine/backend-secret/backend_secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/engine/backend-secret/backend_secret.ts -------------------------------------------------------------------------------- /packages/backend/src/engine/custom_outputs_accumulator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/engine/custom_outputs_accumulator.test.ts -------------------------------------------------------------------------------- /packages/backend/src/engine/custom_outputs_accumulator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/engine/custom_outputs_accumulator.ts -------------------------------------------------------------------------------- /packages/backend/src/engine/nested_stack_resolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/engine/nested_stack_resolver.test.ts -------------------------------------------------------------------------------- /packages/backend/src/engine/nested_stack_resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/engine/nested_stack_resolver.ts -------------------------------------------------------------------------------- /packages/backend/src/engine/singleton_construct_container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/engine/singleton_construct_container.ts -------------------------------------------------------------------------------- /packages/backend/src/environment_variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/environment_variables.ts -------------------------------------------------------------------------------- /packages/backend/src/function/runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/function/runtime/index.ts -------------------------------------------------------------------------------- /packages/backend/src/index.internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/index.internal.ts -------------------------------------------------------------------------------- /packages/backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/index.ts -------------------------------------------------------------------------------- /packages/backend/src/is_browser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/is_browser.test.ts -------------------------------------------------------------------------------- /packages/backend/src/is_browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/is_browser.ts -------------------------------------------------------------------------------- /packages/backend/src/project_environment_main_stack_creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/project_environment_main_stack_creator.ts -------------------------------------------------------------------------------- /packages/backend/src/secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/secret.ts -------------------------------------------------------------------------------- /packages/backend/src/types/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/src/types/platform.ts -------------------------------------------------------------------------------- /packages/backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/backend/tsconfig.json -------------------------------------------------------------------------------- /packages/backend/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/cli-core/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/.npmignore -------------------------------------------------------------------------------- /packages/cli-core/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/API.md -------------------------------------------------------------------------------- /packages/cli-core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cli-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/README.md -------------------------------------------------------------------------------- /packages/cli-core/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/api-extractor.json -------------------------------------------------------------------------------- /packages/cli-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/package.json -------------------------------------------------------------------------------- /packages/cli-core/src/format/format.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/src/format/format.test.ts -------------------------------------------------------------------------------- /packages/cli-core/src/format/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/src/format/format.ts -------------------------------------------------------------------------------- /packages/cli-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/src/index.ts -------------------------------------------------------------------------------- /packages/cli-core/src/loggers/amplify_event_loggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/src/loggers/amplify_event_loggers.ts -------------------------------------------------------------------------------- /packages/cli-core/src/loggers/amplify_io_events_bridge.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/src/loggers/amplify_io_events_bridge.test.ts -------------------------------------------------------------------------------- /packages/cli-core/src/loggers/amplify_io_events_bridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/src/loggers/amplify_io_events_bridge.ts -------------------------------------------------------------------------------- /packages/cli-core/src/loggers/test-assets/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/src/loggers/test-assets/.eslintrc.json -------------------------------------------------------------------------------- /packages/cli-core/src/loggers/test-assets/noop_cdk_events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/src/loggers/test-assets/noop_cdk_events.ts -------------------------------------------------------------------------------- /packages/cli-core/src/notices/notices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/src/notices/notices.ts -------------------------------------------------------------------------------- /packages/cli-core/src/notices/notices_manifest_validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/src/notices/notices_manifest_validator.ts -------------------------------------------------------------------------------- /packages/cli-core/src/printer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/src/printer.ts -------------------------------------------------------------------------------- /packages/cli-core/src/printer/printer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/src/printer/printer.test.ts -------------------------------------------------------------------------------- /packages/cli-core/src/printer/printer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/src/printer/printer.ts -------------------------------------------------------------------------------- /packages/cli-core/src/prompter/amplify_prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/src/prompter/amplify_prompts.ts -------------------------------------------------------------------------------- /packages/cli-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli-core/tsconfig.json -------------------------------------------------------------------------------- /packages/cli-core/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/cli/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/.npmignore -------------------------------------------------------------------------------- /packages/cli/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/API.md -------------------------------------------------------------------------------- /packages/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/README.md -------------------------------------------------------------------------------- /packages/cli/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/api-extractor.json -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/src/ampx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/ampx.ts -------------------------------------------------------------------------------- /packages/cli/src/command_middleware.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/command_middleware.test.ts -------------------------------------------------------------------------------- /packages/cli/src/command_middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/command_middleware.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/configure/configure_command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/configure/configure_command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/configure/profile_controller.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/configure/profile_controller.test.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/configure/profile_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/configure/profile_controller.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/generate/generate_command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/generate/generate_command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/generate/generate_command_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/generate/generate_command_factory.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/info/info_command.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/info/info_command.test.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/info/info_command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/info/info_command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/info/info_command_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/info/info_command_factory.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/notices/notices_command.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/notices/notices_command.test.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/notices/notices_command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/notices/notices_command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/notices/notices_command_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/notices/notices_command_factory.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/notices/notices_list_command.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/notices/notices_list_command.test.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/notices/notices_list_command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/notices/notices_list_command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/open/open.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/open/open.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/sandbox/option_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/sandbox/option_types.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/sandbox/sandbox_command.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/sandbox/sandbox_command.test.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/sandbox/sandbox_command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/sandbox/sandbox_command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/sandbox/sandbox_command_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/sandbox/sandbox_command_factory.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/sandbox/sandbox_id_resolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/sandbox/sandbox_id_resolver.test.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/sandbox/sandbox_id_resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/commands/sandbox/sandbox_id_resolver.ts -------------------------------------------------------------------------------- /packages/cli/src/error_handler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/error_handler.test.ts -------------------------------------------------------------------------------- /packages/cli/src/error_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/error_handler.ts -------------------------------------------------------------------------------- /packages/cli/src/extract_command_info.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/extract_command_info.test.ts -------------------------------------------------------------------------------- /packages/cli/src/extract_command_info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/extract_command_info.ts -------------------------------------------------------------------------------- /packages/cli/src/extract_sub_commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/extract_sub_commands.ts -------------------------------------------------------------------------------- /packages/cli/src/form-generation/form_generation_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/form-generation/form_generation_handler.ts -------------------------------------------------------------------------------- /packages/cli/src/info/cdk_info_provider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/info/cdk_info_provider.test.ts -------------------------------------------------------------------------------- /packages/cli/src/info/cdk_info_provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/info/cdk_info_provider.ts -------------------------------------------------------------------------------- /packages/cli/src/info/env_info_provider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/info/env_info_provider.test.ts -------------------------------------------------------------------------------- /packages/cli/src/info/env_info_provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/info/env_info_provider.ts -------------------------------------------------------------------------------- /packages/cli/src/info/env_info_provider_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/info/env_info_provider_types.ts -------------------------------------------------------------------------------- /packages/cli/src/kebab_case.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/kebab_case.ts -------------------------------------------------------------------------------- /packages/cli/src/main_parser_factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/main_parser_factory.test.ts -------------------------------------------------------------------------------- /packages/cli/src/main_parser_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/main_parser_factory.ts -------------------------------------------------------------------------------- /packages/cli/src/notices/notice_predicates_evaluator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/notices/notice_predicates_evaluator.test.ts -------------------------------------------------------------------------------- /packages/cli/src/notices/notice_predicates_evaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/notices/notice_predicates_evaluator.ts -------------------------------------------------------------------------------- /packages/cli/src/notices/notices_controller.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/notices/notices_controller.test.ts -------------------------------------------------------------------------------- /packages/cli/src/notices/notices_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/notices/notices_controller.ts -------------------------------------------------------------------------------- /packages/cli/src/notices/notices_files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/notices/notices_files.ts -------------------------------------------------------------------------------- /packages/cli/src/notices/notices_manifest_fetcher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/notices/notices_manifest_fetcher.test.ts -------------------------------------------------------------------------------- /packages/cli/src/notices/notices_manifest_fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/notices/notices_manifest_fetcher.ts -------------------------------------------------------------------------------- /packages/cli/src/notices/notices_printer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/notices/notices_printer.test.ts -------------------------------------------------------------------------------- /packages/cli/src/notices/notices_printer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/notices/notices_printer.ts -------------------------------------------------------------------------------- /packages/cli/src/notices/notices_renderer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/notices/notices_renderer.test.ts -------------------------------------------------------------------------------- /packages/cli/src/notices/notices_renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/notices/notices_renderer.ts -------------------------------------------------------------------------------- /packages/cli/src/sdk_profile_resolver_provider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/sdk_profile_resolver_provider.test.ts -------------------------------------------------------------------------------- /packages/cli/src/sdk_profile_resolver_provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/sdk_profile_resolver_provider.ts -------------------------------------------------------------------------------- /packages/cli/src/test-utils/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/test-utils/.eslintrc.json -------------------------------------------------------------------------------- /packages/cli/src/test-utils/command_runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/test-utils/command_runner.ts -------------------------------------------------------------------------------- /packages/cli/src/verify_command_name.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/verify_command_name.test.ts -------------------------------------------------------------------------------- /packages/cli/src/verify_command_name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/src/verify_command_name.ts -------------------------------------------------------------------------------- /packages/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/cli/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/ampx.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/client-config/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/.npmignore -------------------------------------------------------------------------------- /packages/client-config/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/API.md -------------------------------------------------------------------------------- /packages/client-config/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/CHANGELOG.md -------------------------------------------------------------------------------- /packages/client-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/README.md -------------------------------------------------------------------------------- /packages/client-config/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/api-extractor.json -------------------------------------------------------------------------------- /packages/client-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/package.json -------------------------------------------------------------------------------- /packages/client-config/src/client-config-schema/schema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/src/client-config-schema/schema_v1.json -------------------------------------------------------------------------------- /packages/client-config/src/client-config-types/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/src/client-config-types/.eslintrc.json -------------------------------------------------------------------------------- /packages/client-config/src/client-config-types/platform_client_config.ts: -------------------------------------------------------------------------------- 1 | export type PlatformClientConfig = { 2 | aws_project_region: string; 3 | }; 4 | -------------------------------------------------------------------------------- /packages/client-config/src/client_config_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/src/client_config_generator.ts -------------------------------------------------------------------------------- /packages/client-config/src/client_config_generator_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/src/client_config_generator_factory.ts -------------------------------------------------------------------------------- /packages/client-config/src/generate_client_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/src/generate_client_config.ts -------------------------------------------------------------------------------- /packages/client-config/src/generate_client_config_to_file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/src/generate_client_config_to_file.ts -------------------------------------------------------------------------------- /packages/client-config/src/index.internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/src/index.internal.ts -------------------------------------------------------------------------------- /packages/client-config/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/src/index.ts -------------------------------------------------------------------------------- /packages/client-config/src/paths/get_client_config_name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/src/paths/get_client_config_name.ts -------------------------------------------------------------------------------- /packages/client-config/src/paths/get_client_config_path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/src/paths/get_client_config_path.ts -------------------------------------------------------------------------------- /packages/client-config/src/paths/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/src/paths/index.ts -------------------------------------------------------------------------------- /packages/client-config/src/unified_client_config_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/src/unified_client_config_generator.ts -------------------------------------------------------------------------------- /packages/client-config/src/write_client_config_to_file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/src/write_client_config_to_file.ts -------------------------------------------------------------------------------- /packages/client-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/client-config/tsconfig.json -------------------------------------------------------------------------------- /packages/client-config/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/create-amplify/.eslintrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /packages/create-amplify/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/.npmignore -------------------------------------------------------------------------------- /packages/create-amplify/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/API.md -------------------------------------------------------------------------------- /packages/create-amplify/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/CHANGELOG.md -------------------------------------------------------------------------------- /packages/create-amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/README.md -------------------------------------------------------------------------------- /packages/create-amplify/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/api-extractor.json -------------------------------------------------------------------------------- /packages/create-amplify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/package.json -------------------------------------------------------------------------------- /packages/create-amplify/src/amplify_project_creator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/src/amplify_project_creator.test.ts -------------------------------------------------------------------------------- /packages/create-amplify/src/amplify_project_creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/src/amplify_project_creator.ts -------------------------------------------------------------------------------- /packages/create-amplify/src/create_amplify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/src/create_amplify.ts -------------------------------------------------------------------------------- /packages/create-amplify/src/default_packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/src/default_packages.json -------------------------------------------------------------------------------- /packages/create-amplify/src/get_project_root.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/src/get_project_root.test.ts -------------------------------------------------------------------------------- /packages/create-amplify/src/get_project_root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/src/get_project_root.ts -------------------------------------------------------------------------------- /packages/create-amplify/src/gitignore_initializer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/src/gitignore_initializer.test.ts -------------------------------------------------------------------------------- /packages/create-amplify/src/gitignore_initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/src/gitignore_initializer.ts -------------------------------------------------------------------------------- /packages/create-amplify/src/initial_project_file_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/src/initial_project_file_generator.ts -------------------------------------------------------------------------------- /packages/create-amplify/src/project_root_validator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/src/project_root_validator.test.ts -------------------------------------------------------------------------------- /packages/create-amplify/src/project_root_validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/src/project_root_validator.ts -------------------------------------------------------------------------------- /packages/create-amplify/templates/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/templates/.eslintrc.json -------------------------------------------------------------------------------- /packages/create-amplify/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/create-amplify/tsconfig.json -------------------------------------------------------------------------------- /packages/create-amplify/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/create_amplify.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/deployed-backend-client/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/deployed-backend-client/.npmignore -------------------------------------------------------------------------------- /packages/deployed-backend-client/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/deployed-backend-client/API.md -------------------------------------------------------------------------------- /packages/deployed-backend-client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/deployed-backend-client/CHANGELOG.md -------------------------------------------------------------------------------- /packages/deployed-backend-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/deployed-backend-client/README.md -------------------------------------------------------------------------------- /packages/deployed-backend-client/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/deployed-backend-client/api-extractor.json -------------------------------------------------------------------------------- /packages/deployed-backend-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/deployed-backend-client/package.json -------------------------------------------------------------------------------- /packages/deployed-backend-client/src/backend_output_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/deployed-backend-client/src/backend_output_client.ts -------------------------------------------------------------------------------- /packages/deployed-backend-client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/deployed-backend-client/src/index.ts -------------------------------------------------------------------------------- /packages/deployed-backend-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/deployed-backend-client/tsconfig.json -------------------------------------------------------------------------------- /packages/deployed-backend-client/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/eslint-rules/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/CHANGELOG.md -------------------------------------------------------------------------------- /packages/eslint-rules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/README.md -------------------------------------------------------------------------------- /packages/eslint-rules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/package.json -------------------------------------------------------------------------------- /packages/eslint-rules/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/src/index.ts -------------------------------------------------------------------------------- /packages/eslint-rules/src/rules/amplify_error_name.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/src/rules/amplify_error_name.test.ts -------------------------------------------------------------------------------- /packages/eslint-rules/src/rules/amplify_error_name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/src/rules/amplify_error_name.ts -------------------------------------------------------------------------------- /packages/eslint-rules/src/rules/find_nested_nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/src/rules/find_nested_nodes.ts -------------------------------------------------------------------------------- /packages/eslint-rules/src/rules/no_amplify_errors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/src/rules/no_amplify_errors.test.ts -------------------------------------------------------------------------------- /packages/eslint-rules/src/rules/no_amplify_errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/src/rules/no_amplify_errors.ts -------------------------------------------------------------------------------- /packages/eslint-rules/src/rules/no_empty_catch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/src/rules/no_empty_catch.test.ts -------------------------------------------------------------------------------- /packages/eslint-rules/src/rules/no_empty_catch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/src/rules/no_empty_catch.ts -------------------------------------------------------------------------------- /packages/eslint-rules/src/rules/prefer_amplify_errors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/src/rules/prefer_amplify_errors.test.ts -------------------------------------------------------------------------------- /packages/eslint-rules/src/rules/prefer_amplify_errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/src/rules/prefer_amplify_errors.ts -------------------------------------------------------------------------------- /packages/eslint-rules/src/rules/propagate_error_cause.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/src/rules/propagate_error_cause.test.ts -------------------------------------------------------------------------------- /packages/eslint-rules/src/rules/propagate_error_cause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/src/rules/propagate_error_cause.ts -------------------------------------------------------------------------------- /packages/eslint-rules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/eslint-rules/tsconfig.json -------------------------------------------------------------------------------- /packages/form-generator/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/form-generator/.npmignore -------------------------------------------------------------------------------- /packages/form-generator/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/form-generator/API.md -------------------------------------------------------------------------------- /packages/form-generator/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/form-generator/CHANGELOG.md -------------------------------------------------------------------------------- /packages/form-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/form-generator/README.md -------------------------------------------------------------------------------- /packages/form-generator/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/form-generator/api-extractor.json -------------------------------------------------------------------------------- /packages/form-generator/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/form-generator/bundle.js -------------------------------------------------------------------------------- /packages/form-generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/form-generator/package.json -------------------------------------------------------------------------------- /packages/form-generator/src/create_form_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/form-generator/src/create_form_generator.ts -------------------------------------------------------------------------------- /packages/form-generator/src/graphql_form_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/form-generator/src/graphql_form_generator.ts -------------------------------------------------------------------------------- /packages/form-generator/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/form-generator/src/index.ts -------------------------------------------------------------------------------- /packages/form-generator/src/s3_string_object_fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/form-generator/src/s3_string_object_fetcher.ts -------------------------------------------------------------------------------- /packages/form-generator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/form-generator/tsconfig.json -------------------------------------------------------------------------------- /packages/form-generator/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/integration-tests/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/.eslintrc.json -------------------------------------------------------------------------------- /packages/integration-tests/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/CHANGELOG.md -------------------------------------------------------------------------------- /packages/integration-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/README.md -------------------------------------------------------------------------------- /packages/integration-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/package.json -------------------------------------------------------------------------------- /packages/integration-tests/src/amplify_app_pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/amplify_app_pool.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/async_lock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/async_lock.test.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/async_lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/async_lock.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/cdk_version_finder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/cdk_version_finder.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/constants.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/e2e_tooling_client_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/e2e_tooling_client_config.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/find_deployed_resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/find_deployed_resource.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/npm_proxy_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/npm_proxy_controller.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/object_compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/object_compare.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/process-controller/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/process-controller/types.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/retry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/retry.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/setup_package_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/setup_package_manager.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/setup_test_directory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/setup_test_directory.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/shared_secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/shared_secret.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/short_uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/short_uuid.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/test-e2e/backend_output.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/test-e2e/backend_output.test.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/test-e2e/create_amplify.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/test-e2e/create_amplify.test.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/test-e2e/hosting.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/test-e2e/hosting.test.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/test-e2e/notices.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/test-e2e/notices.test.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/test-e2e/test_concurrency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/test-e2e/test_concurrency.ts -------------------------------------------------------------------------------- /packages/integration-tests/src/test-projects/circular-dep-auth-data-func/amplify/functions/handler.ts: -------------------------------------------------------------------------------- 1 | export const handler = () => {}; 2 | -------------------------------------------------------------------------------- /packages/integration-tests/src/test-projects/circular-dep-data-func/amplify/functions/handler.ts: -------------------------------------------------------------------------------- 1 | export const handler = () => {}; 2 | -------------------------------------------------------------------------------- /packages/integration-tests/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/src/types.ts -------------------------------------------------------------------------------- /packages/integration-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/integration-tests/tsconfig.json -------------------------------------------------------------------------------- /packages/model-generator/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/.npmignore -------------------------------------------------------------------------------- /packages/model-generator/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/API.md -------------------------------------------------------------------------------- /packages/model-generator/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/CHANGELOG.md -------------------------------------------------------------------------------- /packages/model-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/README.md -------------------------------------------------------------------------------- /packages/model-generator/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/api-extractor.json -------------------------------------------------------------------------------- /packages/model-generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/package.json -------------------------------------------------------------------------------- /packages/model-generator/src/appsync_schema_fetcher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/src/appsync_schema_fetcher.test.ts -------------------------------------------------------------------------------- /packages/model-generator/src/appsync_schema_fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/src/appsync_schema_fetcher.ts -------------------------------------------------------------------------------- /packages/model-generator/src/create_graphql_types_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/src/create_graphql_types_generator.ts -------------------------------------------------------------------------------- /packages/model-generator/src/generate_api_code.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/src/generate_api_code.test.ts -------------------------------------------------------------------------------- /packages/model-generator/src/generate_api_code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/src/generate_api_code.ts -------------------------------------------------------------------------------- /packages/model-generator/src/graphql_document_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/src/graphql_document_generator.ts -------------------------------------------------------------------------------- /packages/model-generator/src/graphql_models_generator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/src/graphql_models_generator.test.ts -------------------------------------------------------------------------------- /packages/model-generator/src/graphql_models_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/src/graphql_models_generator.ts -------------------------------------------------------------------------------- /packages/model-generator/src/graphql_types_generator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/src/graphql_types_generator.test.ts -------------------------------------------------------------------------------- /packages/model-generator/src/graphql_types_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/src/graphql_types_generator.ts -------------------------------------------------------------------------------- /packages/model-generator/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/src/index.ts -------------------------------------------------------------------------------- /packages/model-generator/src/model_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/src/model_generator.ts -------------------------------------------------------------------------------- /packages/model-generator/src/s3_string_object_fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/src/s3_string_object_fetcher.ts -------------------------------------------------------------------------------- /packages/model-generator/src/test-assets/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/src/test-assets/.eslintrc.json -------------------------------------------------------------------------------- /packages/model-generator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/model-generator/tsconfig.json -------------------------------------------------------------------------------- /packages/model-generator/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/platform-core/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/.npmignore -------------------------------------------------------------------------------- /packages/platform-core/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/API.md -------------------------------------------------------------------------------- /packages/platform-core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/platform-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/README.md -------------------------------------------------------------------------------- /packages/platform-core/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/api-extractor.json -------------------------------------------------------------------------------- /packages/platform-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/package.json -------------------------------------------------------------------------------- /packages/platform-core/src/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/.eslintrc.json -------------------------------------------------------------------------------- /packages/platform-core/src/backend_entry_point_locator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/backend_entry_point_locator.ts -------------------------------------------------------------------------------- /packages/platform-core/src/backend_identifier_conversions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/backend_identifier_conversions.ts -------------------------------------------------------------------------------- /packages/platform-core/src/caller_directory_extractor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/caller_directory_extractor.test.ts -------------------------------------------------------------------------------- /packages/platform-core/src/caller_directory_extractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/caller_directory_extractor.ts -------------------------------------------------------------------------------- /packages/platform-core/src/cdk/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/cdk/.eslintrc.json -------------------------------------------------------------------------------- /packages/platform-core/src/cdk/enum_converters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/cdk/enum_converters.test.ts -------------------------------------------------------------------------------- /packages/platform-core/src/cdk/enum_converters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/cdk/enum_converters.ts -------------------------------------------------------------------------------- /packages/platform-core/src/cdk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/cdk/index.ts -------------------------------------------------------------------------------- /packages/platform-core/src/cdk_context_key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/cdk_context_key.ts -------------------------------------------------------------------------------- /packages/platform-core/src/config/get_config_dir_path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/config/get_config_dir_path.ts -------------------------------------------------------------------------------- /packages/platform-core/src/config/typed_configuration_file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/config/typed_configuration_file.ts -------------------------------------------------------------------------------- /packages/platform-core/src/errors/amplify_error.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/errors/amplify_error.test.ts -------------------------------------------------------------------------------- /packages/platform-core/src/errors/amplify_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/errors/amplify_error.ts -------------------------------------------------------------------------------- /packages/platform-core/src/errors/amplify_library_fault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/errors/amplify_library_fault.ts -------------------------------------------------------------------------------- /packages/platform-core/src/errors/amplify_user_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/errors/amplify_user_error.ts -------------------------------------------------------------------------------- /packages/platform-core/src/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/errors/index.ts -------------------------------------------------------------------------------- /packages/platform-core/src/index.internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/index.internal.ts -------------------------------------------------------------------------------- /packages/platform-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/index.ts -------------------------------------------------------------------------------- /packages/platform-core/src/naming_convention_conversions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/naming_convention_conversions.ts -------------------------------------------------------------------------------- /packages/platform-core/src/object_accumulator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/object_accumulator.test.ts -------------------------------------------------------------------------------- /packages/platform-core/src/object_accumulator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/object_accumulator.ts -------------------------------------------------------------------------------- /packages/platform-core/src/package_json_reader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/package_json_reader.test.ts -------------------------------------------------------------------------------- /packages/platform-core/src/package_json_reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/package_json_reader.ts -------------------------------------------------------------------------------- /packages/platform-core/src/parameter_path_conversions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/parameter_path_conversions.test.ts -------------------------------------------------------------------------------- /packages/platform-core/src/parameter_path_conversions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/parameter_path_conversions.ts -------------------------------------------------------------------------------- /packages/platform-core/src/tag_name.ts: -------------------------------------------------------------------------------- 1 | export enum TagName { 2 | FRIENDLY_NAME = 'amplify:friendly-name', 3 | } 4 | -------------------------------------------------------------------------------- /packages/platform-core/src/telemetry/account_id_fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/telemetry/account_id_fetcher.ts -------------------------------------------------------------------------------- /packages/platform-core/src/telemetry/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/telemetry/constants.ts -------------------------------------------------------------------------------- /packages/platform-core/src/telemetry/get_local_project_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/telemetry/get_local_project_id.ts -------------------------------------------------------------------------------- /packages/platform-core/src/telemetry/get_telemetry_url.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/telemetry/get_telemetry_url.test.ts -------------------------------------------------------------------------------- /packages/platform-core/src/telemetry/get_telemetry_url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/telemetry/get_telemetry_url.ts -------------------------------------------------------------------------------- /packages/platform-core/src/telemetry/region_fetcher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/telemetry/region_fetcher.test.ts -------------------------------------------------------------------------------- /packages/platform-core/src/telemetry/region_fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/telemetry/region_fetcher.ts -------------------------------------------------------------------------------- /packages/platform-core/src/telemetry/serializable_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/telemetry/serializable_error.ts -------------------------------------------------------------------------------- /packages/platform-core/src/telemetry/set_span_attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/telemetry/set_span_attributes.ts -------------------------------------------------------------------------------- /packages/platform-core/src/telemetry/telemetry_payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/telemetry/telemetry_payload.ts -------------------------------------------------------------------------------- /packages/platform-core/src/usage-data/account_id_fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/usage-data/account_id_fetcher.ts -------------------------------------------------------------------------------- /packages/platform-core/src/usage-data/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/usage-data/constants.ts -------------------------------------------------------------------------------- /packages/platform-core/src/usage-data/get_installation_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/usage-data/get_installation_id.ts -------------------------------------------------------------------------------- /packages/platform-core/src/usage-data/get_usage_data_url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/usage-data/get_usage_data_url.ts -------------------------------------------------------------------------------- /packages/platform-core/src/usage-data/serializable_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/usage-data/serializable_error.ts -------------------------------------------------------------------------------- /packages/platform-core/src/usage-data/usage_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/usage-data/usage_data.ts -------------------------------------------------------------------------------- /packages/platform-core/src/usage-data/usage_data_emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/src/usage-data/usage_data_emitter.ts -------------------------------------------------------------------------------- /packages/platform-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/platform-core/tsconfig.json -------------------------------------------------------------------------------- /packages/platform-core/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/plugin-types/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/.npmignore -------------------------------------------------------------------------------- /packages/plugin-types/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/API.md -------------------------------------------------------------------------------- /packages/plugin-types/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugin-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/README.md -------------------------------------------------------------------------------- /packages/plugin-types/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/api-extractor.json -------------------------------------------------------------------------------- /packages/plugin-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/package.json -------------------------------------------------------------------------------- /packages/plugin-types/src/amplify_function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/amplify_function.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/amplify_io_host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/amplify_io_host.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/amplify_resource_group_name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/amplify_resource_group_name.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/auth_resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/auth_resources.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/aws_client_provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/aws_client_provider.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/backend_identifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/backend_identifier.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/backend_output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/backend_output.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/backend_secret_resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/backend_secret_resolver.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/backend_stack_creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/backend_stack_creator.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/backend_stack_resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/backend_stack_resolver.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/construct_container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/construct_container.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/construct_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/construct_factory.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/deep_partial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/deep_partial.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/deployment_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/deployment_type.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/function_resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/function_resources.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/import_path_verifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/import_path_verifier.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/index.test.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/index.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/log_level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/log_level.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/log_retention.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/log_retention.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/output_retrieval_strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/output_retrieval_strategy.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/output_storage_strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/output_storage_strategy.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/package_manager_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/package_manager_controller.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/resource_access_acceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/resource_access_acceptor.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/resource_name_validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/resource_name_validator.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/resource_provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/resource_provider.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/sdk_profile_resolver.ts: -------------------------------------------------------------------------------- 1 | export type SDKProfileResolver = () => string | undefined; 2 | -------------------------------------------------------------------------------- /packages/plugin-types/src/ssm_environment_entries_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/ssm_environment_entries_generator.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/stable_backend_identifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/stable_backend_identifiers.ts -------------------------------------------------------------------------------- /packages/plugin-types/src/stack_provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/src/stack_provider.ts -------------------------------------------------------------------------------- /packages/plugin-types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/plugin-types/tsconfig.json -------------------------------------------------------------------------------- /packages/plugin-types/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/sandbox/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/.npmignore -------------------------------------------------------------------------------- /packages/sandbox/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/API.md -------------------------------------------------------------------------------- /packages/sandbox/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/CHANGELOG.md -------------------------------------------------------------------------------- /packages/sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/README.md -------------------------------------------------------------------------------- /packages/sandbox/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/api-extractor.json -------------------------------------------------------------------------------- /packages/sandbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/package.json -------------------------------------------------------------------------------- /packages/sandbox/src/cloudwatch_logs_monitor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/src/cloudwatch_logs_monitor.test.ts -------------------------------------------------------------------------------- /packages/sandbox/src/cloudwatch_logs_monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/src/cloudwatch_logs_monitor.ts -------------------------------------------------------------------------------- /packages/sandbox/src/file_watching_sandbox.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/src/file_watching_sandbox.test.ts -------------------------------------------------------------------------------- /packages/sandbox/src/file_watching_sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/src/file_watching_sandbox.ts -------------------------------------------------------------------------------- /packages/sandbox/src/files_changes_tracker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/src/files_changes_tracker.test.ts -------------------------------------------------------------------------------- /packages/sandbox/src/files_changes_tracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/src/files_changes_tracker.ts -------------------------------------------------------------------------------- /packages/sandbox/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/src/index.ts -------------------------------------------------------------------------------- /packages/sandbox/src/lambda_function_log_streamer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/src/lambda_function_log_streamer.test.ts -------------------------------------------------------------------------------- /packages/sandbox/src/lambda_function_log_streamer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/src/lambda_function_log_streamer.ts -------------------------------------------------------------------------------- /packages/sandbox/src/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/src/sandbox.ts -------------------------------------------------------------------------------- /packages/sandbox/src/sandbox_executor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/src/sandbox_executor.test.ts -------------------------------------------------------------------------------- /packages/sandbox/src/sandbox_executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/src/sandbox_executor.ts -------------------------------------------------------------------------------- /packages/sandbox/src/sandbox_singleton_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/src/sandbox_singleton_factory.ts -------------------------------------------------------------------------------- /packages/sandbox/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/sandbox/tsconfig.json -------------------------------------------------------------------------------- /packages/sandbox/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/schema-generator/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/schema-generator/.npmignore -------------------------------------------------------------------------------- /packages/schema-generator/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/schema-generator/API.md -------------------------------------------------------------------------------- /packages/schema-generator/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/schema-generator/CHANGELOG.md -------------------------------------------------------------------------------- /packages/schema-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/schema-generator/README.md -------------------------------------------------------------------------------- /packages/schema-generator/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/schema-generator/api-extractor.json -------------------------------------------------------------------------------- /packages/schema-generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/schema-generator/package.json -------------------------------------------------------------------------------- /packages/schema-generator/src/generate_schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/schema-generator/src/generate_schema.test.ts -------------------------------------------------------------------------------- /packages/schema-generator/src/generate_schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/schema-generator/src/generate_schema.ts -------------------------------------------------------------------------------- /packages/schema-generator/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/schema-generator/src/index.ts -------------------------------------------------------------------------------- /packages/schema-generator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/schema-generator/tsconfig.json -------------------------------------------------------------------------------- /packages/schema-generator/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/seed/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/.npmignore -------------------------------------------------------------------------------- /packages/seed/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/API.md -------------------------------------------------------------------------------- /packages/seed/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/CHANGELOG.md -------------------------------------------------------------------------------- /packages/seed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/README.md -------------------------------------------------------------------------------- /packages/seed/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/api-extractor.json -------------------------------------------------------------------------------- /packages/seed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/package.json -------------------------------------------------------------------------------- /packages/seed/src/auth-seed/auth_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/src/auth-seed/auth_api.ts -------------------------------------------------------------------------------- /packages/seed/src/auth-seed/auth_client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/src/auth-seed/auth_client.test.ts -------------------------------------------------------------------------------- /packages/seed/src/auth-seed/auth_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/src/auth-seed/auth_client.ts -------------------------------------------------------------------------------- /packages/seed/src/auth-seed/config_reader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/src/auth-seed/config_reader.test.ts -------------------------------------------------------------------------------- /packages/seed/src/auth-seed/config_reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/src/auth-seed/config_reader.ts -------------------------------------------------------------------------------- /packages/seed/src/auth-seed/mfa_flow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/src/auth-seed/mfa_flow.test.ts -------------------------------------------------------------------------------- /packages/seed/src/auth-seed/mfa_flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/src/auth-seed/mfa_flow.ts -------------------------------------------------------------------------------- /packages/seed/src/auth-seed/persistent_password_flow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/src/auth-seed/persistent_password_flow.test.ts -------------------------------------------------------------------------------- /packages/seed/src/auth-seed/persistent_password_flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/src/auth-seed/persistent_password_flow.ts -------------------------------------------------------------------------------- /packages/seed/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/src/index.ts -------------------------------------------------------------------------------- /packages/seed/src/secrets-seed/seed_secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/src/secrets-seed/seed_secret.ts -------------------------------------------------------------------------------- /packages/seed/src/secrets-seed/seed_secrets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/src/secrets-seed/seed_secrets.test.ts -------------------------------------------------------------------------------- /packages/seed/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/src/types.ts -------------------------------------------------------------------------------- /packages/seed/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/packages/seed/tsconfig.json -------------------------------------------------------------------------------- /packages/seed/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /scripts/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/.eslintrc.json -------------------------------------------------------------------------------- /scripts/check_api_changes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/check_api_changes.ts -------------------------------------------------------------------------------- /scripts/check_api_extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/check_api_extract.ts -------------------------------------------------------------------------------- /scripts/check_changeset_completeness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/check_changeset_completeness.ts -------------------------------------------------------------------------------- /scripts/check_dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/check_dependencies.ts -------------------------------------------------------------------------------- /scripts/check_no_git_diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/check_no_git_diff.ts -------------------------------------------------------------------------------- /scripts/check_package_json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/check_package_json.ts -------------------------------------------------------------------------------- /scripts/check_package_lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/check_package_lock.ts -------------------------------------------------------------------------------- /scripts/check_package_versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/check_package_versions.ts -------------------------------------------------------------------------------- /scripts/check_pr_size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/check_pr_size.ts -------------------------------------------------------------------------------- /scripts/cleanup_e2e_resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/cleanup_e2e_resources.ts -------------------------------------------------------------------------------- /scripts/components/api-changes-validator/.gitignore: -------------------------------------------------------------------------------- 1 | test-resources/working-directory 2 | -------------------------------------------------------------------------------- /scripts/components/api-changes-validator/api_report_parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/api-changes-validator/api_report_parser.ts -------------------------------------------------------------------------------- /scripts/components/api-changes-validator/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/api-changes-validator/types.ts -------------------------------------------------------------------------------- /scripts/components/create_amplify_dep_updater.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/create_amplify_dep_updater.test.ts -------------------------------------------------------------------------------- /scripts/components/create_amplify_dep_updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/create_amplify_dep_updater.ts -------------------------------------------------------------------------------- /scripts/components/create_changeset_file.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/create_changeset_file.test.ts -------------------------------------------------------------------------------- /scripts/components/create_changeset_file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/create_changeset_file.ts -------------------------------------------------------------------------------- /scripts/components/dependabot_version_update_handler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/dependabot_version_update_handler.test.ts -------------------------------------------------------------------------------- /scripts/components/dependabot_version_update_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/dependabot_version_update_handler.ts -------------------------------------------------------------------------------- /scripts/components/dependencies_validator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/dependencies_validator.test.ts -------------------------------------------------------------------------------- /scripts/components/dependencies_validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/dependencies_validator.ts -------------------------------------------------------------------------------- /scripts/components/dist_tag_mover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/dist_tag_mover.ts -------------------------------------------------------------------------------- /scripts/components/get_dependencies_from_package_lock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/get_dependencies_from_package_lock.test.ts -------------------------------------------------------------------------------- /scripts/components/get_dependencies_from_package_lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/get_dependencies_from_package_lock.ts -------------------------------------------------------------------------------- /scripts/components/git_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/git_client.ts -------------------------------------------------------------------------------- /scripts/components/github_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/github_client.ts -------------------------------------------------------------------------------- /scripts/components/is_version_packages_commit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/is_version_packages_commit.ts -------------------------------------------------------------------------------- /scripts/components/npm_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/npm_client.ts -------------------------------------------------------------------------------- /scripts/components/package-json/package_json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/package-json/package_json.ts -------------------------------------------------------------------------------- /scripts/components/package_lock_validator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/package_lock_validator.test.ts -------------------------------------------------------------------------------- /scripts/components/package_lock_validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/package_lock_validator.ts -------------------------------------------------------------------------------- /scripts/components/release_deprecator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/release_deprecator.ts -------------------------------------------------------------------------------- /scripts/components/release_lifecycle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/release_lifecycle.test.ts -------------------------------------------------------------------------------- /scripts/components/release_restorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/release_restorer.ts -------------------------------------------------------------------------------- /scripts/components/release_tag_to_name_and_version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/release_tag_to_name_and_version.ts -------------------------------------------------------------------------------- /scripts/components/sparse_test_matrix_generator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/sparse_test_matrix_generator.test.ts -------------------------------------------------------------------------------- /scripts/components/sparse_test_matrix_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/sparse_test_matrix_generator.ts -------------------------------------------------------------------------------- /scripts/components/test-resources/npm_ls_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/test-resources/npm_ls_output.json -------------------------------------------------------------------------------- /scripts/components/test-resources/package_lock_valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/components/test-resources/package_lock_valid.json -------------------------------------------------------------------------------- /scripts/components/test-resources/sparse-generator-test-stubs/test1.test.ts: -------------------------------------------------------------------------------- 1 | // Empty, content doesn't matter. 2 | -------------------------------------------------------------------------------- /scripts/components/test-resources/sparse-generator-test-stubs/test2.test.ts: -------------------------------------------------------------------------------- 1 | // Empty, content doesn't matter. 2 | -------------------------------------------------------------------------------- /scripts/components/test-resources/sparse-generator-test-stubs/test3.test.ts: -------------------------------------------------------------------------------- 1 | // Empty, content doesn't matter. 2 | -------------------------------------------------------------------------------- /scripts/concurrent_workspace_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/concurrent_workspace_script.ts -------------------------------------------------------------------------------- /scripts/copy_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/copy_template.ts -------------------------------------------------------------------------------- /scripts/dependabot_handle_version_update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/dependabot_handle_version_update.ts -------------------------------------------------------------------------------- /scripts/deprecate_release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/deprecate_release.ts -------------------------------------------------------------------------------- /scripts/do_include_e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/do_include_e2e.ts -------------------------------------------------------------------------------- /scripts/generate_sparse_test_matrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/generate_sparse_test_matrix.ts -------------------------------------------------------------------------------- /scripts/get_unit_test_dir_list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/get_unit_test_dir_list.ts -------------------------------------------------------------------------------- /scripts/is_version_packages_commit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/is_version_packages_commit.ts -------------------------------------------------------------------------------- /scripts/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/publish.ts -------------------------------------------------------------------------------- /scripts/publish_local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/publish_local.ts -------------------------------------------------------------------------------- /scripts/publish_runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/publish_runner.ts -------------------------------------------------------------------------------- /scripts/publish_snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/publish_snapshot.ts -------------------------------------------------------------------------------- /scripts/restore_release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/restore_release.ts -------------------------------------------------------------------------------- /scripts/retry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/retry.js -------------------------------------------------------------------------------- /scripts/run_tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/run_tests.ts -------------------------------------------------------------------------------- /scripts/select_e2e_test_account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/select_e2e_test_account.ts -------------------------------------------------------------------------------- /scripts/set_baseline_dependency_versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/set_baseline_dependency_versions.ts -------------------------------------------------------------------------------- /scripts/setup_test_project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/setup_test_project.ts -------------------------------------------------------------------------------- /scripts/start_npm_proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/start_npm_proxy.ts -------------------------------------------------------------------------------- /scripts/stop_npm_proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/stop_npm_proxy.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /scripts/update_create_amplify_deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/update_create_amplify_deps.ts -------------------------------------------------------------------------------- /scripts/update_tsconfig_refs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/update_tsconfig_refs.ts -------------------------------------------------------------------------------- /scripts/version_runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/scripts/version_runner.ts -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/construct/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/templates/construct/.npmignore -------------------------------------------------------------------------------- /templates/construct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/templates/construct/README.md -------------------------------------------------------------------------------- /templates/construct/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/templates/construct/api-extractor.json -------------------------------------------------------------------------------- /templates/construct/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/templates/construct/package.json -------------------------------------------------------------------------------- /templates/construct/src/construct.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/templates/construct/src/construct.test.ts -------------------------------------------------------------------------------- /templates/construct/src/construct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/templates/construct/src/construct.ts -------------------------------------------------------------------------------- /templates/construct/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './construct.js'; 2 | -------------------------------------------------------------------------------- /templates/construct/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/templates/construct/tsconfig.json -------------------------------------------------------------------------------- /templates/construct/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /templates/empty-package/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/templates/empty-package/.npmignore -------------------------------------------------------------------------------- /templates/empty-package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/templates/empty-package/README.md -------------------------------------------------------------------------------- /templates/empty-package/api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/templates/empty-package/api-extractor.json -------------------------------------------------------------------------------- /templates/empty-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/templates/empty-package/package.json -------------------------------------------------------------------------------- /templates/empty-package/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/empty-package/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/templates/empty-package/tsconfig.json -------------------------------------------------------------------------------- /templates/empty-package/typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entryPoints": ["src/index.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /test-projects/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/test-projects/.eslintrc.json -------------------------------------------------------------------------------- /test-projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/test-projects/README.md -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/typedoc.json -------------------------------------------------------------------------------- /verdaccio.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/amplify-backend/HEAD/verdaccio.config.yaml --------------------------------------------------------------------------------