@flow-scanner/lightning-flow-scanner-core 6.16.2 → 6.17.1
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/.husky/pre-commit +1 -0
- package/.husky/pre-push +1 -0
- package/.prettierignore +5 -0
- package/.swcrc +26 -0
- package/.turbo/turbo-build.log +17 -0
- package/.turbo/turbo-test.log +144 -0
- package/.turbo/turbo-vite$colon$dist.log +21 -0
- package/coverage/coverage-final.json +63 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +236 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +210 -0
- package/coverage/lcov-report/src/index.html +116 -0
- package/coverage/lcov-report/src/index.ts.html +238 -0
- package/coverage/lcov-report/src/main/adapters/RegexAdapter.ts.html +118 -0
- package/coverage/lcov-report/src/main/adapters/index.html +116 -0
- package/coverage/lcov-report/src/main/config/NodeIcons.ts.html +376 -0
- package/coverage/lcov-report/src/main/config/RuleRegistry.ts.html +646 -0
- package/coverage/lcov-report/src/main/config/VariableIcons.ts.html +253 -0
- package/coverage/lcov-report/src/main/config/index.html +146 -0
- package/coverage/lcov-report/src/main/enums/MetaType.ts.html +100 -0
- package/coverage/lcov-report/src/main/enums/MetadataType.ts.html +103 -0
- package/coverage/lcov-report/src/main/enums/MetadataTypes.ts.html +100 -0
- package/coverage/lcov-report/src/main/enums/index.html +116 -0
- package/coverage/lcov-report/src/main/interfaces/IRulesConfig.ts.html +133 -0
- package/coverage/lcov-report/src/main/interfaces/index.html +116 -0
- package/coverage/lcov-report/src/main/internals/index.html +116 -0
- package/coverage/lcov-report/src/main/internals/internals.ts.html +190 -0
- package/coverage/lcov-report/src/main/libs/BuildFlow.ts.html +127 -0
- package/coverage/lcov-report/src/main/libs/Compiler.ts.html +241 -0
- package/coverage/lcov-report/src/main/libs/ConvertFlowNodes.ts.html +97 -0
- package/coverage/lcov-report/src/main/libs/DynamicRule.ts.html +118 -0
- package/coverage/lcov-report/src/main/libs/ExportDetails.ts.html +256 -0
- package/coverage/lcov-report/src/main/libs/ExportDiagram.ts.html +331 -0
- package/coverage/lcov-report/src/main/libs/ExportSarif.ts.html +358 -0
- package/coverage/lcov-report/src/main/libs/FixFlows.ts.html +265 -0
- package/coverage/lcov-report/src/main/libs/GenerateMarkdown.ts.html +331 -0
- package/coverage/lcov-report/src/main/libs/GetRuleDefinitions.ts.html +274 -0
- package/coverage/lcov-report/src/main/libs/ParseFlows.ts.html +184 -0
- package/coverage/lcov-report/src/main/libs/RuleDocumentation.ts.html +190 -0
- package/coverage/lcov-report/src/main/libs/ScanFlows.ts.html +508 -0
- package/coverage/lcov-report/src/main/libs/exportAsDetails.ts.html +160 -0
- package/coverage/lcov-report/src/main/libs/exportAsSarif.ts.html +346 -0
- package/coverage/lcov-report/src/main/libs/index.html +251 -0
- package/coverage/lcov-report/src/main/models/FlatViolation.ts.html +106 -0
- package/coverage/lcov-report/src/main/models/Flow.ts.html +1057 -0
- package/coverage/lcov-report/src/main/models/FlowAttribute.ts.html +115 -0
- package/coverage/lcov-report/src/main/models/FlowElement.ts.html +133 -0
- package/coverage/lcov-report/src/main/models/FlowElementConnector.ts.html +169 -0
- package/coverage/lcov-report/src/main/models/FlowGraph.ts.html +1672 -0
- package/coverage/lcov-report/src/main/models/FlowMetadata.ts.html +106 -0
- package/coverage/lcov-report/src/main/models/FlowNode.ts.html +1252 -0
- package/coverage/lcov-report/src/main/models/FlowResource.ts.html +106 -0
- package/coverage/lcov-report/src/main/models/FlowType.ts.html +244 -0
- package/coverage/lcov-report/src/main/models/FlowVariable.ts.html +553 -0
- package/coverage/lcov-report/src/main/models/LoopRuleCommon.ts.html +235 -0
- package/coverage/lcov-report/src/main/models/ParsedFlow.ts.html +121 -0
- package/coverage/lcov-report/src/main/models/RuleCommon.ts.html +442 -0
- package/coverage/lcov-report/src/main/models/RuleResult.ts.html +172 -0
- package/coverage/lcov-report/src/main/models/ScanResult.ts.html +121 -0
- package/coverage/lcov-report/src/main/models/Violation.ts.html +316 -0
- package/coverage/lcov-report/src/main/models/index.html +341 -0
- package/coverage/lcov-report/src/main/rules/APIVersion.ts.html +361 -0
- package/coverage/lcov-report/src/main/rules/ActionCallsInLoop.ts.html +157 -0
- package/coverage/lcov-report/src/main/rules/AutoLayout.ts.html +220 -0
- package/coverage/lcov-report/src/main/rules/CopyAPIName.ts.html +175 -0
- package/coverage/lcov-report/src/main/rules/CyclomaticComplexity.ts.html +292 -0
- package/coverage/lcov-report/src/main/rules/DMLStatementInLoop.ts.html +163 -0
- package/coverage/lcov-report/src/main/rules/DuplicateDMLOperation.ts.html +334 -0
- package/coverage/lcov-report/src/main/rules/FlowDescription.ts.html +184 -0
- package/coverage/lcov-report/src/main/rules/FlowName.ts.html +229 -0
- package/coverage/lcov-report/src/main/rules/GetRecordAllFields.ts.html +280 -0
- package/coverage/lcov-report/src/main/rules/HardcodedId.ts.html +238 -0
- package/coverage/lcov-report/src/main/rules/HardcodedSecret.ts.html +238 -0
- package/coverage/lcov-report/src/main/rules/HardcodedUrl.ts.html +247 -0
- package/coverage/lcov-report/src/main/rules/InactiveFlow.ts.html +184 -0
- package/coverage/lcov-report/src/main/rules/MissingFaultPath.ts.html +397 -0
- package/coverage/lcov-report/src/main/rules/MissingFilterRecordTrigger.ts.html +229 -0
- package/coverage/lcov-report/src/main/rules/MissingMetadataDescription.ts.html +211 -0
- package/coverage/lcov-report/src/main/rules/MissingNullHandler.ts.html +460 -0
- package/coverage/lcov-report/src/main/rules/MissingRecordTriggerFilter.ts.html +235 -0
- package/coverage/lcov-report/src/main/rules/ProcessBuilder.ts.html +190 -0
- package/coverage/lcov-report/src/main/rules/RecordIdAsString.ts.html +274 -0
- package/coverage/lcov-report/src/main/rules/RecursiveAfterUpdate.ts.html +364 -0
- package/coverage/lcov-report/src/main/rules/SOQLQueryInLoop.ts.html +160 -0
- package/coverage/lcov-report/src/main/rules/SameRecordFieldUpdates.ts.html +283 -0
- package/coverage/lcov-report/src/main/rules/TransformInsteadOfLoop.ts.html +250 -0
- package/coverage/lcov-report/src/main/rules/TriggerOrder.ts.html +238 -0
- package/coverage/lcov-report/src/main/rules/UnconnectedElement.ts.html +178 -0
- package/coverage/lcov-report/src/main/rules/UnsafeRunningContext.ts.html +226 -0
- package/coverage/lcov-report/src/main/rules/UnusedVariable.ts.html +283 -0
- package/coverage/lcov-report/src/main/rules/index.html +521 -0
- package/coverage/lcov-report/src/main/store/DefaultRuleStore.ts.html +265 -0
- package/coverage/lcov-report/src/main/store/RuleRegistry.ts.html +118 -0
- package/coverage/lcov-report/src/main/store/index.html +116 -0
- package/coverage/lcov.info +6261 -0
- package/eslint.config.mjs +36 -0
- package/jest.config.cjs +32 -0
- package/jest.env-setup.js +101 -0
- package/lint-staged.config.mjs +8 -0
- package/out/main/config/RegexAdapter.d.ts +32 -0
- package/out/main/config/RegexAdapter.js +86 -0
- package/{main → out/main}/config/RuleRegistry.js +2 -0
- package/out/main/rules/FlowName.d.ts +15 -0
- package/{main → out/main}/rules/FlowName.js +24 -11
- package/out/main/rules/HardcodedId.d.ts +13 -0
- package/{main → out/main}/rules/HardcodedId.js +23 -4
- package/out/main/rules/HardcodedSecret.d.ts +13 -0
- package/out/main/rules/HardcodedSecret.js +101 -0
- package/{main → out/main}/rules/HardcodedUrl.d.ts +6 -0
- package/{main → out/main}/rules/HardcodedUrl.js +23 -5
- package/package.json +58 -8
- package/prettier.config.mjs +5 -0
- package/src/index.ts +52 -0
- package/src/main/config/NodeIcons.ts +98 -0
- package/src/main/config/RegexAdapter.ts +98 -0
- package/src/main/config/RuleRegistry.ts +188 -0
- package/src/main/config/VariableIcons.ts +57 -0
- package/src/main/enums/MetadataTypes.ts +6 -0
- package/src/main/interfaces/IExceptions.ts +6 -0
- package/src/main/interfaces/IRuleConfig.ts +6 -0
- package/src/main/interfaces/IRuleDefinition.ts +15 -0
- package/src/main/interfaces/IRuleOptions.ts +5 -0
- package/src/main/interfaces/IRulesConfig.ts +17 -0
- package/src/main/internals/internals.ts +35 -0
- package/src/main/libs/BuildFlow.ts +14 -0
- package/src/main/libs/Compiler.ts +53 -0
- package/src/main/libs/ExportDetails.ts +58 -0
- package/src/main/libs/ExportDiagram.ts +83 -0
- package/src/main/libs/ExportSarif.ts +92 -0
- package/src/main/libs/FixFlows.ts +61 -0
- package/src/main/libs/GetRuleDefinitions.ts +64 -0
- package/src/main/libs/ParseFlows.ts +34 -0
- package/src/main/libs/RuleDocumentation.ts +35 -0
- package/src/main/libs/ScanFlows.ts +142 -0
- package/src/main/models/FlatViolation.ts +16 -0
- package/src/main/models/Flow.ts +325 -0
- package/src/main/models/FlowAttribute.ts +11 -0
- package/src/main/models/FlowElement.ts +16 -0
- package/src/main/models/FlowElementConnector.ts +28 -0
- package/src/main/models/FlowGraph.ts +530 -0
- package/src/main/models/FlowMetadata.ts +8 -0
- package/src/main/models/FlowNode.ts +390 -0
- package/src/main/models/FlowResource.ts +8 -0
- package/src/main/models/FlowType.ts +53 -0
- package/src/main/models/FlowVariable.ts +157 -0
- package/src/main/models/LoopRuleCommon.ts +51 -0
- package/src/main/models/ParsedFlow.ts +13 -0
- package/src/main/models/RuleCommon.ts +120 -0
- package/src/main/models/RuleInfo.ts +54 -0
- package/src/main/models/RuleResult.ts +29 -0
- package/src/main/models/ScanResult.ts +12 -0
- package/src/main/models/Violation.ts +78 -0
- package/src/main/rules/APIVersion.ts +93 -0
- package/src/main/rules/ActionCallsInLoop.ts +25 -0
- package/src/main/rules/AutoLayout.ts +46 -0
- package/src/main/rules/CopyAPIName.ts +31 -0
- package/src/main/rules/CyclomaticComplexity.ts +70 -0
- package/src/main/rules/DMLStatementInLoop.ts +26 -0
- package/src/main/rules/DuplicateDMLOperation.ts +83 -0
- package/src/main/rules/FlowDescription.ts +34 -0
- package/src/main/rules/FlowName.ts +49 -0
- package/src/main/rules/GetRecordAllFields.ts +65 -0
- package/src/main/rules/HardcodedId.ts +51 -0
- package/src/main/rules/HardcodedSecret.ts +51 -0
- package/src/main/rules/HardcodedUrl.ts +54 -0
- package/src/main/rules/InactiveFlow.ts +33 -0
- package/src/main/rules/MissingFaultPath.ts +105 -0
- package/src/main/rules/MissingMetadataDescription.ts +42 -0
- package/src/main/rules/MissingNullHandler.ts +126 -0
- package/src/main/rules/MissingRecordTriggerFilter.ts +51 -0
- package/src/main/rules/ProcessBuilder.ts +35 -0
- package/src/main/rules/RecordIdAsString.ts +64 -0
- package/src/main/rules/RecursiveAfterUpdate.ts +94 -0
- package/src/main/rules/SOQLQueryInLoop.ts +26 -0
- package/src/main/rules/SameRecordFieldUpdates.ts +66 -0
- package/src/main/rules/TransformInsteadOfLoop.ts +56 -0
- package/src/main/rules/TriggerOrder.ts +51 -0
- package/src/main/rules/UnconnectedElement.ts +32 -0
- package/src/main/rules/UnsafeRunningContext.ts +47 -0
- package/src/main/rules/UnusedVariable.ts +66 -0
- package/stryker.config.mjs +23 -0
- package/tests/APIVersion.test.ts +87 -0
- package/tests/AutoLayout.test.ts +41 -0
- package/tests/Config.test.ts +122 -0
- package/tests/ConfigBetaMode.test.ts +26 -0
- package/tests/CopyAPIName.test.ts +45 -0
- package/tests/CyclomaticComplexity.test.ts +125 -0
- package/tests/DMLStatementInLoop.test.ts +32 -0
- package/tests/DuplicateDMLOperation.test.ts +43 -0
- package/tests/EnabledFalse.test.ts +63 -0
- package/tests/Exceptions.test.ts +815 -0
- package/tests/ExportSarif.test.ts +62 -0
- package/tests/FlowDescription.test.ts +44 -0
- package/tests/FlowDocumentation.test.ts +74 -0
- package/tests/FlowName.test.ts +61 -0
- package/tests/GetRecordElementAllFields.test.ts +182 -0
- package/tests/HardcodedId.test.ts +16 -0
- package/tests/HardcodedSecret.test.ts +32 -0
- package/tests/HardcodedUrl.test.ts +253 -0
- package/tests/InactiveFlow.test.ts +103 -0
- package/tests/MissingFaultPath.test.ts +52 -0
- package/tests/MissingMetadataDescription.test.ts +25 -0
- package/tests/MissingNullHandler.test.ts +45 -0
- package/tests/MissingRecordTriggerFilter.test.ts +54 -0
- package/tests/RecordIdAsString.test.ts +60 -0
- package/tests/RecursiveAfterUpdate.test.ts +183 -0
- package/tests/SOQLQueryInLoop.test.ts +33 -0
- package/tests/SameRecordFieldUpdates.test.ts +205 -0
- package/tests/SanityTest.test.ts +15 -0
- package/tests/TransformInsteadOfLoop.test.ts +33 -0
- package/tests/TriggerOrder.test.ts +112 -0
- package/tests/UnconnectedElement.test.ts +76 -0
- package/tests/UnsafeRunningContext.test.ts +46 -0
- package/tests/UnusedVariable.test.ts +59 -0
- package/tests/UnusedVariableExceptions.test.ts +87 -0
- package/tests/jsonfiles/MissingFaultPath_BeforeSave_Bypass.json +128 -0
- package/tests/jsonfiles/MissingFaultPath_WaitConditions.json +102 -0
- package/tests/jsonfiles/MissingFaultPath_WaitDate.json +88 -0
- package/tests/jsonfiles/MissingFaultPath_WaitDuration.json +90 -0
- package/tests/models/Flow.test.ts +107 -0
- package/tests/models/LoopRuleCommon.test.ts +246 -0
- package/tests/models/RuleCommon.test.ts +41 -0
- package/tsconfig.json +28 -0
- package/tsconfig.types.json +26 -0
- package/types/index.d.ts +27 -0
- package/types/index.d.ts.map +1 -0
- package/types/main/adapters/RegexAdapter.d.ts +33 -0
- package/types/main/adapters/RegexAdapter.d.ts.map +1 -0
- package/types/main/config/NodeIcons.d.ts +25 -0
- package/types/main/config/NodeIcons.d.ts.map +1 -0
- package/types/main/config/RegexAdapter.d.ts +33 -0
- package/types/main/config/RegexAdapter.d.ts.map +1 -0
- package/types/main/config/RuleRegistry.d.ts +23 -0
- package/types/main/config/RuleRegistry.d.ts.map +1 -0
- package/types/main/config/VariableIcons.d.ts +26 -0
- package/types/main/config/VariableIcons.d.ts.map +1 -0
- package/types/main/enums/MetadataTypes.d.ts +7 -0
- package/types/main/enums/MetadataTypes.d.ts.map +1 -0
- package/types/main/interfaces/IExceptions.d.ts +6 -0
- package/types/main/interfaces/IExceptions.d.ts.map +1 -0
- package/types/main/interfaces/IRuleConfig.d.ts +7 -0
- package/types/main/interfaces/IRuleConfig.d.ts.map +1 -0
- package/types/main/interfaces/IRuleDefinition.d.ts +18 -0
- package/types/main/interfaces/IRuleDefinition.d.ts.map +1 -0
- package/types/main/interfaces/IRuleOptions.d.ts +5 -0
- package/types/main/interfaces/IRuleOptions.d.ts.map +1 -0
- package/types/main/interfaces/IRulesConfig.d.ts +16 -0
- package/types/main/interfaces/IRulesConfig.d.ts.map +1 -0
- package/types/main/internals/internals.d.ts +19 -0
- package/types/main/internals/internals.d.ts.map +1 -0
- package/types/main/libs/BuildFlow.d.ts +2 -0
- package/types/main/libs/BuildFlow.d.ts.map +1 -0
- package/types/main/libs/Compiler.d.ts +8 -0
- package/types/main/libs/Compiler.d.ts.map +1 -0
- package/types/main/libs/ConvertFlowNodes.d.ts +2 -0
- package/types/main/libs/ConvertFlowNodes.d.ts.map +1 -0
- package/types/main/libs/DynamicRule.d.ts +5 -0
- package/types/main/libs/DynamicRule.d.ts.map +1 -0
- package/types/main/libs/ExportDetails.d.ts +4 -0
- package/types/main/libs/ExportDetails.d.ts.map +1 -0
- package/types/main/libs/ExportDiagram.d.ts +42 -0
- package/types/main/libs/ExportDiagram.d.ts.map +1 -0
- package/types/main/libs/ExportSarif.d.ts +3 -0
- package/types/main/libs/ExportSarif.d.ts.map +1 -0
- package/types/main/libs/FixFlows.d.ts +4 -0
- package/types/main/libs/FixFlows.d.ts.map +1 -0
- package/types/main/libs/GetRuleDefinitions.d.ts +5 -0
- package/types/main/libs/GetRuleDefinitions.d.ts.map +1 -0
- package/types/main/libs/ParseFlows.d.ts +3 -0
- package/types/main/libs/ParseFlows.d.ts.map +1 -0
- package/types/main/libs/RuleDocumentation.d.ts +21 -0
- package/types/main/libs/RuleDocumentation.d.ts.map +1 -0
- package/types/main/libs/ScanFlows.d.ts +5 -0
- package/types/main/libs/ScanFlows.d.ts.map +1 -0
- package/types/main/libs/exportAsDetails.d.ts +4 -0
- package/types/main/libs/exportAsDetails.d.ts.map +1 -0
- package/types/main/libs/exportAsSarif.d.ts +3 -0
- package/types/main/libs/exportAsSarif.d.ts.map +1 -0
- package/types/main/models/FlatViolation.d.ts +16 -0
- package/types/main/models/FlatViolation.d.ts.map +1 -0
- package/types/main/models/Flow.d.ts +70 -0
- package/types/main/models/Flow.d.ts.map +1 -0
- package/types/main/models/FlowAttribute.d.ts +6 -0
- package/types/main/models/FlowAttribute.d.ts.map +1 -0
- package/types/main/models/FlowElement.d.ts +11 -0
- package/types/main/models/FlowElement.d.ts.map +1 -0
- package/types/main/models/FlowElementConnector.d.ts +16 -0
- package/types/main/models/FlowElementConnector.d.ts.map +1 -0
- package/types/main/models/FlowGraph.d.ts +86 -0
- package/types/main/models/FlowGraph.d.ts.map +1 -0
- package/types/main/models/FlowMetadata.d.ts +5 -0
- package/types/main/models/FlowMetadata.d.ts.map +1 -0
- package/types/main/models/FlowNode.d.ts +66 -0
- package/types/main/models/FlowNode.d.ts.map +1 -0
- package/types/main/models/FlowResource.d.ts +5 -0
- package/types/main/models/FlowResource.d.ts.map +1 -0
- package/types/main/models/FlowType.d.ts +24 -0
- package/types/main/models/FlowType.d.ts.map +1 -0
- package/types/main/models/FlowVariable.d.ts +64 -0
- package/types/main/models/FlowVariable.d.ts.map +1 -0
- package/types/main/models/LoopRuleCommon.d.ts +15 -0
- package/types/main/models/LoopRuleCommon.d.ts.map +1 -0
- package/types/main/models/ParsedFlow.d.ts +8 -0
- package/types/main/models/ParsedFlow.d.ts.map +1 -0
- package/types/main/models/RuleCommon.d.ts +58 -0
- package/types/main/models/RuleCommon.d.ts.map +1 -0
- package/types/main/models/RuleInfo.d.ts +50 -0
- package/types/main/models/RuleInfo.d.ts.map +1 -0
- package/types/main/models/RuleResult.d.ts +15 -0
- package/types/main/models/RuleResult.d.ts.map +1 -0
- package/types/main/models/ScanResult.d.ts +8 -0
- package/types/main/models/ScanResult.d.ts.map +1 -0
- package/types/main/models/Violation.d.ts +12 -0
- package/types/main/models/Violation.d.ts.map +1 -0
- package/{main/rules/FlowName.d.ts → types/main/rules/APIVersion.d.ts} +2 -1
- package/types/main/rules/APIVersion.d.ts.map +1 -0
- package/types/main/rules/ActionCallsInLoop.d.ts +7 -0
- package/types/main/rules/ActionCallsInLoop.d.ts.map +1 -0
- package/types/main/rules/AutoLayout.d.ts +8 -0
- package/types/main/rules/AutoLayout.d.ts.map +1 -0
- package/types/main/rules/CopyAPIName.d.ts +8 -0
- package/types/main/rules/CopyAPIName.d.ts.map +1 -0
- package/types/main/rules/CyclomaticComplexity.d.ts +12 -0
- package/types/main/rules/CyclomaticComplexity.d.ts.map +1 -0
- package/types/main/rules/DMLStatementInLoop.d.ts +7 -0
- package/types/main/rules/DMLStatementInLoop.d.ts.map +1 -0
- package/types/main/rules/DuplicateDMLOperation.d.ts +9 -0
- package/types/main/rules/DuplicateDMLOperation.d.ts.map +1 -0
- package/{main/rules/HardcodedId.d.ts → types/main/rules/FlowDescription.d.ts} +2 -1
- package/types/main/rules/FlowDescription.d.ts.map +1 -0
- package/types/main/rules/FlowName.d.ts +16 -0
- package/types/main/rules/FlowName.d.ts.map +1 -0
- package/types/main/rules/GetRecordAllFields.d.ts +8 -0
- package/types/main/rules/GetRecordAllFields.d.ts.map +1 -0
- package/types/main/rules/HardcodedId.d.ts +14 -0
- package/types/main/rules/HardcodedId.d.ts.map +1 -0
- package/types/main/rules/HardcodedSecret.d.ts +14 -0
- package/types/main/rules/HardcodedSecret.d.ts.map +1 -0
- package/types/main/rules/HardcodedUrl.d.ts +14 -0
- package/types/main/rules/HardcodedUrl.d.ts.map +1 -0
- package/types/main/rules/InactiveFlow.d.ts +8 -0
- package/types/main/rules/InactiveFlow.d.ts.map +1 -0
- package/types/main/rules/MissingFaultPath.d.ts +15 -0
- package/types/main/rules/MissingFaultPath.d.ts.map +1 -0
- package/types/main/rules/MissingFilterRecordTrigger.d.ts +8 -0
- package/types/main/rules/MissingFilterRecordTrigger.d.ts.map +1 -0
- package/types/main/rules/MissingMetadataDescription.d.ts +8 -0
- package/types/main/rules/MissingMetadataDescription.d.ts.map +1 -0
- package/types/main/rules/MissingNullHandler.d.ts +8 -0
- package/types/main/rules/MissingNullHandler.d.ts.map +1 -0
- package/types/main/rules/MissingRecordTriggerFilter.d.ts +8 -0
- package/types/main/rules/MissingRecordTriggerFilter.d.ts.map +1 -0
- package/types/main/rules/ProcessBuilder.d.ts +8 -0
- package/types/main/rules/ProcessBuilder.d.ts.map +1 -0
- package/types/main/rules/RecordIdAsString.d.ts +8 -0
- package/types/main/rules/RecordIdAsString.d.ts.map +1 -0
- package/types/main/rules/RecursiveAfterUpdate.d.ts +9 -0
- package/types/main/rules/RecursiveAfterUpdate.d.ts.map +1 -0
- package/types/main/rules/SOQLQueryInLoop.d.ts +7 -0
- package/types/main/rules/SOQLQueryInLoop.d.ts.map +1 -0
- package/types/main/rules/SameRecordFieldUpdates.d.ts +9 -0
- package/types/main/rules/SameRecordFieldUpdates.d.ts.map +1 -0
- package/types/main/rules/TransformInsteadOfLoop.d.ts +8 -0
- package/types/main/rules/TransformInsteadOfLoop.d.ts.map +1 -0
- package/types/main/rules/TriggerOrder.d.ts +8 -0
- package/types/main/rules/TriggerOrder.d.ts.map +1 -0
- package/types/main/rules/UnconnectedElement.d.ts +8 -0
- package/types/main/rules/UnconnectedElement.d.ts.map +1 -0
- package/types/main/rules/UnsafeRunningContext.d.ts +8 -0
- package/types/main/rules/UnsafeRunningContext.d.ts.map +1 -0
- package/types/main/rules/UnusedVariable.d.ts +8 -0
- package/types/main/rules/UnusedVariable.d.ts.map +1 -0
- package/types/main/store/DefaultRuleStore.d.ts +3 -0
- package/types/main/store/DefaultRuleStore.d.ts.map +1 -0
- package/types/main/store/RuleRegistry.d.ts +23 -0
- package/types/main/store/RuleRegistry.d.ts.map +1 -0
- package/vite.config.ts +33 -0
- package/README.md +0 -635
- /package/{index.d.ts → out/index.d.ts} +0 -0
- /package/{index.js → out/index.js} +0 -0
- /package/{main → out/main}/config/NodeIcons.d.ts +0 -0
- /package/{main → out/main}/config/NodeIcons.js +0 -0
- /package/{main → out/main}/config/RuleRegistry.d.ts +0 -0
- /package/{main → out/main}/config/VariableIcons.d.ts +0 -0
- /package/{main → out/main}/config/VariableIcons.js +0 -0
- /package/{main → out/main}/enums/MetadataTypes.d.ts +0 -0
- /package/{main → out/main}/enums/MetadataTypes.js +0 -0
- /package/{main → out/main}/interfaces/IExceptions.d.ts +0 -0
- /package/{main → out/main}/interfaces/IExceptions.js +0 -0
- /package/{main → out/main}/interfaces/IRuleConfig.d.ts +0 -0
- /package/{main → out/main}/interfaces/IRuleConfig.js +0 -0
- /package/{main → out/main}/interfaces/IRuleDefinition.d.ts +0 -0
- /package/{main → out/main}/interfaces/IRuleDefinition.js +0 -0
- /package/{main → out/main}/interfaces/IRuleOptions.d.ts +0 -0
- /package/{main → out/main}/interfaces/IRuleOptions.js +0 -0
- /package/{main → out/main}/interfaces/IRulesConfig.d.ts +0 -0
- /package/{main → out/main}/interfaces/IRulesConfig.js +0 -0
- /package/{main → out/main}/internals/internals.d.ts +0 -0
- /package/{main → out/main}/internals/internals.js +0 -0
- /package/{main → out/main}/libs/BuildFlow.d.ts +0 -0
- /package/{main → out/main}/libs/BuildFlow.js +0 -0
- /package/{main → out/main}/libs/Compiler.d.ts +0 -0
- /package/{main → out/main}/libs/Compiler.js +0 -0
- /package/{main → out/main}/libs/ExportDetails.d.ts +0 -0
- /package/{main → out/main}/libs/ExportDetails.js +0 -0
- /package/{main → out/main}/libs/ExportDiagram.d.ts +0 -0
- /package/{main → out/main}/libs/ExportDiagram.js +0 -0
- /package/{main → out/main}/libs/ExportSarif.d.ts +0 -0
- /package/{main → out/main}/libs/ExportSarif.js +0 -0
- /package/{main → out/main}/libs/FixFlows.d.ts +0 -0
- /package/{main → out/main}/libs/FixFlows.js +0 -0
- /package/{main → out/main}/libs/GetRuleDefinitions.d.ts +0 -0
- /package/{main → out/main}/libs/GetRuleDefinitions.js +0 -0
- /package/{main → out/main}/libs/ParseFlows.d.ts +0 -0
- /package/{main → out/main}/libs/ParseFlows.js +0 -0
- /package/{main → out/main}/libs/RuleDocumentation.d.ts +0 -0
- /package/{main → out/main}/libs/RuleDocumentation.js +0 -0
- /package/{main → out/main}/libs/ScanFlows.d.ts +0 -0
- /package/{main → out/main}/libs/ScanFlows.js +0 -0
- /package/{main → out/main}/models/FlatViolation.d.ts +0 -0
- /package/{main → out/main}/models/FlatViolation.js +0 -0
- /package/{main → out/main}/models/Flow.d.ts +0 -0
- /package/{main → out/main}/models/Flow.js +0 -0
- /package/{main → out/main}/models/FlowAttribute.d.ts +0 -0
- /package/{main → out/main}/models/FlowAttribute.js +0 -0
- /package/{main → out/main}/models/FlowElement.d.ts +0 -0
- /package/{main → out/main}/models/FlowElement.js +0 -0
- /package/{main → out/main}/models/FlowElementConnector.d.ts +0 -0
- /package/{main → out/main}/models/FlowElementConnector.js +0 -0
- /package/{main → out/main}/models/FlowGraph.d.ts +0 -0
- /package/{main → out/main}/models/FlowGraph.js +0 -0
- /package/{main → out/main}/models/FlowMetadata.d.ts +0 -0
- /package/{main → out/main}/models/FlowMetadata.js +0 -0
- /package/{main → out/main}/models/FlowNode.d.ts +0 -0
- /package/{main → out/main}/models/FlowNode.js +0 -0
- /package/{main → out/main}/models/FlowResource.d.ts +0 -0
- /package/{main → out/main}/models/FlowResource.js +0 -0
- /package/{main → out/main}/models/FlowType.d.ts +0 -0
- /package/{main → out/main}/models/FlowType.js +0 -0
- /package/{main → out/main}/models/FlowVariable.d.ts +0 -0
- /package/{main → out/main}/models/FlowVariable.js +0 -0
- /package/{main → out/main}/models/LoopRuleCommon.d.ts +0 -0
- /package/{main → out/main}/models/LoopRuleCommon.js +0 -0
- /package/{main → out/main}/models/ParsedFlow.d.ts +0 -0
- /package/{main → out/main}/models/ParsedFlow.js +0 -0
- /package/{main → out/main}/models/RuleCommon.d.ts +0 -0
- /package/{main → out/main}/models/RuleCommon.js +0 -0
- /package/{main → out/main}/models/RuleInfo.d.ts +0 -0
- /package/{main → out/main}/models/RuleInfo.js +0 -0
- /package/{main → out/main}/models/RuleResult.d.ts +0 -0
- /package/{main → out/main}/models/RuleResult.js +0 -0
- /package/{main → out/main}/models/ScanResult.d.ts +0 -0
- /package/{main → out/main}/models/ScanResult.js +0 -0
- /package/{main → out/main}/models/Violation.d.ts +0 -0
- /package/{main → out/main}/models/Violation.js +0 -0
- /package/{main → out/main}/rules/APIVersion.d.ts +0 -0
- /package/{main → out/main}/rules/APIVersion.js +0 -0
- /package/{main → out/main}/rules/ActionCallsInLoop.d.ts +0 -0
- /package/{main → out/main}/rules/ActionCallsInLoop.js +0 -0
- /package/{main → out/main}/rules/AutoLayout.d.ts +0 -0
- /package/{main → out/main}/rules/AutoLayout.js +0 -0
- /package/{main → out/main}/rules/CopyAPIName.d.ts +0 -0
- /package/{main → out/main}/rules/CopyAPIName.js +0 -0
- /package/{main → out/main}/rules/CyclomaticComplexity.d.ts +0 -0
- /package/{main → out/main}/rules/CyclomaticComplexity.js +0 -0
- /package/{main → out/main}/rules/DMLStatementInLoop.d.ts +0 -0
- /package/{main → out/main}/rules/DMLStatementInLoop.js +0 -0
- /package/{main → out/main}/rules/DuplicateDMLOperation.d.ts +0 -0
- /package/{main → out/main}/rules/DuplicateDMLOperation.js +0 -0
- /package/{main → out/main}/rules/FlowDescription.d.ts +0 -0
- /package/{main → out/main}/rules/FlowDescription.js +0 -0
- /package/{main → out/main}/rules/GetRecordAllFields.d.ts +0 -0
- /package/{main → out/main}/rules/GetRecordAllFields.js +0 -0
- /package/{main → out/main}/rules/InactiveFlow.d.ts +0 -0
- /package/{main → out/main}/rules/InactiveFlow.js +0 -0
- /package/{main → out/main}/rules/MissingFaultPath.d.ts +0 -0
- /package/{main → out/main}/rules/MissingFaultPath.js +0 -0
- /package/{main → out/main}/rules/MissingMetadataDescription.d.ts +0 -0
- /package/{main → out/main}/rules/MissingMetadataDescription.js +0 -0
- /package/{main → out/main}/rules/MissingNullHandler.d.ts +0 -0
- /package/{main → out/main}/rules/MissingNullHandler.js +0 -0
- /package/{main → out/main}/rules/MissingRecordTriggerFilter.d.ts +0 -0
- /package/{main → out/main}/rules/MissingRecordTriggerFilter.js +0 -0
- /package/{main → out/main}/rules/ProcessBuilder.d.ts +0 -0
- /package/{main → out/main}/rules/ProcessBuilder.js +0 -0
- /package/{main → out/main}/rules/RecordIdAsString.d.ts +0 -0
- /package/{main → out/main}/rules/RecordIdAsString.js +0 -0
- /package/{main → out/main}/rules/RecursiveAfterUpdate.d.ts +0 -0
- /package/{main → out/main}/rules/RecursiveAfterUpdate.js +0 -0
- /package/{main → out/main}/rules/SOQLQueryInLoop.d.ts +0 -0
- /package/{main → out/main}/rules/SOQLQueryInLoop.js +0 -0
- /package/{main → out/main}/rules/SameRecordFieldUpdates.d.ts +0 -0
- /package/{main → out/main}/rules/SameRecordFieldUpdates.js +0 -0
- /package/{main → out/main}/rules/TransformInsteadOfLoop.d.ts +0 -0
- /package/{main → out/main}/rules/TransformInsteadOfLoop.js +0 -0
- /package/{main → out/main}/rules/TriggerOrder.d.ts +0 -0
- /package/{main → out/main}/rules/TriggerOrder.js +0 -0
- /package/{main → out/main}/rules/UnconnectedElement.d.ts +0 -0
- /package/{main → out/main}/rules/UnconnectedElement.js +0 -0
- /package/{main → out/main}/rules/UnsafeRunningContext.d.ts +0 -0
- /package/{main → out/main}/rules/UnsafeRunningContext.js +0 -0
- /package/{main → out/main}/rules/UnusedVariable.d.ts +0 -0
- /package/{main → out/main}/rules/UnusedVariable.js +0 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { describe, it, expect, jest } from "@jest/globals";
|
|
2
|
+
|
|
3
|
+
import { Flow } from "../../src/main/models/Flow";
|
|
4
|
+
|
|
5
|
+
describe("Flow Model", () => {
|
|
6
|
+
beforeAll(() => {
|
|
7
|
+
jest.spyOn(console, "warn").mockImplementation(() => jest.fn());
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
it("should print as xml when correct parameters", () => {
|
|
11
|
+
const sut: Flow = new Flow();
|
|
12
|
+
sut.xmldata = {
|
|
13
|
+
"@_xmlns": "http://soap.sforce.com/2006/04/metadata",
|
|
14
|
+
"@_xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
|
|
15
|
+
dynamicChoiceSets: {
|
|
16
|
+
name: "Priority",
|
|
17
|
+
dataType: "Picklist",
|
|
18
|
+
displayField: {
|
|
19
|
+
"@_xsi:nil": "true", // String "true" (boolean true also works, but string matches parsed output)
|
|
20
|
+
},
|
|
21
|
+
object: {
|
|
22
|
+
"@_xsi:nil": "true",
|
|
23
|
+
},
|
|
24
|
+
picklistField: "Priority",
|
|
25
|
+
picklistObject: "Task",
|
|
26
|
+
},
|
|
27
|
+
};
|
|
28
|
+
const out = sut.toXMLString();
|
|
29
|
+
expect(out).toBeTruthy();
|
|
30
|
+
expect(out).toMatch('<displayField xsi:nil="true"></displayField>'); // UPDATED: Expanded form
|
|
31
|
+
expect(out).toMatch('<object xsi:nil="true"></object>'); // UPDATED: Expanded form
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
class NoErrorThrownError extends Error {}
|
|
35
|
+
const getError = (call: () => unknown): Error => {
|
|
36
|
+
try {
|
|
37
|
+
call();
|
|
38
|
+
throw new NoErrorThrownError();
|
|
39
|
+
} catch (error: unknown) {
|
|
40
|
+
return error as Error;
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
it("should throw an exception for bad document", async () => {
|
|
45
|
+
const sut: Flow = new Flow();
|
|
46
|
+
const errors = getError(sut["generateDoc"]);
|
|
47
|
+
expect(errors).toBeTruthy();
|
|
48
|
+
expect(errors).not.toBeInstanceOf(NoErrorThrownError);
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
it("should identify transformElement as a FlowNode", () => {
|
|
52
|
+
const sut: Flow = new Flow();
|
|
53
|
+
sut.xmldata = {
|
|
54
|
+
transforms: [
|
|
55
|
+
{
|
|
56
|
+
name: "OCR_Mapping",
|
|
57
|
+
description: "OCR Mapping",
|
|
58
|
+
label: "OCR Mapping",
|
|
59
|
+
locationX: "176",
|
|
60
|
+
locationY: "323",
|
|
61
|
+
connector: {
|
|
62
|
+
targetReference: "OCR",
|
|
63
|
+
},
|
|
64
|
+
dataType: "SObject",
|
|
65
|
+
isCollection: "false",
|
|
66
|
+
objectType: "OpportunityContactRole",
|
|
67
|
+
scale: "0",
|
|
68
|
+
transformValues: {
|
|
69
|
+
transformValueActions: [
|
|
70
|
+
{
|
|
71
|
+
outputFieldApiName: "OpportunityId",
|
|
72
|
+
transformType: "Map",
|
|
73
|
+
value: {
|
|
74
|
+
elementReference: "$Record.Id",
|
|
75
|
+
},
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
outputFieldApiName: "ContactId",
|
|
79
|
+
transformType: "Map",
|
|
80
|
+
value: {
|
|
81
|
+
elementReference: "$Record.ContactId",
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
outputFieldApiName: "Role",
|
|
86
|
+
transformType: "Map",
|
|
87
|
+
value: {
|
|
88
|
+
stringValue: "Decision Maker",
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
],
|
|
92
|
+
},
|
|
93
|
+
},
|
|
94
|
+
],
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
sut["preProcessNodes"]();
|
|
98
|
+
|
|
99
|
+
expect(sut.elements).toBeDefined();
|
|
100
|
+
expect(sut.elements).toHaveLength(1);
|
|
101
|
+
const element = sut.elements?.pop();
|
|
102
|
+
expect(element).toBeDefined();
|
|
103
|
+
expect(element).toHaveProperty("name", "OCR_Mapping");
|
|
104
|
+
expect(element?.metaType).toBe("node");
|
|
105
|
+
expect(element?.subtype).toBe("transforms");
|
|
106
|
+
});
|
|
107
|
+
});
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
import { describe, expect, it } from "@jest/globals";
|
|
2
|
+
|
|
3
|
+
import { Flow, FlowNode } from "../../src/main/internals/internals";
|
|
4
|
+
import { LoopRuleCommon } from "../../src/main/models/LoopRuleCommon";
|
|
5
|
+
|
|
6
|
+
class TestLoopRule extends LoopRuleCommon {
|
|
7
|
+
constructor() {
|
|
8
|
+
super({
|
|
9
|
+
description: "Test Rule Description",
|
|
10
|
+
docRefs: [],
|
|
11
|
+
label: "Test Rule",
|
|
12
|
+
name: "TestRule",
|
|
13
|
+
supportedTypes: [],
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
protected getStatementTypes(): string[] {
|
|
18
|
+
return ["actionCalls"];
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
describe("LoopRuleCommon", () => {
|
|
23
|
+
let rule: TestLoopRule;
|
|
24
|
+
|
|
25
|
+
beforeEach(() => {
|
|
26
|
+
rule = new TestLoopRule();
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
describe("execute", () => {
|
|
30
|
+
it("should return empty when no loop elements exists", () => {
|
|
31
|
+
const actionCalls: FlowNode[] = [
|
|
32
|
+
new FlowNode("create_case_manually", "actionCalls", {
|
|
33
|
+
connector: { targetReference: "create_case_manually_2" },
|
|
34
|
+
description: "create case manually",
|
|
35
|
+
label: "create case manually",
|
|
36
|
+
locationX: "0",
|
|
37
|
+
locationY: "0",
|
|
38
|
+
name: "create_case_manually",
|
|
39
|
+
}),
|
|
40
|
+
new FlowNode("create_case_manually_2", "actionCalls", {
|
|
41
|
+
description: "create case manually 2",
|
|
42
|
+
label: "create case manually 2",
|
|
43
|
+
locationX: "0",
|
|
44
|
+
locationY: "0",
|
|
45
|
+
name: "create_case_manually_2",
|
|
46
|
+
}),
|
|
47
|
+
];
|
|
48
|
+
const flow = new Flow();
|
|
49
|
+
flow.elements = [...actionCalls];
|
|
50
|
+
|
|
51
|
+
const result = rule.execute(flow);
|
|
52
|
+
|
|
53
|
+
expect(result.occurs).toBe(false);
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
it("should return empty when no statements in loops exists", () => {
|
|
57
|
+
const flow = new Flow();
|
|
58
|
+
flow.elements = [
|
|
59
|
+
new FlowNode("loop1", "loops", {
|
|
60
|
+
description: "loop 1",
|
|
61
|
+
label: "loop",
|
|
62
|
+
locationX: "0",
|
|
63
|
+
locationY: "0",
|
|
64
|
+
name: "loop1",
|
|
65
|
+
nextValueConnector: { targetReference: "assign1" },
|
|
66
|
+
noMoreValuesConnector: { targetReference: "End" },
|
|
67
|
+
}),
|
|
68
|
+
new FlowNode("assign1", "assignments", {
|
|
69
|
+
connector: { targetReference: "End" },
|
|
70
|
+
name: "assign1",
|
|
71
|
+
}),
|
|
72
|
+
];
|
|
73
|
+
|
|
74
|
+
const result = rule.execute(flow);
|
|
75
|
+
|
|
76
|
+
expect(result.occurs).toBe(false);
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
it("should return when loop elements with statements exists", () => {
|
|
80
|
+
const actionCalls: FlowNode[] = [
|
|
81
|
+
new FlowNode("create_case_manually", "actionCalls", {
|
|
82
|
+
connector: { targetReference: "create_case_manually_2" },
|
|
83
|
+
description: "create case manually",
|
|
84
|
+
label: "create case manually",
|
|
85
|
+
locationX: "0",
|
|
86
|
+
locationY: "0",
|
|
87
|
+
name: "create_case_manually",
|
|
88
|
+
}),
|
|
89
|
+
new FlowNode("create_case_manually_2", "actionCalls", {
|
|
90
|
+
description: "create case manually 2",
|
|
91
|
+
label: "create case manually 2",
|
|
92
|
+
locationX: "0",
|
|
93
|
+
locationY: "0",
|
|
94
|
+
name: "create_case_manually_2",
|
|
95
|
+
}),
|
|
96
|
+
];
|
|
97
|
+
|
|
98
|
+
const loopElements: FlowNode[] = [
|
|
99
|
+
new FlowNode("loop1", "loops", {
|
|
100
|
+
description: "loop 1",
|
|
101
|
+
label: "loop",
|
|
102
|
+
locationX: "0",
|
|
103
|
+
locationY: "0",
|
|
104
|
+
name: "loop1",
|
|
105
|
+
nextValueConnector: { targetReference: "create_case_manually" },
|
|
106
|
+
noMoreValuesConnector: { targetReference: "End" },
|
|
107
|
+
}),
|
|
108
|
+
];
|
|
109
|
+
|
|
110
|
+
const flow = new Flow();
|
|
111
|
+
flow.elements = [...loopElements, ...actionCalls];
|
|
112
|
+
|
|
113
|
+
const result = rule.execute(flow);
|
|
114
|
+
|
|
115
|
+
expect(result.occurs).toBe(true);
|
|
116
|
+
});
|
|
117
|
+
});
|
|
118
|
+
|
|
119
|
+
describe("findLoopElements", () => {
|
|
120
|
+
it("should return empty when all elements are not loops", () => {
|
|
121
|
+
const actionCalls: FlowNode[] = [
|
|
122
|
+
new FlowNode("create_case_manually", "actionCalls", {
|
|
123
|
+
connector: { targetReference: "create_case_manually_2" },
|
|
124
|
+
description: "create case manually",
|
|
125
|
+
label: "create case manually",
|
|
126
|
+
locationX: "0",
|
|
127
|
+
locationY: "0",
|
|
128
|
+
name: "create_case_manually",
|
|
129
|
+
}),
|
|
130
|
+
new FlowNode("create_case_manually_2", "actionCalls", {
|
|
131
|
+
description: "create case manually 2",
|
|
132
|
+
label: "create case manually 2",
|
|
133
|
+
locationX: "0",
|
|
134
|
+
locationY: "0",
|
|
135
|
+
name: "create_case_manually_2",
|
|
136
|
+
}),
|
|
137
|
+
];
|
|
138
|
+
const flow = new Flow();
|
|
139
|
+
flow.elements = [...actionCalls];
|
|
140
|
+
|
|
141
|
+
const result = rule["findLoopElements"](flow);
|
|
142
|
+
|
|
143
|
+
expect(result).toHaveLength(0);
|
|
144
|
+
expect(result).toEqual([]);
|
|
145
|
+
});
|
|
146
|
+
it("should return empty when no loop elements exists", () => {
|
|
147
|
+
const flow = new Flow();
|
|
148
|
+
flow.elements = [];
|
|
149
|
+
|
|
150
|
+
const result = rule["findLoopElements"](flow);
|
|
151
|
+
|
|
152
|
+
expect(result).toHaveLength(0);
|
|
153
|
+
expect(result).toEqual([]);
|
|
154
|
+
});
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
describe("findLoopEnd", () => {
|
|
158
|
+
it("should return current element when noMoreValuesConnector is not defined", () => {
|
|
159
|
+
const element = new FlowNode("loop1", "loops", {
|
|
160
|
+
name: "loop1",
|
|
161
|
+
});
|
|
162
|
+
|
|
163
|
+
const result = rule["findLoopEnd"](element);
|
|
164
|
+
|
|
165
|
+
expect(result).toBe("loop1");
|
|
166
|
+
});
|
|
167
|
+
it("should return the targetReference of noMoreValuesConnector", () => {
|
|
168
|
+
const element = new FlowNode("loop1", "loops", {
|
|
169
|
+
noMoreValuesConnector: { targetReference: "End" },
|
|
170
|
+
});
|
|
171
|
+
|
|
172
|
+
const result = rule["findLoopEnd"](element);
|
|
173
|
+
|
|
174
|
+
expect(result).toBe("End");
|
|
175
|
+
});
|
|
176
|
+
});
|
|
177
|
+
|
|
178
|
+
describe("findStatementsInLoops", () => {
|
|
179
|
+
it("should return empty when no statements in loops exists", () => {
|
|
180
|
+
const actionCalls: FlowNode[] = [
|
|
181
|
+
new FlowNode("create_case_manually", "actionCalls", {
|
|
182
|
+
connector: { targetReference: "create_case_manually_2" },
|
|
183
|
+
description: "create case manually",
|
|
184
|
+
label: "create case manually",
|
|
185
|
+
locationX: "0",
|
|
186
|
+
locationY: "0",
|
|
187
|
+
name: "create_case_manually",
|
|
188
|
+
}),
|
|
189
|
+
new FlowNode("create_case_manually_2", "actionCalls", {
|
|
190
|
+
description: "create case manually 2",
|
|
191
|
+
label: "create case manually 2",
|
|
192
|
+
locationX: "0",
|
|
193
|
+
locationY: "0",
|
|
194
|
+
name: "create_case_manually_2",
|
|
195
|
+
}),
|
|
196
|
+
];
|
|
197
|
+
|
|
198
|
+
const flow = new Flow();
|
|
199
|
+
flow.elements = [...actionCalls];
|
|
200
|
+
|
|
201
|
+
const result = rule["findStatementsInLoops"](flow, []);
|
|
202
|
+
|
|
203
|
+
expect(result).toHaveLength(0);
|
|
204
|
+
});
|
|
205
|
+
|
|
206
|
+
it("should find statements in loop", () => {
|
|
207
|
+
const actionCalls: FlowNode[] = [
|
|
208
|
+
new FlowNode("create_case_manually", "actionCalls", {
|
|
209
|
+
connector: { targetReference: "create_case_manually_2" },
|
|
210
|
+
description: "create case manually",
|
|
211
|
+
label: "create case manually",
|
|
212
|
+
locationX: "0",
|
|
213
|
+
locationY: "0",
|
|
214
|
+
name: "create_case_manually",
|
|
215
|
+
}),
|
|
216
|
+
new FlowNode("create_case_manually_2", "actionCalls", {
|
|
217
|
+
description: "create case manually 2",
|
|
218
|
+
label: "create case manually 2",
|
|
219
|
+
locationX: "0",
|
|
220
|
+
locationY: "0",
|
|
221
|
+
name: "create_case_manually_2",
|
|
222
|
+
}),
|
|
223
|
+
];
|
|
224
|
+
|
|
225
|
+
const loopElements: FlowNode[] = [
|
|
226
|
+
new FlowNode("loop1", "loops", {
|
|
227
|
+
description: "loop 1",
|
|
228
|
+
label: "loop",
|
|
229
|
+
locationX: "0",
|
|
230
|
+
locationY: "0",
|
|
231
|
+
name: "loop1",
|
|
232
|
+
nextValueConnector: { targetReference: "create_case_manually" },
|
|
233
|
+
noMoreValuesConnector: { targetReference: "End" },
|
|
234
|
+
}),
|
|
235
|
+
];
|
|
236
|
+
|
|
237
|
+
const flow = new Flow();
|
|
238
|
+
flow.elements = [...loopElements, ...actionCalls];
|
|
239
|
+
|
|
240
|
+
const result = rule["findStatementsInLoops"](flow, loopElements);
|
|
241
|
+
|
|
242
|
+
expect(result).toHaveLength(2);
|
|
243
|
+
expect(result).toEqual(actionCalls);
|
|
244
|
+
});
|
|
245
|
+
});
|
|
246
|
+
});
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { describe, expect, it } from "@jest/globals";
|
|
2
|
+
import { ruleRegistry } from "../../src/main/config/RuleRegistry";
|
|
3
|
+
|
|
4
|
+
describe("RuleCommon automatically sets isConfigurable correctly", () => {
|
|
5
|
+
it("isConfigurable=true only when check() actually uses options", () => {
|
|
6
|
+
// Get all rule classes (including beta, since the test should cover everything)
|
|
7
|
+
const allRuleIds = ruleRegistry.getAllRuleIds(true);
|
|
8
|
+
|
|
9
|
+
for (const ruleId of allRuleIds) {
|
|
10
|
+
const ruleInstance = ruleRegistry.createInstance(ruleId);
|
|
11
|
+
|
|
12
|
+
const checkSource = (ruleInstance as any).check.toString();
|
|
13
|
+
const usesOptions = /options[.\?]/.test(checkSource);
|
|
14
|
+
|
|
15
|
+
expect(ruleInstance.isConfigurable).toBe(usesOptions);
|
|
16
|
+
|
|
17
|
+
if (ruleInstance.isConfigurable !== usesOptions) {
|
|
18
|
+
console.log(`\nMISMATCH on rule: ${ruleInstance.name} (${ruleId})`);
|
|
19
|
+
console.log(` isConfigurable = ${ruleInstance.isConfigurable}`);
|
|
20
|
+
console.log(` source ${usesOptions ? "DOES" : "does NOT"} use options`);
|
|
21
|
+
console.log(` check() source:\n${checkSource}\n`);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
it("known configurable rules have isConfigurable=true", () => {
|
|
27
|
+
const cyclomatic = ruleRegistry.createInstance("excessive-cyclomatic-complexity");
|
|
28
|
+
const flowName = ruleRegistry.createInstance("invalid-naming-convention");
|
|
29
|
+
|
|
30
|
+
expect(cyclomatic.isConfigurable).toBe(true);
|
|
31
|
+
expect(flowName.isConfigurable).toBe(true);
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
it("known non-configurable rules have isConfigurable=false", () => {
|
|
35
|
+
const duplicateDml = ruleRegistry.createInstance("duplicate-dml");
|
|
36
|
+
const autoLayout = ruleRegistry.createInstance("missing-auto-layout");
|
|
37
|
+
|
|
38
|
+
expect(duplicateDml.isConfigurable).toBe(false);
|
|
39
|
+
expect(autoLayout.isConfigurable).toBe(false);
|
|
40
|
+
});
|
|
41
|
+
});
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"composite": true,
|
|
4
|
+
"incremental": true,
|
|
5
|
+
"tsBuildInfoFile": "../../.tsbuildinfo/core.tsbuildinfo",
|
|
6
|
+
|
|
7
|
+
"declaration": true,
|
|
8
|
+
"emitDeclarationOnly": true,
|
|
9
|
+
"outDir": "types",
|
|
10
|
+
"target": "ES2020",
|
|
11
|
+
"module": "Node16",
|
|
12
|
+
"lib": ["ES2020"],
|
|
13
|
+
"downlevelIteration": true,
|
|
14
|
+
"rootDir": "src",
|
|
15
|
+
"declarationMap": true,
|
|
16
|
+
"skipLibCheck": true,
|
|
17
|
+
"baseUrl": ".",
|
|
18
|
+
"paths": {
|
|
19
|
+
"@flow-scanner/regex-scanner": ["../regex-scanner/out"],
|
|
20
|
+
"@flow-scanner/regex-scanner/*": ["../regex-scanner/out/*"]
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"include": ["src/**/*.ts"],
|
|
24
|
+
"exclude": ["node_modules", "out"],
|
|
25
|
+
"references": [
|
|
26
|
+
{ "path": "../regex-scanner" }
|
|
27
|
+
]
|
|
28
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"module": "ES6",
|
|
4
|
+
"target": "es6",
|
|
5
|
+
"moduleResolution": "node",
|
|
6
|
+
"outDir": "out",
|
|
7
|
+
"lib": ["es2020.string", "es6"],
|
|
8
|
+
"experimentalDecorators": true,
|
|
9
|
+
"sourceMap": false,
|
|
10
|
+
"rootDir": "src",
|
|
11
|
+
"strict": false,
|
|
12
|
+
"strictNullChecks": true,
|
|
13
|
+
"baseUrl": ".",
|
|
14
|
+
"declaration": true,
|
|
15
|
+
"esModuleInterop": true
|
|
16
|
+
},
|
|
17
|
+
"exclude": [
|
|
18
|
+
"node_modules",
|
|
19
|
+
"node_modules/**",
|
|
20
|
+
"example-flows/**",
|
|
21
|
+
"tests/**/*.ts",
|
|
22
|
+
"jest.config.ts",
|
|
23
|
+
"vite.config.ts",
|
|
24
|
+
"jest.setup.ts"
|
|
25
|
+
]
|
|
26
|
+
}
|
package/types/index.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { IRuleDefinition } from "./main/interfaces/IRuleDefinition";
|
|
2
|
+
import type { IRulesConfig } from "./main/interfaces/IRulesConfig";
|
|
3
|
+
import type { FlatViolation } from "./main/models/FlatViolation";
|
|
4
|
+
import { Compiler } from "./main/libs/Compiler";
|
|
5
|
+
import { exportDetails } from "./main/libs/ExportDetails";
|
|
6
|
+
import { exportSarif } from "./main/libs/ExportSarif";
|
|
7
|
+
import { fix } from "./main/libs/FixFlows";
|
|
8
|
+
import { getRules } from "./main/libs/GetRuleDefinitions";
|
|
9
|
+
import { parse } from "./main/libs/ParseFlows";
|
|
10
|
+
import { scan } from "./main/libs/ScanFlows";
|
|
11
|
+
import { Flow } from "./main/models/Flow";
|
|
12
|
+
import { FlowAttribute } from "./main/models/FlowAttribute";
|
|
13
|
+
import { FlowElement } from "./main/models/FlowElement";
|
|
14
|
+
import { FlowNode } from "./main/models/FlowNode";
|
|
15
|
+
import { FlowResource } from "./main/models/FlowResource";
|
|
16
|
+
import { FlowType } from "./main/models/FlowType";
|
|
17
|
+
import { FlowVariable } from "./main/models/FlowVariable";
|
|
18
|
+
import { ParsedFlow } from "./main/models/ParsedFlow";
|
|
19
|
+
import { RuleResult } from "./main/models/RuleResult";
|
|
20
|
+
import { ScanResult } from "./main/models/ScanResult";
|
|
21
|
+
import { Violation } from "./main/models/Violation";
|
|
22
|
+
import { DEFAULT_ICONS, ASCII_ICONS, type NodeIconConfig } from "./main/config/NodeIcons";
|
|
23
|
+
import { DEFAULT_VARIABLE_ICONS, ASCII_VARIABLE_ICONS, type VariableIconConfig } from "./main/config/VariableIcons";
|
|
24
|
+
import { exportDiagram, type DiagramOptions } from "./main/libs/ExportDiagram";
|
|
25
|
+
export { Compiler, exportDetails, exportDiagram, exportSarif, fix, Flow, FlowAttribute, FlowElement, FlowNode, FlowResource, FlowType, FlowVariable, getRules, parse, ParsedFlow, Violation, RuleResult, scan, ScanResult, DEFAULT_ICONS, ASCII_ICONS, DEFAULT_VARIABLE_ICONS, ASCII_VARIABLE_ICONS, };
|
|
26
|
+
export type { FlatViolation, IRuleDefinition, IRulesConfig, NodeIconConfig, DiagramOptions, VariableIconConfig };
|
|
27
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AACnE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AACjE,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,EAAE,GAAG,EAAE,MAAM,sBAAsB,CAAC;AAC3C,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,OAAO,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC;AAC/C,OAAO,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAC;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,oBAAoB,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AACxD,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,KAAK,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC1F,OAAO,EAAE,sBAAsB,EAAE,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AACpH,OAAO,EAAE,aAAa,EAAE,KAAK,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAE/E,OAAO,EACL,QAAQ,EACR,aAAa,EACb,aAAa,EACb,WAAW,EACX,GAAG,EACH,IAAI,EACJ,aAAa,EACb,WAAW,EACX,QAAQ,EACR,YAAY,EACZ,QAAQ,EACR,YAAY,EACZ,QAAQ,EACR,KAAK,EACL,UAAU,EACV,SAAS,EACT,UAAU,EACV,IAAI,EACJ,UAAU,EACV,aAAa,EACb,WAAW,EACX,sBAAsB,EACtB,oBAAoB,GACrB,CAAC;AACF,YAAY,EAAE,aAAa,EAAE,eAAe,EAAE,YAAY,EAAE,cAAc,EAAE,cAAc,EAAE,kBAAkB,EAAE,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Adapter functions to convert between core models (Flow, Violation)
|
|
3
|
+
* and regex-scanner models (MetadataFile, RegexViolation).
|
|
4
|
+
*
|
|
5
|
+
* This allows core rules to delegate to regex-scanner while maintaining
|
|
6
|
+
* backward compatibility with existing consumers.
|
|
7
|
+
*/
|
|
8
|
+
import type { MetadataFile, MetadataElement, RegexViolation } from "@flow-scanner/regex-scanner";
|
|
9
|
+
import { Flow } from "../models/Flow";
|
|
10
|
+
import { FlowElement } from "../models/FlowElement";
|
|
11
|
+
import { Violation } from "../models/Violation";
|
|
12
|
+
/**
|
|
13
|
+
* Convert a Flow object to a MetadataFile for regex-scanner.
|
|
14
|
+
*/
|
|
15
|
+
export declare function toMetadataFile(flow: Flow): MetadataFile;
|
|
16
|
+
/**
|
|
17
|
+
* Convert Flow elements to MetadataElements for element-level scanning.
|
|
18
|
+
*/
|
|
19
|
+
export declare function toMetadataElements(flow: Flow): MetadataElement[];
|
|
20
|
+
/**
|
|
21
|
+
* Convert a RegexViolation to a core Violation.
|
|
22
|
+
* Creates the appropriate FlowElement subclass based on metaType.
|
|
23
|
+
*/
|
|
24
|
+
export declare function toViolation(rv: RegexViolation): Violation;
|
|
25
|
+
/**
|
|
26
|
+
* Convert a core FlowElement to a regex-scanner MetadataElement.
|
|
27
|
+
*/
|
|
28
|
+
export declare function flowElementToMetadataElement(element: FlowElement): MetadataElement;
|
|
29
|
+
/**
|
|
30
|
+
* Convert multiple RegexViolations to core Violations.
|
|
31
|
+
*/
|
|
32
|
+
export declare function toViolations(violations: RegexViolation[]): Violation[];
|
|
33
|
+
//# sourceMappingURL=RegexAdapter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RegexAdapter.d.ts","sourceRoot":"","sources":["../../../src/main/adapters/RegexAdapter.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EACV,YAAY,EACZ,eAAe,EACf,cAAc,EACf,MAAM,6BAA6B,CAAC;AAErC,OAAO,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAGhD;;GAEG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,IAAI,GAAG,YAAY,CAiBvD;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,IAAI,GAAG,eAAe,EAAE,CAUhE;AAED;;;GAGG;AACH,wBAAgB,WAAW,CAAC,EAAE,EAAE,cAAc,GAAG,SAAS,CAgBzD;AAED;;GAEG;AACH,wBAAgB,4BAA4B,CAC1C,OAAO,EAAE,WAAW,GACnB,eAAe,CAMjB;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,UAAU,EAAE,cAAc,EAAE,GAAG,SAAS,EAAE,CAEtE"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Icon configuration for flow node types.
|
|
3
|
+
* Emoji are safe in UTF-8 encoded source files and will work in all modern builds.
|
|
4
|
+
* If you need ASCII fallback, use FlowNode.setIconConfig(ASCII_ICONS)
|
|
5
|
+
*/
|
|
6
|
+
export interface NodeIconConfig {
|
|
7
|
+
[nodeType: string]: {
|
|
8
|
+
[subtype: string]: string;
|
|
9
|
+
} | {
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Default icons using emoji (recommended for modern environments)
|
|
15
|
+
*/
|
|
16
|
+
export declare const DEFAULT_ICONS: NodeIconConfig;
|
|
17
|
+
/**
|
|
18
|
+
* ASCII fallback icons (for environments without emoji support)
|
|
19
|
+
*/
|
|
20
|
+
export declare const ASCII_ICONS: NodeIconConfig;
|
|
21
|
+
/**
|
|
22
|
+
* Get default icon config (can be overridden at runtime)
|
|
23
|
+
*/
|
|
24
|
+
export declare function getDefaultIconConfig(): NodeIconConfig;
|
|
25
|
+
//# sourceMappingURL=NodeIcons.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NodeIcons.d.ts","sourceRoot":"","sources":["../../../src/main/config/NodeIcons.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,MAAM,WAAW,cAAc;IAC7B,CAAC,QAAQ,EAAE,MAAM,GAAG;QAClB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;KAC3B,GAAG;QAAE,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;CACzB;AAED;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,cA8C3B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,cAwBzB,CAAC;AAEF;;GAEG;AACH,wBAAgB,oBAAoB,IAAI,cAAc,CAErD"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Adapter functions to convert between core models (Flow, Violation)
|
|
3
|
+
* and regex-scanner models (MetadataFile, RegexViolation).
|
|
4
|
+
*
|
|
5
|
+
* This allows core rules to delegate to regex-scanner while maintaining
|
|
6
|
+
* backward compatibility with existing consumers.
|
|
7
|
+
*/
|
|
8
|
+
import type { MetadataFile, MetadataElement, RegexViolation } from "@flow-scanner/regex-scanner";
|
|
9
|
+
import { Flow } from "../models/Flow";
|
|
10
|
+
import { FlowElement } from "../models/FlowElement";
|
|
11
|
+
import { Violation } from "../models/Violation";
|
|
12
|
+
/**
|
|
13
|
+
* Convert a Flow object to a MetadataFile for regex-scanner.
|
|
14
|
+
*/
|
|
15
|
+
export declare function toMetadataFile(flow: Flow): MetadataFile;
|
|
16
|
+
/**
|
|
17
|
+
* Convert Flow elements to MetadataElements for element-level scanning.
|
|
18
|
+
*/
|
|
19
|
+
export declare function toMetadataElements(flow: Flow): MetadataElement[];
|
|
20
|
+
/**
|
|
21
|
+
* Convert a RegexViolation to a core Violation.
|
|
22
|
+
* Creates the appropriate FlowElement subclass based on metaType.
|
|
23
|
+
*/
|
|
24
|
+
export declare function toViolation(rv: RegexViolation): Violation;
|
|
25
|
+
/**
|
|
26
|
+
* Convert a core FlowElement to a regex-scanner MetadataElement.
|
|
27
|
+
*/
|
|
28
|
+
export declare function flowElementToMetadataElement(element: FlowElement): MetadataElement;
|
|
29
|
+
/**
|
|
30
|
+
* Convert multiple RegexViolations to core Violations.
|
|
31
|
+
*/
|
|
32
|
+
export declare function toViolations(violations: RegexViolation[]): Violation[];
|
|
33
|
+
//# sourceMappingURL=RegexAdapter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RegexAdapter.d.ts","sourceRoot":"","sources":["../../../src/main/config/RegexAdapter.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EACV,YAAY,EACZ,eAAe,EACf,cAAc,EACf,MAAM,6BAA6B,CAAC;AAErC,OAAO,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAGhD;;GAEG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,IAAI,GAAG,YAAY,CAiBvD;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,IAAI,GAAG,eAAe,EAAE,CAUhE;AAED;;;GAGG;AACH,wBAAgB,WAAW,CAAC,EAAE,EAAE,cAAc,GAAG,SAAS,CAgBzD;AAED;;GAEG;AACH,wBAAgB,4BAA4B,CAC1C,OAAO,EAAE,WAAW,GACnB,eAAe,CAMjB;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,UAAU,EAAE,cAAc,EAAE,GAAG,SAAS,EAAE,CAEtE"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { IRuleDefinition } from "../interfaces/IRuleDefinition";
|
|
2
|
+
import { IRulesConfig } from "../interfaces/IRulesConfig";
|
|
3
|
+
type RuleConstructor = new () => IRuleDefinition;
|
|
4
|
+
interface RuleRegistryEntry {
|
|
5
|
+
ruleId: string;
|
|
6
|
+
ruleClass: RuleConstructor;
|
|
7
|
+
legacyName: string;
|
|
8
|
+
isBeta: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare class RuleRegistry {
|
|
11
|
+
private rules;
|
|
12
|
+
private legacyNameMap;
|
|
13
|
+
register(ruleId: string, ruleClass: RuleConstructor, legacyName: string, isBeta?: boolean): void;
|
|
14
|
+
get(idOrLegacyName: string): RuleRegistryEntry | undefined;
|
|
15
|
+
getAllRuleIds(includeBeta?: boolean): string[];
|
|
16
|
+
has(idOrLegacyName: string): boolean;
|
|
17
|
+
createInstance(idOrLegacyName: string): IRuleDefinition;
|
|
18
|
+
getRules(ruleConfig?: Map<string, unknown>, options?: IRulesConfig): IRuleDefinition[];
|
|
19
|
+
getRulesByNames(ruleNames?: string[], options?: IRulesConfig): IRuleDefinition[];
|
|
20
|
+
}
|
|
21
|
+
export declare const ruleRegistry: RuleRegistry;
|
|
22
|
+
export {};
|
|
23
|
+
//# sourceMappingURL=RuleRegistry.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RuleRegistry.d.ts","sourceRoot":"","sources":["../../../src/main/config/RuleRegistry.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAEhE,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AA+B1D,KAAK,eAAe,GAAG,UAAU,eAAe,CAAC;AAEjD,UAAU,iBAAiB;IACzB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,eAAe,CAAC;IAC3B,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,OAAO,CAAC;CACjB;AAED,cAAM,YAAY;IAChB,OAAO,CAAC,KAAK,CAA6C;IAC1D,OAAO,CAAC,aAAa,CAAkC;IAEvD,QAAQ,CACN,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,eAAe,EAC1B,UAAU,EAAE,MAAM,EAClB,MAAM,GAAE,OAAe,GACtB,IAAI;IAWP,GAAG,CAAC,cAAc,EAAE,MAAM,GAAG,iBAAiB,GAAG,SAAS;IAW1D,aAAa,CAAC,WAAW,GAAE,OAAe,GAAG,MAAM,EAAE;IAMrD,GAAG,CAAC,cAAc,EAAE,MAAM,GAAG,OAAO;IAIpC,cAAc,CAAC,cAAc,EAAE,MAAM,GAAG,eAAe;IAQvD,QAAQ,CACN,UAAU,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,EACjC,OAAO,CAAC,EAAE,YAAY,GACrB,eAAe,EAAE;IA4CpB,eAAe,CAAC,SAAS,CAAC,EAAE,MAAM,EAAE,EAAE,OAAO,CAAC,EAAE,YAAY,GAAG,eAAe,EAAE;CAejF;AAkCD,eAAO,MAAM,YAAY,cAAW,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Icon configuration for flow variable types.
|
|
3
|
+
* Includes icons for variable subtypes and boolean states.
|
|
4
|
+
*/
|
|
5
|
+
export interface VariableIconConfig {
|
|
6
|
+
subtypes: {
|
|
7
|
+
[subtype: string]: string;
|
|
8
|
+
};
|
|
9
|
+
boolean: {
|
|
10
|
+
true: string;
|
|
11
|
+
false: string;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Default icons using emoji (recommended for modern environments)
|
|
16
|
+
*/
|
|
17
|
+
export declare const DEFAULT_VARIABLE_ICONS: VariableIconConfig;
|
|
18
|
+
/**
|
|
19
|
+
* ASCII fallback icons (for environments without emoji support)
|
|
20
|
+
*/
|
|
21
|
+
export declare const ASCII_VARIABLE_ICONS: VariableIconConfig;
|
|
22
|
+
/**
|
|
23
|
+
* Get default variable icon config
|
|
24
|
+
*/
|
|
25
|
+
export declare function getDefaultVariableIconConfig(): VariableIconConfig;
|
|
26
|
+
//# sourceMappingURL=VariableIcons.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VariableIcons.d.ts","sourceRoot":"","sources":["../../../src/main/config/VariableIcons.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,kBAAkB;IAEjC,QAAQ,EAAE;QACR,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;KAC3B,CAAC;IAEF,OAAO,EAAE;QACP,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;KACf,CAAC;CACH;AAED;;GAEG;AACH,eAAO,MAAM,sBAAsB,EAAE,kBAYpC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,kBAYlC,CAAC;AAEF;;GAEG;AACH,wBAAgB,4BAA4B,IAAI,kBAAkB,CAEjE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MetadataTypes.d.ts","sourceRoot":"","sources":["../../../src/main/enums/MetadataTypes.ts"],"names":[],"mappings":"AAAA,oBAAY,QAAQ;IAClB,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,IAAI,SAAS;CACd"}
|