@nfdi4plants/arctrl 3.0.0-beta.9 → 3.0.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/README.md +30 -3
- package/dist/ts/index.d.ts +54 -16
- package/dist/ts/index.d.ts.map +1 -1
- package/dist/ts/index.js +56 -18
- package/dist/ts/ts/ARC.d.ts +26 -9
- package/dist/ts/ts/ARC.d.ts.map +1 -1
- package/dist/ts/ts/ARC.js +148 -63
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts +62 -0
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts.map +1 -0
- package/dist/ts/ts/CWL/CWLProcessingUnit.js +250 -0
- package/dist/ts/ts/CWL/CWLTypes.d.ts +148 -0
- package/dist/ts/ts/CWL/CWLTypes.d.ts.map +1 -0
- package/dist/ts/ts/CWL/CWLTypes.js +384 -0
- package/dist/ts/ts/CWL/Decode.d.ts +214 -0
- package/dist/ts/ts/CWL/Decode.d.ts.map +1 -0
- package/dist/ts/ts/CWL/Decode.js +2667 -0
- package/dist/ts/ts/CWL/Encode.d.ts +103 -0
- package/dist/ts/ts/CWL/Encode.d.ts.map +1 -0
- package/dist/ts/ts/CWL/Encode.js +1513 -0
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts +50 -0
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts.map +1 -0
- package/dist/ts/ts/CWL/ExpressionToolDescription.js +152 -0
- package/dist/ts/ts/CWL/HashHelpers.d.ts +9 -0
- package/dist/ts/ts/CWL/HashHelpers.d.ts.map +1 -0
- package/dist/ts/ts/CWL/HashHelpers.js +35 -0
- package/dist/ts/ts/CWL/Inputs.d.ts +31 -0
- package/dist/ts/ts/CWL/Inputs.d.ts.map +1 -0
- package/dist/ts/ts/CWL/Inputs.js +86 -0
- package/dist/ts/ts/CWL/OperationDescription.d.ts +46 -0
- package/dist/ts/ts/CWL/OperationDescription.d.ts.map +1 -0
- package/dist/ts/ts/CWL/OperationDescription.js +133 -0
- package/dist/ts/ts/CWL/Outputs.d.ts +44 -0
- package/dist/ts/ts/CWL/Outputs.d.ts.map +1 -0
- package/dist/ts/ts/CWL/Outputs.js +143 -0
- package/dist/ts/ts/CWL/ParameterReference.d.ts +23 -0
- package/dist/ts/ts/CWL/ParameterReference.d.ts.map +1 -0
- package/dist/ts/ts/CWL/ParameterReference.js +60 -0
- package/dist/ts/ts/CWL/Requirements.d.ts +206 -0
- package/dist/ts/ts/CWL/Requirements.d.ts.map +1 -0
- package/dist/ts/ts/CWL/Requirements.js +384 -0
- package/dist/ts/ts/CWL/ToolDescription.d.ts +50 -0
- package/dist/ts/ts/CWL/ToolDescription.d.ts.map +1 -0
- package/dist/ts/ts/CWL/ToolDescription.js +152 -0
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts +50 -0
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts.map +1 -0
- package/dist/ts/ts/CWL/WorkflowDescription.js +142 -0
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts +160 -0
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts.map +1 -0
- package/dist/ts/ts/CWL/WorkflowSteps.js +317 -0
- package/dist/ts/ts/CWLRunResolver.d.ts +45 -0
- package/dist/ts/ts/CWLRunResolver.d.ts.map +1 -0
- package/dist/ts/ts/CWLRunResolver.js +181 -0
- package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ARC.js +27 -9
- package/dist/ts/ts/Contract/ArcRun.d.ts +6 -0
- package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcRun.js +131 -4
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts +3 -0
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcWorkflow.js +70 -4
- package/dist/ts/ts/Contract/Datamap.d.ts +25 -25
- package/dist/ts/ts/Contract/Datamap.js +34 -34
- package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -1
- package/dist/ts/ts/ContractIO/ContractIO.js +3 -1
- package/dist/ts/ts/Conversion/Assay.d.ts +13 -0
- package/dist/ts/ts/Conversion/Assay.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Assay.js +69 -0
- package/dist/ts/ts/Conversion/Basic.d.ts +105 -0
- package/dist/ts/ts/Conversion/Basic.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Basic.js +452 -0
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts +11 -0
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/ColumnIndex.js +71 -0
- package/dist/ts/ts/Conversion/Datamap.d.ts +11 -0
- package/dist/ts/ts/Conversion/Datamap.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Datamap.js +21 -0
- package/dist/ts/ts/Conversion/DateTime.d.ts +4 -0
- package/dist/ts/ts/Conversion/DateTime.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/DateTime.js +23 -0
- package/dist/ts/ts/Conversion/Investigation.d.ts +12 -0
- package/dist/ts/ts/Conversion/Investigation.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Investigation.js +79 -0
- package/dist/ts/ts/Conversion/Person.d.ts +16 -0
- package/dist/ts/ts/Conversion/Person.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Person.js +100 -0
- package/dist/ts/ts/Conversion/Process.d.ts +84 -0
- package/dist/ts/ts/Conversion/Process.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Process.js +455 -0
- package/dist/ts/ts/Conversion/Run.d.ts +35 -0
- package/dist/ts/ts/Conversion/Run.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Run.js +254 -0
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts +16 -0
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/ScholarlyArticle.js +116 -0
- package/dist/ts/ts/Conversion/Study.d.ts +12 -0
- package/dist/ts/ts/Conversion/Study.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Study.js +51 -0
- package/dist/ts/ts/Conversion/Table.d.ts +45 -0
- package/dist/ts/ts/Conversion/Table.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Table.js +203 -0
- package/dist/ts/ts/Conversion/Workflow.d.ts +91 -0
- package/dist/ts/ts/Conversion/Workflow.d.ts.map +1 -0
- package/dist/ts/ts/Conversion/Workflow.js +455 -0
- package/dist/ts/ts/Conversion.d.ts +25 -276
- package/dist/ts/ts/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Conversion.js +64 -1477
- package/dist/ts/ts/Core/ArcTypes.d.ts +69 -59
- package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -1
- package/dist/ts/ts/Core/ArcTypes.js +222 -142
- package/dist/ts/ts/Core/{DataMap.d.ts → Datamap.d.ts} +24 -24
- package/dist/ts/ts/Core/{DataMap.d.ts.map → Datamap.d.ts.map} +1 -1
- package/dist/ts/ts/Core/{DataMap.js → Datamap.js} +36 -36
- package/dist/ts/ts/Core/Helper/Identifier.d.ts +24 -0
- package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Identifier.js +35 -2
- package/dist/ts/ts/Core/Table/ArcTable.d.ts +8 -8
- package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTable.js +20 -20
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +4 -4
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystemTree.js +20 -27
- package/dist/ts/ts/FileSystem/Path.d.ts +22 -0
- package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Path.js +173 -3
- package/dist/ts/ts/Json/Assay.js +5 -5
- package/dist/ts/ts/Json/{DataMap → Datamap}/DataContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/{DataMap/DataMap.d.ts → Datamap/Datamap.d.ts} +6 -6
- package/dist/ts/ts/Json/{DataMap/DataMap.d.ts.map → Datamap/Datamap.d.ts.map} +1 -1
- package/dist/ts/ts/Json/{DataMap/DataMap.js → Datamap/Datamap.js} +2 -2
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDContext.js +21 -11
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +1 -0
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDNode.js +18 -7
- package/dist/ts/ts/Json/Run.js +5 -5
- package/dist/ts/ts/Json/Study.js +5 -5
- package/dist/ts/ts/Json/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Json/Workflow.js +10 -11
- package/dist/ts/ts/Json.d.ts +3 -5
- package/dist/ts/ts/Json.d.ts.map +1 -1
- package/dist/ts/ts/Json.js +4 -10
- package/dist/ts/ts/JsonIO/Datamap.d.ts +4 -4
- package/dist/ts/ts/JsonIO/Datamap.js +6 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts +0 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Investigation.js +2 -21
- package/dist/ts/ts/License.js +1 -1
- package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDContext.js +35 -31
- package/dist/ts/ts/ROCrate/LDObject.d.ts +2 -2
- package/dist/ts/ts/ROCrate/LDObject.js +2 -2
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Comment.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts +63 -0
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.js +361 -0
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts +39 -0
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.js +219 -0
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts +43 -0
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.js +224 -0
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/CreativeWork.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/CreativeWork.js +1 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Dataset.d.ts +34 -22
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Dataset.js +59 -2
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/DefinedTerm.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/File.d.ts +10 -4
- package/dist/ts/ts/ROCrate/LDTypes/File.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/File.js +34 -1
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts +59 -0
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.js +344 -0
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProcess.d.ts +2 -0
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProcess.js +31 -5
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProtocol.d.ts +6 -2
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/LabProtocol.js +66 -15
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Organization.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Person.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PostalAddress.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PropertyValue.d.ts +35 -11
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PropertyValue.js +191 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Sample.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/{Generic → LDTypes}/ScholarlyArticle.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts +46 -0
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.js +247 -0
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts +12 -0
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.js +40 -0
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts +11 -0
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.js +46 -0
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +2 -2
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/ROCrateContext.js +6 -6
- package/dist/ts/ts/ROCrateIO.d.ts +7 -3
- package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
- package/dist/ts/ts/ROCrateIO.js +82 -13
- package/dist/ts/ts/Spreadsheet/ArcAssay.js +3 -3
- package/dist/ts/ts/Spreadsheet/ArcRun.js +2 -2
- package/dist/ts/ts/Spreadsheet/ArcStudy.js +3 -3
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +2 -2
- package/dist/ts/ts/Spreadsheet/Datamap.d.ts +8 -0
- package/dist/ts/ts/Spreadsheet/{DataMap.d.ts.map → Datamap.d.ts.map} +1 -1
- package/dist/ts/ts/Spreadsheet/{DataMap.js → Datamap.js} +9 -9
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapColumn.d.ts → DatamapTable/DatamapColumn.d.ts} +1 -1
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapColumn.d.ts.map → DatamapTable/DatamapColumn.d.ts.map} +1 -1
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapColumn.js → DatamapTable/DatamapColumn.js} +1 -1
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapHeader.d.ts → DatamapTable/DatamapHeader.d.ts} +1 -1
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapHeader.d.ts.map → DatamapTable/DatamapHeader.d.ts.map} +1 -1
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapTable.d.ts → DatamapTable/DatamapTable.d.ts} +5 -5
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapTable.d.ts.map → DatamapTable/DatamapTable.d.ts.map} +1 -1
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapTable.js → DatamapTable/DatamapTable.js} +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/Run.js +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +4 -4
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts +36 -0
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts.map +1 -0
- package/dist/ts/ts/WorkflowGraph/Adapters.js +94 -0
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts +37 -0
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts.map +1 -0
- package/dist/ts/ts/WorkflowGraph/BuildOptions.js +35 -0
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts +160 -0
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts.map +1 -0
- package/dist/ts/ts/WorkflowGraph/Builder.js +556 -0
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts +182 -0
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts.map +1 -0
- package/dist/ts/ts/WorkflowGraph/GraphTypes.js +281 -0
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts +27 -0
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts.map +1 -0
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.js +49 -0
- package/dist/ts/ts/Xlsx.d.ts +5 -5
- package/dist/ts/ts/Xlsx.js +1 -1
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts +1 -1
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackage.js +6 -6
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +1 -1
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +6 -6
- package/dist/ts/ts/Yaml.d.ts +24 -0
- package/dist/ts/ts/Yaml.d.ts.map +1 -0
- package/dist/ts/ts/Yaml.js +56 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.1.0/DynObj.fs.js +109 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.4}/Encode.fs.js +9 -9
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/Escapes.fs.js +313 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/FlowToBlock.fs.js +956 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/Interop/JsInterop.fs.js +10 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/Persil.fs.js +562 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.4}/Preprocessing.fs.js +52 -12
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/Reader.fs.js +1314 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/Regex.fs.js +21 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/RegexActivePatterns.fs.js +313 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/StringBuffer.fs.js +60 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/Writer.fs.js +391 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.4/YAMLiciousTypes.fs.js +317 -0
- package/package.json +1 -1
- package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +0 -1
- package/dist/ts/ts/ROCrate/Generic/File.d.ts.map +0 -1
- package/dist/ts/ts/ROCrate/Generic/LabProcess.d.ts.map +0 -1
- package/dist/ts/ts/ROCrate/Generic/LabProtocol.d.ts.map +0 -1
- package/dist/ts/ts/ROCrate/Generic/PropertyValue.d.ts.map +0 -1
- package/dist/ts/ts/Spreadsheet/DataMap.d.ts +0 -8
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -10
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +0 -45
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +0 -483
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -11
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +0 -212
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +0 -164
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +0 -152
- /package/dist/ts/ts/Json/{DataMap → Datamap}/DataContext.d.ts +0 -0
- /package/dist/ts/ts/Json/{DataMap → Datamap}/DataContext.js +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Comment.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Comment.js +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/CreativeWork.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/DefinedTerm.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/DefinedTerm.js +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Organization.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Organization.js +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Person.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Person.js +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PostalAddress.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/PostalAddress.js +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Sample.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/Sample.js +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/ScholarlyArticle.d.ts +0 -0
- /package/dist/ts/ts/ROCrate/{Generic → LDTypes}/ScholarlyArticle.js +0 -0
- /package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapHeader.js → DatamapTable/DatamapHeader.js} +0 -0
- /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/DynamicObj.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/FableJS.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/HashCodes.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/PropertyHelper.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{DynamicObj.7.0.1 → DynamicObj.7.1.0}/ReflectionUtils.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.4}/Decode.fs.js +0 -0
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
import { Record, Union } from '@fable-org/fable-library-js/Types.js';
|
|
2
|
+
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
3
|
+
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
4
|
+
import { IComparable, IEquatable } from '@fable-org/fable-library-js/Util.js';
|
|
5
|
+
import { DynamicObj } from '../fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js';
|
|
6
|
+
import { int32 } from '@fable-org/fable-library-js/Int32.js';
|
|
7
|
+
import { FSharpResult$2_$union } from '@fable-org/fable-library-js/Result.js';
|
|
8
|
+
export type ProcessingUnitKind_$union = ProcessingUnitKind<0> | ProcessingUnitKind<1> | ProcessingUnitKind<2> | ProcessingUnitKind<3> | ProcessingUnitKind<4> | ProcessingUnitKind<5>;
|
|
9
|
+
export type ProcessingUnitKind_$cases = {
|
|
10
|
+
0: ["Workflow", []];
|
|
11
|
+
1: ["CommandLineTool", []];
|
|
12
|
+
2: ["ExpressionTool", []];
|
|
13
|
+
3: ["Operation", []];
|
|
14
|
+
4: ["ExternalReference", []];
|
|
15
|
+
5: ["UnresolvedReference", []];
|
|
16
|
+
};
|
|
17
|
+
export declare function ProcessingUnitKind_Workflow(): ProcessingUnitKind<0>;
|
|
18
|
+
export declare function ProcessingUnitKind_CommandLineTool(): ProcessingUnitKind<1>;
|
|
19
|
+
export declare function ProcessingUnitKind_ExpressionTool(): ProcessingUnitKind<2>;
|
|
20
|
+
export declare function ProcessingUnitKind_Operation(): ProcessingUnitKind<3>;
|
|
21
|
+
export declare function ProcessingUnitKind_ExternalReference(): ProcessingUnitKind<4>;
|
|
22
|
+
export declare function ProcessingUnitKind_UnresolvedReference(): ProcessingUnitKind<5>;
|
|
23
|
+
export declare class ProcessingUnitKind<Tag extends keyof ProcessingUnitKind_$cases> extends Union<Tag, ProcessingUnitKind_$cases[Tag][0]> {
|
|
24
|
+
readonly tag: Tag;
|
|
25
|
+
readonly fields: ProcessingUnitKind_$cases[Tag][1];
|
|
26
|
+
constructor(tag: Tag, fields: ProcessingUnitKind_$cases[Tag][1]);
|
|
27
|
+
cases(): string[];
|
|
28
|
+
}
|
|
29
|
+
export declare function ProcessingUnitKind_$reflection(): TypeInfo;
|
|
30
|
+
export type PortDirection_$union = PortDirection<0> | PortDirection<1>;
|
|
31
|
+
export type PortDirection_$cases = {
|
|
32
|
+
0: ["Input", []];
|
|
33
|
+
1: ["Output", []];
|
|
34
|
+
};
|
|
35
|
+
export declare function PortDirection_Input(): PortDirection<0>;
|
|
36
|
+
export declare function PortDirection_Output(): PortDirection<1>;
|
|
37
|
+
export declare class PortDirection<Tag extends keyof PortDirection_$cases> extends Union<Tag, PortDirection_$cases[Tag][0]> {
|
|
38
|
+
readonly tag: Tag;
|
|
39
|
+
readonly fields: PortDirection_$cases[Tag][1];
|
|
40
|
+
constructor(tag: Tag, fields: PortDirection_$cases[Tag][1]);
|
|
41
|
+
cases(): string[];
|
|
42
|
+
}
|
|
43
|
+
export declare function PortDirection_$reflection(): TypeInfo;
|
|
44
|
+
export type NodeKind_$union = NodeKind<0> | NodeKind<1> | NodeKind<2>;
|
|
45
|
+
export type NodeKind_$cases = {
|
|
46
|
+
0: ["ProcessingUnitNode", [ProcessingUnitKind_$union]];
|
|
47
|
+
1: ["StepNode", []];
|
|
48
|
+
2: ["PortNode", [PortDirection_$union]];
|
|
49
|
+
};
|
|
50
|
+
export declare function NodeKind_ProcessingUnitNode(Item: ProcessingUnitKind_$union): NodeKind<0>;
|
|
51
|
+
export declare function NodeKind_StepNode(): NodeKind<1>;
|
|
52
|
+
export declare function NodeKind_PortNode(Item: PortDirection_$union): NodeKind<2>;
|
|
53
|
+
export declare class NodeKind<Tag extends keyof NodeKind_$cases> extends Union<Tag, NodeKind_$cases[Tag][0]> {
|
|
54
|
+
readonly tag: Tag;
|
|
55
|
+
readonly fields: NodeKind_$cases[Tag][1];
|
|
56
|
+
constructor(tag: Tag, fields: NodeKind_$cases[Tag][1]);
|
|
57
|
+
cases(): string[];
|
|
58
|
+
}
|
|
59
|
+
export declare function NodeKind_$reflection(): TypeInfo;
|
|
60
|
+
export type EdgeKind_$union = EdgeKind<0> | EdgeKind<1> | EdgeKind<2> | EdgeKind<3> | EdgeKind<4>;
|
|
61
|
+
export type EdgeKind_$cases = {
|
|
62
|
+
0: ["Contains", []];
|
|
63
|
+
1: ["Calls", []];
|
|
64
|
+
2: ["BindsWorkflowInput", []];
|
|
65
|
+
3: ["DataFlow", []];
|
|
66
|
+
4: ["BindsWorkflowOutput", []];
|
|
67
|
+
};
|
|
68
|
+
export declare function EdgeKind_Contains(): EdgeKind<0>;
|
|
69
|
+
export declare function EdgeKind_Calls(): EdgeKind<1>;
|
|
70
|
+
export declare function EdgeKind_BindsWorkflowInput(): EdgeKind<2>;
|
|
71
|
+
export declare function EdgeKind_DataFlow(): EdgeKind<3>;
|
|
72
|
+
export declare function EdgeKind_BindsWorkflowOutput(): EdgeKind<4>;
|
|
73
|
+
export declare class EdgeKind<Tag extends keyof EdgeKind_$cases> extends Union<Tag, EdgeKind_$cases[Tag][0]> {
|
|
74
|
+
readonly tag: Tag;
|
|
75
|
+
readonly fields: EdgeKind_$cases[Tag][1];
|
|
76
|
+
constructor(tag: Tag, fields: EdgeKind_$cases[Tag][1]);
|
|
77
|
+
cases(): string[];
|
|
78
|
+
}
|
|
79
|
+
export declare function EdgeKind_$reflection(): TypeInfo;
|
|
80
|
+
export type GraphIssueKind_$union = GraphIssueKind<0> | GraphIssueKind<1> | GraphIssueKind<2> | GraphIssueKind<3> | GraphIssueKind<4> | GraphIssueKind<5>;
|
|
81
|
+
export type GraphIssueKind_$cases = {
|
|
82
|
+
0: ["MissingReference", []];
|
|
83
|
+
1: ["InvalidReference", []];
|
|
84
|
+
2: ["ResolutionFailed", []];
|
|
85
|
+
3: ["CycleDetected", []];
|
|
86
|
+
4: ["MissingCwlDescription", []];
|
|
87
|
+
5: ["UnexpectedRuntimeType", []];
|
|
88
|
+
};
|
|
89
|
+
export declare function GraphIssueKind_MissingReference(): GraphIssueKind<0>;
|
|
90
|
+
export declare function GraphIssueKind_InvalidReference(): GraphIssueKind<1>;
|
|
91
|
+
export declare function GraphIssueKind_ResolutionFailed(): GraphIssueKind<2>;
|
|
92
|
+
export declare function GraphIssueKind_CycleDetected(): GraphIssueKind<3>;
|
|
93
|
+
export declare function GraphIssueKind_MissingCwlDescription(): GraphIssueKind<4>;
|
|
94
|
+
export declare function GraphIssueKind_UnexpectedRuntimeType(): GraphIssueKind<5>;
|
|
95
|
+
export declare class GraphIssueKind<Tag extends keyof GraphIssueKind_$cases> extends Union<Tag, GraphIssueKind_$cases[Tag][0]> {
|
|
96
|
+
readonly tag: Tag;
|
|
97
|
+
readonly fields: GraphIssueKind_$cases[Tag][1];
|
|
98
|
+
constructor(tag: Tag, fields: GraphIssueKind_$cases[Tag][1]);
|
|
99
|
+
cases(): string[];
|
|
100
|
+
}
|
|
101
|
+
export declare function GraphIssueKind_$reflection(): TypeInfo;
|
|
102
|
+
export declare class GraphBuildIssue extends Record implements IEquatable<GraphBuildIssue>, IComparable<GraphBuildIssue> {
|
|
103
|
+
readonly Kind: GraphIssueKind_$union;
|
|
104
|
+
readonly Message: string;
|
|
105
|
+
readonly Scope: Option<string>;
|
|
106
|
+
readonly Reference: Option<string>;
|
|
107
|
+
constructor(Kind: GraphIssueKind_$union, Message: string, Scope: Option<string>, Reference: Option<string>);
|
|
108
|
+
}
|
|
109
|
+
export declare function GraphBuildIssue_$reflection(): TypeInfo;
|
|
110
|
+
export declare function GraphBuildIssue_create_Z2F3B511A(kind: GraphIssueKind_$union, message: string, scope?: string, reference?: string): GraphBuildIssue;
|
|
111
|
+
export declare class WorkflowGraphNode extends Record implements IEquatable<WorkflowGraphNode> {
|
|
112
|
+
readonly Id: string;
|
|
113
|
+
readonly Kind: NodeKind_$union;
|
|
114
|
+
readonly Label: string;
|
|
115
|
+
readonly OwnerNodeId: Option<string>;
|
|
116
|
+
readonly Reference: Option<string>;
|
|
117
|
+
readonly Metadata: Option<DynamicObj>;
|
|
118
|
+
constructor(Id: string, Kind: NodeKind_$union, Label: string, OwnerNodeId: Option<string>, Reference: Option<string>, Metadata: Option<DynamicObj>);
|
|
119
|
+
}
|
|
120
|
+
export declare function WorkflowGraphNode_$reflection(): TypeInfo;
|
|
121
|
+
export declare function WorkflowGraphNode_create_62C775C0(id: string, kind: NodeKind_$union, label: string, ownerNodeId?: string, reference?: string, metadata?: DynamicObj): WorkflowGraphNode;
|
|
122
|
+
export declare class WorkflowGraphEdge extends Record implements IEquatable<WorkflowGraphEdge>, IComparable<WorkflowGraphEdge> {
|
|
123
|
+
readonly Id: string;
|
|
124
|
+
readonly SourceNodeId: string;
|
|
125
|
+
readonly TargetNodeId: string;
|
|
126
|
+
readonly Kind: EdgeKind_$union;
|
|
127
|
+
readonly Label: Option<string>;
|
|
128
|
+
constructor(Id: string, SourceNodeId: string, TargetNodeId: string, Kind: EdgeKind_$union, Label: Option<string>);
|
|
129
|
+
}
|
|
130
|
+
export declare function WorkflowGraphEdge_$reflection(): TypeInfo;
|
|
131
|
+
export declare function WorkflowGraphEdge_create_5E4B5E48(id: string, sourceNodeId: string, targetNodeId: string, kind: EdgeKind_$union, label?: string): WorkflowGraphEdge;
|
|
132
|
+
export declare class WorkflowGraph extends Record implements IEquatable<WorkflowGraph> {
|
|
133
|
+
readonly RootProcessingUnitNodeId: string;
|
|
134
|
+
readonly Nodes: WorkflowGraphNode[];
|
|
135
|
+
readonly Edges: WorkflowGraphEdge[];
|
|
136
|
+
readonly Diagnostics: GraphBuildIssue[];
|
|
137
|
+
constructor(RootProcessingUnitNodeId: string, Nodes: WorkflowGraphNode[], Edges: WorkflowGraphEdge[], Diagnostics: GraphBuildIssue[]);
|
|
138
|
+
}
|
|
139
|
+
export declare function WorkflowGraph_$reflection(): TypeInfo;
|
|
140
|
+
export declare function WorkflowGraph_create_4D231A1(rootProcessingUnitNodeId: string, nodes?: WorkflowGraphNode[], edges?: WorkflowGraphEdge[], diagnostics?: GraphBuildIssue[]): WorkflowGraph;
|
|
141
|
+
export declare function WorkflowGraph__get_NodeCount(this$: WorkflowGraph): int32;
|
|
142
|
+
export declare function WorkflowGraph__get_EdgeCount(this$: WorkflowGraph): int32;
|
|
143
|
+
export declare class WorkflowGraphIndex extends Record implements IEquatable<WorkflowGraphIndex> {
|
|
144
|
+
readonly WorkflowGraphs: [string, FSharpResult$2_$union<WorkflowGraph, GraphBuildIssue>][];
|
|
145
|
+
readonly RunGraphs: [string, FSharpResult$2_$union<WorkflowGraph, GraphBuildIssue>][];
|
|
146
|
+
constructor(WorkflowGraphs: [string, FSharpResult$2_$union<WorkflowGraph, GraphBuildIssue>][], RunGraphs: [string, FSharpResult$2_$union<WorkflowGraph, GraphBuildIssue>][]);
|
|
147
|
+
}
|
|
148
|
+
export declare function WorkflowGraphIndex_$reflection(): TypeInfo;
|
|
149
|
+
export declare function WorkflowGraphIndex_create_56E060E0(workflowGraphs?: [string, FSharpResult$2_$union<WorkflowGraph, GraphBuildIssue>][], runGraphs?: [string, FSharpResult$2_$union<WorkflowGraph, GraphBuildIssue>][]): WorkflowGraphIndex;
|
|
150
|
+
/**
|
|
151
|
+
* Returns a string key representation for an EdgeKind.
|
|
152
|
+
*/
|
|
153
|
+
export declare function EdgeKindModule_asKey(kind: EdgeKind_$union): string;
|
|
154
|
+
/**
|
|
155
|
+
* Returns "in" for Input and "out" for Output.
|
|
156
|
+
*/
|
|
157
|
+
export declare function PortDirectionModule_asKey(direction: PortDirection_$union): string;
|
|
158
|
+
/**
|
|
159
|
+
* Trims and normalizes a path segment for use in graph IDs.
|
|
160
|
+
*/
|
|
161
|
+
export declare function GraphId_normalizeSegment(value: string): string;
|
|
162
|
+
/**
|
|
163
|
+
* Combines a parent scope and child into a normalized hierarchical path.
|
|
164
|
+
*/
|
|
165
|
+
export declare function GraphId_childScope(scope: string, child: string): string;
|
|
166
|
+
/**
|
|
167
|
+
* Creates a processing unit node ID with the format "unit:{scope}".
|
|
168
|
+
*/
|
|
169
|
+
export declare function GraphId_unitNodeId(scope: string): string;
|
|
170
|
+
/**
|
|
171
|
+
* Creates a step node ID with the format "step:{scope}/{stepId}".
|
|
172
|
+
*/
|
|
173
|
+
export declare function GraphId_stepNodeId(scope: string, stepId: string): string;
|
|
174
|
+
/**
|
|
175
|
+
* Creates a port node ID with the format "port:{ownerNodeId}/{in|out}/{portId}".
|
|
176
|
+
*/
|
|
177
|
+
export declare function GraphId_portNodeId(ownerNodeId: string, direction: PortDirection_$union, portId: string): string;
|
|
178
|
+
/**
|
|
179
|
+
* Creates an edge ID with the format "edge:{kind}:{source}->{target}".
|
|
180
|
+
*/
|
|
181
|
+
export declare function GraphId_edgeId(kind: EdgeKind_$union, sourceNodeId: string, targetNodeId: string): string;
|
|
182
|
+
//# sourceMappingURL=GraphTypes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GraphTypes.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/WorkflowGraph/GraphTypes.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
import { Union, Record } from '../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
2
|
+
import { union_type, record_type, string_type, option_type, array_type, tuple_type } from '../../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
3
|
+
import { defaultArg } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
4
|
+
import { DynamicObj_$reflection } from '../fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js';
|
|
5
|
+
import { FSharpResult$2 } from '../../node_modules/@fable-org/fable-library-js/Result.js';
|
|
6
|
+
import { isNullOrWhiteSpace } from '../../node_modules/@fable-org/fable-library-js/String.js';
|
|
7
|
+
import { normalizePathKey, combine } from '../FileSystem/Path.js';
|
|
8
|
+
|
|
9
|
+
function ProcessingUnitKind_Workflow() {
|
|
10
|
+
return new ProcessingUnitKind(0, []);
|
|
11
|
+
}
|
|
12
|
+
function ProcessingUnitKind_CommandLineTool() {
|
|
13
|
+
return new ProcessingUnitKind(1, []);
|
|
14
|
+
}
|
|
15
|
+
function ProcessingUnitKind_ExpressionTool() {
|
|
16
|
+
return new ProcessingUnitKind(2, []);
|
|
17
|
+
}
|
|
18
|
+
function ProcessingUnitKind_Operation() {
|
|
19
|
+
return new ProcessingUnitKind(3, []);
|
|
20
|
+
}
|
|
21
|
+
function ProcessingUnitKind_ExternalReference() {
|
|
22
|
+
return new ProcessingUnitKind(4, []);
|
|
23
|
+
}
|
|
24
|
+
function ProcessingUnitKind_UnresolvedReference() {
|
|
25
|
+
return new ProcessingUnitKind(5, []);
|
|
26
|
+
}
|
|
27
|
+
class ProcessingUnitKind extends Union {
|
|
28
|
+
constructor(tag, fields) {
|
|
29
|
+
super();
|
|
30
|
+
this.tag = tag;
|
|
31
|
+
this.fields = fields;
|
|
32
|
+
}
|
|
33
|
+
cases() {
|
|
34
|
+
return ["Workflow", "CommandLineTool", "ExpressionTool", "Operation", "ExternalReference", "UnresolvedReference"];
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
function ProcessingUnitKind_$reflection() {
|
|
38
|
+
return union_type("ARCtrl.WorkflowGraph.ProcessingUnitKind", [], ProcessingUnitKind, () => [[], [], [], [], [], []]);
|
|
39
|
+
}
|
|
40
|
+
function PortDirection_Input() {
|
|
41
|
+
return new PortDirection(0, []);
|
|
42
|
+
}
|
|
43
|
+
function PortDirection_Output() {
|
|
44
|
+
return new PortDirection(1, []);
|
|
45
|
+
}
|
|
46
|
+
class PortDirection extends Union {
|
|
47
|
+
constructor(tag, fields) {
|
|
48
|
+
super();
|
|
49
|
+
this.tag = tag;
|
|
50
|
+
this.fields = fields;
|
|
51
|
+
}
|
|
52
|
+
cases() {
|
|
53
|
+
return ["Input", "Output"];
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
function PortDirection_$reflection() {
|
|
57
|
+
return union_type("ARCtrl.WorkflowGraph.PortDirection", [], PortDirection, () => [[], []]);
|
|
58
|
+
}
|
|
59
|
+
function NodeKind_ProcessingUnitNode(Item) {
|
|
60
|
+
return new NodeKind(0, [Item]);
|
|
61
|
+
}
|
|
62
|
+
function NodeKind_StepNode() {
|
|
63
|
+
return new NodeKind(1, []);
|
|
64
|
+
}
|
|
65
|
+
function NodeKind_PortNode(Item) {
|
|
66
|
+
return new NodeKind(2, [Item]);
|
|
67
|
+
}
|
|
68
|
+
class NodeKind extends Union {
|
|
69
|
+
constructor(tag, fields) {
|
|
70
|
+
super();
|
|
71
|
+
this.tag = tag;
|
|
72
|
+
this.fields = fields;
|
|
73
|
+
}
|
|
74
|
+
cases() {
|
|
75
|
+
return ["ProcessingUnitNode", "StepNode", "PortNode"];
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
function NodeKind_$reflection() {
|
|
79
|
+
return union_type("ARCtrl.WorkflowGraph.NodeKind", [], NodeKind, () => [[["Item", ProcessingUnitKind_$reflection()]], [], [["Item", PortDirection_$reflection()]]]);
|
|
80
|
+
}
|
|
81
|
+
function EdgeKind_Contains() {
|
|
82
|
+
return new EdgeKind(0, []);
|
|
83
|
+
}
|
|
84
|
+
function EdgeKind_Calls() {
|
|
85
|
+
return new EdgeKind(1, []);
|
|
86
|
+
}
|
|
87
|
+
function EdgeKind_BindsWorkflowInput() {
|
|
88
|
+
return new EdgeKind(2, []);
|
|
89
|
+
}
|
|
90
|
+
function EdgeKind_DataFlow() {
|
|
91
|
+
return new EdgeKind(3, []);
|
|
92
|
+
}
|
|
93
|
+
function EdgeKind_BindsWorkflowOutput() {
|
|
94
|
+
return new EdgeKind(4, []);
|
|
95
|
+
}
|
|
96
|
+
class EdgeKind extends Union {
|
|
97
|
+
constructor(tag, fields) {
|
|
98
|
+
super();
|
|
99
|
+
this.tag = tag;
|
|
100
|
+
this.fields = fields;
|
|
101
|
+
}
|
|
102
|
+
cases() {
|
|
103
|
+
return ["Contains", "Calls", "BindsWorkflowInput", "DataFlow", "BindsWorkflowOutput"];
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
function EdgeKind_$reflection() {
|
|
107
|
+
return union_type("ARCtrl.WorkflowGraph.EdgeKind", [], EdgeKind, () => [[], [], [], [], []]);
|
|
108
|
+
}
|
|
109
|
+
function GraphIssueKind_MissingReference() {
|
|
110
|
+
return new GraphIssueKind(0, []);
|
|
111
|
+
}
|
|
112
|
+
function GraphIssueKind_InvalidReference() {
|
|
113
|
+
return new GraphIssueKind(1, []);
|
|
114
|
+
}
|
|
115
|
+
function GraphIssueKind_ResolutionFailed() {
|
|
116
|
+
return new GraphIssueKind(2, []);
|
|
117
|
+
}
|
|
118
|
+
function GraphIssueKind_CycleDetected() {
|
|
119
|
+
return new GraphIssueKind(3, []);
|
|
120
|
+
}
|
|
121
|
+
function GraphIssueKind_MissingCwlDescription() {
|
|
122
|
+
return new GraphIssueKind(4, []);
|
|
123
|
+
}
|
|
124
|
+
function GraphIssueKind_UnexpectedRuntimeType() {
|
|
125
|
+
return new GraphIssueKind(5, []);
|
|
126
|
+
}
|
|
127
|
+
class GraphIssueKind extends Union {
|
|
128
|
+
constructor(tag, fields) {
|
|
129
|
+
super();
|
|
130
|
+
this.tag = tag;
|
|
131
|
+
this.fields = fields;
|
|
132
|
+
}
|
|
133
|
+
cases() {
|
|
134
|
+
return ["MissingReference", "InvalidReference", "ResolutionFailed", "CycleDetected", "MissingCwlDescription", "UnexpectedRuntimeType"];
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
function GraphIssueKind_$reflection() {
|
|
138
|
+
return union_type("ARCtrl.WorkflowGraph.GraphIssueKind", [], GraphIssueKind, () => [[], [], [], [], [], []]);
|
|
139
|
+
}
|
|
140
|
+
class GraphBuildIssue extends Record {
|
|
141
|
+
constructor(Kind, Message, Scope, Reference) {
|
|
142
|
+
super();
|
|
143
|
+
this.Kind = Kind;
|
|
144
|
+
this.Message = Message;
|
|
145
|
+
this.Scope = Scope;
|
|
146
|
+
this.Reference = Reference;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
function GraphBuildIssue_$reflection() {
|
|
150
|
+
return record_type("ARCtrl.WorkflowGraph.GraphBuildIssue", [], GraphBuildIssue, () => [["Kind", GraphIssueKind_$reflection()], ["Message", string_type], ["Scope", option_type(string_type)], ["Reference", option_type(string_type)]]);
|
|
151
|
+
}
|
|
152
|
+
function GraphBuildIssue_create_Z2F3B511A(kind, message, scope, reference) {
|
|
153
|
+
return new GraphBuildIssue(kind, message, scope, reference);
|
|
154
|
+
}
|
|
155
|
+
class WorkflowGraphNode extends Record {
|
|
156
|
+
constructor(Id, Kind, Label, OwnerNodeId, Reference, Metadata) {
|
|
157
|
+
super();
|
|
158
|
+
this.Id = Id;
|
|
159
|
+
this.Kind = Kind;
|
|
160
|
+
this.Label = Label;
|
|
161
|
+
this.OwnerNodeId = OwnerNodeId;
|
|
162
|
+
this.Reference = Reference;
|
|
163
|
+
this.Metadata = Metadata;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
function WorkflowGraphNode_$reflection() {
|
|
167
|
+
return record_type("ARCtrl.WorkflowGraph.WorkflowGraphNode", [], WorkflowGraphNode, () => [["Id", string_type], ["Kind", NodeKind_$reflection()], ["Label", string_type], ["OwnerNodeId", option_type(string_type)], ["Reference", option_type(string_type)], ["Metadata", option_type(DynamicObj_$reflection())]]);
|
|
168
|
+
}
|
|
169
|
+
function WorkflowGraphNode_create_62C775C0(id, kind, label, ownerNodeId, reference, metadata) {
|
|
170
|
+
return new WorkflowGraphNode(id, kind, label, ownerNodeId, reference, metadata);
|
|
171
|
+
}
|
|
172
|
+
class WorkflowGraphEdge extends Record {
|
|
173
|
+
constructor(Id, SourceNodeId, TargetNodeId, Kind, Label) {
|
|
174
|
+
super();
|
|
175
|
+
this.Id = Id;
|
|
176
|
+
this.SourceNodeId = SourceNodeId;
|
|
177
|
+
this.TargetNodeId = TargetNodeId;
|
|
178
|
+
this.Kind = Kind;
|
|
179
|
+
this.Label = Label;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
function WorkflowGraphEdge_$reflection() {
|
|
183
|
+
return record_type("ARCtrl.WorkflowGraph.WorkflowGraphEdge", [], WorkflowGraphEdge, () => [["Id", string_type], ["SourceNodeId", string_type], ["TargetNodeId", string_type], ["Kind", EdgeKind_$reflection()], ["Label", option_type(string_type)]]);
|
|
184
|
+
}
|
|
185
|
+
function WorkflowGraphEdge_create_5E4B5E48(id, sourceNodeId, targetNodeId, kind, label) {
|
|
186
|
+
return new WorkflowGraphEdge(id, sourceNodeId, targetNodeId, kind, label);
|
|
187
|
+
}
|
|
188
|
+
class WorkflowGraph extends Record {
|
|
189
|
+
constructor(RootProcessingUnitNodeId, Nodes, Edges, Diagnostics) {
|
|
190
|
+
super();
|
|
191
|
+
this.RootProcessingUnitNodeId = RootProcessingUnitNodeId;
|
|
192
|
+
this.Nodes = Nodes;
|
|
193
|
+
this.Edges = Edges;
|
|
194
|
+
this.Diagnostics = Diagnostics;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
function WorkflowGraph_$reflection() {
|
|
198
|
+
return record_type("ARCtrl.WorkflowGraph.WorkflowGraph", [], WorkflowGraph, () => [["RootProcessingUnitNodeId", string_type], ["Nodes", array_type(WorkflowGraphNode_$reflection())], ["Edges", array_type(WorkflowGraphEdge_$reflection())], ["Diagnostics", array_type(GraphBuildIssue_$reflection())]]);
|
|
199
|
+
}
|
|
200
|
+
function WorkflowGraph_create_4D231A1(rootProcessingUnitNodeId, nodes, edges, diagnostics) {
|
|
201
|
+
return new WorkflowGraph(rootProcessingUnitNodeId, defaultArg(nodes, []), defaultArg(edges, []), defaultArg(diagnostics, []));
|
|
202
|
+
}
|
|
203
|
+
function WorkflowGraph__get_NodeCount(this$) {
|
|
204
|
+
return this$.Nodes.length;
|
|
205
|
+
}
|
|
206
|
+
function WorkflowGraph__get_EdgeCount(this$) {
|
|
207
|
+
return this$.Edges.length;
|
|
208
|
+
}
|
|
209
|
+
class WorkflowGraphIndex extends Record {
|
|
210
|
+
constructor(WorkflowGraphs, RunGraphs) {
|
|
211
|
+
super();
|
|
212
|
+
this.WorkflowGraphs = WorkflowGraphs;
|
|
213
|
+
this.RunGraphs = RunGraphs;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
function WorkflowGraphIndex_$reflection() {
|
|
217
|
+
return record_type("ARCtrl.WorkflowGraph.WorkflowGraphIndex", [], WorkflowGraphIndex, () => [["WorkflowGraphs", array_type(tuple_type(string_type, union_type("Microsoft.FSharp.Core.FSharpResult`2", [WorkflowGraph_$reflection(), GraphBuildIssue_$reflection()], FSharpResult$2, () => [[["ResultValue", WorkflowGraph_$reflection()]], [["ErrorValue", GraphBuildIssue_$reflection()]]])))], ["RunGraphs", array_type(tuple_type(string_type, union_type("Microsoft.FSharp.Core.FSharpResult`2", [WorkflowGraph_$reflection(), GraphBuildIssue_$reflection()], FSharpResult$2, () => [[["ResultValue", WorkflowGraph_$reflection()]], [["ErrorValue", GraphBuildIssue_$reflection()]]])))]]);
|
|
218
|
+
}
|
|
219
|
+
function WorkflowGraphIndex_create_56E060E0(workflowGraphs, runGraphs) {
|
|
220
|
+
return new WorkflowGraphIndex(defaultArg(workflowGraphs, []), defaultArg(runGraphs, []));
|
|
221
|
+
}
|
|
222
|
+
function EdgeKindModule_asKey(kind) {
|
|
223
|
+
switch (kind.tag) {
|
|
224
|
+
case /* Calls */
|
|
225
|
+
1:
|
|
226
|
+
return "calls";
|
|
227
|
+
case /* BindsWorkflowInput */
|
|
228
|
+
2:
|
|
229
|
+
return "binds_workflow_input";
|
|
230
|
+
case /* DataFlow */
|
|
231
|
+
3:
|
|
232
|
+
return "dataflow";
|
|
233
|
+
case /* BindsWorkflowOutput */
|
|
234
|
+
4:
|
|
235
|
+
return "binds_workflow_output";
|
|
236
|
+
default:
|
|
237
|
+
return "contains";
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
function PortDirectionModule_asKey(direction) {
|
|
241
|
+
if (direction.tag === /* Output */
|
|
242
|
+
1) {
|
|
243
|
+
return "out";
|
|
244
|
+
} else {
|
|
245
|
+
return "in";
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
function GraphId_normalizeSegment(value) {
|
|
249
|
+
if (isNullOrWhiteSpace(value)) {
|
|
250
|
+
return "";
|
|
251
|
+
} else {
|
|
252
|
+
return normalizePathKey(value.trim());
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
function GraphId_childScope(scope, child) {
|
|
256
|
+
const normalizedScope = GraphId_normalizeSegment(scope);
|
|
257
|
+
const normalizedChild = GraphId_normalizeSegment(child);
|
|
258
|
+
if (isNullOrWhiteSpace(normalizedScope)) {
|
|
259
|
+
return normalizedChild;
|
|
260
|
+
} else if (isNullOrWhiteSpace(normalizedChild)) {
|
|
261
|
+
return normalizedScope;
|
|
262
|
+
} else {
|
|
263
|
+
return normalizePathKey(combine(normalizedScope, normalizedChild));
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
function GraphId_unitNodeId(scope) {
|
|
267
|
+
return `unit:${GraphId_normalizeSegment(scope)}`;
|
|
268
|
+
}
|
|
269
|
+
function GraphId_stepNodeId(scope, stepId) {
|
|
270
|
+
const normalizedStepId = GraphId_normalizeSegment(stepId);
|
|
271
|
+
return `step:${GraphId_normalizeSegment(scope)}/${normalizedStepId}`;
|
|
272
|
+
}
|
|
273
|
+
function GraphId_portNodeId(ownerNodeId, direction, portId) {
|
|
274
|
+
const normalizedPortId = GraphId_normalizeSegment(portId);
|
|
275
|
+
return `port:${ownerNodeId}/${PortDirectionModule_asKey(direction)}/${normalizedPortId}`;
|
|
276
|
+
}
|
|
277
|
+
function GraphId_edgeId(kind, sourceNodeId, targetNodeId) {
|
|
278
|
+
return `edge:${EdgeKindModule_asKey(kind)}:${sourceNodeId}->${targetNodeId}`;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
export { EdgeKind, EdgeKindModule_asKey, EdgeKind_$reflection, EdgeKind_BindsWorkflowInput, EdgeKind_BindsWorkflowOutput, EdgeKind_Calls, EdgeKind_Contains, EdgeKind_DataFlow, GraphBuildIssue, GraphBuildIssue_$reflection, GraphBuildIssue_create_Z2F3B511A, GraphId_childScope, GraphId_edgeId, GraphId_normalizeSegment, GraphId_portNodeId, GraphId_stepNodeId, GraphId_unitNodeId, GraphIssueKind, GraphIssueKind_$reflection, GraphIssueKind_CycleDetected, GraphIssueKind_InvalidReference, GraphIssueKind_MissingCwlDescription, GraphIssueKind_MissingReference, GraphIssueKind_ResolutionFailed, GraphIssueKind_UnexpectedRuntimeType, NodeKind, NodeKind_$reflection, NodeKind_PortNode, NodeKind_ProcessingUnitNode, NodeKind_StepNode, PortDirection, PortDirectionModule_asKey, PortDirection_$reflection, PortDirection_Input, PortDirection_Output, ProcessingUnitKind, ProcessingUnitKind_$reflection, ProcessingUnitKind_CommandLineTool, ProcessingUnitKind_ExpressionTool, ProcessingUnitKind_ExternalReference, ProcessingUnitKind_Operation, ProcessingUnitKind_UnresolvedReference, ProcessingUnitKind_Workflow, WorkflowGraph, WorkflowGraphEdge, WorkflowGraphEdge_$reflection, WorkflowGraphEdge_create_5E4B5E48, WorkflowGraphIndex, WorkflowGraphIndex_$reflection, WorkflowGraphIndex_create_56E060E0, WorkflowGraphNode, WorkflowGraphNode_$reflection, WorkflowGraphNode_create_62C775C0, WorkflowGraph_$reflection, WorkflowGraph__get_EdgeCount, WorkflowGraph__get_NodeCount, WorkflowGraph_create_4D231A1 };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Record } from '@fable-org/fable-library-js/Types.js';
|
|
2
|
+
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
3
|
+
import { IComparable, IEquatable } from '@fable-org/fable-library-js/Util.js';
|
|
4
|
+
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
5
|
+
import { StepOutput_$union } from '../CWL/WorkflowSteps.js';
|
|
6
|
+
export declare class ParsedSourceReference extends Record implements IEquatable<ParsedSourceReference>, IComparable<ParsedSourceReference> {
|
|
7
|
+
readonly StepId: Option<string>;
|
|
8
|
+
readonly PortId: string;
|
|
9
|
+
readonly Raw: string;
|
|
10
|
+
constructor(StepId: Option<string>, PortId: string, Raw: string);
|
|
11
|
+
}
|
|
12
|
+
export declare function ParsedSourceReference_$reflection(): TypeInfo;
|
|
13
|
+
/**
|
|
14
|
+
* Strips a leading '#' prefix from a CWL reference string.
|
|
15
|
+
*/
|
|
16
|
+
export declare function ReferenceParsing_trimHashPrefix(value: string): string;
|
|
17
|
+
/**
|
|
18
|
+
* Parses a CWL source reference string into its step and port components.
|
|
19
|
+
* A reference like "step1/output_file" is parsed into StepId=Some "step1", PortId="output_file".
|
|
20
|
+
* A simple reference like "input_file" is parsed into StepId=None, PortId="input_file".
|
|
21
|
+
*/
|
|
22
|
+
export declare function ReferenceParsing_parseSourceReference(source: string): ParsedSourceReference;
|
|
23
|
+
/**
|
|
24
|
+
* Extracts the output ID string from a StepOutput discriminated union value.
|
|
25
|
+
*/
|
|
26
|
+
export declare function ReferenceParsing_extractStepOutputId(output: StepOutput_$union): string;
|
|
27
|
+
//# sourceMappingURL=ReferenceParsing.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReferenceParsing.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/WorkflowGraph/ReferenceParsing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAC9D,OAAO,EAA0B,MAAM,EAAE,MAAM,uCAAuC,CAAC;AACvF,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,qCAAqC,CAAC;AAC9E,OAAO,EAAyC,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AAG5G,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAE5D,qBAAa,qBAAsB,SAAQ,MAAO,YAAW,UAAU,CAAC,qBAAqB,CAAC,EAAE,WAAW,CAAC,qBAAqB,CAAC;IAC9H,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;IAChC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;gBACT,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM;CAMlE;AAED,wBAAgB,iCAAiC,IAAI,QAAQ,CAE5D;AAED;;GAEG;AACH,wBAAgB,+BAA+B,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAQrE;AAED;;;;GAIG;AACH,wBAAgB,qCAAqC,CAAC,MAAM,EAAE,MAAM,GAAG,qBAAqB,CAgB3F;AAED;;GAEG;AACH,wBAAgB,oCAAoC,CAAC,MAAM,EAAE,iBAAiB,GAAG,MAAM,CAOtF"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Record } from '../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
2
|
+
import { defaultArg, ofNullable } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
3
|
+
import { record_type, option_type, string_type } from '../../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
4
|
+
import { substring, isNullOrWhiteSpace } from '../../node_modules/@fable-org/fable-library-js/String.js';
|
|
5
|
+
|
|
6
|
+
class ParsedSourceReference extends Record {
|
|
7
|
+
constructor(StepId, PortId, Raw) {
|
|
8
|
+
super();
|
|
9
|
+
this.StepId = StepId;
|
|
10
|
+
this.PortId = PortId;
|
|
11
|
+
this.Raw = Raw;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
function ParsedSourceReference_$reflection() {
|
|
15
|
+
return record_type("ARCtrl.WorkflowGraph.ParsedSourceReference", [], ParsedSourceReference, () => [["StepId", option_type(string_type)], ["PortId", string_type], ["Raw", string_type]]);
|
|
16
|
+
}
|
|
17
|
+
function ReferenceParsing_trimHashPrefix(value) {
|
|
18
|
+
const trimmed = value.trim();
|
|
19
|
+
if (trimmed.startsWith("#")) {
|
|
20
|
+
return substring(trimmed, 1);
|
|
21
|
+
} else {
|
|
22
|
+
return trimmed;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
function ReferenceParsing_parseSourceReference(source) {
|
|
26
|
+
if (isNullOrWhiteSpace(source)) {
|
|
27
|
+
return new ParsedSourceReference(void 0, "", defaultArg(ofNullable(source), ""));
|
|
28
|
+
} else {
|
|
29
|
+
const normalized = ReferenceParsing_trimHashPrefix(source);
|
|
30
|
+
const separatorIndex = normalized.indexOf("/") | 0;
|
|
31
|
+
if (separatorIndex < 0) {
|
|
32
|
+
return new ParsedSourceReference(void 0, normalized, source);
|
|
33
|
+
} else {
|
|
34
|
+
const stepId = substring(normalized, 0, separatorIndex).trim();
|
|
35
|
+
const portId = substring(normalized, separatorIndex + 1).trim();
|
|
36
|
+
return new ParsedSourceReference(isNullOrWhiteSpace(stepId) ? void 0 : stepId, portId, source);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
function ReferenceParsing_extractStepOutputId(output) {
|
|
41
|
+
if (output.tag === /* StepOutputRecord */
|
|
42
|
+
1) {
|
|
43
|
+
return output.fields[0].Id;
|
|
44
|
+
} else {
|
|
45
|
+
return output.fields[0];
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export { ParsedSourceReference, ParsedSourceReference_$reflection, ReferenceParsing_extractStepOutputId, ReferenceParsing_parseSourceReference, ReferenceParsing_trimHashPrefix };
|
package/dist/ts/ts/Xlsx.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { FsWorkbook } from './fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorkbook.fs.js';
|
|
2
|
-
import {
|
|
2
|
+
import { Datamap } from './Core/Datamap.js';
|
|
3
3
|
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
4
4
|
import { ArcInvestigation, ArcRun, ArcWorkflow, ArcStudy, ArcAssay } from './Core/ArcTypes.js';
|
|
5
5
|
import { FSharpList } from '@fable-org/fable-library-js/List.js';
|
|
6
6
|
export declare class XlsxHelper_DatamapXlsx {
|
|
7
7
|
constructor();
|
|
8
|
-
fromFsWorkbook(fswb: FsWorkbook):
|
|
9
|
-
toFsWorkbook(datamap:
|
|
10
|
-
fromXlsxFileAsync(path: string): Promise<
|
|
11
|
-
toXlsxFileAsync(path: string, datamap:
|
|
8
|
+
fromFsWorkbook(fswb: FsWorkbook): Datamap;
|
|
9
|
+
toFsWorkbook(datamap: Datamap): FsWorkbook;
|
|
10
|
+
fromXlsxFileAsync(path: string): Promise<Datamap>;
|
|
11
|
+
toXlsxFileAsync(path: string, datamap: Datamap): Promise<void>;
|
|
12
12
|
}
|
|
13
13
|
export declare function XlsxHelper_DatamapXlsx_$reflection(): TypeInfo;
|
|
14
14
|
export declare function XlsxHelper_DatamapXlsx_$ctor(): XlsxHelper_DatamapXlsx;
|
package/dist/ts/ts/Xlsx.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { fromFsWorkbook, toFsWorkbook } from './Spreadsheet/
|
|
1
|
+
import { fromFsWorkbook, toFsWorkbook } from './Spreadsheet/Datamap.js';
|
|
2
2
|
import { map } from './CrossAsync.js';
|
|
3
3
|
import { FsSpreadsheet_FsWorkbook__FsWorkbook_fromXlsxFile_Static_Z721C83C5, FsSpreadsheet_FsWorkbook__FsWorkbook_toXlsxFile_Static } from './fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/FsExtensions.fs.js';
|
|
4
4
|
import { class_type } from '../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { YAMLElement_$union } from '../fable_modules/YAMLicious.0.0.
|
|
1
|
+
import { YAMLElement_$union } from '../fable_modules/YAMLicious.1.0.0-alpha.4/YAMLiciousTypes.fs.js';
|
|
2
2
|
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
3
3
|
import { ValidationPackage } from '../ValidationPackages/ValidationPackage.js';
|
|
4
4
|
import { int32 } from '@fable-org/fable-library-js/Int32.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ValidationPackage.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Yaml/ValidationPackage.ts"],"names":[],"mappings":"AACA,OAAO,EAAoE,kBAAkB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"ValidationPackage.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Yaml/ValidationPackage.ts"],"names":[],"mappings":"AACA,OAAO,EAAoE,kBAAkB,EAAE,MAAM,iEAAiE,CAAC;AAEvK,OAAO,EAAU,MAAM,EAAE,MAAM,uCAAuC,CAAC;AAIvE,OAAO,EAAE,iBAAiB,EAAE,MAAM,4CAA4C,CAAC;AAI/E,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAG7D,wBAAgB,yBAAyB,CAAC,iBAAiB,EAAE,iBAAiB,GAAG,kBAAkB,CAWlG;AAED,eAAO,MAAM,yBAAyB,GAAI,SAAS,kBAAkB,KAAG,iBAG7D,CAAC;AAEZ,wBAAgB,8FAA8F,CAAC,CAAC,EAAE,MAAM,GAAG,iBAAiB,CAE3I;AAED,wBAAgB,2FAA2F,CAAC,UAAU,CAAC,EAAE,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,iBAAiB,KAAK,MAAM,CAAC,CAMrK;AAED,wBAAgB,oFAAoF,CAAC,KAAK,EAAE,iBAAiB,EAAE,UAAU,EAAE,MAAM,CAAC,KAAK,CAAC,GAAG,MAAM,CAEhK"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { choose, ofArray } from '../../node_modules/@fable-org/fable-library-js/List.js';
|
|
2
|
-
import { YAMLElement_Nil, YAMLElement_Object, YAMLElement_Mapping,
|
|
2
|
+
import { YAMLElement_Nil, YAMLElement_Object, YAMLElement_Mapping, YAMLContent_create_Z1C3A29C9, Config } from '../fable_modules/YAMLicious.1.0.0-alpha.4/YAMLiciousTypes.fs.js';
|
|
3
3
|
import { equals } from '../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
4
4
|
import { unwrap } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
5
|
-
import { string, tryInclude } from '../fable_modules/YAMLicious.0.0.
|
|
5
|
+
import { string, tryInclude } from '../fable_modules/YAMLicious.1.0.0-alpha.4/Encode.fs.js';
|
|
6
6
|
import { toList, delay, collect, singleton } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
7
7
|
import { ValidationPackage } from '../ValidationPackages/ValidationPackage.js';
|
|
8
|
-
import { object, string as string$1 } from '../fable_modules/YAMLicious.0.0.
|
|
9
|
-
import { read } from '../fable_modules/YAMLicious.0.0.
|
|
8
|
+
import { object, string as string$1 } from '../fable_modules/YAMLicious.1.0.0-alpha.4/Decode.fs.js';
|
|
9
|
+
import { read } from '../fable_modules/YAMLicious.1.0.0-alpha.4/Reader.fs.js';
|
|
10
10
|
import { defaultWhitespace } from './Encode.js';
|
|
11
|
-
import { write } from '../fable_modules/YAMLicious.0.0.
|
|
11
|
+
import { write } from '../fable_modules/YAMLicious.1.0.0-alpha.4/Writer.fs.js';
|
|
12
12
|
|
|
13
13
|
function ValidationPackage_encoder(validationpackage) {
|
|
14
14
|
const objSeq = choose((tupledArg) => {
|
|
@@ -19,7 +19,7 @@ function ValidationPackage_encoder(validationpackage) {
|
|
|
19
19
|
return [tupledArg[0], v];
|
|
20
20
|
}
|
|
21
21
|
}, ofArray([["name", string(validationpackage.Name)], tryInclude("version", string, validationpackage.Version)]));
|
|
22
|
-
return YAMLElement_Object(toList(delay(() => collect((matchValue) => singleton(YAMLElement_Mapping(
|
|
22
|
+
return YAMLElement_Object(toList(delay(() => collect((matchValue) => singleton(YAMLElement_Mapping(YAMLContent_create_Z1C3A29C9(matchValue[0]), matchValue[1])), objSeq))));
|
|
23
23
|
}
|
|
24
24
|
const ValidationPackage_decoder = (value_2) => object((get$) => {
|
|
25
25
|
let objectArg, objectArg_1;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { YAMLElement_$union } from '../fable_modules/YAMLicious.0.0.
|
|
1
|
+
import { YAMLElement_$union } from '../fable_modules/YAMLicious.1.0.0-alpha.4/YAMLiciousTypes.fs.js';
|
|
2
2
|
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
3
3
|
import { ValidationPackagesConfig } from '../ValidationPackages/ValidationPackagesConfig.js';
|
|
4
4
|
import { int32 } from '@fable-org/fable-library-js/Int32.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ValidationPackagesConfig.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Yaml/ValidationPackagesConfig.ts"],"names":[],"mappings":"AACA,OAAO,EAAoE,kBAAkB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"ValidationPackagesConfig.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Yaml/ValidationPackagesConfig.ts"],"names":[],"mappings":"AACA,OAAO,EAAoE,kBAAkB,EAAE,MAAM,iEAAiE,CAAC;AAEvK,OAAO,EAAU,MAAM,EAAE,MAAM,uCAAuC,CAAC;AAMvE,OAAO,EAAE,wBAAwB,EAAE,MAAM,mDAAmD,CAAC;AAI7F,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAG7D,wBAAgB,gCAAgC,CAAC,iBAAiB,EAAE,wBAAwB,GAAG,kBAAkB,CAWhH;AAED,eAAO,MAAM,gCAAgC,GAAI,SAAS,kBAAkB,KAAG,wBAGpE,CAAC;AAEZ,wBAAgB,4GAA4G,CAAC,CAAC,EAAE,MAAM,GAAG,wBAAwB,CAEhK;AAED,wBAAgB,yGAAyG,CAAC,UAAU,CAAC,EAAE,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,wBAAwB,KAAK,MAAM,CAAC,CAM1L;AAED,wBAAgB,kGAAkG,CAAC,KAAK,EAAE,wBAAwB,EAAE,UAAU,EAAE,MAAM,CAAC,KAAK,CAAC,GAAG,MAAM,CAErL"}
|