@izara_project/izara-core-generate-service-code 1.0.52 → 1.0.54
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/index.js +11 -17
- package/package.json +8 -8
- package/src/codeGenerators/app/initial_setup/InitialSetupGenerator.js +149 -0
- package/src/codeGenerators/app/initial_setup/templates/InitialSetup_LambdaRole.ejs +43 -0
- package/src/codeGenerators/app/initial_setup/templates/InitialSetup_SnsService.ejs +15 -0
- package/src/codeGenerators/app/initial_setup/templates/InitialSetup_TableName.ejs +9 -0
- package/src/codeGenerators/app/sls_yaml/FindDataYamlGenerator.js +23 -0
- package/src/codeGenerators/app/sls_yaml/FunctionYamlGenerator.js +230 -0
- package/src/codeGenerators/app/sls_yaml/ProcessLogicalYamlGenerator.js +21 -0
- package/src/codeGenerators/app/sls_yaml/RoleNameConfigGenerator.js +83 -0
- package/src/codeGenerators/app/sls_yaml/SharedResourceYamlGenerator.js +471 -0
- package/src/codeGenerators/app/sls_yaml/__tests__/SharedResourceYamlGenerator.test.js +176 -0
- package/src/codeGenerators/app/sls_yaml/_policy/PolicyEmitter.js +45 -0
- package/src/codeGenerators/app/sls_yaml/_policy/PolicyRegistry.js +94 -0
- package/src/codeGenerators/app/sls_yaml/_policy/__tests__/PolicyEmitter.test.js +55 -0
- package/src/codeGenerators/app/sls_yaml/_policy/__tests__/PolicyRegistry.test.js +48 -0
- package/src/codeGenerators/app/sls_yaml/_policy/templates/ManagedPolicy_Yaml.ejs +22 -0
- package/src/codeGenerators/app/sls_yaml/renderYamlTemplate.js +13 -0
- package/src/codeGenerators/app/sls_yaml/templates/FindData_Yaml.ejs +10 -0
- package/src/codeGenerators/app/sls_yaml/templates/FunctionYaml_Api.ejs +21 -0
- package/src/codeGenerators/app/sls_yaml/templates/FunctionYaml_EventBridge.ejs +14 -0
- package/src/codeGenerators/app/sls_yaml/templates/FunctionYaml_Inv.ejs +6 -0
- package/src/codeGenerators/app/sls_yaml/templates/FunctionYaml_Sqs.ejs +11 -0
- package/src/codeGenerators/app/sls_yaml/templates/FunctionYaml_Wbs.ejs +11 -0
- package/src/codeGenerators/app/sls_yaml/templates/ProcessLogical_Yaml.ejs +32 -0
- package/src/{generators/fromObjectSchema/roleNameConfig/templateYaml.ejs → codeGenerators/app/sls_yaml/templates/RoleNameConfig_Yaml.ejs} +1 -1
- package/src/codeGenerators/app/sls_yaml/templates/SharedResource_Yaml.ejs +39 -0
- package/src/codeGenerators/app/src/generatedCode/FindData/FindDataGenerator.js +238 -0
- package/src/codeGenerators/app/src/generatedCode/FindData/templates/FindData_HdrSqs.ejs +87 -0
- package/src/codeGenerators/app/src/generatedCode/FindData/templates/FindData_Main.ejs +108 -0
- package/src/codeGenerators/app/src/generatedCode/FindData/templates/GetByStorage/getByDynamo.ejs +32 -0
- package/src/{generators/fromObjectSchema/findData → codeGenerators/app/src/generatedCode/FindData/templates}/GetByStorage/getByGraph.ejs +5 -5
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowEndpoints/EndpointsGenerator.js +119 -0
- package/src/{generators/fromObjectSchema/endpoint/main/beforeLogical/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowEndpoints/templates/FlowEndpointBeforeLogical_Main.ejs} +11 -16
- package/src/{generators/fromObjectSchema/endpoint/main/create/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowEndpoints/templates/crud/CreateEndpoint_Main.ejs} +6 -6
- package/src/{generators/fromObjectSchema/endpoint/main/delete/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowEndpoints/templates/crud/DeleteEndpoint_Main.ejs} +5 -5
- package/src/{generators/fromObjectSchema/endpoint/main/get/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowEndpoints/templates/crud/GetEndpoint_Main.ejs} +1 -1
- package/src/{generators/fromObjectSchema/endpoint/main/update/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowEndpoints/templates/crud/UpdateEndpoint_Main.ejs} +5 -5
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowRbac/RbacFlowGenerator.js +112 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowRbac/templates/rbac/CreateRolePermissions.ejs +135 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowRbac/templates/rbac/CreateTargetRole.ejs +131 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowRbac/templates/rbac/CreateUserRole.ejs +150 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowRbac/templates/rbac/DeleteRolePermissions.ejs +132 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowRbac/templates/rbac/DeleteTargetRole.ejs +132 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowRbac/templates/rbac/DeleteUserFromRole.ejs +150 -0
- package/src/{generators/fromFlowSchema/events/s3/flowSchemaMainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowRbac/templates/rbac/ListRolePermissions.ejs} +70 -39
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowRbac/templates/rbac/ListTargetRole.ejs +122 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowRbac/templates/rbac/ListUserInRoles.ejs +117 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowRelationshipEndpoints/RelationshipFlowGenerator.js +131 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowSchemas/StatusFieldGenerator.js +116 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowSchemas/WebSocketGenerator.js +124 -0
- package/src/{generators/fromFlowSchema/events/ownTopic/flowSchema/handler/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/endpoint/FlowEndpoint_HdrWbs.ejs} +6 -6
- package/src/{generators/fromFlowSchema/flowSchemaMainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/endpoint/FlowEndpoint_Main.ejs} +31 -25
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/endpoint/FlowEntryPoint_Main.ejs +38 -0
- package/src/{generators/fromFlowSchema/events/ownTopic/flowSchema/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/endpoint/FlowMain_Wbs.ejs} +20 -20
- package/src/{generators/fromFlowSchema/events/s3/upload/confirmReserved/handler/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/s3/ConfirmReserved_HdrSqs.ejs} +5 -5
- package/src/{generators/fromFlowSchema/events/s3/upload/createObject/handler/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/s3/CreateObject_HdrWbs.ejs} +2 -2
- package/src/{generators/fromFlowSchema/events/s3/upload/preSignUrl/createPreSignUrl/handler/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/s3/CreatePreSignUrl_HdrSqs.ejs} +5 -5
- package/src/{generators/fromFlowSchema/events/s3/upload/preSignUrl/createPreSignUrl/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/s3/CreatePreSignUrl_Main.ejs} +7 -7
- package/src/codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/s3/FlowHandler_HdrS3.ejs +66 -0
- package/src/{generators/fromFlowSchema/events/s3/upload/preSignUrl/reservedLimit/handler/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/s3/ReservedLimit_HdrSqs.ejs} +5 -5
- package/src/{generators/fromFlowSchema/statusTypes/statusField/handler/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/statusField/CompleteStatusField_HdrSqs.ejs} +0 -2
- package/src/{generators/fromObjectSchema/endpointComplete/create/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/step/FlowEndpointComplete_Main.ejs} +26 -24
- package/src/{generators/fromFlowSchema/flowStep/noPlugInHook/templateMain.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/step/FlowStep_Main.ejs} +13 -12
- package/src/{generators/fromFlowSchema/webSocket/webSocketComplete/functionYaml/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/webSocket/ProcessWebSocketFlow_Yaml.ejs} +5 -5
- package/src/{generators/fromFlowSchema/webSocket/webSocketComplete/sqs/templateSub.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/webSocket/ProcessWebSocketSub_Yaml.ejs} +1 -1
- package/src/{generators/fromFlowSchema/webSocket/webSocketComplete/handler/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/webSocket/ProcessWebSocket_HdrSqs.ejs} +1 -20
- package/src/{generators/fromFlowSchema/webSocket/webSocketComplete/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/webSocket/ProcessWebSocket_Main.ejs} +1 -21
- package/src/{generators/fromFlowSchema/webSocket/webSocket/connect/handler/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/webSocket/WebSocketConnect_Main.ejs} +1 -21
- package/src/{generators/fromFlowSchema/webSocket/webSocket/connect/functionYaml/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/webSocket/WebSocketConnect_Yaml.ejs} +1 -1
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/events/BaseSqsHandler.js +67 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/events/eventBridge.js +25 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/events/extTopic.js +6 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/events/lambdaSyncApi.js +52 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/events/lambdaSyncInv.js +52 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/events/ownTopic.js +42 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/events/registry.js +15 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/events/s3.js +56 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/events/s3Components/ConfirmAfterUploadS3Generator.js +46 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/events/s3Components/CreateObjectGenerator.js +50 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/events/s3Components/CreatePreSignUrlGenerator.js +48 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/events/s3Components/ProcessAfterUploadS3Generator.js +49 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/events/s3Components/ReservedLimitGenerator.js +47 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/handlers/FlowHandler_HdrApi.ejs +51 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/handlers/FlowHandler_HdrInv.ejs +45 -0
- package/src/{generators/fromPlugIn/firstFlowStep/handler/templateSqs.ejs → codeGenerators/app/src/generatedCode/Flow/_shared/handlers/FlowHandler_HdrSqs.ejs} +30 -9
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/shared/eventTypes.js +23 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/shared/flowClassifier.js +49 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/shared/flowEntryPointBase.js +102 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/shared/flowMainFunctionBase.js +160 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/shared/flowNaming.js +21 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/shared/flowSelection.js +20 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/shared/flowStepBase.js +229 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/shared/flowStepNormalizer.js +28 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/shared/flowValidator.js +144 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/shared/registry.js +7 -0
- package/src/codeGenerators/app/src/generatedCode/Flow/_shared/shared/triggerCacheBase.js +183 -0
- package/src/{generators/fromFlowSchema/statusTypes/triggerCache/checkTriggerCacheComplete/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/_shared/triggerCache/CheckTriggerCache_Main.ejs} +0 -2
- package/src/{generators/fromObjectSchema/relationship/create/action/sns-in-sqs/sqsTemplate.ejs → codeGenerators/app/src/generatedCode/Flow/_shared/triggerCache/TriggerCacheQueue_Yaml.ejs} +6 -10
- package/src/{generators/fromFlowSchema/statusTypes/triggerCache/triggerCacheComplete/functionYaml/sqs/template.ejs → codeGenerators/app/src/generatedCode/Flow/_shared/yaml/SharedFunctionSqs_Yaml.ejs} +1 -5
- package/src/codeGenerators/app/src/generatedCode/ProcessLogical/ProcessLogicalGenerator.js +29 -0
- package/src/{generators/fromObjectSchema/processLogicalPagination/handler/sqs/template.ejs → codeGenerators/app/src/generatedCode/ProcessLogical/templates/PaginateProcessLogical_HdrSqs.ejs} +1 -1
- package/src/{generators/fromObjectSchema/processLogicalPagination/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/ProcessLogical/templates/PaginateProcessLogical_Main.ejs} +10 -10
- package/src/{generators/fromObjectSchema/processLogical/handler/template.ejs → codeGenerators/app/src/generatedCode/ProcessLogical/templates/ProcessLogical_HdrSqs.ejs} +1 -1
- package/src/{generators/fromObjectSchema/processLogical/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/ProcessLogical/templates/ProcessLogical_Main.ejs} +16 -16
- package/src/codeGenerators/app/src/generatedCode/SystemFlowSchemas/RegisterGenerator.js +150 -0
- package/src/{generators/fromFlowSchema/register/wbs/handler/template.ejs → codeGenerators/app/src/generatedCode/SystemFlowSchemas/templates/register/Register_HdrWbs.ejs} +1 -5
- package/src/codeGenerators/app/src/generatedCode/libs/ConstsGenerator.js +28 -0
- package/src/codeGenerators/app/src/generatedCode/libs/GenerateCodeLibsGenerator.js +28 -0
- package/src/codeGenerators/app/src/generatedCode/libs/templates/Consts.ejs +448 -0
- package/src/{generators/fromFlowSchema/shared/template.ejs → codeGenerators/app/src/generatedCode/libs/templates/GenerateCodeLibs.ejs} +38 -29
- package/src/codeGenerators/resource/sls_yaml/DynamoDBGenerator.js +96 -0
- package/src/codeGenerators/resource/sls_yaml/FlowOutGenerator.js +73 -0
- package/src/codeGenerators/resource/sls_yaml/FlowResourceYamlGenerator.js +199 -0
- package/src/codeGenerators/resource/sls_yaml/templates/DynamoDBTable_Yaml.ejs +20 -0
- package/src/{generators/fromObjectSchema/relationship/create/complete/sns-out/template.ejs → codeGenerators/resource/sls_yaml/templates/FlowOut_Yaml.ejs} +3 -5
- package/src/codeGenerators/resource/sls_yaml/templates/SystemDynamoDB_Yaml.ejs +138 -0
- package/src/{generators/fromObjectSchema/relationship/update/complete/sns-in-sqs/template.ejs → codeGenerators/resource/sls_yaml/templates/crud/ResourceSqsYaml.ejs} +6 -10
- package/src/{generators/fromObjectSchema/endpoint/resourceTemplate.ejs → codeGenerators/resource/sls_yaml/templates/crud/ResourceYaml.ejs} +9 -9
- package/src/core/renderTemplateFile.js +22 -0
- package/src/core/validate.js +161 -0
- package/src/generate.js +130 -0
- package/src/generateCode.js +247 -51
- package/src/generateIntTest.js +142 -0
- package/src/generateResourceIntTest.js +77 -0
- package/src/generateResources/IntTest/consts.js +36 -0
- package/src/generateResources/IntTest/generateResources/generateResources.js +11 -14
- package/src/generateResources/IntTest/generateTests/events/events.js +1 -4
- package/src/generateResources/IntTest/generateTests/generateTemplate.js +15 -16
- package/src/generateResources/IntTest/generateTests/pathIntTest/pathIntTest.js +6 -2
- package/src/generateResources/IntTest/generateTests/tests/tests.js +2 -6
- package/src/generateResources/IntTest/libs/libs.js +5 -5
- package/src/generateSchema.js +63 -0
- package/src/intTestGeneratorShared.js +36 -0
- package/src/parsers/flowSchemaParser.js +106 -0
- package/src/parsers/objectSchemaParser.js +39 -0
- package/src/parsers/relationshipSchemaParser.js +51 -0
- package/src/schemaGenerators/app/src/schemas/FlowSchemas/FlowSchemaGenerator.js +151 -0
- package/src/schemaGenerators/app/src/schemas/FlowSchemas/RbacFlowSchemaGenerator.js +84 -0
- package/src/schemaGenerators/app/src/schemas/FlowSchemas/RelationshipFlowSchemaGenerator.js +89 -0
- package/src/schemaGenerators/app/src/schemas/FlowSchemas/templates/DynamicFlowSchemaTemplate.ejs +39 -0
- package/src/schemaGenerators/app/src/schemas/FlowSchemas/templates/DynamicRbacFlowSchemaTemplate.ejs +19 -0
- package/src/schemaGenerators/app/src/schemas/FlowSchemas/templates/RelationshipFlowSchemaTemplate.ejs +32 -0
- package/src/schemaGenerators/app/src/schemas/ObjectSchemas/AttributeTreeSchemaGenerator.js +124 -0
- package/src/schemaGenerators/app/src/schemas/ObjectSchemas/PropertyValueSchemaGenerator.js +119 -0
- package/src/schemaGenerators/app/src/schemas/ObjectSchemas/templates/DynamicAttributeTreeManagerSchemaTemplate.ejs +14 -0
- package/src/schemaGenerators/app/src/schemas/ObjectSchemas/templates/DynamicAttributeTreeStandardSchemaTemplate.ejs +13 -0
- package/src/schemaGenerators/app/src/schemas/ObjectSchemas/templates/DynamicPropertyValueSchemaTemplate.ejs +15 -0
- package/src/schemaGenerators/app/src/schemas/RelationshipSchemas/AttributeTreeRelationshipSchemaGenerator.js +149 -0
- package/src/schemaGenerators/app/src/schemas/RelationshipSchemas/PropertyValueRelationshipSchemaGenerator.js +143 -0
- package/src/schemaGenerators/app/src/schemas/RelationshipSchemas/templates/DynamicAttributeTreeRelationshipSchemaTemplate.ejs +7 -0
- package/src/schemaGenerators/app/src/schemas/RelationshipSchemas/templates/DynamicPropertyValueRelationshipSchemaTemplate.ejs +7 -0
- package/src/schemaGenerators/app/src/schemas/SystemTextSchemas/SystemTextGenerator.js +102 -0
- package/src/{generators/fromObjectSchema/textTag/systemText/template.ejs → schemaGenerators/app/src/schemas/SystemTextSchemas/templates/SystemText_Template.ejs} +1 -1
- package/REFACTOR_PLAN.md +0 -172
- package/fix_array.js +0 -11
- package/fix_imports.js +0 -41
- package/fix_upper.js +0 -38
- package/src/IntTestConfig.js +0 -23
- package/src/generateResources/IntTest/upload/uploadIntTest.js +0 -96
- package/src/generateResources.js +0 -123
- package/src/generateTests.js +0 -139
- package/src/generators/fromExternalService/externalServiceComponent/functionNameConfig/functionNameConfig.js +0 -182
- package/src/generators/fromExternalService/externalServiceComponent/functionNameConfig/template.ejs +0 -14
- package/src/generators/fromExternalService/externalServiceComponent/functionNameConfig/templateIntTesting.ejs +0 -31
- package/src/generators/fromExternalService/externalServiceComponent/functionNameConfig/templateYaml.ejs +0 -10
- package/src/generators/fromExternalService/externalServiceComponent/index.js +0 -69
- package/src/generators/fromExternalService/externalServiceComponent/lambdaRole/lambdaRole.js +0 -250
- package/src/generators/fromExternalService/externalServiceComponent/lambdaRole/template.ejs +0 -58
- package/src/generators/fromExternalService/externalServiceComponent/snsTopicSubscriptions/snsTopicSubscriptions.js +0 -155
- package/src/generators/fromExternalService/externalServiceComponent/snsTopicSubscriptions/template.ejs +0 -33
- package/src/generators/fromExternalService/externalServiceComponent/tableNameConfig/tableNameConfig.js +0 -90
- package/src/generators/fromExternalService/externalServiceComponent/tableNameConfig/template.ejs +0 -43
- package/src/generators/fromExternalService/index.js +0 -65
- package/src/generators/fromFlowSchema/env/template.ejs +0 -5
- package/src/generators/fromFlowSchema/env/yaml.js +0 -73
- package/src/generators/fromFlowSchema/events/eventBridge/functionYaml/template.ejs +0 -14
- package/src/generators/fromFlowSchema/events/eventBridge/functionYaml/yaml.js +0 -168
- package/src/generators/fromFlowSchema/events/eventBridge/handler/inv/inv.js +0 -74
- package/src/generators/fromFlowSchema/events/eventBridge/handler/inv/request.json +0 -7
- package/src/generators/fromFlowSchema/events/eventBridge/handler/inv/template.ejs +0 -53
- package/src/generators/fromFlowSchema/events/eventBridge/index.js +0 -16
- package/src/generators/fromFlowSchema/events/eventBridge/mainFunction/main.js +0 -77
- package/src/generators/fromFlowSchema/events/eventBridge/mainFunction/request.json +0 -5
- package/src/generators/fromFlowSchema/events/eventBridge/mainFunction/template.ejs +0 -59
- package/src/generators/fromFlowSchema/events/extTopic/index.js +0 -18
- package/src/generators/fromFlowSchema/events/extTopic/process/functionYaml/template.ejs +0 -13
- package/src/generators/fromFlowSchema/events/extTopic/process/functionYaml/yaml.js +0 -159
- package/src/generators/fromFlowSchema/events/extTopic/process/handler/handler.js +0 -67
- package/src/generators/fromFlowSchema/events/extTopic/process/handler/template.ejs +0 -101
- package/src/generators/fromFlowSchema/events/extTopic/sns-in-sqs/snsInSqs.js +0 -79
- package/src/generators/fromFlowSchema/events/extTopic/sns-in-sqs/template.ejs +0 -44
- package/src/generators/fromFlowSchema/events/extTopic/sns-out/snsOut.js +0 -76
- package/src/generators/fromFlowSchema/events/lambdaSyncApi/functionYaml/template.ejs +0 -19
- package/src/generators/fromFlowSchema/events/lambdaSyncApi/functionYaml/yaml.js +0 -88
- package/src/generators/fromFlowSchema/events/lambdaSyncApi/handler/handler.js +0 -68
- package/src/generators/fromFlowSchema/events/lambdaSyncApi/handler/template.ejs +0 -84
- package/src/generators/fromFlowSchema/events/lambdaSyncApi/index.js +0 -14
- package/src/generators/fromFlowSchema/events/lambdaSyncInv/functionYaml/template.ejs +0 -6
- package/src/generators/fromFlowSchema/events/lambdaSyncInv/functionYaml/yaml.js +0 -75
- package/src/generators/fromFlowSchema/events/lambdaSyncInv/handler/handler.js +0 -64
- package/src/generators/fromFlowSchema/events/lambdaSyncInv/handler/template.ejs +0 -52
- package/src/generators/fromFlowSchema/events/lambdaSyncInv/index.js +0 -14
- package/src/generators/fromFlowSchema/events/ownTopic/endpoint/functionYaml/template.ejs +0 -10
- package/src/generators/fromFlowSchema/events/ownTopic/endpoint/functionYaml/yaml.js +0 -178
- package/src/generators/fromFlowSchema/events/ownTopic/endpoint/handler/DsqHandlerTemplate.ejs +0 -105
- package/src/generators/fromFlowSchema/events/ownTopic/endpoint/handler/SqsHandlerTemplate.ejs +0 -87
- package/src/generators/fromFlowSchema/events/ownTopic/endpoint/handler/handler.js +0 -93
- package/src/generators/fromFlowSchema/events/ownTopic/flowSchema/functionYaml/template.ejs +0 -11
- package/src/generators/fromFlowSchema/events/ownTopic/flowSchema/functionYaml/yaml.js +0 -127
- package/src/generators/fromFlowSchema/events/ownTopic/flowSchema/handler/handler.js +0 -65
- package/src/generators/fromFlowSchema/events/ownTopic/flowSchema/mainFunction/main.js +0 -64
- package/src/generators/fromFlowSchema/events/ownTopic/index.js +0 -32
- package/src/generators/fromFlowSchema/events/ownTopic/sns-in/snsIn.js +0 -108
- package/src/generators/fromFlowSchema/events/ownTopic/sns-out/snsOut.js +0 -77
- package/src/generators/fromFlowSchema/events/registry.js +0 -6
- package/src/generators/fromFlowSchema/events/s3/flowSchemaMainFunction/main.js +0 -121
- package/src/generators/fromFlowSchema/events/s3/flowSchemaMainFunction/templateByStatusType/statusFieldTemplate.ejs +0 -30
- package/src/generators/fromFlowSchema/events/s3/flowSchemaMainFunction/templateByStatusType/storedCacheTemplate.ejs +0 -26
- package/src/generators/fromFlowSchema/events/s3/flowSchemaMainFunction/templateByStatusType/triggerCacheTemplate.ejs +0 -44
- package/src/generators/fromFlowSchema/events/s3/index.js +0 -81
- package/src/generators/fromFlowSchema/events/s3/upload/confirmReserved/functionYaml/template.ejs +0 -13
- package/src/generators/fromFlowSchema/events/s3/upload/confirmReserved/functionYaml/yaml.js +0 -140
- package/src/generators/fromFlowSchema/events/s3/upload/confirmReserved/handler/handler.js +0 -65
- package/src/generators/fromFlowSchema/events/s3/upload/confirmReserved/mainFunction/main.js +0 -54
- package/src/generators/fromFlowSchema/events/s3/upload/confirmReserved/queue/queue.js +0 -63
- package/src/generators/fromFlowSchema/events/s3/upload/confirmReserved/queue/template.ejs +0 -42
- package/src/generators/fromFlowSchema/events/s3/upload/createObject/functionYaml/template.ejs +0 -16
- package/src/generators/fromFlowSchema/events/s3/upload/createObject/functionYaml/yaml.js +0 -133
- package/src/generators/fromFlowSchema/events/s3/upload/createObject/handler/handler.js +0 -66
- package/src/generators/fromFlowSchema/events/s3/upload/createObject/mainFunction/main.js +0 -65
- package/src/generators/fromFlowSchema/events/s3/upload/createObjectComplete/functionYaml/template.ejs +0 -13
- package/src/generators/fromFlowSchema/events/s3/upload/createObjectComplete/functionYaml/yaml.js +0 -139
- package/src/generators/fromFlowSchema/events/s3/upload/createObjectComplete/handler/handler.js +0 -68
- package/src/generators/fromFlowSchema/events/s3/upload/createObjectComplete/handler/template.ejs +0 -99
- package/src/generators/fromFlowSchema/events/s3/upload/createObjectComplete/mainFunction/main.js +0 -65
- package/src/generators/fromFlowSchema/events/s3/upload/createObjectComplete/mainFunction/template.ejs +0 -82
- package/src/generators/fromFlowSchema/events/s3/upload/createObjectComplete/sns-sqs/snsSqs.js +0 -70
- package/src/generators/fromFlowSchema/events/s3/upload/createObjectComplete/sns-sqs/template.ejs +0 -46
- package/src/generators/fromFlowSchema/events/s3/upload/preSignUrl/createPreSignUrl/functionYaml/template.ejs +0 -14
- package/src/generators/fromFlowSchema/events/s3/upload/preSignUrl/createPreSignUrl/functionYaml/yaml.js +0 -157
- package/src/generators/fromFlowSchema/events/s3/upload/preSignUrl/createPreSignUrl/handler/handler.js +0 -65
- package/src/generators/fromFlowSchema/events/s3/upload/preSignUrl/createPreSignUrl/mainFunction/main.js +0 -64
- package/src/generators/fromFlowSchema/events/s3/upload/preSignUrl/createPreSignUrl/queue/queue.js +0 -63
- package/src/generators/fromFlowSchema/events/s3/upload/preSignUrl/createPreSignUrl/queue/template.ejs +0 -42
- package/src/generators/fromFlowSchema/events/s3/upload/preSignUrl/reservedLimit/functionYaml/template.ejs +0 -10
- package/src/generators/fromFlowSchema/events/s3/upload/preSignUrl/reservedLimit/functionYaml/yaml.js +0 -164
- package/src/generators/fromFlowSchema/events/s3/upload/preSignUrl/reservedLimit/handler/handler.js +0 -66
- package/src/generators/fromFlowSchema/events/s3/upload/preSignUrl/reservedLimit/mainFunction/main.js +0 -59
- package/src/generators/fromFlowSchema/events/s3/upload/preSignUrl/reservedLimit/sqs/sqs.js +0 -67
- package/src/generators/fromFlowSchema/events/s3/upload/preSignUrl/reservedLimit/sqs/template.ejs +0 -50
- package/src/generators/fromFlowSchema/events/s3/upload/processFile/functionYml/HdrS3/template.ejs +0 -21
- package/src/generators/fromFlowSchema/events/s3/upload/processFile/functionYml/HdrS3/yaml.js +0 -156
- package/src/generators/fromFlowSchema/events/s3/upload/processFile/handler/handlerS3/handlerS3.js +0 -49
- package/src/generators/fromFlowSchema/events/s3/upload/processFile/handler/handlerS3/template.ejs +0 -50
- package/src/generators/fromFlowSchema/events/s3/upload/processFile/mainFunction/ProcessCsvtemplate.ejs +0 -182
- package/src/generators/fromFlowSchema/events/s3/upload/processFile/mainFunction/main.js +0 -49
- package/src/generators/fromFlowSchema/events/s3/upload/processFile/queue/dsqTemplatePath.ejs +0 -32
- package/src/generators/fromFlowSchema/events/s3/upload/processFile/queue/queue.js +0 -77
- package/src/generators/fromFlowSchema/events/s3/upload/processFile/queue/s3Template.ejs +0 -56
- package/src/generators/fromFlowSchema/events/s3/upload/relate/S3/s3.js +0 -61
- package/src/generators/fromFlowSchema/events/s3/upload/relate/S3/template.ejs +0 -13
- package/src/generators/fromFlowSchema/events/s3/upload/relate/sns-out/snsOut.js +0 -70
- package/src/generators/fromFlowSchema/events/s3/websocket/dynamoDb/ReservedTableData.js +0 -69
- package/src/generators/fromFlowSchema/flowSchemaMainFunction/main.js +0 -123
- package/src/generators/fromFlowSchema/flowSchemaMainFunction/templateByStatusType/statusFieldTemplate.ejs +0 -30
- package/src/generators/fromFlowSchema/flowSchemaMainFunction/templateByStatusType/storedCacheTemplate.ejs +0 -26
- package/src/generators/fromFlowSchema/flowSchemaMainFunction/templateByStatusType/triggerCacheTemplate.ejs +0 -44
- package/src/generators/fromFlowSchema/flowStep/afterPluginHook/handler/templateDsq.ejs +0 -151
- package/src/generators/fromFlowSchema/flowStep/afterPluginHook/handler/templateSqs.ejs +0 -89
- package/src/generators/fromFlowSchema/flowStep/afterPluginHook/templateMain.ejs +0 -93
- package/src/generators/fromFlowSchema/flowStep/afterPluginHook/templateResource.ejs +0 -91
- package/src/generators/fromFlowSchema/flowStep/afterPluginHook/templateYaml.ejs +0 -47
- package/src/generators/fromFlowSchema/flowStep/firstFlowStep/templateHandler.ejs +0 -95
- package/src/generators/fromFlowSchema/flowStep/firstFlowStep/templateMain.ejs +0 -95
- package/src/generators/fromFlowSchema/flowStep/firstFlowStep/templateResource.ejs +0 -56
- package/src/generators/fromFlowSchema/flowStep/firstFlowStep/templateYaml.ejs +0 -23
- package/src/generators/fromFlowSchema/flowStep/flowStep.js +0 -515
- package/src/generators/fromFlowSchema/flowStep/noPlugInHook/templateHandler.ejs +0 -95
- package/src/generators/fromFlowSchema/flowStep/noPlugInHook/templateResource.ejs +0 -52
- package/src/generators/fromFlowSchema/flowStep/noPlugInHook/templateYaml.ejs +0 -23
- package/src/generators/fromFlowSchema/index.js +0 -213
- package/src/generators/fromFlowSchema/register/complete/functionYaml/template.ejs +0 -23
- package/src/generators/fromFlowSchema/register/complete/functionYaml/yaml.js +0 -127
- package/src/generators/fromFlowSchema/register/complete/handler/handler.js +0 -61
- package/src/generators/fromFlowSchema/register/complete/mainFunction/main.js +0 -53
- package/src/generators/fromFlowSchema/register/dynamoDB/register.js +0 -74
- package/src/generators/fromFlowSchema/register/index.js +0 -50
- package/src/generators/fromFlowSchema/register/sns-in/snsIn.js +0 -59
- package/src/generators/fromFlowSchema/register/sns-in/template.ejs +0 -42
- package/src/generators/fromFlowSchema/register/subscriptionOutAll/subscriptionOutAll.js +0 -84
- package/src/generators/fromFlowSchema/register/subscriptionOutAll/template.ejs +0 -10
- package/src/generators/fromFlowSchema/register/wbs/functionYaml/template.ejs +0 -11
- package/src/generators/fromFlowSchema/register/wbs/functionYaml/yaml.js +0 -114
- package/src/generators/fromFlowSchema/register/wbs/handler/handler.js +0 -63
- package/src/generators/fromFlowSchema/register/wbs/mainFunction/main.js +0 -54
- package/src/generators/fromFlowSchema/shared/wsCodeLibs.js +0 -49
- package/src/generators/fromFlowSchema/statusTypes/registry.js +0 -2
- package/src/generators/fromFlowSchema/statusTypes/statusField/functionYaml/template.ejs +0 -18
- package/src/generators/fromFlowSchema/statusTypes/statusField/functionYaml/yaml.js +0 -169
- package/src/generators/fromFlowSchema/statusTypes/statusField/handler/handler.js +0 -68
- package/src/generators/fromFlowSchema/statusTypes/statusField/index.js +0 -22
- package/src/generators/fromFlowSchema/statusTypes/statusField/mainFunction/main.js +0 -67
- package/src/generators/fromFlowSchema/statusTypes/statusField/sns/sns.js +0 -66
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/checkTriggerCacheComplete/functionYaml/template.ejs +0 -18
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/checkTriggerCacheComplete/functionYaml/yaml.js +0 -154
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/checkTriggerCacheComplete/handler/handler.js +0 -73
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/checkTriggerCacheComplete/mainFunction/main.js +0 -75
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/index.js +0 -41
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/processTriggerCache/functionYaml/template.ejs +0 -18
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/processTriggerCache/functionYaml/yaml.js +0 -159
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/processTriggerCache/handler/handler.js +0 -74
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/processTriggerCache/mainFunction/main.js +0 -68
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/triggerCacheComplete/functionYaml/dsq/dsq.js +0 -148
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/triggerCacheComplete/functionYaml/dsq/template.ejs +0 -17
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/triggerCacheComplete/functionYaml/sqs/sqs.js +0 -148
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/triggerCacheComplete/handler/dsq/dsq.js +0 -69
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/triggerCacheComplete/handler/sqs/sqs.js +0 -69
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/triggerCacheComplete/mainFunction/main.js +0 -72
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/triggerCacheQueue/queue.js +0 -97
- package/src/generators/fromFlowSchema/statusTypes/triggerCache/triggerCacheQueue/template.ejs +0 -46
- package/src/generators/fromFlowSchema/webSocket/index.js +0 -39
- package/src/generators/fromFlowSchema/webSocket/webSocket/connect/functionYaml/yaml.js +0 -89
- package/src/generators/fromFlowSchema/webSocket/webSocket/connect/handler/handler.js +0 -55
- package/src/generators/fromFlowSchema/webSocket/webSocket/dynamoDb/WebSocketTaskData.js +0 -74
- package/src/generators/fromFlowSchema/webSocket/webSocket/dynamoDb/ttlDynamoTemplate.ejs +0 -29
- package/src/generators/fromFlowSchema/webSocket/webSocket/dynamoDb/userUploadRecords.js +0 -61
- package/src/generators/fromFlowSchema/webSocket/webSocketComplete/functionYaml/yaml.js +0 -144
- package/src/generators/fromFlowSchema/webSocket/webSocketComplete/handler/handler.js +0 -61
- package/src/generators/fromFlowSchema/webSocket/webSocketComplete/mainFunction/main.js +0 -53
- package/src/generators/fromFlowSchema/webSocket/webSocketComplete/sqs/sqs.js +0 -108
- package/src/generators/fromFlowSchema/webSocket/webSocketComplete/sqs/template.ejs +0 -40
- package/src/generators/fromObjectSchema/endpoint/handler/api.js +0 -55
- package/src/generators/fromObjectSchema/endpoint/handler/apiTemplate.ejs +0 -81
- package/src/generators/fromObjectSchema/endpoint/handler/beforeLogical.js +0 -56
- package/src/generators/fromObjectSchema/endpoint/handler/beforeLogicalTemplate.ejs +0 -123
- package/src/generators/fromObjectSchema/endpoint/handler/dsq.js +0 -55
- package/src/generators/fromObjectSchema/endpoint/handler/dsqTemplate.ejs +0 -126
- package/src/generators/fromObjectSchema/endpoint/handler/inv.js +0 -55
- package/src/generators/fromObjectSchema/endpoint/handler/invTemplate.ejs +0 -63
- package/src/generators/fromObjectSchema/endpoint/handler/sqs.js +0 -55
- package/src/generators/fromObjectSchema/endpoint/handler/sqsTemplate.ejs +0 -124
- package/src/generators/fromObjectSchema/endpoint/index.js +0 -290
- package/src/generators/fromObjectSchema/endpoint/main/beforeLogical/beforeLogical.js +0 -54
- package/src/generators/fromObjectSchema/endpoint/main/create/create.js +0 -52
- package/src/generators/fromObjectSchema/endpoint/main/delete/delete.js +0 -49
- package/src/generators/fromObjectSchema/endpoint/main/get/get.js +0 -49
- package/src/generators/fromObjectSchema/endpoint/main/update/update.js +0 -50
- package/src/generators/fromObjectSchema/endpoint/resource.js +0 -72
- package/src/generators/fromObjectSchema/endpoint/yaml.js +0 -308
- package/src/generators/fromObjectSchema/endpoint/yamlTemplate.ejs +0 -28
- package/src/generators/fromObjectSchema/endpointComplete/create/handler/handler.js +0 -63
- package/src/generators/fromObjectSchema/endpointComplete/create/handler/template.ejs +0 -126
- package/src/generators/fromObjectSchema/endpointComplete/create/mainFunction/main.js +0 -54
- package/src/generators/fromObjectSchema/endpointComplete/create/sns-in-sqs/snsInSqs.js +0 -63
- package/src/generators/fromObjectSchema/endpointComplete/create/sns-in-sqs/template.ejs +0 -44
- package/src/generators/fromObjectSchema/endpointComplete/create/sns-out/snsOut.js +0 -72
- package/src/generators/fromObjectSchema/endpointComplete/create/sns-out/template.ejs +0 -8
- package/src/generators/fromObjectSchema/endpointComplete/create/yaml/template.ejs +0 -17
- package/src/generators/fromObjectSchema/endpointComplete/create/yaml/yaml.js +0 -152
- package/src/generators/fromObjectSchema/endpointComplete/delete/handler/handler.js +0 -68
- package/src/generators/fromObjectSchema/endpointComplete/delete/handler/template.ejs +0 -122
- package/src/generators/fromObjectSchema/endpointComplete/delete/mainFunction/main.js +0 -55
- package/src/generators/fromObjectSchema/endpointComplete/delete/mainFunction/template.ejs +0 -87
- package/src/generators/fromObjectSchema/endpointComplete/delete/sns-in-sqs/snsInSqs.js +0 -64
- package/src/generators/fromObjectSchema/endpointComplete/delete/sns-in-sqs/template.ejs +0 -44
- package/src/generators/fromObjectSchema/endpointComplete/delete/sns-out/snsOut.js +0 -69
- package/src/generators/fromObjectSchema/endpointComplete/delete/yaml/template.ejs +0 -16
- package/src/generators/fromObjectSchema/endpointComplete/delete/yaml/yaml.js +0 -124
- package/src/generators/fromObjectSchema/endpointComplete/get/handler/handler.js +0 -68
- package/src/generators/fromObjectSchema/endpointComplete/get/handler/template.ejs +0 -122
- package/src/generators/fromObjectSchema/endpointComplete/get/mainFunction/main.js +0 -54
- package/src/generators/fromObjectSchema/endpointComplete/get/mainFunction/template.ejs +0 -132
- package/src/generators/fromObjectSchema/endpointComplete/get/sns-in-sqs/snsInSqs.js +0 -63
- package/src/generators/fromObjectSchema/endpointComplete/get/sns-in-sqs/template.ejs +0 -44
- package/src/generators/fromObjectSchema/endpointComplete/get/sns-out/snsOut.js +0 -69
- package/src/generators/fromObjectSchema/endpointComplete/get/yaml/template.ejs +0 -17
- package/src/generators/fromObjectSchema/endpointComplete/get/yaml/yaml.js +0 -127
- package/src/generators/fromObjectSchema/endpointComplete/index.js +0 -101
- package/src/generators/fromObjectSchema/endpointComplete/update/handler/handler.js +0 -68
- package/src/generators/fromObjectSchema/endpointComplete/update/handler/template.ejs +0 -122
- package/src/generators/fromObjectSchema/endpointComplete/update/mainFunction/main.js +0 -54
- package/src/generators/fromObjectSchema/endpointComplete/update/mainFunction/template.ejs +0 -218
- package/src/generators/fromObjectSchema/endpointComplete/update/sns-in-sqs/snsInSqs.js +0 -63
- package/src/generators/fromObjectSchema/endpointComplete/update/sns-in-sqs/template.ejs +0 -44
- package/src/generators/fromObjectSchema/endpointComplete/update/sns-out/snsOut.js +0 -66
- package/src/generators/fromObjectSchema/endpointComplete/update/yaml/template.ejs +0 -16
- package/src/generators/fromObjectSchema/endpointComplete/update/yaml/yaml.js +0 -155
- package/src/generators/fromObjectSchema/findData/GetByStorage/getByDynamo.ejs +0 -58
- package/src/generators/fromObjectSchema/findData/findDataYaml/findDataYaml.js +0 -204
- package/src/generators/fromObjectSchema/findData/findDataYaml/template.ejs +0 -10
- package/src/generators/fromObjectSchema/findData/handler/handler.js +0 -52
- package/src/generators/fromObjectSchema/findData/handler/template.ejs +0 -135
- package/src/generators/fromObjectSchema/findData/index.js +0 -70
- package/src/generators/fromObjectSchema/findData/mainFunction/main.js +0 -320
- package/src/generators/fromObjectSchema/findData/mainFunction/template.ejs +0 -156
- package/src/generators/fromObjectSchema/index.js +0 -134
- package/src/generators/fromObjectSchema/processLogical/handler/handler.js +0 -51
- package/src/generators/fromObjectSchema/processLogical/index.js +0 -50
- package/src/generators/fromObjectSchema/processLogical/mainFunction/main.js +0 -49
- package/src/generators/fromObjectSchema/processLogical/yaml/template.ejs +0 -10
- package/src/generators/fromObjectSchema/processLogical/yaml/yaml.js +0 -200
- package/src/generators/fromObjectSchema/processLogicalPagination/dsqYaml/dsqYaml.js +0 -51
- package/src/generators/fromObjectSchema/processLogicalPagination/dsqYaml/template.ejs +0 -32
- package/src/generators/fromObjectSchema/processLogicalPagination/handler/dsq/dsq.js +0 -50
- package/src/generators/fromObjectSchema/processLogicalPagination/handler/sqs/sqs.js +0 -49
- package/src/generators/fromObjectSchema/processLogicalPagination/index.js +0 -62
- package/src/generators/fromObjectSchema/processLogicalPagination/mainFunction/main.js +0 -49
- package/src/generators/fromObjectSchema/processLogicalPagination/yaml/dsq/dsq.js +0 -189
- package/src/generators/fromObjectSchema/processLogicalPagination/yaml/dsq/template.ejs +0 -10
- package/src/generators/fromObjectSchema/processLogicalPagination/yaml/sqs/sqs.js +0 -198
- package/src/generators/fromObjectSchema/processLogicalPagination/yaml/sqs/template.ejs +0 -11
- package/src/generators/fromObjectSchema/rbac/dynamoDb/dynamoDb.js +0 -74
- package/src/generators/fromObjectSchema/rbac/index.js +0 -68
- package/src/generators/fromObjectSchema/rbac/lambda/handler/handler.js +0 -72
- package/src/generators/fromObjectSchema/rbac/lambda/handler/template.ejs +0 -52
- package/src/generators/fromObjectSchema/rbac/lambda/mainFunction/main.js +0 -83
- package/src/generators/fromObjectSchema/rbac/lambda/mainFunction/template.ejs +0 -111
- package/src/generators/fromObjectSchema/rbac/lambda/yaml/template.ejs +0 -6
- package/src/generators/fromObjectSchema/rbac/lambda/yaml/yaml.js +0 -109
- package/src/generators/fromObjectSchema/relationship/changeRelationship/action/functionYaml/template.ejs +0 -29
- package/src/generators/fromObjectSchema/relationship/changeRelationship/action/functionYaml/yaml.js +0 -201
- package/src/generators/fromObjectSchema/relationship/changeRelationship/action/handler/handler.js +0 -76
- package/src/generators/fromObjectSchema/relationship/changeRelationship/action/handler/template.ejs +0 -9
- package/src/generators/fromObjectSchema/relationship/changeRelationship/action/handler/templateByHandler/apiTemplate.ejs +0 -150
- package/src/generators/fromObjectSchema/relationship/changeRelationship/action/handler/templateByHandler/dsqTemplate.ejs +0 -194
- package/src/generators/fromObjectSchema/relationship/changeRelationship/action/handler/templateByHandler/invTemplate.ejs +0 -138
- package/src/generators/fromObjectSchema/relationship/changeRelationship/action/handler/templateByHandler/sqsTemplate.ejs +0 -178
- package/src/generators/fromObjectSchema/relationship/changeRelationship/action/mainFunction/main.js +0 -61
- package/src/generators/fromObjectSchema/relationship/changeRelationship/action/sns-in-sqs/snsInSqs.js +0 -76
- package/src/generators/fromObjectSchema/relationship/changeRelationship/action/sns-in-sqs/snsTemplate.ejs +0 -56
- package/src/generators/fromObjectSchema/relationship/changeRelationship/action/sns-in-sqs/sqsTemplate.ejs +0 -40
- package/src/generators/fromObjectSchema/relationship/changeRelationship/complete/functionYaml/template.ejs +0 -16
- package/src/generators/fromObjectSchema/relationship/changeRelationship/complete/functionYaml/yaml.js +0 -139
- package/src/generators/fromObjectSchema/relationship/changeRelationship/complete/handler/sqs/sqs.js +0 -61
- package/src/generators/fromObjectSchema/relationship/changeRelationship/complete/handler/sqs/template.ejs +0 -126
- package/src/generators/fromObjectSchema/relationship/changeRelationship/complete/mainFunction/main.js +0 -56
- package/src/generators/fromObjectSchema/relationship/changeRelationship/complete/sns-in-sqs/snsInSqs.js +0 -64
- package/src/generators/fromObjectSchema/relationship/changeRelationship/complete/sns-in-sqs/template.ejs +0 -43
- package/src/generators/fromObjectSchema/relationship/changeRelationship/complete/sns-out/snsOut.js +0 -68
- package/src/generators/fromObjectSchema/relationship/changeRelationship/complete/sns-out/template.ejs +0 -8
- package/src/generators/fromObjectSchema/relationship/create/action/functionYaml/template.ejs +0 -29
- package/src/generators/fromObjectSchema/relationship/create/action/functionYaml/yaml.js +0 -238
- package/src/generators/fromObjectSchema/relationship/create/action/handler/handler.js +0 -76
- package/src/generators/fromObjectSchema/relationship/create/action/handler/template.ejs +0 -9
- package/src/generators/fromObjectSchema/relationship/create/action/handler/templateByHandler/apiTemplate.ejs +0 -134
- package/src/generators/fromObjectSchema/relationship/create/action/handler/templateByHandler/dsqTemplate.ejs +0 -176
- package/src/generators/fromObjectSchema/relationship/create/action/handler/templateByHandler/invTemplate.ejs +0 -120
- package/src/generators/fromObjectSchema/relationship/create/action/handler/templateByHandler/sqsTemplate.ejs +0 -160
- package/src/generators/fromObjectSchema/relationship/create/action/mainFunction/main.js +0 -60
- package/src/generators/fromObjectSchema/relationship/create/action/sns-in-sqs/snsInSqs.js +0 -77
- package/src/generators/fromObjectSchema/relationship/create/action/sns-in-sqs/snsTemplate.ejs +0 -56
- package/src/generators/fromObjectSchema/relationship/create/complete/functionYaml/template.ejs +0 -16
- package/src/generators/fromObjectSchema/relationship/create/complete/functionYaml/yaml.js +0 -140
- package/src/generators/fromObjectSchema/relationship/create/complete/handler/sqs/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/create/complete/handler/sqs/sqs.js +0 -61
- package/src/generators/fromObjectSchema/relationship/create/complete/handler/sqs/template.ejs +0 -126
- package/src/generators/fromObjectSchema/relationship/create/complete/mainFunction/main.js +0 -56
- package/src/generators/fromObjectSchema/relationship/create/complete/mainFunction/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/create/complete/sns-in-sqs/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/create/complete/sns-in-sqs/snsInSqs.js +0 -63
- package/src/generators/fromObjectSchema/relationship/create/complete/sns-in-sqs/template.ejs +0 -43
- package/src/generators/fromObjectSchema/relationship/create/complete/sns-out/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/create/complete/sns-out/snsOut.js +0 -67
- package/src/generators/fromObjectSchema/relationship/delete/action/functionYaml/template.ejs +0 -29
- package/src/generators/fromObjectSchema/relationship/delete/action/functionYaml/yaml.js +0 -241
- package/src/generators/fromObjectSchema/relationship/delete/action/handler/handler.js +0 -76
- package/src/generators/fromObjectSchema/relationship/delete/action/handler/template.ejs +0 -9
- package/src/generators/fromObjectSchema/relationship/delete/action/handler/templateByHandler/apiTemplate.ejs +0 -133
- package/src/generators/fromObjectSchema/relationship/delete/action/handler/templateByHandler/dsqTemplate.ejs +0 -176
- package/src/generators/fromObjectSchema/relationship/delete/action/handler/templateByHandler/invTemplate.ejs +0 -118
- package/src/generators/fromObjectSchema/relationship/delete/action/handler/templateByHandler/sqsTemplate.ejs +0 -167
- package/src/generators/fromObjectSchema/relationship/delete/action/mainFunction/main.js +0 -60
- package/src/generators/fromObjectSchema/relationship/delete/action/sns-in-sqs/snsInSqs.js +0 -77
- package/src/generators/fromObjectSchema/relationship/delete/action/sns-in-sqs/snsTemplate.ejs +0 -56
- package/src/generators/fromObjectSchema/relationship/delete/action/sns-in-sqs/sqsTemplate.ejs +0 -40
- package/src/generators/fromObjectSchema/relationship/delete/complete/functionYaml/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/delete/complete/functionYaml/template.ejs +0 -16
- package/src/generators/fromObjectSchema/relationship/delete/complete/functionYaml/yaml.js +0 -138
- package/src/generators/fromObjectSchema/relationship/delete/complete/handler/sqs/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/delete/complete/handler/sqs/sqs.js +0 -61
- package/src/generators/fromObjectSchema/relationship/delete/complete/handler/sqs/template.ejs +0 -126
- package/src/generators/fromObjectSchema/relationship/delete/complete/mainFunction/main.js +0 -56
- package/src/generators/fromObjectSchema/relationship/delete/complete/mainFunction/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/delete/complete/sns-in-sqs/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/delete/complete/sns-in-sqs/snsInSqs.js +0 -65
- package/src/generators/fromObjectSchema/relationship/delete/complete/sns-in-sqs/template.ejs +0 -44
- package/src/generators/fromObjectSchema/relationship/delete/complete/sns-out/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/delete/complete/sns-out/snsOut.js +0 -69
- package/src/generators/fromObjectSchema/relationship/delete/complete/sns-out/template.ejs +0 -8
- package/src/generators/fromObjectSchema/relationship/get/action/functionYaml/template.ejs +0 -23
- package/src/generators/fromObjectSchema/relationship/get/action/functionYaml/yaml.js +0 -235
- package/src/generators/fromObjectSchema/relationship/get/action/handler/handler.js +0 -76
- package/src/generators/fromObjectSchema/relationship/get/action/handler/template.ejs +0 -9
- package/src/generators/fromObjectSchema/relationship/get/action/handler/templateByHandler/apiTemplate.ejs +0 -134
- package/src/generators/fromObjectSchema/relationship/get/action/handler/templateByHandler/dsqTemplate.ejs +0 -175
- package/src/generators/fromObjectSchema/relationship/get/action/handler/templateByHandler/invTemplate.ejs +0 -119
- package/src/generators/fromObjectSchema/relationship/get/action/handler/templateByHandler/sqsTemplate.ejs +0 -160
- package/src/generators/fromObjectSchema/relationship/get/action/mainFunction/main.js +0 -59
- package/src/generators/fromObjectSchema/relationship/get/action/sns-in-sqs/snsInSqs.js +0 -77
- package/src/generators/fromObjectSchema/relationship/get/action/sns-in-sqs/snsTemplate.ejs +0 -56
- package/src/generators/fromObjectSchema/relationship/get/action/sns-in-sqs/sqsTemplate.ejs +0 -40
- package/src/generators/fromObjectSchema/relationship/get/complete/functionYaml/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/get/complete/functionYaml/template.ejs +0 -16
- package/src/generators/fromObjectSchema/relationship/get/complete/functionYaml/yaml.js +0 -139
- package/src/generators/fromObjectSchema/relationship/get/complete/handler/sqs/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/get/complete/handler/sqs/sqs.js +0 -62
- package/src/generators/fromObjectSchema/relationship/get/complete/handler/sqs/template.ejs +0 -127
- package/src/generators/fromObjectSchema/relationship/get/complete/mainFunction/main.js +0 -57
- package/src/generators/fromObjectSchema/relationship/get/complete/mainFunction/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/get/complete/sns-in-sqs/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/get/complete/sns-in-sqs/snsInSqs.js +0 -65
- package/src/generators/fromObjectSchema/relationship/get/complete/sns-in-sqs/template.ejs +0 -44
- package/src/generators/fromObjectSchema/relationship/get/complete/sns-out/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/get/complete/sns-out/snsOut.js +0 -70
- package/src/generators/fromObjectSchema/relationship/get/complete/sns-out/template.ejs +0 -8
- package/src/generators/fromObjectSchema/relationship/index.js +0 -164
- package/src/generators/fromObjectSchema/relationship/moveRelationship/action/functionYaml/template.ejs +0 -29
- package/src/generators/fromObjectSchema/relationship/moveRelationship/action/functionYaml/yaml.js +0 -204
- package/src/generators/fromObjectSchema/relationship/moveRelationship/action/handler/handler.js +0 -76
- package/src/generators/fromObjectSchema/relationship/moveRelationship/action/handler/template.ejs +0 -9
- package/src/generators/fromObjectSchema/relationship/moveRelationship/action/handler/templateByHandler/apiTemplate.ejs +0 -152
- package/src/generators/fromObjectSchema/relationship/moveRelationship/action/handler/templateByHandler/dsqTemplate.ejs +0 -195
- package/src/generators/fromObjectSchema/relationship/moveRelationship/action/handler/templateByHandler/invTemplate.ejs +0 -140
- package/src/generators/fromObjectSchema/relationship/moveRelationship/action/handler/templateByHandler/sqsTemplate.ejs +0 -179
- package/src/generators/fromObjectSchema/relationship/moveRelationship/action/mainFunction/main.js +0 -61
- package/src/generators/fromObjectSchema/relationship/moveRelationship/action/sns-in-sqs/snsInSqs.js +0 -76
- package/src/generators/fromObjectSchema/relationship/moveRelationship/action/sns-in-sqs/snsTemplate.ejs +0 -56
- package/src/generators/fromObjectSchema/relationship/moveRelationship/action/sns-in-sqs/sqsTemplate.ejs +0 -40
- package/src/generators/fromObjectSchema/relationship/moveRelationship/complete/functionYaml/template.ejs +0 -16
- package/src/generators/fromObjectSchema/relationship/moveRelationship/complete/functionYaml/yaml.js +0 -138
- package/src/generators/fromObjectSchema/relationship/moveRelationship/complete/handler/sqs/sqs.js +0 -61
- package/src/generators/fromObjectSchema/relationship/moveRelationship/complete/handler/sqs/template.ejs +0 -126
- package/src/generators/fromObjectSchema/relationship/moveRelationship/complete/mainFunction/main.js +0 -60
- package/src/generators/fromObjectSchema/relationship/moveRelationship/complete/sns-in-sqs/snsInSqs.js +0 -65
- package/src/generators/fromObjectSchema/relationship/moveRelationship/complete/sns-in-sqs/template.ejs +0 -43
- package/src/generators/fromObjectSchema/relationship/moveRelationship/complete/sns-out/snsOut.js +0 -69
- package/src/generators/fromObjectSchema/relationship/moveRelationship/complete/sns-out/template.ejs +0 -8
- package/src/generators/fromObjectSchema/relationship/update/action/functionYaml/template.ejs +0 -29
- package/src/generators/fromObjectSchema/relationship/update/action/functionYaml/yaml.js +0 -234
- package/src/generators/fromObjectSchema/relationship/update/action/handler/handler.js +0 -77
- package/src/generators/fromObjectSchema/relationship/update/action/handler/template.ejs +0 -9
- package/src/generators/fromObjectSchema/relationship/update/action/handler/templateByHandler/apiTemplate.ejs +0 -131
- package/src/generators/fromObjectSchema/relationship/update/action/handler/templateByHandler/dsqTemplate.ejs +0 -173
- package/src/generators/fromObjectSchema/relationship/update/action/handler/templateByHandler/invTemplate.ejs +0 -117
- package/src/generators/fromObjectSchema/relationship/update/action/handler/templateByHandler/sqsTemplate.ejs +0 -166
- package/src/generators/fromObjectSchema/relationship/update/action/mainFunction/main.js +0 -62
- package/src/generators/fromObjectSchema/relationship/update/action/mainFunction/request.json +0 -1
- package/src/generators/fromObjectSchema/relationship/update/action/sns-in-sqs/request.json +0 -3
- package/src/generators/fromObjectSchema/relationship/update/action/sns-in-sqs/snsInSqs.js +0 -85
- package/src/generators/fromObjectSchema/relationship/update/action/sns-in-sqs/snsTemplate.ejs +0 -56
- package/src/generators/fromObjectSchema/relationship/update/action/sns-in-sqs/sqsTemplate.ejs +0 -40
- package/src/generators/fromObjectSchema/relationship/update/action/sns-out/request.json +0 -3
- package/src/generators/fromObjectSchema/relationship/update/action/sns-out/snsOut.js +0 -69
- package/src/generators/fromObjectSchema/relationship/update/complete/functionYaml/request.json +0 -3
- package/src/generators/fromObjectSchema/relationship/update/complete/functionYaml/template.ejs +0 -17
- package/src/generators/fromObjectSchema/relationship/update/complete/functionYaml/yaml.js +0 -139
- package/src/generators/fromObjectSchema/relationship/update/complete/handler/sqs/request.json +0 -0
- package/src/generators/fromObjectSchema/relationship/update/complete/handler/sqs/sqs.js +0 -61
- package/src/generators/fromObjectSchema/relationship/update/complete/handler/sqs/template.ejs +0 -128
- package/src/generators/fromObjectSchema/relationship/update/complete/mainFunction/main.js +0 -56
- package/src/generators/fromObjectSchema/relationship/update/complete/mainFunction/request.json +0 -1
- package/src/generators/fromObjectSchema/relationship/update/complete/sns-in-sqs/request.json +0 -3
- package/src/generators/fromObjectSchema/relationship/update/complete/sns-in-sqs/snsInSqs.js +0 -64
- package/src/generators/fromObjectSchema/relationship/update/complete/sns-out/request.json +0 -3
- package/src/generators/fromObjectSchema/relationship/update/complete/sns-out/snsOut.js +0 -59
- package/src/generators/fromObjectSchema/relationship/update/complete/sns-out/template.ejs +0 -8
- package/src/generators/fromObjectSchema/roleNameConfig/roleNameConfig.js +0 -77
- package/src/generators/fromObjectSchema/textTag/index.js +0 -58
- package/src/generators/fromObjectSchema/textTag/systemText/systemText.js +0 -148
- package/src/generators/fromPlugIn/afterFirstFlowStep/recievePlugIn/handler/handler.js +0 -66
- package/src/generators/fromPlugIn/afterFirstFlowStep/recievePlugIn/handler/templateApi.ejs +0 -84
- package/src/generators/fromPlugIn/afterFirstFlowStep/recievePlugIn/handler/templateWebSocket.ejs +0 -66
- package/src/generators/fromPlugIn/afterFirstFlowStep/recievePlugIn/mainFunction/main.js +0 -58
- package/src/generators/fromPlugIn/afterFirstFlowStep/recievePlugIn/yaml/template.ejs +0 -18
- package/src/generators/fromPlugIn/afterFirstFlowStep/recievePlugIn/yaml/yaml.js +0 -91
- package/src/generators/fromPlugIn/afterFirstFlowStep/sendPlugIn/handler/handler.js +0 -0
- package/src/generators/fromPlugIn/afterFirstFlowStep/sendPlugIn/handler/template.ejs +0 -0
- package/src/generators/fromPlugIn/afterFirstFlowStep/sendPlugIn/mainFunction/main.js +0 -45
- package/src/generators/fromPlugIn/afterFirstFlowStep/sendPlugIn/mainFunction/template.ejs +0 -82
- package/src/generators/fromPlugIn/afterFirstFlowStep/sendPlugIn/yaml/template.ejs +0 -0
- package/src/generators/fromPlugIn/afterFirstFlowStep/sendPlugIn/yaml/yaml.js +0 -0
- package/src/generators/fromPlugIn/byConfig/handler/handler.js +0 -55
- package/src/generators/fromPlugIn/byConfig/handler/templateAwaitingStep.ejs +0 -105
- package/src/generators/fromPlugIn/byConfig/handler/templatePaginated.ejs +0 -137
- package/src/generators/fromPlugIn/byConfig/mainFunction/main.js +0 -54
- package/src/generators/fromPlugIn/byConfig/sns-sqs/queueNoTopic.ejs +0 -40
- package/src/generators/fromPlugIn/byConfig/sns-sqs/snsSqs.js +0 -56
- package/src/generators/fromPlugIn/byConfig/sns-sqs/snsTemplate.ejs +0 -55
- package/src/generators/fromPlugIn/byConfig/sns-sqs/sqsTemplate.ejs +0 -40
- package/src/generators/fromPlugIn/byConfig/yaml/template.ejs +0 -43
- package/src/generators/fromPlugIn/byConfig/yaml/yaml.js +0 -47
- package/src/generators/fromPlugIn/firstFlowStep/handler/handler.js +0 -58
- package/src/generators/fromPlugIn/firstFlowStep/handler/templateApi.ejs +0 -84
- package/src/generators/fromPlugIn/firstFlowStep/handler/templateDsq.ejs +0 -105
- package/src/generators/fromPlugIn/firstFlowStep/handler/templateInv.ejs +0 -53
- package/src/generators/fromPlugIn/firstFlowStep/mainFunction/main.js +0 -67
- package/src/generators/fromPlugIn/firstFlowStep/queueNtopic/dsqTemplate.ejs +0 -40
- package/src/generators/fromPlugIn/firstFlowStep/queueNtopic/queueNtopic.js +0 -54
- package/src/generators/fromPlugIn/firstFlowStep/queueNtopic/snsTemplate.ejs +0 -55
- package/src/generators/fromPlugIn/firstFlowStep/queueNtopic/sqsTemplate.ejs +0 -40
- package/src/generators/fromPlugIn/firstFlowStep/topicOut/topicOut.js +0 -48
- package/src/generators/fromPlugIn/firstFlowStep/yaml/template.ejs +0 -40
- package/src/generators/fromPlugIn/firstFlowStep/yaml/yaml.js +0 -47
- package/src/generators/fromPlugIn/index.js +0 -518
- package/src/generators/other/generateAuthYml/template.ejs +0 -18
- package/src/generators/other/generateAuthYml/yaml.js +0 -49
- package/src/generators/other/index.js +0 -41
- package/src/generators/resourceYamlComponent/dynamodb/defaultDynamoDbTable.js +0 -145
- package/src/generators/resourceYamlComponent/dynamodb/generateDynamoPerLink.js +0 -108
- package/src/generators/resourceYamlComponent/dynamodb/mainResourcePerObjectSchemaData.js +0 -166
- package/src/generators/resourceYamlComponent/dynamodb/template.ejs +0 -23
- package/src/generators/resourceYamlComponent/filterGenerateResource/filter.js +0 -125
- package/src/generators/resourceYamlComponent/index.js +0 -96
- package/src/generators/resourceYamlComponent/sns-in-sqs/defaultSnsInSqsForFindDataAndProcessLogical.js +0 -92
- package/src/generators/resourceYamlComponent/sns-in-sqs/request.json +0 -4
- package/src/generators/resourceYamlComponent/sns-in-sqs/snsAndSqsPerActionData.js +0 -86
- package/src/generators/resourceYamlComponent/sns-in-sqs/snsTemplate.ejs +0 -56
- package/src/generators/resourceYamlComponent/sns-in-sqs/sqsTemplate.ejs +0 -40
- package/src/generators/resourceYamlComponent/sns-out/defaultSnsOutForFindDataAndProcessLogical.js +0 -66
- package/src/generators/resourceYamlComponent/sns-out/request.json +0 -3
- package/src/generators/resourceYamlComponent/sns-out/snsOut.js +0 -80
- package/src/generators/resourceYamlComponent/sns-out/template.ejs +0 -10
- package/src/generators/roles/index.js +0 -31
- package/src/generators/roles/roleNameConfig/roleNameConfig.js +0 -181
- package/src/generators/roles/roleNameConfig/template.ejs +0 -14
- package/src/generators/roles/roleNameConfig/templateIntTesting.ejs +0 -31
- package/src/generators/roles/roleNameConfig/templateYaml.ejs +0 -10
- package/src/generators/roles/sharedResource/sharedResource.js +0 -103
- package/src/generators/roles/sharedResource/template.ejs +0 -33
- package/src/libs/Consts.js +0 -96
- package/src/libs/GenerateCodeLibs.js +0 -32
- package/src/libs/Libs.js +0 -585
- package/src/libs/Utils.js +0 -164
- package/src/libs/consts/functions.js +0 -96
- package/src/libs/consts/handlers.js +0 -30
- package/src/libs/consts/index.js +0 -6
- package/src/libs/consts/paths.js +0 -84
- package/src/libs/consts/resources.js +0 -48
- package/src/libs/consts/tags.js +0 -68
- package/src/libs/consts/topics.js +0 -67
- package/src/pipeline/fetchSchemas.js +0 -31
- package/src/pipeline/transformSchemas.js +0 -75
- package/src/pipeline/validateSources.js +0 -47
- package/src/pipeline/writeSources.js +0 -24
- package/src/sourceManager/CreateSource.js +0 -174
- /package/src/{generators/fromFlowSchema/events/generatedCode/index.js → codeGenerators/app/src/generatedCode/Flow/FlowEndpoints/.gitkeep} +0 -0
- /package/src/{generators/fromObjectSchema/relationship/changeRelationship/complete/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowRelationshipEndpoints/templates/relationship/ProcessChangeRelationshipComplete_Main.ejs} +0 -0
- /package/src/{generators/fromObjectSchema/relationship/changeRelationship/action/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowRelationshipEndpoints/templates/relationship/ProcessChangeRelationship_Main.ejs} +0 -0
- /package/src/{generators/fromObjectSchema/relationship/create/complete/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowRelationshipEndpoints/templates/relationship/ProcessCreateRelationshipComplete_Main.ejs} +0 -0
- /package/src/{generators/fromObjectSchema/relationship/create/action/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowRelationshipEndpoints/templates/relationship/ProcessCreateRelationship_Main.ejs} +0 -0
- /package/src/{generators/fromObjectSchema/relationship/delete/complete/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowRelationshipEndpoints/templates/relationship/ProcessDeleteRelationshipComplete_Main.ejs} +0 -0
- /package/src/{generators/fromObjectSchema/relationship/delete/action/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowRelationshipEndpoints/templates/relationship/ProcessDeleteRelationship_Main.ejs} +0 -0
- /package/src/{generators/fromObjectSchema/relationship/get/complete/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowRelationshipEndpoints/templates/relationship/ProcessGetRelationshipComplete_Main.ejs} +0 -0
- /package/src/{generators/fromObjectSchema/relationship/get/action/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowRelationshipEndpoints/templates/relationship/ProcessGetRelationship_Main.ejs} +0 -0
- /package/src/{generators/fromObjectSchema/relationship/moveRelationship/complete/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowRelationshipEndpoints/templates/relationship/ProcessMoveRelationshipComplete_Main.ejs} +0 -0
- /package/src/{generators/fromObjectSchema/relationship/moveRelationship/action/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowRelationshipEndpoints/templates/relationship/ProcessMoveRelationship_Main.ejs} +0 -0
- /package/src/{generators/fromObjectSchema/relationship/update/complete/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowRelationshipEndpoints/templates/relationship/ProcessUpdateRelationshipComplete_Main.ejs} +0 -0
- /package/src/{generators/fromObjectSchema/relationship/update/action/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowRelationshipEndpoints/templates/relationship/ProcessUpdateRelationship_Main.ejs} +0 -0
- /package/src/{generators/fromObjectSchema/relationship/create/complete/functionYaml/request.json → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/.gitkeep} +0 -0
- /package/src/{generators/fromFlowSchema/events/s3/upload/confirmReserved/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/s3/ConfirmReserved_Main.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/events/s3/upload/createObject/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/s3/CreateObject_Main.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/events/s3/upload/processFile/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/s3/ProcessS3File_Main.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/events/s3/upload/preSignUrl/reservedLimit/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/s3/ReservedLimit_Main.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/statusTypes/statusField/sns/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/statusField/CompleteStatusFieldSns_Yaml.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/statusTypes/statusField/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/statusField/CompleteStatusField_Main.ejs} +0 -0
- /package/src/{generators/fromPlugIn/byConfig/mainFunction/templateAwaitingStep.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/step/plugIns/FlowStep_ByConfig_Awaiting_Main.ejs} +0 -0
- /package/src/{generators/fromPlugIn/byConfig/mainFunction/templatePaginated.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/step/plugIns/FlowStep_ByConfig_Paginated_Main.ejs} +0 -0
- /package/src/{generators/fromPlugIn/firstFlowStep/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/step/plugIns/FlowStep_PlugIn_Main.ejs} +0 -0
- /package/src/{generators/fromPlugIn/afterFirstFlowStep/recievePlugIn/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/step/plugIns/FlowStep_RecievePlugIn_Main.ejs} +0 -0
- /package/src/{generators/fromPlugIn/firstFlowStep/mainFunction/templateByConfig/awaitingSteps.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/step/plugIns/templateAwaitingStep.ejs} +0 -0
- /package/src/{generators/fromPlugIn/firstFlowStep/mainFunction/templateByConfig → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/step/plugIns}/templateSendPlugin.ejs +0 -0
- /package/src/{generators/fromFlowSchema/events/ownTopic/sns-in/sqsTemplate.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/webSocket/ProcessWebSocket_Yaml.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/webSocket/webSocket/dynamoDb/template.ejs → codeGenerators/app/src/generatedCode/Flow/FlowSchemas/templates/webSocket/WebSocketDynamoDb_Yaml.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/statusTypes/triggerCache/checkTriggerCacheComplete/handler/template.ejs → codeGenerators/app/src/generatedCode/Flow/_shared/triggerCache/CheckTriggerCache_HdrSqs.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/statusTypes/triggerCache/processTriggerCache/handler/template.ejs → codeGenerators/app/src/generatedCode/Flow/_shared/triggerCache/ProcessTriggerCache_HdrSqs.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/statusTypes/triggerCache/processTriggerCache/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/_shared/triggerCache/ProcessTriggerCache_Main.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/statusTypes/triggerCache/triggerCacheComplete/handler/dsq/template.ejs → codeGenerators/app/src/generatedCode/Flow/_shared/triggerCache/TriggerCacheComplete_HdrDsq.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/statusTypes/triggerCache/triggerCacheComplete/handler/sqs/template.ejs → codeGenerators/app/src/generatedCode/Flow/_shared/triggerCache/TriggerCacheComplete_HdrSqs.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/statusTypes/triggerCache/triggerCacheComplete/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/Flow/_shared/triggerCache/TriggerCacheComplete_Main.ejs} +0 -0
- /package/src/{generators/fromObjectSchema/processLogicalPagination/handler/dsq/template.ejs → codeGenerators/app/src/generatedCode/ProcessLogical/templates/PaginateProcessLogical_HdrDsq.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/register/complete/handler/template.ejs → codeGenerators/app/src/generatedCode/SystemFlowSchemas/templates/register/RegisterComplete_HdrSqs.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/register/complete/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/SystemFlowSchemas/templates/register/RegisterComplete_Main.ejs} +0 -0
- /package/src/{generators/fromFlowSchema/register/wbs/mainFunction/template.ejs → codeGenerators/app/src/generatedCode/SystemFlowSchemas/templates/register/Register_Main.ejs} +0 -0
- /package/src/{generators/fromObjectSchema/endpoint/resourceBeforeLogicalTemplate.ejs → codeGenerators/resource/sls_yaml/templates/crud/ResourceBeforeLogicalYaml.ejs} +0 -0
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import path from 'path';
|
|
2
|
+
import { fileURLToPath } from 'url';
|
|
3
|
+
import {
|
|
4
|
+
appendRenderedTemplate,
|
|
5
|
+
writeRenderedTemplate
|
|
6
|
+
} from '../../../../../core/renderTemplateFile.js';
|
|
7
|
+
|
|
8
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
9
|
+
const __dirname = path.dirname(__filename);
|
|
10
|
+
|
|
11
|
+
function upperCase(str) {
|
|
12
|
+
if (!str) return str;
|
|
13
|
+
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
function shortNameHandler(handlerType) {
|
|
17
|
+
const map = {
|
|
18
|
+
HdrSqs: 'Sqs',
|
|
19
|
+
HdrApi: 'Api',
|
|
20
|
+
HdrWbs: 'Wbs',
|
|
21
|
+
HdrDsq: 'Dsq'
|
|
22
|
+
};
|
|
23
|
+
return map[handlerType] || handlerType;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export async function generateRegisterFlow(allLocalFlowSchemas, _appPath, outputBaseDir) {
|
|
27
|
+
if (!allLocalFlowSchemas.some((flow) => flow.flowTag === 'Register')) {
|
|
28
|
+
console.log(' [RegisterGenerator] No Register flow descriptor found. Skipping.');
|
|
29
|
+
return;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
console.log(' [RegisterGenerator] Generating Register flow files...');
|
|
33
|
+
|
|
34
|
+
const templatesDir = path.join(__dirname, 'templates', 'register');
|
|
35
|
+
const wsTemplatesDir = path.join(__dirname, '..', 'Flow', 'FlowSchemas', 'templates', 'webSocket');
|
|
36
|
+
const registerDir = path.join(
|
|
37
|
+
outputBaseDir,
|
|
38
|
+
'app',
|
|
39
|
+
'src',
|
|
40
|
+
'generatedCode',
|
|
41
|
+
'SystemFlowSchemas',
|
|
42
|
+
'Register',
|
|
43
|
+
'source'
|
|
44
|
+
);
|
|
45
|
+
const flowSchemaPath = path.join(
|
|
46
|
+
outputBaseDir,
|
|
47
|
+
'app',
|
|
48
|
+
'sls_yaml',
|
|
49
|
+
'generatedCode',
|
|
50
|
+
'source',
|
|
51
|
+
'flow-schema.yml'
|
|
52
|
+
);
|
|
53
|
+
const resourceYamlPath = path.join(
|
|
54
|
+
outputBaseDir,
|
|
55
|
+
'resource',
|
|
56
|
+
'sls_yaml',
|
|
57
|
+
'generatedCode',
|
|
58
|
+
'source',
|
|
59
|
+
'generated-sns-in-sqs.yml'
|
|
60
|
+
);
|
|
61
|
+
|
|
62
|
+
const wbsFunctionName = 'Register';
|
|
63
|
+
await writeRenderedTemplate(
|
|
64
|
+
path.join(templatesDir, 'Register_Main.ejs'),
|
|
65
|
+
path.join(registerDir, `${wbsFunctionName}_Main.js`),
|
|
66
|
+
{ functionMain: `${wbsFunctionName}_Main` }
|
|
67
|
+
);
|
|
68
|
+
await writeRenderedTemplate(
|
|
69
|
+
path.join(templatesDir, 'Register_HdrWbs.ejs'),
|
|
70
|
+
path.join(registerDir, `${wbsFunctionName}_HdrWbs.js`),
|
|
71
|
+
{ routeName: 'register' }
|
|
72
|
+
);
|
|
73
|
+
await appendRenderedTemplate(
|
|
74
|
+
path.join(__dirname, '..', '..', '..', 'sls_yaml', 'templates', 'FunctionYaml_Wbs.ejs'),
|
|
75
|
+
flowSchemaPath,
|
|
76
|
+
{
|
|
77
|
+
functionNameConfig: `${wbsFunctionName}Wbs`,
|
|
78
|
+
handlerPath: `src/generatedCode/SystemFlowSchemas/Register/source/${wbsFunctionName}_HdrWbs.main`,
|
|
79
|
+
roleName: 'RegisterRole',
|
|
80
|
+
routeName: 'register'
|
|
81
|
+
}
|
|
82
|
+
);
|
|
83
|
+
|
|
84
|
+
const completeFunctionName = 'RegisterComplete';
|
|
85
|
+
const completeData = {
|
|
86
|
+
functionName: completeFunctionName,
|
|
87
|
+
handlerType: 'HdrSqs',
|
|
88
|
+
queueName: completeFunctionName,
|
|
89
|
+
handlerFilePath: `src/generatedCode/SystemFlowSchemas/Register/source/${completeFunctionName}_HdrSqs`,
|
|
90
|
+
roleName: 'RegisterComplete',
|
|
91
|
+
upperFunctionName: upperCase(completeFunctionName),
|
|
92
|
+
upperHandlerType: 'HDRSQS',
|
|
93
|
+
upperQueueName: upperCase(completeFunctionName),
|
|
94
|
+
functionNameConfig: `${upperCase(completeFunctionName)}${upperCase(shortNameHandler('HdrSqs'))}`
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
await writeRenderedTemplate(
|
|
98
|
+
path.join(templatesDir, 'RegisterComplete_Main.ejs'),
|
|
99
|
+
path.join(registerDir, `${completeFunctionName}_Main.js`),
|
|
100
|
+
completeData
|
|
101
|
+
);
|
|
102
|
+
await writeRenderedTemplate(
|
|
103
|
+
path.join(templatesDir, 'RegisterComplete_HdrSqs.ejs'),
|
|
104
|
+
path.join(registerDir, `${completeFunctionName}_HdrSqs.js`),
|
|
105
|
+
completeData
|
|
106
|
+
);
|
|
107
|
+
await writeRenderedTemplate(
|
|
108
|
+
path.join(templatesDir, 'RegisterComplete_HdrSqs.ejs'),
|
|
109
|
+
path.join(registerDir, `${completeFunctionName}_HdrDsq.js`),
|
|
110
|
+
{ ...completeData, handlerType: 'HdrDsq' }
|
|
111
|
+
);
|
|
112
|
+
await appendRenderedTemplate(
|
|
113
|
+
path.join(wsTemplatesDir, 'ProcessWebSocketFlow_Yaml.ejs'),
|
|
114
|
+
flowSchemaPath,
|
|
115
|
+
completeData
|
|
116
|
+
);
|
|
117
|
+
await appendRenderedTemplate(
|
|
118
|
+
path.join(wsTemplatesDir, 'ProcessWebSocketFlow_Yaml.ejs'),
|
|
119
|
+
flowSchemaPath,
|
|
120
|
+
{
|
|
121
|
+
...completeData,
|
|
122
|
+
handlerType: 'HdrDsq',
|
|
123
|
+
upperHandlerType: 'HDRDSQ',
|
|
124
|
+
functionNameConfig: `${upperCase(completeFunctionName)}Dsq`,
|
|
125
|
+
handlerFilePath: `src/generatedCode/SystemFlowSchemas/Register/source/${completeFunctionName}_HdrDsq`
|
|
126
|
+
}
|
|
127
|
+
);
|
|
128
|
+
|
|
129
|
+
await appendRenderedTemplate(
|
|
130
|
+
path.join(wsTemplatesDir, 'ProcessWebSocket_Yaml.ejs'),
|
|
131
|
+
resourceYamlPath,
|
|
132
|
+
completeData
|
|
133
|
+
);
|
|
134
|
+
|
|
135
|
+
for (const flowSchema of allLocalFlowSchemas) {
|
|
136
|
+
if (!flowSchema.outputTopic) continue;
|
|
137
|
+
|
|
138
|
+
await appendRenderedTemplate(
|
|
139
|
+
path.join(wsTemplatesDir, 'ProcessWebSocketSub_Yaml.ejs'),
|
|
140
|
+
resourceYamlPath,
|
|
141
|
+
{
|
|
142
|
+
subscribeTo: upperCase(flowSchema.flowTag),
|
|
143
|
+
queueName: completeFunctionName,
|
|
144
|
+
upperQueueName: upperCase(completeFunctionName)
|
|
145
|
+
}
|
|
146
|
+
);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
console.log(' [RegisterGenerator] Finished generating Register flow files.');
|
|
150
|
+
}
|
|
@@ -77,8 +77,4 @@ export const main = middleware.wrap(async (event, context) => {
|
|
|
77
77
|
await postToConnection({ message: err.message }, connId);
|
|
78
78
|
return (response.failure(err));
|
|
79
79
|
}
|
|
80
|
-
});
|
|
81
|
-
<%_ const join = require('path').join _%>
|
|
82
|
-
<%_ function upperCase (text) {
|
|
83
|
-
return text.charAt(0).toUpperCase() + text.slice(1)
|
|
84
|
-
} _%>
|
|
80
|
+
});
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import fs from 'fs/promises';
|
|
2
|
+
import path from 'path';
|
|
3
|
+
import { fileURLToPath } from 'url';
|
|
4
|
+
import ejs from 'ejs';
|
|
5
|
+
|
|
6
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
7
|
+
const __dirname = path.dirname(__filename);
|
|
8
|
+
|
|
9
|
+
export async function generateConsts(options) {
|
|
10
|
+
console.log(' [ConstsGenerator] Generating Consts...');
|
|
11
|
+
|
|
12
|
+
const outputDir = path.join(
|
|
13
|
+
options.outputPath,
|
|
14
|
+
'app',
|
|
15
|
+
'src',
|
|
16
|
+
'generatedCode',
|
|
17
|
+
'libs',
|
|
18
|
+
'source'
|
|
19
|
+
);
|
|
20
|
+
await fs.mkdir(outputDir, { recursive: true });
|
|
21
|
+
|
|
22
|
+
const sourceFile = path.join(__dirname, 'templates', 'Consts.ejs');
|
|
23
|
+
const destFile = path.join(outputDir, 'Consts.js');
|
|
24
|
+
const template = await fs.readFile(sourceFile, 'utf8');
|
|
25
|
+
|
|
26
|
+
await fs.writeFile(destFile, ejs.render(template, {}));
|
|
27
|
+
console.log(' [ConstsGenerator] Wrote Consts.js');
|
|
28
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import fs from 'fs/promises';
|
|
2
|
+
import path from 'path';
|
|
3
|
+
import { fileURLToPath } from 'url';
|
|
4
|
+
import ejs from 'ejs';
|
|
5
|
+
|
|
6
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
7
|
+
const __dirname = path.dirname(__filename);
|
|
8
|
+
|
|
9
|
+
export async function generateCodeLibs(options) {
|
|
10
|
+
console.log(' [GenerateCodeLibsGenerator] Generating Code Libs...');
|
|
11
|
+
|
|
12
|
+
const outputDir = path.join(
|
|
13
|
+
options.outputPath,
|
|
14
|
+
'app',
|
|
15
|
+
'src',
|
|
16
|
+
'generatedCode',
|
|
17
|
+
'libs',
|
|
18
|
+
'source'
|
|
19
|
+
);
|
|
20
|
+
await fs.mkdir(outputDir, { recursive: true });
|
|
21
|
+
|
|
22
|
+
const sourceFile = path.join(__dirname, 'templates', 'GenerateCodeLibs.ejs');
|
|
23
|
+
const destFile = path.join(outputDir, 'GenerateCodeLibs.js');
|
|
24
|
+
const template = await fs.readFile(sourceFile, 'utf8');
|
|
25
|
+
|
|
26
|
+
await fs.writeFile(destFile, ejs.render(template, {}));
|
|
27
|
+
console.log(' [GenerateCodeLibsGenerator] Wrote GenerateCodeLibs.js');
|
|
28
|
+
}
|
|
@@ -0,0 +1,448 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright (C) 2020 Sven Mason <http://izara.io>
|
|
3
|
+
|
|
4
|
+
This program is free software: you can redistribute it and/or modify
|
|
5
|
+
it under the terms of the GNU Affero General Public License as
|
|
6
|
+
published by the Free Software Foundation, either version 3 of the
|
|
7
|
+
License, or (at your option) any later version.
|
|
8
|
+
|
|
9
|
+
This program is distributed in the hope that it will be useful,
|
|
10
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
+
GNU Affero General Public License for more details.
|
|
13
|
+
|
|
14
|
+
You should have received a copy of the GNU Affero General Public License
|
|
15
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
// Flattened from legacy src/libs/consts/*.js
|
|
19
|
+
// Keep the key shape IDENTICAL to legacy so runtime imports continue to work.
|
|
20
|
+
|
|
21
|
+
const HANDLER = {
|
|
22
|
+
hdrApi: 'hdrApi',
|
|
23
|
+
hdrSqs: 'hdrSqs',
|
|
24
|
+
hdrDsq: 'hdrDsq',
|
|
25
|
+
hdrInv: 'hdrInv',
|
|
26
|
+
hdrWbs: 'hdrWbs',
|
|
27
|
+
hdrS3: 'hdrS3'
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
const ACTIONS = {
|
|
31
|
+
create: 'create',
|
|
32
|
+
update: 'update',
|
|
33
|
+
get: 'get',
|
|
34
|
+
delete: 'delete',
|
|
35
|
+
change: 'change',
|
|
36
|
+
move: 'move'
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
const STORAGE_TYPES = {
|
|
40
|
+
dynamoDB: 'dynamoDB',
|
|
41
|
+
graph: 'graph',
|
|
42
|
+
lambda: 'lambda',
|
|
43
|
+
externalTopic: 'externalTopic',
|
|
44
|
+
propertyValue: 'propertyValue'
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
const DEFAULT_HANDLER_PER_ACTION = {
|
|
48
|
+
[ACTIONS.create]: [HANDLER.hdrApi, HANDLER.hdrSqs, HANDLER.hdrInv],
|
|
49
|
+
[ACTIONS.update]: [HANDLER.hdrApi, HANDLER.hdrSqs, HANDLER.hdrInv],
|
|
50
|
+
[ACTIONS.get]: [HANDLER.hdrApi, HANDLER.hdrInv],
|
|
51
|
+
[ACTIONS.delete]: [HANDLER.hdrApi, HANDLER.hdrSqs]
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
const DEFAULT_LAMBDA_ROLE_PER_ACTION = {
|
|
55
|
+
[ACTIONS.create]: {
|
|
56
|
+
dynamoDbPermission: 'PutItem',
|
|
57
|
+
httpMethod: 'put'
|
|
58
|
+
},
|
|
59
|
+
[ACTIONS.update]: {
|
|
60
|
+
dynamoDbPermission: 'UpdateItem',
|
|
61
|
+
httpMethod: 'post'
|
|
62
|
+
},
|
|
63
|
+
[ACTIONS.get]: {
|
|
64
|
+
dynamoDbPermission: 'GetItem',
|
|
65
|
+
httpMethod: 'post'
|
|
66
|
+
},
|
|
67
|
+
[ACTIONS.delete]: {
|
|
68
|
+
dynamoDbPermission: 'DeleteItem',
|
|
69
|
+
httpMethod: 'delete'
|
|
70
|
+
}
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
const SOURCE_PATH = {
|
|
74
|
+
appYaml: `/sls_yaml/generatedCode/source/`,
|
|
75
|
+
resourceYaml: `../resource/sls_yaml/generatedCode/source/`,
|
|
76
|
+
externalService: '/initial_setup/generatedCode/source/',
|
|
77
|
+
lambdaPerAction: '/src/generatedCode/ObjectTypePerActionEndpoint/source/',
|
|
78
|
+
outPerActionComplete: '/src/generatedCode/OutPerActionComplete/source/',
|
|
79
|
+
resourceLocationOutPerActionComplete:
|
|
80
|
+
'src/generatedCode/OutPerActionComplete/source/',
|
|
81
|
+
relationshipPerAction: '/src/generatedCode/RelationshipPerAction/source/',
|
|
82
|
+
findData: '/src/generatedCode/FindData/source/',
|
|
83
|
+
translateIdsRequestFile: '/src/generatedCode/TranslateId/source/',
|
|
84
|
+
processLogical: '/src/generatedCode/ProcessLogical/source/',
|
|
85
|
+
resourceLocationPerAction:
|
|
86
|
+
'src/generatedCode/ObjectTypePerActionEndpoint/source/',
|
|
87
|
+
resourceLocationFindData: 'src/generatedCode/FindData/source/',
|
|
88
|
+
resourceLocationRelationshipPerAction:
|
|
89
|
+
'src/generatedCode/RelationshipPerAction/source/',
|
|
90
|
+
resourceLocationTranslateId: 'src/generatedCode/TranslateId/source/',
|
|
91
|
+
resourceLocationProcessLogical: 'src/generatedCode/ProcessLogical/source/',
|
|
92
|
+
// ** FlowSchemas (plural — post-refactor)
|
|
93
|
+
webSocket: '/src/generatedCode/FlowSchemas/UploadS3/',
|
|
94
|
+
resourceLocationWebSocket: 'src/generatedCode/FlowSchemas/UploadS3/',
|
|
95
|
+
// * FlowSchemas event
|
|
96
|
+
flowSchema: '/src/generatedCode/FlowSchemas/',
|
|
97
|
+
resourceLocationFlowSchema: 'src/generatedCode/FlowSchema/',
|
|
98
|
+
// * FlowSchema eventBridge
|
|
99
|
+
flowSchemaEventBridge: '/src/generatedCode/FlowSchema/EventBridge/',
|
|
100
|
+
resourceLocationFlowSchemaEventBridge:
|
|
101
|
+
'src/generatedCode/FlowSchema/EventBridge/',
|
|
102
|
+
// * FlowSchema lambdaSync
|
|
103
|
+
flowSchemaLambdaSync: '/src/generatedCode/FlowSchema/lambdaSync/',
|
|
104
|
+
resourceLocationFlowSchemaLambdaSync:
|
|
105
|
+
'src/generatedCode/FlowSchema/lambdaSync/',
|
|
106
|
+
// * FlowSchema Register
|
|
107
|
+
flowSchemaRegister: '/src/generatedCode/FlowSchema/Register/',
|
|
108
|
+
resourceLocationFlowSchemaRegister: 'src/generatedCode/FlowSchema/Register/',
|
|
109
|
+
//* WebSocket Main
|
|
110
|
+
WebSocketMain: '/src/generatedCode/FlowSchema/WebSocketMain/source/',
|
|
111
|
+
resourceLocationWebSocketMain:
|
|
112
|
+
'src/generatedCode/FlowSchema/WebSocketMain/source/',
|
|
113
|
+
generateCodeLib: '/src/generatedCode/libs/source/',
|
|
114
|
+
generatedCodeHookFunction:
|
|
115
|
+
'/src/generatedCode/WebSocket/source/FlowSchemaHook/HookFunctionGeneratedCode/source/',
|
|
116
|
+
resourceLocationGeneratedCodeHookFunction:
|
|
117
|
+
'src/generatedCode/WebSocket/source/FlowSchemaHook/HookFunctionGeneratedCode/source/',
|
|
118
|
+
endpointPerService: '/src/generatedCode/ActionEndpoint/source/',
|
|
119
|
+
resourceLocationHandlerEndpointPerService:
|
|
120
|
+
'src/generatedCode/ActionEndpoint/source/',
|
|
121
|
+
createRecordComplete: '/src/generatedCode/CreateRecordComplete/',
|
|
122
|
+
resourceLocationCreateRecordComplete:
|
|
123
|
+
'src/generatedCode/CreateRecordComplete/',
|
|
124
|
+
// systemText
|
|
125
|
+
systemTextSchema: 'SystemTextSchemas/generatedCode/',
|
|
126
|
+
// rbac
|
|
127
|
+
rbac: '/src/generatedCode/Rbac/source/',
|
|
128
|
+
resourceLocationRbac: 'src/generatedCode/Rbac/source/',
|
|
129
|
+
generatedAttributeTree: 'generatedCode/attributeTree/',
|
|
130
|
+
generatedPropertyValue: 'generatedCode/propertyValue/'
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
const SAVE_FILE_NAME = {
|
|
134
|
+
dynamoDbYaml: 'generated-dynamoDB-table',
|
|
135
|
+
snsInSqsYaml: 'generated-sns-in-sqs',
|
|
136
|
+
snsOutYaml: 'generated-sns-out',
|
|
137
|
+
functionRelationshipYaml: 'relationship-per-action',
|
|
138
|
+
functionPerActionYaml: 'per-action-function',
|
|
139
|
+
processLogicalYaml: 'process-logical',
|
|
140
|
+
flowSchemaYaml: 'flow-schema',
|
|
141
|
+
roleNameConfigYaml: 'role-name-config',
|
|
142
|
+
sharedResourceYaml: 'generate-shared-resource',
|
|
143
|
+
authorizerYaml: 'authorizer',
|
|
144
|
+
findData: 'find-data',
|
|
145
|
+
rbac: 'rbac',
|
|
146
|
+
externalLambdaRole: 'generatedLambdaRoleServiceConfig',
|
|
147
|
+
snsSubscription: 'generatedSnsServiceConfig',
|
|
148
|
+
tableName: 'generatedTableNameConfig',
|
|
149
|
+
S3Bucket: 'generated-s3-bucket',
|
|
150
|
+
objectRelationship: 'ObjectRelationships',
|
|
151
|
+
refObjectRelationship: 'RefObjectRelationships',
|
|
152
|
+
objectSchema: 'ObjectFieldSchema',
|
|
153
|
+
roleNameConfig: 'RoleNameConfig',
|
|
154
|
+
systemTextSchema: 'SystemTextSchemas'
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
const FUNCTION_NAME = {
|
|
158
|
+
updateRel: 'updateRelationship',
|
|
159
|
+
createRel: 'createRelationship',
|
|
160
|
+
updateRelComplete: 'updateRelationshipComplete',
|
|
161
|
+
createRelComplete: 'createRelationshipComplete',
|
|
162
|
+
deleteRel: 'deleteRelationship',
|
|
163
|
+
deleteRelComplete: 'deleteRelationshipComplete',
|
|
164
|
+
translateId: 'translateIdsRequest',
|
|
165
|
+
translateIdsProcess: 'processTranslateIds',
|
|
166
|
+
outTranslateIds: 'processTranslateIdsComplete',
|
|
167
|
+
findData: 'findData',
|
|
168
|
+
processLogical: 'processLogical',
|
|
169
|
+
updateNodeComplete: 'updateNodeComplete',
|
|
170
|
+
createObjectComplete: 'createObjectComplete',
|
|
171
|
+
getNodeComplete: 'getNodeComplete',
|
|
172
|
+
paginateProcessLogical: 'paginateProcessLogical',
|
|
173
|
+
deleteNode: 'deleteNode',
|
|
174
|
+
deleteNodeComplete: 'deleteNodeComplete',
|
|
175
|
+
createObjectS3: 'createObjectS3',
|
|
176
|
+
createObjectS3Complete: 'webSocketTaskComplete',
|
|
177
|
+
processAfterUploadS3: 'processAfterUploadS3',
|
|
178
|
+
getRel: 'getRelationship',
|
|
179
|
+
getRelComplete: 'getRelationshipComplete',
|
|
180
|
+
reservedLimit: 'reservedLimit',
|
|
181
|
+
createPreSignUrl: 'createPreSignUrl',
|
|
182
|
+
flowSchemaOwnTopic: 'flowSchemaOwnTopic',
|
|
183
|
+
flowSchemaOwnTopicComplete: 'flowSchemaOwnTopicComplete',
|
|
184
|
+
flowSchemaOwnTopicEndpoint: 'flowSchemaOwnTopicEndpoint',
|
|
185
|
+
flowSchemaOwnTopicEndpointComplete: 'flowSchemaOwnTopicEndpointComplete',
|
|
186
|
+
flowSchemaExternalTopic: 'externalTopic',
|
|
187
|
+
flowSchemaEventBridge: 'EventBridge',
|
|
188
|
+
createRecordComplete: 'createRecordComplete',
|
|
189
|
+
flowSchemaRegister: 'register',
|
|
190
|
+
changeRel: 'changeRelationship',
|
|
191
|
+
changeRelComplete: 'changeRelationshipComplete',
|
|
192
|
+
moveRel: 'moveRelationship',
|
|
193
|
+
moveRelComplete: 'moveRelationshipComplete'
|
|
194
|
+
};
|
|
195
|
+
|
|
196
|
+
const SHORT_FUNCTION_NAME = functionName => {
|
|
197
|
+
return {
|
|
198
|
+
[FUNCTION_NAME.updateRel]: 'updateRel',
|
|
199
|
+
[FUNCTION_NAME.createRel]: 'createRel',
|
|
200
|
+
[FUNCTION_NAME.updateRelComplete]: 'updateRelComp',
|
|
201
|
+
[FUNCTION_NAME.createRelComplete]: 'createRelComp',
|
|
202
|
+
[FUNCTION_NAME.deleteRel]: 'deleteRel',
|
|
203
|
+
[FUNCTION_NAME.deleteRelComplete]: 'deleteRelComp',
|
|
204
|
+
[FUNCTION_NAME.findData]: 'findData',
|
|
205
|
+
[FUNCTION_NAME.processLogical]: 'processLogical',
|
|
206
|
+
[FUNCTION_NAME.updateNodeComplete]: 'updateNodeComp',
|
|
207
|
+
[FUNCTION_NAME.createObjectComplete]: 'createObjectComp',
|
|
208
|
+
[FUNCTION_NAME.getNodeComplete]: 'getNodeComp',
|
|
209
|
+
[FUNCTION_NAME.paginateProcessLogical]: 'paginateProLogical',
|
|
210
|
+
[FUNCTION_NAME.deleteNode]: 'deleteNode',
|
|
211
|
+
[FUNCTION_NAME.deleteNodeComplete]: 'deleteNodeComp',
|
|
212
|
+
[FUNCTION_NAME.createObjectS3Complete]: 'webSocketTaskComp',
|
|
213
|
+
[FUNCTION_NAME.getRel]: 'getRel',
|
|
214
|
+
[FUNCTION_NAME.getRelComplete]: 'getRelComp',
|
|
215
|
+
[FUNCTION_NAME.changeRel]: 'changeRel',
|
|
216
|
+
[FUNCTION_NAME.changeRelComplete]: 'changeRelComp',
|
|
217
|
+
[FUNCTION_NAME.moveRel]: 'moveRel',
|
|
218
|
+
[FUNCTION_NAME.moveRelComplete]: 'moveRelComp'
|
|
219
|
+
}[functionName];
|
|
220
|
+
};
|
|
221
|
+
|
|
222
|
+
const PREFIX = {
|
|
223
|
+
updateRel: 'updateRelationshipEndpoint',
|
|
224
|
+
createRel: 'createRelationshipEndpoint',
|
|
225
|
+
deleteRel: 'deleteRelationshipEndpoint',
|
|
226
|
+
updateNode: 'updateNodeEndpoint',
|
|
227
|
+
createNode: 'createNodeEndpoint',
|
|
228
|
+
getRel: 'getRelationshipEndpoint',
|
|
229
|
+
changeRel: 'changeRelationshipEndpoint',
|
|
230
|
+
ONE: 'one',
|
|
231
|
+
MANY: 'many',
|
|
232
|
+
CREATE_OBJECT_ASYNC: 'createObjectAsync',
|
|
233
|
+
CREATE_OBJECT_ASYNC_COMPLETE: 'createObjectAsyncComplete',
|
|
234
|
+
CREATE_OBJECT_EXTERNAL_TOPIC: 'createObjectExternalTopic'
|
|
235
|
+
};
|
|
236
|
+
|
|
237
|
+
const SOURCE_GENERATE_IAM_ROLE = {
|
|
238
|
+
ProcessFindDataRole: 'ProcFindData',
|
|
239
|
+
ObjectCompleteRole: 'ObjectCom',
|
|
240
|
+
NodeCompleteRole: 'NodeCom',
|
|
241
|
+
RelationshipRole: 'Relationship',
|
|
242
|
+
RelationshipCompleteRole: 'RelationshipCom',
|
|
243
|
+
FlowSchemaUploadS3Role: 'FlowSchemaUploadS3',
|
|
244
|
+
FlowSchemaOwnTopic: 'FlowSchemaOwnTopic',
|
|
245
|
+
PerActionEndpoint: 'PerActionEndpoint',
|
|
246
|
+
ExternalTopicRole: 'ExternalTopic',
|
|
247
|
+
EventBridge: 'EventBridge',
|
|
248
|
+
CreateRecordComplete: 'CreateRecordComplete',
|
|
249
|
+
RegisterRole: 'Register'
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
const RESOURCE_CLASSES = {
|
|
253
|
+
sqs: 'sqs',
|
|
254
|
+
s3: 's3',
|
|
255
|
+
dynamoDbTable: 'dynamodb',
|
|
256
|
+
dynamoDbAcrossService: 'dynamodb',
|
|
257
|
+
sns: 'sns',
|
|
258
|
+
lambda: 'lambda',
|
|
259
|
+
webSocket: 'webSocket'
|
|
260
|
+
};
|
|
261
|
+
|
|
262
|
+
const SQS_RESOURCE = {
|
|
263
|
+
sendMessage: 'SendMessage',
|
|
264
|
+
receiveMessage: 'ReceiveMessage',
|
|
265
|
+
deleteMessage: 'DeleteMessage',
|
|
266
|
+
getQueueAttributes: 'GetQueueAttributes',
|
|
267
|
+
deleteMessageBatch: 'DeleteMessageBatch',
|
|
268
|
+
getQueueUrl: 'GetQueueUrl'
|
|
269
|
+
};
|
|
270
|
+
|
|
271
|
+
const SNS_RESOURCE = {
|
|
272
|
+
publish: 'Publish',
|
|
273
|
+
subscribe: 'Subscribe'
|
|
274
|
+
};
|
|
275
|
+
|
|
276
|
+
const DYNAMO_RESOURCE = {
|
|
277
|
+
putItem: 'PutItem',
|
|
278
|
+
getItem: 'GetItem',
|
|
279
|
+
query: 'Query',
|
|
280
|
+
updateItem: 'UpdateItem',
|
|
281
|
+
deleteItem: 'DeleteItem'
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
const LAMBDA_RESOURCE = {
|
|
285
|
+
invokeFunction: 'InvokeFunction'
|
|
286
|
+
};
|
|
287
|
+
|
|
288
|
+
const S3_RESOURCE = {
|
|
289
|
+
getObject: 'GetObject',
|
|
290
|
+
getObjectTagging: 'GetObjectTagging',
|
|
291
|
+
deleteObject: 'DeleteObject',
|
|
292
|
+
deleteObjectTagging: 'DeleteObjectTagging',
|
|
293
|
+
putObject: 'PutObject',
|
|
294
|
+
putObjectTagging: 'PutObjectTagging',
|
|
295
|
+
getObjectVersion: 'GetObjectVersion',
|
|
296
|
+
listBucket: 'ListBucket'
|
|
297
|
+
};
|
|
298
|
+
|
|
299
|
+
const TOPIC_NAME_GRAPH_HANDLER = {
|
|
300
|
+
inUpdateRel: 'UpdateRelationship_In',
|
|
301
|
+
inCreateRel: 'CreateRelationship_In',
|
|
302
|
+
outUpdateRel: 'UpdateRelationship_Out',
|
|
303
|
+
outCreateRel: 'CreateRelationship_Out',
|
|
304
|
+
inDeleteRel: 'DeleteRelationship_In',
|
|
305
|
+
outDeleteRel: 'DeleteRelationship_Out',
|
|
306
|
+
inUpdateNode: 'UpdateNode_In',
|
|
307
|
+
outUpdateNode: 'UpdateNode_Out',
|
|
308
|
+
inCreateNode: 'CreateNode_In',
|
|
309
|
+
outCreateNode: 'CreateNode_Out',
|
|
310
|
+
inDeleteNode: 'DeleteNode_In',
|
|
311
|
+
outDeleteNode: 'DeleteNode_Out',
|
|
312
|
+
inChangeRelationship: 'ChangeRelationshipType_In',
|
|
313
|
+
outChangeRelationship: 'ChangeRelationshipType_Out',
|
|
314
|
+
inMoveRelationship: 'MoveRelationship_In',
|
|
315
|
+
outMoveRelationship: 'MoveRelationship_Out'
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
const TOPIC_NAME_GENERATE_CODE = {
|
|
319
|
+
updateRelComplete: 'UpdateRelationshipComplete',
|
|
320
|
+
createRelComplete: 'CreateRelationshipComplete',
|
|
321
|
+
deleteRelComplete: 'DeleteRelationshipComplete',
|
|
322
|
+
getRelComplete: 'GetRelationshipComplete',
|
|
323
|
+
outUpdateRelComplete: 'UpdateRelationshipComplete_Out',
|
|
324
|
+
outCreateRelComplete: 'CreateRelationshipComplete_Out',
|
|
325
|
+
outDeleteRelComplete: 'DeleteRelationshipComplete_Out',
|
|
326
|
+
outGetRelComplete: 'GetRelationshipComplete_Out',
|
|
327
|
+
updateNodeComplete: 'UpdateNodeComplete',
|
|
328
|
+
outUpdateNodeComplete: 'UpdateNodeComplete_Out',
|
|
329
|
+
createNodeComplete: 'CreateObjectComplete',
|
|
330
|
+
outCreateNodeComplete: 'CreateObjectComplete_Out',
|
|
331
|
+
deleteNodeComplete: 'DeleteNodeComplete',
|
|
332
|
+
outDeleteNodeComplete: 'DeleteNodeComplete_Out',
|
|
333
|
+
getNodeComplete: 'GetNodeComplete',
|
|
334
|
+
outGetNodeComplete: 'GetNodeComplete_Out',
|
|
335
|
+
reservedLimitComplete: 'ReservedLimitComplete',
|
|
336
|
+
createPreSignUrl: 'CreatePreSignUrl',
|
|
337
|
+
flowSchemaOwnTopicComplete: 'FlowSchemaOwnTopicComplete',
|
|
338
|
+
flowSchemaOwnTopicEndpointComplete: 'FlowSchemaOwnTopicEndpointComplete',
|
|
339
|
+
createRecordComplete: 'CreateRecordComplete',
|
|
340
|
+
changeRelationshipComplete: 'ChangeRelationshipComplete',
|
|
341
|
+
outChangeRelationshipComplete: 'ChangeRelationshipComplete_Out',
|
|
342
|
+
moveRelationshipComplete: 'MoveRelationshipComplete',
|
|
343
|
+
outMoveRelationshipComplete: 'MoveRelationshipComplete_Out'
|
|
344
|
+
};
|
|
345
|
+
|
|
346
|
+
const GRAPH_HANDLER_SERVICE_NAME = {
|
|
347
|
+
graphHandler: 'GraphHandler'
|
|
348
|
+
};
|
|
349
|
+
|
|
350
|
+
const TOPIC_NAME_EXTERNAL_SERVICE = {
|
|
351
|
+
staticLimitProcessComplete: 'StaticLimitProcessComplete_Out',
|
|
352
|
+
reservedDynamicUsageComplete: 'ReservedDynamicUsageComplete_Out'
|
|
353
|
+
};
|
|
354
|
+
|
|
355
|
+
const EXTERNAL_SERVICE_NAME = {
|
|
356
|
+
accountLimits: 'AccountLimits'
|
|
357
|
+
};
|
|
358
|
+
|
|
359
|
+
const ADD_ON_DATA_STRUCTURE_TYPE = {
|
|
360
|
+
versionedData: 'versionedData',
|
|
361
|
+
attributeTree: 'attributeTree',
|
|
362
|
+
propertyValue: 'propertyValue',
|
|
363
|
+
translation: 'translation'
|
|
364
|
+
};
|
|
365
|
+
|
|
366
|
+
const ATTRIBUTE_TAG = {
|
|
367
|
+
attributeTagValue: 'Value',
|
|
368
|
+
attributeTagLabel: 'Label',
|
|
369
|
+
attributeTagLink: 'Link',
|
|
370
|
+
attributeTagValueStandard: 'ValueStandard',
|
|
371
|
+
attributeTagProperty: 'Property',
|
|
372
|
+
attributeTagPropertyLabel: 'PropertyLabel'
|
|
373
|
+
};
|
|
374
|
+
|
|
375
|
+
const PROPERTY_VALUE_TAG = {
|
|
376
|
+
property: 'PropertyValue',
|
|
377
|
+
propertyLabel: 'PropertyLabel'
|
|
378
|
+
};
|
|
379
|
+
|
|
380
|
+
const FIELD_NAME_TYPE = {
|
|
381
|
+
identifiers: 'identifiers',
|
|
382
|
+
nonIdentifiers: 'nonIdentifiers',
|
|
383
|
+
requiredOnCreateFieldName: 'requiredOnCreateFieldName',
|
|
384
|
+
randomOnCreateFieldName: 'randomOnCreateFieldName',
|
|
385
|
+
optionalOnCreate: 'optionalOnCreate'
|
|
386
|
+
};
|
|
387
|
+
|
|
388
|
+
const GENERATE_SEED_DATA_TYPE = {
|
|
389
|
+
RANDOM_ON_CREATE_IDENTIFIERS: 'randomOnCreateIdentifier',
|
|
390
|
+
NON_RANDOM_ON_CREATE_IDENTIFIERS: 'notRandomOnIdentifier',
|
|
391
|
+
RELATIONSHIPS: 'relationships'
|
|
392
|
+
};
|
|
393
|
+
|
|
394
|
+
const SEED_DATA_TAG = {
|
|
395
|
+
dynamoDBSeedDataTags: 'dynamoDBSeedDataTags',
|
|
396
|
+
graphSeedDataTags: 'graphSeedDataTags',
|
|
397
|
+
cleaningDynamoOneRecordsTags: 'cleaningDynamoOneRecordsTags',
|
|
398
|
+
cleaningDynamoManyRecordsTags: 'cleaningDynamoManyRecordsTags'
|
|
399
|
+
};
|
|
400
|
+
|
|
401
|
+
const ACCOUNTLIMIT_TAG = {
|
|
402
|
+
staticLimit: 'staticLimit',
|
|
403
|
+
reservedDynamic: 'reservedDynamic'
|
|
404
|
+
};
|
|
405
|
+
|
|
406
|
+
const LIMIT_TAG = {
|
|
407
|
+
uploadImage: 'uploadImageS3',
|
|
408
|
+
uploadData: 'uploadDataS3'
|
|
409
|
+
};
|
|
410
|
+
|
|
411
|
+
const RBAC_TYPE = {
|
|
412
|
+
appLevel: 'AppLevel',
|
|
413
|
+
userLevel: 'UserLevel'
|
|
414
|
+
};
|
|
415
|
+
|
|
416
|
+
export default {
|
|
417
|
+
HANDLER,
|
|
418
|
+
STORAGE_TYPES,
|
|
419
|
+
ACTIONS,
|
|
420
|
+
DEFAULT_HANDLER_PER_ACTION,
|
|
421
|
+
RESOURCE_CLASSES,
|
|
422
|
+
SOURCE_PATH,
|
|
423
|
+
DEFAULT_LAMBDA_ROLE_PER_ACTION,
|
|
424
|
+
SQS_RESOURCE,
|
|
425
|
+
SNS_RESOURCE,
|
|
426
|
+
DYNAMO_RESOURCE,
|
|
427
|
+
LAMBDA_RESOURCE,
|
|
428
|
+
SAVE_FILE_NAME,
|
|
429
|
+
FUNCTION_NAME,
|
|
430
|
+
SHORT_FUNCTION_NAME,
|
|
431
|
+
S3_RESOURCE,
|
|
432
|
+
SOURCE_GENERATE_IAM_ROLE,
|
|
433
|
+
FIELD_NAME_TYPE,
|
|
434
|
+
ADD_ON_DATA_STRUCTURE_TYPE,
|
|
435
|
+
ATTRIBUTE_TAG,
|
|
436
|
+
PROPERTY_VALUE_TAG,
|
|
437
|
+
GENERATE_SEED_DATA_TYPE,
|
|
438
|
+
SEED_DATA_TAG,
|
|
439
|
+
TOPIC_NAME_GENERATE_CODE,
|
|
440
|
+
TOPIC_NAME_GRAPH_HANDLER,
|
|
441
|
+
PREFIX,
|
|
442
|
+
GRAPH_HANDLER_SERVICE_NAME,
|
|
443
|
+
ACCOUNTLIMIT_TAG,
|
|
444
|
+
LIMIT_TAG,
|
|
445
|
+
RBAC_TYPE,
|
|
446
|
+
TOPIC_NAME_EXTERNAL_SERVICE,
|
|
447
|
+
EXTERNAL_SERVICE_NAME
|
|
448
|
+
};
|