@aws-amplify/cli-internal-gen2-migration-experimental-alpha 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/aws-amplify-cli-internal-gen2-migration-experimental-alpha-0.2.0.tgz +0 -0
- package/lib/commands/drift-detection/detect-local-drift.d.ts +3 -6
- package/lib/commands/drift-detection/detect-local-drift.d.ts.map +1 -1
- package/lib/commands/drift-detection/detect-local-drift.js +4 -8
- package/lib/commands/drift-detection/detect-local-drift.js.map +1 -1
- package/lib/commands/drift-detection/detect-stack-drift.d.ts +3 -2
- package/lib/commands/drift-detection/detect-stack-drift.d.ts.map +1 -1
- package/lib/commands/drift-detection/detect-stack-drift.js +12 -0
- package/lib/commands/drift-detection/detect-stack-drift.js.map +1 -1
- package/lib/commands/drift-detection/detect-template-drift.d.ts +4 -5
- package/lib/commands/drift-detection/detect-template-drift.d.ts.map +1 -1
- package/lib/commands/drift-detection/detect-template-drift.js +122 -94
- package/lib/commands/drift-detection/detect-template-drift.js.map +1 -1
- package/lib/commands/drift-detection/index.d.ts +3 -2
- package/lib/commands/drift-detection/index.d.ts.map +1 -1
- package/lib/commands/drift-detection/index.js +3 -1
- package/lib/commands/drift-detection/index.js.map +1 -1
- package/lib/commands/drift-detection/services/cloudformation-service.d.ts.map +1 -1
- package/lib/commands/drift-detection/services/cloudformation-service.js +3 -5
- package/lib/commands/drift-detection/services/cloudformation-service.js.map +1 -1
- package/lib/commands/drift-detection/services/drift-formatter.d.ts +4 -5
- package/lib/commands/drift-detection/services/drift-formatter.d.ts.map +1 -1
- package/lib/commands/drift-detection/services/drift-formatter.js +15 -38
- package/lib/commands/drift-detection/services/drift-formatter.js.map +1 -1
- package/lib/commands/drift.d.ts +0 -2
- package/lib/commands/drift.d.ts.map +1 -1
- package/lib/commands/drift.js +47 -57
- package/lib/commands/drift.js.map +1 -1
- package/lib/commands/gen2-migration/_step.d.ts +2 -1
- package/lib/commands/gen2-migration/_step.d.ts.map +1 -1
- package/lib/commands/gen2-migration/_step.js +2 -1
- package/lib/commands/gen2-migration/_step.js.map +1 -1
- package/lib/commands/gen2-migration/generate/adapters/auth/index.d.ts +24 -0
- package/lib/commands/gen2-migration/generate/adapters/auth/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/auth/index.js +297 -0
- package/lib/commands/gen2-migration/generate/adapters/auth/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/auth/index.test.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/adapters/auth/index.test.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/auth/index.test.js +140 -0
- package/lib/commands/gen2-migration/generate/adapters/auth/index.test.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/data/index.d.ts +5 -0
- package/lib/commands/gen2-migration/generate/adapters/data/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/data/index.js +17 -0
- package/lib/commands/gen2-migration/generate/adapters/data/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/functions/index.d.ts +17 -0
- package/lib/commands/gen2-migration/generate/adapters/functions/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/functions/index.js +46 -0
- package/lib/commands/gen2-migration/generate/adapters/functions/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/project/index.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/adapters/project/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/project/index.js +7 -0
- package/lib/commands/gen2-migration/generate/adapters/project/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.d.ts +30 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.js +18 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.test.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.test.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.test.js +181 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.test.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/index.d.ts +3 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/index.js +6 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/storage_access.d.ts +14 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/storage_access.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/storage_access.js +27 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/storage_access.js.map +1 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.d.ts +80 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.js +901 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.js.map +1 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.test.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.test.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.test.js +700 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.test.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/amplify_stack_parser.d.ts +14 -0
- package/lib/commands/gen2-migration/generate/codegen-head/amplify_stack_parser.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/amplify_stack_parser.js +82 -0
- package/lib/commands/gen2-migration/generate/codegen-head/amplify_stack_parser.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/analytics.d.ts +10 -0
- package/lib/commands/gen2-migration/generate/codegen-head/analytics.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/analytics.js +11 -0
- package/lib/commands/gen2-migration/generate/codegen-head/analytics.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_analytics_definition_fetcher.d.ts +13 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_analytics_definition_fetcher.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_analytics_definition_fetcher.js +22 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_analytics_definition_fetcher.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_auth_definition_fetcher.d.ts +24 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_auth_definition_fetcher.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_auth_definition_fetcher.js +167 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_auth_definition_fetcher.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_functions_definition_fetcher.d.ts +19 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_functions_definition_fetcher.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_functions_definition_fetcher.js +133 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_functions_definition_fetcher.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_storage_definition_fetcher.d.ts +23 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_storage_definition_fetcher.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_storage_definition_fetcher.js +172 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_storage_definition_fetcher.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_downloader.d.ts +10 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_downloader.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_downloader.js +48 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_downloader.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_environment_selector.d.ts +11 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_environment_selector.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_environment_selector.js +38 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_environment_selector.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/command-handlers.d.ts +13 -0
- package/lib/commands/gen2-migration/generate/codegen-head/command-handlers.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/command-handlers.js +462 -0
- package/lib/commands/gen2-migration/generate/codegen-head/command-handlers.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/data_definition_fetcher.d.ts +47 -0
- package/lib/commands/gen2-migration/generate/codegen-head/data_definition_fetcher.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/data_definition_fetcher.js +222 -0
- package/lib/commands/gen2-migration/generate/codegen-head/data_definition_fetcher.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/directory_exists.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/codegen-head/directory_exists.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/directory_exists.js +15 -0
- package/lib/commands/gen2-migration/generate/codegen-head/directory_exists.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/format.d.ts +8 -0
- package/lib/commands/gen2-migration/generate/codegen-head/format.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/format.js +66 -0
- package/lib/commands/gen2-migration/generate/codegen-head/format.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/logger.d.ts +15 -0
- package/lib/commands/gen2-migration/generate/codegen-head/logger.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/logger.js +14 -0
- package/lib/commands/gen2-migration/generate/codegen-head/logger.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/printer.d.ts +26 -0
- package/lib/commands/gen2-migration/generate/codegen-head/printer.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/printer.js +103 -0
- package/lib/commands/gen2-migration/generate/codegen-head/printer.js.map +1 -0
- package/lib/commands/gen2-migration/generate/core/migration-pipeline.d.ts +26 -0
- package/lib/commands/gen2-migration/generate/core/migration-pipeline.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/core/migration-pipeline.js +233 -0
- package/lib/commands/gen2-migration/generate/core/migration-pipeline.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/backend-updater.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/backend-updater.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/dependency-merger.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/dependency-merger.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/file-converter.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/file-converter.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/gen2-file-generator.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/gen2-file-generator.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/parser/cdk-stack-parser.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/parser/cdk-stack-parser.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/parser/pattern-detector.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/parser/pattern-detector.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/scanner/custom-resource-scanner.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/scanner/custom-resource-scanner.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/transformer/amplify-helper-transformer.d.ts.map +1 -0
- package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/transformer/amplify-helper-transformer.js +25 -3
- package/lib/commands/gen2-migration/generate/custom-resources/transformer/amplify-helper-transformer.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/types.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/types.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/analytics/index.d.ts +9 -0
- package/lib/commands/gen2-migration/generate/generators/analytics/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/analytics/index.js +40 -0
- package/lib/commands/gen2-migration/generate/generators/analytics/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.d.ts +106 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.js +286 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.test.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.test.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.test.js +437 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.test.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.d.ts +35 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.js +199 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.test.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.test.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.test.js +50 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.test.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/functions/index.d.ts +17 -0
- package/lib/commands/gen2-migration/generate/generators/functions/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/functions/index.js +125 -0
- package/lib/commands/gen2-migration/generate/generators/functions/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/functions/lambda.d.ts +6 -0
- package/lib/commands/gen2-migration/generate/generators/functions/lambda.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/functions/lambda.js +16 -0
- package/lib/commands/gen2-migration/generate/generators/functions/lambda.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/storage/access.d.ts +4 -0
- package/lib/commands/gen2-migration/generate/generators/storage/access.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/storage/access.js +53 -0
- package/lib/commands/gen2-migration/generate/generators/storage/access.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/storage/index.d.ts +31 -0
- package/lib/commands/gen2-migration/generate/generators/storage/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/storage/index.js +66 -0
- package/lib/commands/gen2-migration/generate/generators/storage/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/npm_package/renderer.d.ts +27 -0
- package/lib/commands/gen2-migration/generate/npm_package/renderer.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/npm_package/renderer.js +28 -0
- package/lib/commands/gen2-migration/generate/npm_package/renderer.js.map +1 -0
- package/lib/commands/gen2-migration/generate/render_pipeline.d.ts +9 -0
- package/lib/commands/gen2-migration/generate/render_pipeline.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/render_pipeline.js +15 -0
- package/lib/commands/gen2-migration/generate/render_pipeline.js.map +1 -0
- package/lib/commands/gen2-migration/generate/renderers/ensure_directory.d.ts +7 -0
- package/lib/commands/gen2-migration/generate/renderers/ensure_directory.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/renderers/ensure_directory.js +17 -0
- package/lib/commands/gen2-migration/generate/renderers/ensure_directory.js.map +1 -0
- package/lib/commands/gen2-migration/generate/renderers/package_json.d.ts +8 -0
- package/lib/commands/gen2-migration/generate/renderers/package_json.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/renderers/package_json.js +15 -0
- package/lib/commands/gen2-migration/generate/renderers/package_json.js.map +1 -0
- package/lib/commands/gen2-migration/generate/renderers/typescript_block_node.d.ts +11 -0
- package/lib/commands/gen2-migration/generate/renderers/typescript_block_node.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/renderers/typescript_block_node.js +22 -0
- package/lib/commands/gen2-migration/generate/renderers/typescript_block_node.js.map +1 -0
- package/lib/commands/gen2-migration/generate/resource/resource.d.ts +20 -0
- package/lib/commands/gen2-migration/generate/resource/resource.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/resource/resource.js +60 -0
- package/lib/commands/gen2-migration/generate/resource/resource.js.map +1 -0
- package/lib/commands/gen2-migration/generate/test_utils/import_regex.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/test_utils/import_regex.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/test_utils/import_regex.js +6 -0
- package/lib/commands/gen2-migration/generate/test_utils/import_regex.js.map +1 -0
- package/lib/commands/gen2-migration/generate/test_utils/ts_node_printer.d.ts +4 -0
- package/lib/commands/gen2-migration/generate/test_utils/ts_node_printer.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/test_utils/ts_node_printer.js +22 -0
- package/lib/commands/gen2-migration/generate/test_utils/ts_node_printer.js.map +1 -0
- package/lib/commands/gen2-migration/generate/todo_error.d.ts +3 -0
- package/lib/commands/gen2-migration/generate/todo_error.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/todo_error.js +11 -0
- package/lib/commands/gen2-migration/generate/todo_error.js.map +1 -0
- package/lib/commands/gen2-migration/generate/ts_factory_utils.d.ts +3 -0
- package/lib/commands/gen2-migration/generate/ts_factory_utils.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/ts_factory_utils.js +10 -0
- package/lib/commands/gen2-migration/generate/ts_factory_utils.js.map +1 -0
- package/lib/commands/gen2-migration/generate/types.d.ts +4 -0
- package/lib/commands/gen2-migration/generate/types.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/types.js +3 -0
- package/lib/commands/gen2-migration/generate/types.js.map +1 -0
- package/lib/commands/gen2-migration/generate/unsupported/cdk-from-cfn.d.ts +26 -0
- package/lib/commands/gen2-migration/generate/unsupported/cdk-from-cfn.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/unsupported/cdk-from-cfn.js +152 -0
- package/lib/commands/gen2-migration/generate/unsupported/cdk-from-cfn.js.map +1 -0
- package/lib/commands/gen2-migration/generate.js +2 -2
- package/lib/commands/gen2-migration/generate.js.map +1 -1
- package/lib/commands/gen2-migration.d.ts.map +1 -1
- package/lib/commands/gen2-migration.js +2 -1
- package/lib/commands/gen2-migration.js.map +1 -1
- package/package.json +2 -1
- package/aws-amplify-cli-internal-gen2-migration-experimental-alpha-0.1.0.tgz +0 -0
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/backend-updater.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/backend-updater.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/dependency-merger.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/dependency-merger.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/file-converter.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/file-converter.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/gen2-file-generator.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/gen2-file-generator.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/parser/cdk-stack-parser.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/parser/cdk-stack-parser.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/parser/pattern-detector.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/parser/pattern-detector.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/scanner/custom-resource-scanner.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/scanner/custom-resource-scanner.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/transformer/amplify-helper-transformer.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/transformer/amplify-helper-transformer.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/types.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/types.js.map +0 -1
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/backend-updater.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/backend-updater.js +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/dependency-merger.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/dependency-merger.js +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/file-converter.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/file-converter.js +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/gen2-file-generator.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/gen2-file-generator.js +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/parser/cdk-stack-parser.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/parser/cdk-stack-parser.js +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/parser/pattern-detector.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/parser/pattern-detector.js +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/scanner/custom-resource-scanner.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/scanner/custom-resource-scanner.js +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/transformer/amplify-helper-transformer.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/types.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/types.js +0 -0
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.generateDataSource = void 0;
|
|
7
|
+
const typescript_1 = __importDefault(require("typescript"));
|
|
8
|
+
const resource_1 = require("../../resource/resource");
|
|
9
|
+
const factory = typescript_1.default.factory;
|
|
10
|
+
const createDataSourceMapping = (schema, apiId, envName) => {
|
|
11
|
+
const models = extractModelsFromSchema(schema);
|
|
12
|
+
const mapping = {};
|
|
13
|
+
models.forEach((modelName) => {
|
|
14
|
+
mapping[modelName] = [modelName, apiId, envName].join('-');
|
|
15
|
+
});
|
|
16
|
+
return mapping;
|
|
17
|
+
};
|
|
18
|
+
const extractModelsFromSchema = (schema) => {
|
|
19
|
+
const modelRegex = /type\s+(\w+)\s+@model/g;
|
|
20
|
+
const models = [];
|
|
21
|
+
let match;
|
|
22
|
+
while ((match = modelRegex.exec(schema)) !== null) {
|
|
23
|
+
models.push(match[1]);
|
|
24
|
+
}
|
|
25
|
+
return models;
|
|
26
|
+
};
|
|
27
|
+
const getCurrentEnvironment = () => {
|
|
28
|
+
try {
|
|
29
|
+
const { stateManager } = require('@aws-amplify/amplify-cli-core');
|
|
30
|
+
return stateManager.getCurrentEnvName() || 'main';
|
|
31
|
+
}
|
|
32
|
+
catch (_a) {
|
|
33
|
+
return 'main';
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
const getProjectName = () => {
|
|
37
|
+
try {
|
|
38
|
+
const fs = require('fs');
|
|
39
|
+
const path = require('path');
|
|
40
|
+
const { pathManager } = require('@aws-amplify/amplify-cli-core');
|
|
41
|
+
const projectRoot = pathManager.findProjectRoot();
|
|
42
|
+
if (!projectRoot)
|
|
43
|
+
return undefined;
|
|
44
|
+
const projectConfigPath = path.join(projectRoot, 'amplify', '.config', 'project-config.json');
|
|
45
|
+
if (fs.existsSync(projectConfigPath)) {
|
|
46
|
+
const projectConfig = JSON.parse(fs.readFileSync(projectConfigPath, 'utf8'));
|
|
47
|
+
return projectConfig.projectName;
|
|
48
|
+
}
|
|
49
|
+
return undefined;
|
|
50
|
+
}
|
|
51
|
+
catch (_a) {
|
|
52
|
+
return undefined;
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
const getApiId = async () => {
|
|
56
|
+
var _a;
|
|
57
|
+
try {
|
|
58
|
+
const { AppSyncClient, ListGraphqlApisCommand } = require('@aws-sdk/client-appsync');
|
|
59
|
+
const client = new AppSyncClient({});
|
|
60
|
+
const response = await client.send(new ListGraphqlApisCommand({}));
|
|
61
|
+
const currentEnv = getCurrentEnvironment();
|
|
62
|
+
const projectName = getProjectName();
|
|
63
|
+
const api = (_a = response.graphqlApis) === null || _a === void 0 ? void 0 : _a.find((api) => {
|
|
64
|
+
var _a, _b;
|
|
65
|
+
const matchesEnv = ((_a = api.tags) === null || _a === void 0 ? void 0 : _a['user:Stack']) === currentEnv;
|
|
66
|
+
const matchesProject = projectName ? ((_b = api.tags) === null || _b === void 0 ? void 0 : _b['user:Application']) === projectName : true;
|
|
67
|
+
return matchesEnv && matchesProject;
|
|
68
|
+
});
|
|
69
|
+
return api === null || api === void 0 ? void 0 : api.apiId;
|
|
70
|
+
}
|
|
71
|
+
catch (error) {
|
|
72
|
+
console.warn('Failed to fetch API ID from AWS:', error.message);
|
|
73
|
+
return undefined;
|
|
74
|
+
}
|
|
75
|
+
};
|
|
76
|
+
const migratedAmplifyGen1DynamoDbTableMappingsKeyName = 'migratedAmplifyGen1DynamoDbTableMappings';
|
|
77
|
+
const generateDataSource = async (gen1Env, dataDefinition) => {
|
|
78
|
+
var _a, _b, _c;
|
|
79
|
+
if (!dataDefinition) {
|
|
80
|
+
return undefined;
|
|
81
|
+
}
|
|
82
|
+
if (!dataDefinition.schema && (!dataDefinition.restApis || dataDefinition.restApis.length === 0)) {
|
|
83
|
+
return undefined;
|
|
84
|
+
}
|
|
85
|
+
const dataRenderProperties = [];
|
|
86
|
+
const namedImports = { '@aws-amplify/backend': new Set() };
|
|
87
|
+
namedImports['@aws-amplify/backend'].add('defineData');
|
|
88
|
+
const schemaStatements = [];
|
|
89
|
+
if (dataDefinition && dataDefinition.schema) {
|
|
90
|
+
if (dataDefinition.schema.includes('${env}')) {
|
|
91
|
+
const branchNameStatement = factory.createVariableStatement([], factory.createVariableDeclarationList([
|
|
92
|
+
factory.createVariableDeclaration('branchName', undefined, undefined, factory.createIdentifier('process.env.AWS_BRANCH ?? "sandbox"')),
|
|
93
|
+
], typescript_1.default.NodeFlags.Const));
|
|
94
|
+
schemaStatements.push(branchNameStatement);
|
|
95
|
+
dataDefinition.schema = dataDefinition.schema.replaceAll('${env}', '${branchName}');
|
|
96
|
+
}
|
|
97
|
+
const schemaVariableDeclaration = factory.createVariableDeclaration('schema', undefined, undefined, factory.createIdentifier('`' + dataDefinition.schema + '`'));
|
|
98
|
+
const schemaStatementAssignment = factory.createVariableStatement([], factory.createVariableDeclarationList([schemaVariableDeclaration], typescript_1.default.NodeFlags.Const));
|
|
99
|
+
schemaStatements.push(schemaStatementAssignment);
|
|
100
|
+
}
|
|
101
|
+
let tableMappings = dataDefinition === null || dataDefinition === void 0 ? void 0 : dataDefinition.tableMappings;
|
|
102
|
+
if (!tableMappings && (dataDefinition === null || dataDefinition === void 0 ? void 0 : dataDefinition.schema)) {
|
|
103
|
+
const apiId = await getApiId();
|
|
104
|
+
if (apiId) {
|
|
105
|
+
tableMappings = createDataSourceMapping(dataDefinition.schema, apiId, gen1Env);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
if (tableMappings) {
|
|
109
|
+
const tableMappingProperties = [];
|
|
110
|
+
for (const [tableName, tableId] of Object.entries(tableMappings)) {
|
|
111
|
+
tableMappingProperties.push(factory.createPropertyAssignment(factory.createIdentifier(tableName), factory.createStringLiteral(tableId)));
|
|
112
|
+
}
|
|
113
|
+
const branchNameExpression = typescript_1.default.addSyntheticLeadingComment(factory.createPropertyAssignment('branchName', factory.createStringLiteral(gen1Env)), typescript_1.default.SyntaxKind.SingleLineCommentTrivia, 'The "branchname" variable needs to be the same as your deployment branch if you want to reuse your Gen1 app tables', true);
|
|
114
|
+
const tableMappingExpression = factory.createPropertyAssignment('modelNameToTableNameMapping', factory.createObjectLiteralExpression(tableMappingProperties));
|
|
115
|
+
const tableMappingForEnvironment = factory.createObjectLiteralExpression([branchNameExpression, tableMappingExpression], true);
|
|
116
|
+
dataRenderProperties.push(factory.createPropertyAssignment(migratedAmplifyGen1DynamoDbTableMappingsKeyName, factory.createArrayLiteralExpression([tableMappingForEnvironment])));
|
|
117
|
+
}
|
|
118
|
+
if (dataDefinition === null || dataDefinition === void 0 ? void 0 : dataDefinition.authorizationModes) {
|
|
119
|
+
const gen1AuthModes = dataDefinition.authorizationModes;
|
|
120
|
+
const authModeProperties = [];
|
|
121
|
+
const authModeMap = {
|
|
122
|
+
AWS_IAM: 'iam',
|
|
123
|
+
AMAZON_COGNITO_USER_POOLS: 'userPool',
|
|
124
|
+
API_KEY: 'apiKey',
|
|
125
|
+
AWS_LAMBDA: 'lambda',
|
|
126
|
+
OPENID_CONNECT: 'oidc',
|
|
127
|
+
};
|
|
128
|
+
if ((_a = gen1AuthModes.defaultAuthentication) === null || _a === void 0 ? void 0 : _a.authenticationType) {
|
|
129
|
+
const gen2AuthMode = authModeMap[gen1AuthModes.defaultAuthentication.authenticationType] || 'userPool';
|
|
130
|
+
authModeProperties.push(factory.createPropertyAssignment('defaultAuthorizationMode', factory.createStringLiteral(gen2AuthMode)));
|
|
131
|
+
switch (gen1AuthModes.defaultAuthentication.authenticationType) {
|
|
132
|
+
case 'API_KEY':
|
|
133
|
+
if ((_b = gen1AuthModes.defaultAuthentication.apiKeyConfig) === null || _b === void 0 ? void 0 : _b.apiKeyExpirationDays) {
|
|
134
|
+
authModeProperties.push(factory.createPropertyAssignment('apiKeyAuthorizationMode', factory.createObjectLiteralExpression([
|
|
135
|
+
factory.createPropertyAssignment('expiresInDays', factory.createNumericLiteral(gen1AuthModes.defaultAuthentication.apiKeyConfig.apiKeyExpirationDays.toString())),
|
|
136
|
+
])));
|
|
137
|
+
}
|
|
138
|
+
break;
|
|
139
|
+
case 'AWS_LAMBDA':
|
|
140
|
+
if ((_c = gen1AuthModes.defaultAuthentication.lambdaAuthorizerConfig) === null || _c === void 0 ? void 0 : _c.ttlSeconds) {
|
|
141
|
+
authModeProperties.push(factory.createPropertyAssignment('lambdaAuthorizationMode', factory.createObjectLiteralExpression([
|
|
142
|
+
factory.createPropertyAssignment('timeToLiveInSeconds', factory.createNumericLiteral(gen1AuthModes.defaultAuthentication.lambdaAuthorizerConfig.ttlSeconds.toString())),
|
|
143
|
+
])));
|
|
144
|
+
}
|
|
145
|
+
break;
|
|
146
|
+
case 'OPENID_CONNECT':
|
|
147
|
+
if (gen1AuthModes.defaultAuthentication.openIDConnectConfig) {
|
|
148
|
+
const oidcProps = [];
|
|
149
|
+
if (gen1AuthModes.defaultAuthentication.openIDConnectConfig.issuer) {
|
|
150
|
+
oidcProps.push(factory.createPropertyAssignment('oidcIssuerUrl', factory.createStringLiteral(gen1AuthModes.defaultAuthentication.openIDConnectConfig.issuer)));
|
|
151
|
+
}
|
|
152
|
+
if (gen1AuthModes.defaultAuthentication.openIDConnectConfig.clientId) {
|
|
153
|
+
oidcProps.push(factory.createPropertyAssignment('clientId', factory.createStringLiteral(gen1AuthModes.defaultAuthentication.openIDConnectConfig.clientId)));
|
|
154
|
+
}
|
|
155
|
+
if (oidcProps.length > 0) {
|
|
156
|
+
authModeProperties.push(factory.createPropertyAssignment('oidcAuthorizationMode', factory.createObjectLiteralExpression(oidcProps)));
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
break;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
if (authModeProperties.length > 0) {
|
|
163
|
+
dataRenderProperties.push(factory.createPropertyAssignment('authorizationModes', factory.createObjectLiteralExpression(authModeProperties, true)));
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
if (dataDefinition === null || dataDefinition === void 0 ? void 0 : dataDefinition.logging) {
|
|
167
|
+
if (dataDefinition.logging === true) {
|
|
168
|
+
dataRenderProperties.push(factory.createPropertyAssignment('logging', factory.createTrue()));
|
|
169
|
+
}
|
|
170
|
+
else if (typeof dataDefinition.logging === 'object') {
|
|
171
|
+
const loggingConfig = dataDefinition.logging;
|
|
172
|
+
const loggingProperties = [];
|
|
173
|
+
if (loggingConfig.fieldLogLevel !== undefined) {
|
|
174
|
+
loggingProperties.push(factory.createPropertyAssignment('fieldLogLevel', factory.createStringLiteral(loggingConfig.fieldLogLevel)));
|
|
175
|
+
}
|
|
176
|
+
if (loggingConfig.excludeVerboseContent !== undefined) {
|
|
177
|
+
loggingProperties.push(factory.createPropertyAssignment('excludeVerboseContent', loggingConfig.excludeVerboseContent ? factory.createTrue() : factory.createFalse()));
|
|
178
|
+
}
|
|
179
|
+
if (loggingConfig.retention !== undefined) {
|
|
180
|
+
loggingProperties.push(factory.createPropertyAssignment('retention', factory.createStringLiteral(loggingConfig.retention)));
|
|
181
|
+
}
|
|
182
|
+
if (loggingProperties.length > 0) {
|
|
183
|
+
dataRenderProperties.push(factory.createPropertyAssignment('logging', factory.createObjectLiteralExpression(loggingProperties)));
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
if (dataDefinition === null || dataDefinition === void 0 ? void 0 : dataDefinition.schema) {
|
|
188
|
+
dataRenderProperties.push(factory.createShorthandPropertyAssignment(factory.createIdentifier('schema')));
|
|
189
|
+
}
|
|
190
|
+
return (0, resource_1.renderResourceTsFile)({
|
|
191
|
+
exportedVariableName: factory.createIdentifier('data'),
|
|
192
|
+
functionCallParameter: factory.createObjectLiteralExpression(dataRenderProperties, true),
|
|
193
|
+
backendFunctionConstruct: 'defineData',
|
|
194
|
+
postImportStatements: schemaStatements,
|
|
195
|
+
additionalImportedBackendIdentifiers: namedImports,
|
|
196
|
+
});
|
|
197
|
+
};
|
|
198
|
+
exports.generateDataSource = generateDataSource;
|
|
199
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/commands/gen2-migration/generate/generators/data/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.test.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/gen2-migration/generate/generators/data/index.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const node_assert_1 = __importDefault(require("node:assert"));
|
|
7
|
+
const ts_node_printer_1 = require("../../test_utils/ts_node_printer");
|
|
8
|
+
const index_1 = require("./index");
|
|
9
|
+
describe('Data Category code generation', () => {
|
|
10
|
+
beforeEach(() => {
|
|
11
|
+
jest.spyOn(console, 'warn').mockImplementation(() => { });
|
|
12
|
+
});
|
|
13
|
+
afterEach(() => {
|
|
14
|
+
jest.restoreAllMocks();
|
|
15
|
+
});
|
|
16
|
+
it('generates the correct import', async () => {
|
|
17
|
+
const source = (0, ts_node_printer_1.printNodeArray)(await (0, index_1.generateDataSource)('main', { schema: 'type Test { id: ID! }' }));
|
|
18
|
+
node_assert_1.default.match(source, /import\s?\{\s?defineData\s?\}\s?from\s?"\@aws-amplify\/backend"/);
|
|
19
|
+
});
|
|
20
|
+
it('returns undefined when no data definition provided', async () => {
|
|
21
|
+
const result = await (0, index_1.generateDataSource)('main');
|
|
22
|
+
node_assert_1.default.strictEqual(result, undefined);
|
|
23
|
+
});
|
|
24
|
+
it('returns undefined when no schema and no REST APIs', async () => {
|
|
25
|
+
const result = await (0, index_1.generateDataSource)('main', {});
|
|
26
|
+
node_assert_1.default.strictEqual(result, undefined);
|
|
27
|
+
});
|
|
28
|
+
describe('import map', () => {
|
|
29
|
+
it('is rendered', async () => {
|
|
30
|
+
const tableMappings = { Todo: 'my-todo-mapping' };
|
|
31
|
+
const source = (0, ts_node_printer_1.printNodeArray)(await (0, index_1.generateDataSource)('main', { tableMappings, schema: 'schema' }));
|
|
32
|
+
node_assert_1.default.match(source, /migratedAmplifyGen1DynamoDbTableMappings: \[\{\n\s+\/\/.*\n\s+branchName: ['"]\w+['"],\n\s+modelNameToTableNameMapping: { Todo: ['"]my-todo-mapping['"] }\n\s+}]/);
|
|
33
|
+
});
|
|
34
|
+
it('includes multiple models in table mappings', async () => {
|
|
35
|
+
const tableMappings = { Todo: 'Todo-abc123-dev', User: 'User-abc123-dev', Post: 'Post-abc123-dev' };
|
|
36
|
+
const source = (0, ts_node_printer_1.printNodeArray)(await (0, index_1.generateDataSource)('main', { tableMappings, schema: 'schema' }));
|
|
37
|
+
node_assert_1.default.match(source, /modelNameToTableNameMapping: { Todo: ['"]Todo-abc123-dev['"], User: ['"]User-abc123-dev['"], Post: ['"]Post-abc123-dev['"] }/);
|
|
38
|
+
});
|
|
39
|
+
it('includes a comment for missing table mappings', async () => {
|
|
40
|
+
const source = (0, ts_node_printer_1.printNodeArray)(await (0, index_1.generateDataSource)('main', { schema: 'schema' }));
|
|
41
|
+
node_assert_1.default.match(source, /const schema = `schema`;\n\nexport const data = defineData\(\{\n\s+schema\n\}\)/);
|
|
42
|
+
});
|
|
43
|
+
it('has each each key in defineData', async () => {
|
|
44
|
+
const tableMappings = { Todo: 'my-todo-mapping' };
|
|
45
|
+
const source = (0, ts_node_printer_1.printNodeArray)(await (0, index_1.generateDataSource)('main', { tableMappings, schema: 'schema' }));
|
|
46
|
+
node_assert_1.default.match(source, /const schema = `schema`;\n\nexport const data = defineData\(\{\n\s+migratedAmplifyGen1DynamoDbTableMappings: \[\{\n\s+\/\/.*\n\s+branchName: ['"]\w+['"],\n\s+modelNameToTableNameMapping: { Todo: ['"]my-todo-mapping['"] }\n\s+}],\n\s+schema\n\}\)/);
|
|
47
|
+
});
|
|
48
|
+
});
|
|
49
|
+
});
|
|
50
|
+
//# sourceMappingURL=index.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.test.js","sourceRoot":"","sources":["../../../../../../src/commands/gen2-migration/generate/generators/data/index.test.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import ts from 'typescript';
|
|
2
|
+
import type { EnvironmentResponse } from '@aws-sdk/client-lambda';
|
|
3
|
+
import { Runtime } from '@aws-sdk/client-lambda';
|
|
4
|
+
export interface FunctionDefinition {
|
|
5
|
+
category?: string;
|
|
6
|
+
entry?: string;
|
|
7
|
+
name?: string;
|
|
8
|
+
timeoutSeconds?: number;
|
|
9
|
+
memoryMB?: number;
|
|
10
|
+
environment?: EnvironmentResponse;
|
|
11
|
+
runtime?: Runtime | string;
|
|
12
|
+
resourceName?: string;
|
|
13
|
+
schedule?: string;
|
|
14
|
+
}
|
|
15
|
+
export declare function renderFunctions(definition: FunctionDefinition, appId?: string, backendEnvironmentName?: string | undefined): ts.NodeArray<ts.Node>;
|
|
16
|
+
export declare function createFunctionDefinition(definition?: FunctionDefinition, postImportStatements?: (ts.CallExpression | ts.JSDoc | ts.ExpressionStatement)[], namedImports?: Record<string, Set<string>>, appId?: string, backendEnvironmentName?: string): ts.ObjectLiteralElementLike[];
|
|
17
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/gen2-migration/generate/generators/functions/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,YAAY,CAAC;AAE5B,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAC;AASjD,MAAM,WAAW,kBAAkB;IAEjC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB,WAAW,CAAC,EAAE,mBAAmB,CAAC;IAElC,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAE3B,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AA8ED,wBAAgB,eAAe,CAAC,UAAU,EAAE,kBAAkB,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,sBAAsB,CAAC,EAAE,MAAM,GAAG,SAAS,yBA4B1H;AAqBD,wBAAgB,wBAAwB,CACtC,UAAU,CAAC,EAAE,kBAAkB,EAC/B,oBAAoB,CAAC,EAAE,CAAC,EAAE,CAAC,cAAc,GAAG,EAAE,CAAC,KAAK,GAAG,EAAE,CAAC,mBAAmB,CAAC,EAAE,EAChF,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,EAC1C,KAAK,CAAC,EAAE,MAAM,EACd,sBAAsB,CAAC,EAAE,MAAM,iCAuIhC"}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.renderFunctions = renderFunctions;
|
|
7
|
+
exports.createFunctionDefinition = createFunctionDefinition;
|
|
8
|
+
const typescript_1 = __importDefault(require("typescript"));
|
|
9
|
+
const client_lambda_1 = require("@aws-sdk/client-lambda");
|
|
10
|
+
const resource_1 = require("../../resource/resource");
|
|
11
|
+
const node_assert_1 = __importDefault(require("node:assert"));
|
|
12
|
+
const factory = typescript_1.default.factory;
|
|
13
|
+
const gen2BranchNameVariableName = 'branchName';
|
|
14
|
+
const createParameter = (name, value) => factory.createPropertyAssignment(factory.createIdentifier(name), value);
|
|
15
|
+
const createVariableStatement = (variableDeclaration) => {
|
|
16
|
+
return factory.createVariableStatement([], factory.createVariableDeclarationList([variableDeclaration], typescript_1.default.NodeFlags.Const));
|
|
17
|
+
};
|
|
18
|
+
const createTemplateLiteral = (templateHead, templateSpan, templateTail) => {
|
|
19
|
+
return factory.createTemplateExpression(factory.createTemplateHead(templateHead), [
|
|
20
|
+
factory.createTemplateSpan(factory.createIdentifier(templateSpan), factory.createTemplateTail(templateTail)),
|
|
21
|
+
]);
|
|
22
|
+
};
|
|
23
|
+
function renderFunctions(definition, appId, backendEnvironmentName) {
|
|
24
|
+
const postImportStatements = [];
|
|
25
|
+
const namedImports = { '@aws-amplify/backend': new Set() };
|
|
26
|
+
namedImports['@aws-amplify/backend'].add('defineFunction');
|
|
27
|
+
const defineFunctionProperty = createFunctionDefinition(definition, postImportStatements, namedImports, appId, backendEnvironmentName);
|
|
28
|
+
const amplifyGen1EnvStatement = createVariableStatement(factory.createVariableDeclaration(gen2BranchNameVariableName, undefined, undefined, factory.createIdentifier('process.env.AWS_BRANCH ?? "sandbox"')));
|
|
29
|
+
postImportStatements.push(amplifyGen1EnvStatement);
|
|
30
|
+
return (0, resource_1.renderResourceTsFile)({
|
|
31
|
+
exportedVariableName: factory.createIdentifier((definition === null || definition === void 0 ? void 0 : definition.resourceName) || 'sayHello'),
|
|
32
|
+
functionCallParameter: factory.createObjectLiteralExpression(defineFunctionProperty, true),
|
|
33
|
+
backendFunctionConstruct: 'defineFunction',
|
|
34
|
+
additionalImportedBackendIdentifiers: namedImports,
|
|
35
|
+
postImportStatements,
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
function createFunctionDefinition(definition, postImportStatements, namedImports, appId, backendEnvironmentName) {
|
|
39
|
+
var _a;
|
|
40
|
+
const defineFunctionProperties = [];
|
|
41
|
+
const entryPoint = (definition === null || definition === void 0 ? void 0 : definition.entry) || './index.js';
|
|
42
|
+
defineFunctionProperties.push(createParameter('entry', factory.createStringLiteral(entryPoint)));
|
|
43
|
+
if (definition === null || definition === void 0 ? void 0 : definition.name) {
|
|
44
|
+
const funcNameAssignment = createTemplateLiteral(`${definition.resourceName}-`, gen2BranchNameVariableName, '');
|
|
45
|
+
defineFunctionProperties.push(createParameter('name', funcNameAssignment));
|
|
46
|
+
}
|
|
47
|
+
if (definition === null || definition === void 0 ? void 0 : definition.timeoutSeconds) {
|
|
48
|
+
defineFunctionProperties.push(createParameter('timeoutSeconds', factory.createNumericLiteral(definition.timeoutSeconds)));
|
|
49
|
+
}
|
|
50
|
+
if (definition === null || definition === void 0 ? void 0 : definition.memoryMB) {
|
|
51
|
+
defineFunctionProperties.push(createParameter('memoryMB', factory.createNumericLiteral(definition.memoryMB)));
|
|
52
|
+
}
|
|
53
|
+
if ((_a = definition === null || definition === void 0 ? void 0 : definition.environment) === null || _a === void 0 ? void 0 : _a.Variables) {
|
|
54
|
+
defineFunctionProperties.push(createParameter('environment', factory.createObjectLiteralExpression(Object.entries(definition.environment.Variables).map(([key, value]) => {
|
|
55
|
+
if (key == 'API_KEY' && value.startsWith(`/amplify/${appId}/${backendEnvironmentName}`)) {
|
|
56
|
+
if (namedImports && namedImports['@aws-amplify/backend']) {
|
|
57
|
+
namedImports['@aws-amplify/backend'].add('secret');
|
|
58
|
+
}
|
|
59
|
+
else {
|
|
60
|
+
const namedImports = { '@aws-amplify/backend': new Set() };
|
|
61
|
+
namedImports['@aws-amplify/backend'].add('secret');
|
|
62
|
+
}
|
|
63
|
+
return factory.createPropertyAssignment(key, factory.createCallExpression(factory.createIdentifier('secret'), undefined, [factory.createStringLiteral('API_KEY')]));
|
|
64
|
+
}
|
|
65
|
+
else if (key == 'ENV') {
|
|
66
|
+
const envNameAssignment = createTemplateLiteral('', gen2BranchNameVariableName, '');
|
|
67
|
+
return createParameter(key, envNameAssignment);
|
|
68
|
+
}
|
|
69
|
+
return createParameter(key, factory.createStringLiteral(value));
|
|
70
|
+
}))));
|
|
71
|
+
}
|
|
72
|
+
const runtime = definition === null || definition === void 0 ? void 0 : definition.runtime;
|
|
73
|
+
if (runtime && runtime.includes('nodejs')) {
|
|
74
|
+
let nodeRuntime;
|
|
75
|
+
switch (runtime) {
|
|
76
|
+
case client_lambda_1.Runtime.nodejs16x:
|
|
77
|
+
nodeRuntime = 16;
|
|
78
|
+
break;
|
|
79
|
+
case client_lambda_1.Runtime.nodejs18x:
|
|
80
|
+
nodeRuntime = 18;
|
|
81
|
+
break;
|
|
82
|
+
case client_lambda_1.Runtime.nodejs20x:
|
|
83
|
+
nodeRuntime = 20;
|
|
84
|
+
break;
|
|
85
|
+
case 'nodejs22x':
|
|
86
|
+
case client_lambda_1.Runtime.nodejs22x:
|
|
87
|
+
nodeRuntime = 22;
|
|
88
|
+
break;
|
|
89
|
+
default:
|
|
90
|
+
throw new Error(`Unsupported nodejs runtime for function: ${runtime}`);
|
|
91
|
+
}
|
|
92
|
+
(0, node_assert_1.default)(nodeRuntime, 'Expected nodejs version to be set');
|
|
93
|
+
defineFunctionProperties.push(createParameter('runtime', factory.createNumericLiteral(nodeRuntime)));
|
|
94
|
+
}
|
|
95
|
+
if (definition === null || definition === void 0 ? void 0 : definition.schedule) {
|
|
96
|
+
const rawScheduleExpression = definition.schedule;
|
|
97
|
+
let scheduleExpression;
|
|
98
|
+
const startIndex = rawScheduleExpression.indexOf('(') + 1;
|
|
99
|
+
const endIndex = rawScheduleExpression.lastIndexOf(')');
|
|
100
|
+
const scheduleValue = startIndex > 0 && endIndex > startIndex ? rawScheduleExpression.slice(startIndex, endIndex) : undefined;
|
|
101
|
+
if (rawScheduleExpression === null || rawScheduleExpression === void 0 ? void 0 : rawScheduleExpression.startsWith('rate(')) {
|
|
102
|
+
const rateValue = scheduleValue;
|
|
103
|
+
if (rateValue) {
|
|
104
|
+
const [value, unit] = rateValue.split(' ');
|
|
105
|
+
const unitMap = {
|
|
106
|
+
minute: 'm',
|
|
107
|
+
minutes: 'm',
|
|
108
|
+
hour: 'h',
|
|
109
|
+
hours: 'h',
|
|
110
|
+
day: 'd',
|
|
111
|
+
days: 'd',
|
|
112
|
+
};
|
|
113
|
+
scheduleExpression = `every ${value}${unitMap[unit]}`;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
else if (rawScheduleExpression === null || rawScheduleExpression === void 0 ? void 0 : rawScheduleExpression.startsWith('cron(')) {
|
|
117
|
+
scheduleExpression = scheduleValue;
|
|
118
|
+
}
|
|
119
|
+
if (scheduleExpression) {
|
|
120
|
+
defineFunctionProperties.push(createParameter('schedule', factory.createStringLiteral(scheduleExpression)));
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
return defineFunctionProperties;
|
|
124
|
+
}
|
|
125
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/commands/gen2-migration/generate/generators/functions/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lambda.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/gen2-migration/generate/generators/functions/lambda.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,YAAY,CAAC;AAC5B,MAAM,MAAM,MAAM,GAAG;IACnB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAIF,eAAO,MAAM,sBAAsB,GAAI,UAAU,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,0BAWtE,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.createTriggersProperty = void 0;
|
|
7
|
+
const typescript_1 = __importDefault(require("typescript"));
|
|
8
|
+
const factory = typescript_1.default.factory;
|
|
9
|
+
const createTriggersProperty = (triggers) => {
|
|
10
|
+
return factory.createPropertyAssignment(factory.createIdentifier('triggers'), factory.createObjectLiteralExpression(Object.entries(triggers).map(([key, value]) => {
|
|
11
|
+
const functionName = value.source.split('/')[3];
|
|
12
|
+
return factory.createPropertyAssignment(factory.createIdentifier(key), factory.createIdentifier(functionName));
|
|
13
|
+
}), true));
|
|
14
|
+
};
|
|
15
|
+
exports.createTriggersProperty = createTriggersProperty;
|
|
16
|
+
//# sourceMappingURL=lambda.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lambda.js","sourceRoot":"","sources":["../../../../../../src/commands/gen2-migration/generate/generators/functions/lambda.ts"],"names":[],"mappings":";;;;;;AAAA,4DAA4B;AAK5B,MAAM,OAAO,GAAG,oBAAE,CAAC,OAAO,CAAC;AAEpB,MAAM,sBAAsB,GAAG,CAAC,QAAgC,EAAE,EAAE;IACzE,OAAO,OAAO,CAAC,wBAAwB,CACrC,OAAO,CAAC,gBAAgB,CAAC,UAAU,CAAC,EACpC,OAAO,CAAC,6BAA6B,CACnC,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,EAAE,EAAE;QAC5C,MAAM,YAAY,GAAG,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;QAChD,OAAO,OAAO,CAAC,wBAAwB,CAAC,OAAO,CAAC,gBAAgB,CAAC,GAAG,CAAC,EAAE,OAAO,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAC,CAAC;IACjH,CAAC,CAAC,EACF,IAAI,CACL,CACF,CAAC;AACJ,CAAC,CAAC;AAXW,QAAA,sBAAsB,0BAWjC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"access.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/gen2-migration/generate/generators/storage/access.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkC,MAAM,YAAY,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAc,MAAM,GAAG,CAAC;AAoB/C,eAAO,MAAM,iBAAiB,GAAI,gBAAgB,cAAc,KAAG,EAAE,CAAC,kBAqDrE,CAAC"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.getAccessPatterns = void 0;
|
|
7
|
+
const typescript_1 = __importDefault(require("typescript"));
|
|
8
|
+
const factory = typescript_1.default.factory;
|
|
9
|
+
const createAllowPattern = (allowIdentifier, userLevel, permissions) => {
|
|
10
|
+
return factory.createCallExpression(factory.createPropertyAccessExpression(allowIdentifier, factory.createIdentifier(`${userLevel}.to`)), undefined, [factory.createArrayLiteralExpression(permissions.map((p) => factory.createStringLiteral(p)))]);
|
|
11
|
+
};
|
|
12
|
+
const getAccessPatterns = (accessPatterns) => {
|
|
13
|
+
var _a, _b;
|
|
14
|
+
const accessIdentifier = factory.createIdentifier('access');
|
|
15
|
+
const allowIdentifier = factory.createIdentifier('allow');
|
|
16
|
+
const publicPathAccess = [];
|
|
17
|
+
const privatePathAccess = [];
|
|
18
|
+
const protectedPathAccess = [];
|
|
19
|
+
if (accessPatterns.guest && accessPatterns.guest.length) {
|
|
20
|
+
publicPathAccess.push(createAllowPattern(allowIdentifier, 'guest', (_a = accessPatterns.guest) !== null && _a !== void 0 ? _a : []));
|
|
21
|
+
}
|
|
22
|
+
if (accessPatterns.auth && accessPatterns.auth.length) {
|
|
23
|
+
const accessPattern = createAllowPattern(allowIdentifier, 'authenticated', (_b = accessPatterns.auth) !== null && _b !== void 0 ? _b : []);
|
|
24
|
+
publicPathAccess.push(accessPattern);
|
|
25
|
+
protectedPathAccess.push(accessPattern);
|
|
26
|
+
privatePathAccess.push(accessPattern);
|
|
27
|
+
}
|
|
28
|
+
if (accessPatterns.groups && Object.keys(accessPatterns.groups).length) {
|
|
29
|
+
Object.entries(accessPatterns.groups).forEach(([key, value]) => {
|
|
30
|
+
publicPathAccess.push(createAllowPattern(allowIdentifier, `groups(['${key}'])`, value));
|
|
31
|
+
privatePathAccess.push(createAllowPattern(allowIdentifier, `groups(['${key}'])`, value));
|
|
32
|
+
protectedPathAccess.push(createAllowPattern(allowIdentifier, `groups(['${key}'])`, value));
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
const publicPath = 'public/*';
|
|
36
|
+
const privatePath = 'private/{entity_id}/*';
|
|
37
|
+
const protectedPath = 'protected/{entity_id}/*';
|
|
38
|
+
const allowAssignments = [];
|
|
39
|
+
const createAccessPropertyAssignment = (bucketPath, accessArray) => factory.createPropertyAssignment(factory.createStringLiteral(bucketPath), factory.createArrayLiteralExpression(accessArray));
|
|
40
|
+
if (publicPathAccess.length) {
|
|
41
|
+
allowAssignments.push(createAccessPropertyAssignment(publicPath, publicPathAccess));
|
|
42
|
+
}
|
|
43
|
+
if (protectedPathAccess.length) {
|
|
44
|
+
allowAssignments.push(createAccessPropertyAssignment(protectedPath, protectedPathAccess));
|
|
45
|
+
}
|
|
46
|
+
if (privatePathAccess.length) {
|
|
47
|
+
allowAssignments.push(createAccessPropertyAssignment(privatePath, privatePathAccess));
|
|
48
|
+
}
|
|
49
|
+
const accessFunction = factory.createArrowFunction(undefined, undefined, [factory.createParameterDeclaration(undefined, undefined, allowIdentifier)], undefined, undefined, factory.createParenthesizedExpression(factory.createObjectLiteralExpression(allowAssignments, true)));
|
|
50
|
+
return factory.createPropertyAssignment(accessIdentifier, accessFunction);
|
|
51
|
+
};
|
|
52
|
+
exports.getAccessPatterns = getAccessPatterns;
|
|
53
|
+
//# sourceMappingURL=access.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"access.js","sourceRoot":"","sources":["../../../../../../src/commands/gen2-migration/generate/generators/storage/access.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import ts from 'typescript';
|
|
2
|
+
import { Lambda } from '../functions/lambda';
|
|
3
|
+
import type { BucketAccelerateStatus, BucketVersioningStatus, ServerSideEncryptionByDefault } from '@aws-sdk/client-s3';
|
|
4
|
+
export type S3TriggerDefinition = Record<string, never>;
|
|
5
|
+
export type Permission = 'read' | 'write' | 'create' | 'delete';
|
|
6
|
+
export type GroupPermissions<G extends readonly string[]> = {
|
|
7
|
+
[Key in G[number]]: Permission[];
|
|
8
|
+
};
|
|
9
|
+
export type StorageTriggerEvent = 'onDelete' | 'onUpload';
|
|
10
|
+
export type AccessPatterns = {
|
|
11
|
+
auth?: Permission[];
|
|
12
|
+
guest?: Permission[];
|
|
13
|
+
groups?: Record<string, Permission[]>;
|
|
14
|
+
};
|
|
15
|
+
export type ServerSideEncryptionConfiguration = {
|
|
16
|
+
serverSideEncryptionByDefault: ServerSideEncryptionByDefault;
|
|
17
|
+
bucketKeyEnabled: boolean;
|
|
18
|
+
};
|
|
19
|
+
export interface StorageRenderParameters {
|
|
20
|
+
bucketName?: string;
|
|
21
|
+
triggers?: Partial<Record<StorageTriggerEvent, Lambda>>;
|
|
22
|
+
accessPatterns?: AccessPatterns;
|
|
23
|
+
storageIdentifier?: string;
|
|
24
|
+
lambdas?: S3TriggerDefinition[];
|
|
25
|
+
bucketEncryptionAlgorithm?: ServerSideEncryptionConfiguration;
|
|
26
|
+
dynamoTables?: import('../../adapters/storage').DynamoDBTableDefinition[];
|
|
27
|
+
accelerateConfiguration?: BucketAccelerateStatus;
|
|
28
|
+
versioningConfiguration?: BucketVersioningStatus;
|
|
29
|
+
}
|
|
30
|
+
export declare const renderStorage: (storageParams?: StorageRenderParameters) => ts.NodeArray<ts.Node>;
|
|
31
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/gen2-migration/generate/generators/storage/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAA8C,MAAM,YAAY,CAAC;AAGxE,OAAO,EAA0B,MAAM,EAAE,MAAM,qBAAqB,CAAC;AACrE,OAAO,KAAK,EAAE,sBAAsB,EAAE,sBAAsB,EAAE,6BAA6B,EAAE,MAAM,oBAAoB,CAAC;AAKxH,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;AACxD,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAChE,MAAM,MAAM,gBAAgB,CAAC,CAAC,SAAS,SAAS,MAAM,EAAE,IAAI;KACzD,GAAG,IAAI,CAAC,CAAC,MAAM,CAAC,GAAG,UAAU,EAAE;CACjC,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG,UAAU,GAAG,UAAU,CAAC;AAC1D,MAAM,MAAM,cAAc,GAAG;IAC3B,IAAI,CAAC,EAAE,UAAU,EAAE,CAAC;IACpB,KAAK,CAAC,EAAE,UAAU,EAAE,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,EAAE,CAAC,CAAC;CACvC,CAAC;AAEF,MAAM,MAAM,iCAAiC,GAAG;IAC9C,6BAA6B,EAAE,6BAA6B,CAAC;IAC7D,gBAAgB,EAAE,OAAO,CAAC;CAC3B,CAAC;AAEF,MAAM,WAAW,uBAAuB;IACtC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,CAAC,CAAC;IACxD,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,OAAO,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAChC,yBAAyB,CAAC,EAAE,iCAAiC,CAAC;IAE9D,YAAY,CAAC,EAAE,OAAO,wBAAwB,EAAE,uBAAuB,EAAE,CAAC;IAC1E,uBAAuB,CAAC,EAAE,sBAAsB,CAAC;IACjD,uBAAuB,CAAC,EAAE,sBAAsB,CAAC;CAClD;AAYD,eAAO,MAAM,aAAa,GAAI,gBAAe,uBAA4B,0BA+DxE,CAAC"}
|