@uipath/flow-tool 0.1.15 → 0.9.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.
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Side-effect-free public entry for the `uip flow validate` contribution
3
+ * surface. Unlike the `tool.ts` entry (which registers CLI commands and
4
+ * pulls in the solution-packager plugin chain), this module imports only
5
+ * the validation service and its per-node-validator types, so downstream
6
+ * SDKs can import the API without dragging in CLI-plugin side effects.
7
+ *
8
+ * Published as subpath `@uipath/flow-tool/validation`.
9
+ */
10
+ export type { FlowValidateOptions } from "./services/flow-validate-service.js";
11
+ export { FlowValidateService } from "./services/flow-validate-service.js";
12
+ export type { FlowNodeValidator, FlowValidatorContext, FlowValidatorNode, ValidationIssue, ValidationIssueSeverity, } from "./services/node-validators/index.js";
13
+ export { connectorNodeValidator } from "./services/node-validators/index.js";
14
+ export type { WorkflowGovernanceEnforcements, WorkflowSerializedEdge, WorkflowSerializedHandleConfig, WorkflowSerializedManifest, WorkflowSerializedNode, WorkflowValidationContext, WorkflowValidationError, WorkflowValidationLayer, WorkflowValidationRule, WorkflowValidationSeverity, } from "./services/node-validators/workflow-rule-types.js";