@nfdi4plants/arctrl 3.0.0-beta.8 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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 +38 -15
- package/dist/ts/ts/ARC.d.ts.map +1 -1
- package/dist/ts/ts/ARC.js +285 -140
- 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 +210 -0
- package/dist/ts/ts/CWL/Decode.d.ts.map +1 -0
- package/dist/ts/ts/CWL/Decode.js +2617 -0
- package/dist/ts/ts/CWL/Encode.d.ts +96 -0
- package/dist/ts/ts/CWL/Encode.d.ts.map +1 -0
- package/dist/ts/ts/CWL/Encode.js +1509 -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.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Datamap.js +61 -42
- 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 +251 -146
- package/dist/ts/ts/Core/Datamap.d.ts +53 -0
- package/dist/ts/ts/Core/{DataMap.d.ts.map → Datamap.d.ts.map} +1 -1
- package/dist/ts/ts/Core/Datamap.js +177 -0
- 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 +1 -0
- package/dist/ts/ts/Json/{DataMap/DataMap.js → Datamap/Datamap.js} +3 -3
- 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 +1 -0
- 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 +1 -0
- package/dist/ts/ts/Spreadsheet/{DataMapTable/DataMapTable.js → DatamapTable/DatamapTable.js} +8 -8
- 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 +5 -5
- 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 +5 -5
- 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.3}/Encode.fs.js +1 -1
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.3/FlowToBlock.fs.js +954 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.3/Interop/JsInterop.fs.js +10 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.3}/Persil.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.3}/Reader.fs.js +208 -152
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.3/Regex.fs.js +15 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.3}/RegexActivePatterns.fs.js +14 -10
- package/package.json +1 -1
- package/dist/ts/ts/Core/DataMap.d.ts +0 -52
- package/dist/ts/ts/Core/DataMap.js +0 -159
- package/dist/ts/ts/Json/DataMap/DataMap.d.ts.map +0 -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/Spreadsheet/DataMap.d.ts.map +0 -1
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts.map +0 -1
- 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/Regex.fs.js +0 -11
- /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.3}/Decode.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.3}/Preprocessing.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.3}/Writer.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{YAMLicious.0.0.3 → YAMLicious.1.0.0-alpha.3}/YAMLiciousTypes.fs.js +0 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { CWLOutput } from './Outputs.js';
|
|
2
|
+
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
3
|
+
import { HintEntry_$union, Requirement_$union } from './Requirements.js';
|
|
4
|
+
import { CWLInput } from './Inputs.js';
|
|
5
|
+
import { DynamicObj } from '../fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js';
|
|
6
|
+
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
7
|
+
export declare class CWLExpressionToolDescription extends DynamicObj {
|
|
8
|
+
_cwlVersion: string;
|
|
9
|
+
_outputs: CWLOutput[];
|
|
10
|
+
_expression: string;
|
|
11
|
+
_requirements: Option<Requirement_$union[]>;
|
|
12
|
+
_hints: Option<HintEntry_$union[]>;
|
|
13
|
+
_intent: Option<string[]>;
|
|
14
|
+
_inputs: Option<CWLInput[]>;
|
|
15
|
+
_metadata: Option<DynamicObj>;
|
|
16
|
+
_label: Option<string>;
|
|
17
|
+
_doc: Option<string>;
|
|
18
|
+
constructor(outputs: CWLOutput[], expression: string, cwlVersion?: string, requirements?: Requirement_$union[], hints?: HintEntry_$union[], intent?: string[], inputs?: CWLInput[], metadata?: DynamicObj, label?: string, doc?: string);
|
|
19
|
+
get CWLVersion(): string;
|
|
20
|
+
set CWLVersion(version: string);
|
|
21
|
+
get Outputs(): CWLOutput[];
|
|
22
|
+
set Outputs(outputs: CWLOutput[]);
|
|
23
|
+
get Expression(): string;
|
|
24
|
+
set Expression(expression: string);
|
|
25
|
+
get Requirements(): Requirement_$union[] | undefined;
|
|
26
|
+
set Requirements(requirements: Option<Requirement_$union[]>);
|
|
27
|
+
get Hints(): HintEntry_$union[] | undefined;
|
|
28
|
+
set Hints(hints: Option<HintEntry_$union[]>);
|
|
29
|
+
get Intent(): string[] | undefined;
|
|
30
|
+
set Intent(intent: Option<string[]>);
|
|
31
|
+
get Inputs(): CWLInput[] | undefined;
|
|
32
|
+
set Inputs(inputs: Option<CWLInput[]>);
|
|
33
|
+
get Metadata(): DynamicObj | undefined;
|
|
34
|
+
set Metadata(metadata: Option<DynamicObj>);
|
|
35
|
+
get Label(): string | undefined;
|
|
36
|
+
set Label(label: Option<string>);
|
|
37
|
+
get Doc(): string | undefined;
|
|
38
|
+
set Doc(doc: Option<string>);
|
|
39
|
+
static getInputsOrEmpty(tool: CWLExpressionToolDescription): CWLInput[];
|
|
40
|
+
static getOutputs(tool: CWLExpressionToolDescription): CWLOutput[];
|
|
41
|
+
static getOrCreateInputs(tool: CWLExpressionToolDescription): CWLInput[];
|
|
42
|
+
static getRequirementsOrEmpty(tool: CWLExpressionToolDescription): Requirement_$union[];
|
|
43
|
+
static getHintsOrEmpty(tool: CWLExpressionToolDescription): HintEntry_$union[];
|
|
44
|
+
static getIntentOrEmpty(tool: CWLExpressionToolDescription): string[];
|
|
45
|
+
static getOrCreateHints(tool: CWLExpressionToolDescription): HintEntry_$union[];
|
|
46
|
+
static getOrCreateIntent(tool: CWLExpressionToolDescription): string[];
|
|
47
|
+
}
|
|
48
|
+
export declare function CWLExpressionToolDescription_$reflection(): TypeInfo;
|
|
49
|
+
export declare function CWLExpressionToolDescription_$ctor_444EA890(outputs: CWLOutput[], expression: string, cwlVersion?: string, requirements?: Requirement_$union[], hints?: HintEntry_$union[], intent?: string[], inputs?: CWLInput[], metadata?: DynamicObj, label?: string, doc?: string): CWLExpressionToolDescription;
|
|
50
|
+
//# sourceMappingURL=ExpressionToolDescription.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ExpressionToolDescription.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/CWL/ExpressionToolDescription.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import { defaultArg, unwrap, value } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
2
|
+
import { DynamicObj, DynamicObj_$reflection } from '../fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js';
|
|
3
|
+
import { class_type } from '../../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
4
|
+
|
|
5
|
+
class CWLExpressionToolDescription extends DynamicObj {
|
|
6
|
+
constructor(outputs, expression, cwlVersion, requirements, hints, intent, inputs, metadata, label, doc) {
|
|
7
|
+
super();
|
|
8
|
+
this._cwlVersion = defaultArg(cwlVersion, "v1.2");
|
|
9
|
+
this._outputs = outputs;
|
|
10
|
+
this._expression = expression;
|
|
11
|
+
this._requirements = requirements;
|
|
12
|
+
this._hints = hints;
|
|
13
|
+
this._intent = intent;
|
|
14
|
+
this._inputs = inputs;
|
|
15
|
+
this._metadata = metadata;
|
|
16
|
+
this._label = label;
|
|
17
|
+
this._doc = doc;
|
|
18
|
+
}
|
|
19
|
+
get CWLVersion() {
|
|
20
|
+
const this$ = this;
|
|
21
|
+
return this$._cwlVersion;
|
|
22
|
+
}
|
|
23
|
+
set CWLVersion(version) {
|
|
24
|
+
const this$ = this;
|
|
25
|
+
this$._cwlVersion = version;
|
|
26
|
+
}
|
|
27
|
+
get Outputs() {
|
|
28
|
+
const this$ = this;
|
|
29
|
+
return this$._outputs;
|
|
30
|
+
}
|
|
31
|
+
set Outputs(outputs) {
|
|
32
|
+
const this$ = this;
|
|
33
|
+
this$._outputs = outputs;
|
|
34
|
+
}
|
|
35
|
+
get Expression() {
|
|
36
|
+
const this$ = this;
|
|
37
|
+
return this$._expression;
|
|
38
|
+
}
|
|
39
|
+
set Expression(expression) {
|
|
40
|
+
const this$ = this;
|
|
41
|
+
this$._expression = expression;
|
|
42
|
+
}
|
|
43
|
+
get Requirements() {
|
|
44
|
+
const this$ = this;
|
|
45
|
+
return unwrap(this$._requirements);
|
|
46
|
+
}
|
|
47
|
+
set Requirements(requirements) {
|
|
48
|
+
const this$ = this;
|
|
49
|
+
this$._requirements = requirements;
|
|
50
|
+
}
|
|
51
|
+
get Hints() {
|
|
52
|
+
const this$ = this;
|
|
53
|
+
return unwrap(this$._hints);
|
|
54
|
+
}
|
|
55
|
+
set Hints(hints) {
|
|
56
|
+
const this$ = this;
|
|
57
|
+
this$._hints = hints;
|
|
58
|
+
}
|
|
59
|
+
get Intent() {
|
|
60
|
+
const this$ = this;
|
|
61
|
+
return unwrap(this$._intent);
|
|
62
|
+
}
|
|
63
|
+
set Intent(intent) {
|
|
64
|
+
const this$ = this;
|
|
65
|
+
this$._intent = intent;
|
|
66
|
+
}
|
|
67
|
+
get Inputs() {
|
|
68
|
+
const this$ = this;
|
|
69
|
+
return unwrap(this$._inputs);
|
|
70
|
+
}
|
|
71
|
+
set Inputs(inputs) {
|
|
72
|
+
const this$ = this;
|
|
73
|
+
this$._inputs = inputs;
|
|
74
|
+
}
|
|
75
|
+
get Metadata() {
|
|
76
|
+
const this$ = this;
|
|
77
|
+
return unwrap(this$._metadata);
|
|
78
|
+
}
|
|
79
|
+
set Metadata(metadata) {
|
|
80
|
+
const this$ = this;
|
|
81
|
+
this$._metadata = metadata;
|
|
82
|
+
}
|
|
83
|
+
get Label() {
|
|
84
|
+
const this$ = this;
|
|
85
|
+
return unwrap(this$._label);
|
|
86
|
+
}
|
|
87
|
+
set Label(label) {
|
|
88
|
+
const this$ = this;
|
|
89
|
+
this$._label = label;
|
|
90
|
+
}
|
|
91
|
+
get Doc() {
|
|
92
|
+
const this$ = this;
|
|
93
|
+
return unwrap(this$._doc);
|
|
94
|
+
}
|
|
95
|
+
set Doc(doc) {
|
|
96
|
+
const this$ = this;
|
|
97
|
+
this$._doc = doc;
|
|
98
|
+
}
|
|
99
|
+
static getInputsOrEmpty(tool) {
|
|
100
|
+
return defaultArg(tool.Inputs, []);
|
|
101
|
+
}
|
|
102
|
+
static getOutputs(tool) {
|
|
103
|
+
return tool.Outputs;
|
|
104
|
+
}
|
|
105
|
+
static getOrCreateInputs(tool) {
|
|
106
|
+
const matchValue = tool.Inputs;
|
|
107
|
+
if (matchValue == null) {
|
|
108
|
+
const inputs_1 = [];
|
|
109
|
+
tool.Inputs = inputs_1;
|
|
110
|
+
return inputs_1;
|
|
111
|
+
} else {
|
|
112
|
+
return value(matchValue);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
static getRequirementsOrEmpty(tool) {
|
|
116
|
+
return defaultArg(tool.Requirements, []);
|
|
117
|
+
}
|
|
118
|
+
static getHintsOrEmpty(tool) {
|
|
119
|
+
return defaultArg(tool.Hints, []);
|
|
120
|
+
}
|
|
121
|
+
static getIntentOrEmpty(tool) {
|
|
122
|
+
return defaultArg(tool.Intent, []);
|
|
123
|
+
}
|
|
124
|
+
static getOrCreateHints(tool) {
|
|
125
|
+
const matchValue = tool.Hints;
|
|
126
|
+
if (matchValue == null) {
|
|
127
|
+
const hints_1 = [];
|
|
128
|
+
tool.Hints = hints_1;
|
|
129
|
+
return hints_1;
|
|
130
|
+
} else {
|
|
131
|
+
return value(matchValue);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
static getOrCreateIntent(tool) {
|
|
135
|
+
const matchValue = tool.Intent;
|
|
136
|
+
if (matchValue == null) {
|
|
137
|
+
const intent_1 = [];
|
|
138
|
+
tool.Intent = intent_1;
|
|
139
|
+
return intent_1;
|
|
140
|
+
} else {
|
|
141
|
+
return value(matchValue);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
function CWLExpressionToolDescription_$reflection() {
|
|
146
|
+
return class_type("ARCtrl.CWL.CWLExpressionToolDescription", void 0, CWLExpressionToolDescription, DynamicObj_$reflection());
|
|
147
|
+
}
|
|
148
|
+
function CWLExpressionToolDescription_$ctor_444EA890(outputs, expression, cwlVersion, requirements, hints, intent, inputs, metadata, label, doc) {
|
|
149
|
+
return new CWLExpressionToolDescription(outputs, expression, cwlVersion, requirements, hints, intent, inputs, metadata, label, doc);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
export { CWLExpressionToolDescription, CWLExpressionToolDescription_$ctor_444EA890, CWLExpressionToolDescription_$reflection };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { int32 } from '@fable-org/fable-library-js/Int32.js';
|
|
2
|
+
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
3
|
+
export declare function mergeHashes(hash1: int32, hash2: int32): int32;
|
|
4
|
+
export declare function hashDateTime(dt: Date): int32;
|
|
5
|
+
export declare function hash<$a>(obj: $a): int32;
|
|
6
|
+
export declare function boxHashOption<a>(a: Option<a>): any;
|
|
7
|
+
export declare function boxHashArray<a>(a: a[]): any;
|
|
8
|
+
export declare function boxHashSeq<a>(a: Iterable<a>): any;
|
|
9
|
+
//# sourceMappingURL=HashHelpers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HashHelpers.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/CWL/HashHelpers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAG7D,OAAO,EAAE,MAAM,EAAoB,MAAM,uCAAuC,CAAC;AAIjF,wBAAgB,WAAW,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,GAAG,KAAK,CAE7D;AAED,wBAAgB,YAAY,CAAC,EAAE,EAAE,IAAI,GAAG,KAAK,CAS5C;AAED,wBAAgB,IAAI,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,GAAG,KAAK,CAGvC;AAED,wBAAgB,aAAa,CAAC,CAAC,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,GAAG,CAGlD;AAED,wBAAgB,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,GAAG,CAE3C;AAED,wBAAgB,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC,GAAG,GAAG,CAEjD"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { year, month, day, hour, minute, second } from '../../node_modules/@fable-org/fable-library-js/Date.js';
|
|
2
|
+
import { identityHash, numberHash } from '../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
3
|
+
import { value } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
4
|
+
import { fold } from '../../node_modules/@fable-org/fable-library-js/Array.js';
|
|
5
|
+
import { fold as fold$1 } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
6
|
+
|
|
7
|
+
function mergeHashes(hash1, hash2) {
|
|
8
|
+
return -1640531527 + hash2 + (hash1 << 6) + (hash1 >> 2);
|
|
9
|
+
}
|
|
10
|
+
function hashDateTime(dt) {
|
|
11
|
+
let acc = 0;
|
|
12
|
+
acc = mergeHashes(acc, year(dt)) | 0;
|
|
13
|
+
acc = mergeHashes(acc, month(dt)) | 0;
|
|
14
|
+
acc = mergeHashes(acc, day(dt)) | 0;
|
|
15
|
+
acc = mergeHashes(acc, hour(dt)) | 0;
|
|
16
|
+
acc = mergeHashes(acc, minute(dt)) | 0;
|
|
17
|
+
acc = mergeHashes(acc, second(dt)) | 0;
|
|
18
|
+
return acc | 0;
|
|
19
|
+
}
|
|
20
|
+
function hash(obj) {
|
|
21
|
+
let copyOfStruct = obj;
|
|
22
|
+
return identityHash(copyOfStruct) | 0;
|
|
23
|
+
}
|
|
24
|
+
function boxHashOption(a) {
|
|
25
|
+
let copyOfStruct, copyOfStruct_1;
|
|
26
|
+
return a != null ? (copyOfStruct = value(a), identityHash(copyOfStruct)) : (copyOfStruct_1 = 0, numberHash(copyOfStruct_1));
|
|
27
|
+
}
|
|
28
|
+
function boxHashArray(a) {
|
|
29
|
+
return fold((acc, o) => mergeHashes(acc, hash(o)), 0, a);
|
|
30
|
+
}
|
|
31
|
+
function boxHashSeq(a) {
|
|
32
|
+
return fold$1((acc, o) => mergeHashes(acc, hash(o)), 0, a);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export { boxHashArray, boxHashOption, boxHashSeq, hash, hashDateTime, mergeHashes };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Record } from '@fable-org/fable-library-js/Types.js';
|
|
2
|
+
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
3
|
+
import { int32 } from '@fable-org/fable-library-js/Int32.js';
|
|
4
|
+
import { IComparable, IEquatable } from '@fable-org/fable-library-js/Util.js';
|
|
5
|
+
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
6
|
+
import { CWLType_$union } from './CWLTypes.js';
|
|
7
|
+
import { DynamicObj } from '../fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js';
|
|
8
|
+
export declare class InputBinding extends Record implements IEquatable<InputBinding>, IComparable<InputBinding> {
|
|
9
|
+
readonly Prefix: Option<string>;
|
|
10
|
+
readonly Position: Option<int32>;
|
|
11
|
+
readonly ItemSeparator: Option<string>;
|
|
12
|
+
readonly Separate: Option<boolean>;
|
|
13
|
+
constructor(Prefix: Option<string>, Position: Option<int32>, ItemSeparator: Option<string>, Separate: Option<boolean>);
|
|
14
|
+
}
|
|
15
|
+
export declare function InputBinding_$reflection(): TypeInfo;
|
|
16
|
+
export declare function InputBinding_create_ZAC0108A(prefix?: string, position?: int32, itemSeparator?: string, separate?: boolean): InputBinding;
|
|
17
|
+
export declare class CWLInput extends DynamicObj {
|
|
18
|
+
readonly name: string;
|
|
19
|
+
"init@31": int32;
|
|
20
|
+
constructor(name: string, type_?: CWLType_$union, inputBinding?: InputBinding, optional?: boolean);
|
|
21
|
+
get Name(): string;
|
|
22
|
+
get Type_(): CWLType_$union | undefined;
|
|
23
|
+
set Type_(value: Option<CWLType_$union>);
|
|
24
|
+
get InputBinding(): InputBinding | undefined;
|
|
25
|
+
set InputBinding(value: Option<InputBinding>);
|
|
26
|
+
get Optional(): boolean | undefined;
|
|
27
|
+
set Optional(value: Option<boolean>);
|
|
28
|
+
}
|
|
29
|
+
export declare function CWLInput_$reflection(): TypeInfo;
|
|
30
|
+
export declare function CWLInput_$ctor_Z3A15BEDB(name: string, type_?: CWLType_$union, inputBinding?: InputBinding, optional?: boolean): CWLInput;
|
|
31
|
+
//# sourceMappingURL=Inputs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Inputs.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/CWL/Inputs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,sCAAsC,CAAC;AACzE,OAAO,EAA4B,MAAM,EAAE,MAAM,uCAAuC,CAAC;AACzF,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAC7D,OAAO,EAAa,WAAW,EAAE,UAAU,EAAE,MAAM,qCAAqC,CAAC;AACzF,OAAO,EAA4E,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AAC/I,OAAO,EAAE,cAAc,EAAW,MAAM,eAAe,CAAC;AACxD,OAAO,EAA0B,UAAU,EAAE,MAAM,oDAAoD,CAAC;AAGxG,qBAAa,YAAa,SAAQ,MAAO,YAAW,UAAU,CAAC,YAAY,CAAC,EAAE,WAAW,CAAC,YAAY,CAAC;IACnG,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;IAChC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC;IACjC,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;IACvC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;gBACvB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,MAAM,CAAC,OAAO,CAAC;CAOxH;AAED,wBAAgB,wBAAwB,IAAI,QAAQ,CAEnD;AAED,wBAAgB,4BAA4B,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,KAAK,EAAE,aAAa,CAAC,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,OAAO,GAAG,YAAY,CAExI;AAED,qBAAa,QAAS,SAAQ,UAAU;IACpC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,KAAK,CAAC;gBACL,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,cAAc,EAAE,YAAY,CAAC,EAAE,YAAY,EAAE,QAAQ,CAAC,EAAE,OAAO;IAUjG,IAAI,IAAI,IAAI,MAAM,CAGjB;IACD,IAAI,KAAK,IAAI,cAAc,GAAG,SAAS,CAItC;IACD,IAAI,KAAK,CAAC,KAAK,EAAE,MAAM,CAAC,cAAc,CAAC,EAQtC;IACD,IAAI,YAAY,IAAI,YAAY,GAAG,SAAS,CAI3C;IACD,IAAI,YAAY,CAAC,KAAK,EAAE,MAAM,CAAC,YAAY,CAAC,EAQ3C;IACD,IAAI,QAAQ,IAAI,OAAO,GAAG,SAAS,CAIlC;IACD,IAAI,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC,OAAO,CAAC,EAQlC;CACJ;AAED,wBAAgB,oBAAoB,IAAI,QAAQ,CAE/C;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,cAAc,EAAE,YAAY,CAAC,EAAE,YAAY,EAAE,QAAQ,CAAC,EAAE,OAAO,GAAG,QAAQ,CAExI"}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { Record, FSharpRef } from '../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
2
|
+
import { unwrap, value } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
3
|
+
import { defaultOf } from '../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
4
|
+
import { record_type, option_type, string_type, int32_type, bool_type, class_type } from '../../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
5
|
+
import { CWLType } from './CWLTypes.js';
|
|
6
|
+
import { DynamicObj, DynamicObj_$reflection } from '../fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js';
|
|
7
|
+
import { setOptionalProperty, removeProperty, setProperty } from '../fable_modules/DynamicObj.7.1.0/DynObj.fs.js';
|
|
8
|
+
|
|
9
|
+
class InputBinding extends Record {
|
|
10
|
+
constructor(Prefix, Position, ItemSeparator, Separate) {
|
|
11
|
+
super();
|
|
12
|
+
this.Prefix = Prefix;
|
|
13
|
+
this.Position = Position;
|
|
14
|
+
this.ItemSeparator = ItemSeparator;
|
|
15
|
+
this.Separate = Separate;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
function InputBinding_$reflection() {
|
|
19
|
+
return record_type("ARCtrl.CWL.InputBinding", [], InputBinding, () => [["Prefix", option_type(string_type)], ["Position", option_type(int32_type)], ["ItemSeparator", option_type(string_type)], ["Separate", option_type(bool_type)]]);
|
|
20
|
+
}
|
|
21
|
+
function InputBinding_create_ZAC0108A(prefix, position, itemSeparator, separate) {
|
|
22
|
+
return new InputBinding(prefix, position, itemSeparator, separate);
|
|
23
|
+
}
|
|
24
|
+
class CWLInput extends DynamicObj {
|
|
25
|
+
constructor(name, type_, inputBinding, optional) {
|
|
26
|
+
super();
|
|
27
|
+
const this$ = new FSharpRef(defaultOf());
|
|
28
|
+
this.name = name;
|
|
29
|
+
this$.contents = this;
|
|
30
|
+
this["init@31"] = 1;
|
|
31
|
+
setOptionalProperty("type", type_, this$.contents);
|
|
32
|
+
setOptionalProperty("inputBinding", inputBinding, this$.contents);
|
|
33
|
+
setOptionalProperty("optional", optional, this$.contents);
|
|
34
|
+
}
|
|
35
|
+
get Name() {
|
|
36
|
+
const this$ = this;
|
|
37
|
+
return this$.name;
|
|
38
|
+
}
|
|
39
|
+
get Type_() {
|
|
40
|
+
let dynObj, matchValue, o;
|
|
41
|
+
const this$ = this;
|
|
42
|
+
return unwrap((dynObj = this$, matchValue = dynObj.TryGetPropertyValue("type"), matchValue != null ? (o = value(matchValue), o instanceof CWLType ? o : void 0) : void 0));
|
|
43
|
+
}
|
|
44
|
+
set Type_(value$1) {
|
|
45
|
+
const this$ = this;
|
|
46
|
+
if (value$1 == null) {
|
|
47
|
+
removeProperty("type", this$);
|
|
48
|
+
} else {
|
|
49
|
+
setProperty("type", value(value$1), this$);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
get InputBinding() {
|
|
53
|
+
let dynObj, matchValue, o;
|
|
54
|
+
const this$ = this;
|
|
55
|
+
return unwrap((dynObj = this$, matchValue = dynObj.TryGetPropertyValue("inputBinding"), matchValue != null ? (o = value(matchValue), o instanceof InputBinding ? o : void 0) : void 0));
|
|
56
|
+
}
|
|
57
|
+
set InputBinding(value$1) {
|
|
58
|
+
const this$ = this;
|
|
59
|
+
if (value$1 == null) {
|
|
60
|
+
removeProperty("inputBinding", this$);
|
|
61
|
+
} else {
|
|
62
|
+
setProperty("inputBinding", value(value$1), this$);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
get Optional() {
|
|
66
|
+
let dynObj, matchValue, o;
|
|
67
|
+
const this$ = this;
|
|
68
|
+
return unwrap((dynObj = this$, matchValue = dynObj.TryGetPropertyValue("optional"), matchValue != null ? (o = value(matchValue), typeof o === "boolean" ? o : void 0) : void 0));
|
|
69
|
+
}
|
|
70
|
+
set Optional(value$1) {
|
|
71
|
+
const this$ = this;
|
|
72
|
+
if (value$1 == null) {
|
|
73
|
+
removeProperty("optional", this$);
|
|
74
|
+
} else {
|
|
75
|
+
setProperty("optional", value(value$1), this$);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
function CWLInput_$reflection() {
|
|
80
|
+
return class_type("ARCtrl.CWL.CWLInput", void 0, CWLInput, DynamicObj_$reflection());
|
|
81
|
+
}
|
|
82
|
+
function CWLInput_$ctor_Z3A15BEDB(name, type_, inputBinding, optional) {
|
|
83
|
+
return new CWLInput(name, type_, inputBinding, optional);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export { CWLInput, CWLInput_$ctor_Z3A15BEDB, CWLInput_$reflection, InputBinding, InputBinding_$reflection, InputBinding_create_ZAC0108A };
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { CWLInput } from './Inputs.js';
|
|
2
|
+
import { CWLOutput } from './Outputs.js';
|
|
3
|
+
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
4
|
+
import { HintEntry_$union, Requirement_$union } from './Requirements.js';
|
|
5
|
+
import { DynamicObj } from '../fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js';
|
|
6
|
+
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
7
|
+
export declare class CWLOperationDescription extends DynamicObj {
|
|
8
|
+
_cwlVersion: string;
|
|
9
|
+
_inputs: CWLInput[];
|
|
10
|
+
_outputs: CWLOutput[];
|
|
11
|
+
_requirements: Option<Requirement_$union[]>;
|
|
12
|
+
_hints: Option<HintEntry_$union[]>;
|
|
13
|
+
_intent: Option<string[]>;
|
|
14
|
+
_metadata: Option<DynamicObj>;
|
|
15
|
+
_label: Option<string>;
|
|
16
|
+
_doc: Option<string>;
|
|
17
|
+
constructor(inputs: CWLInput[], outputs: CWLOutput[], cwlVersion?: string, requirements?: Requirement_$union[], hints?: HintEntry_$union[], intent?: string[], metadata?: DynamicObj, label?: string, doc?: string);
|
|
18
|
+
get CWLVersion(): string;
|
|
19
|
+
set CWLVersion(value: string);
|
|
20
|
+
get Inputs(): CWLInput[];
|
|
21
|
+
set Inputs(value: CWLInput[]);
|
|
22
|
+
get Outputs(): CWLOutput[];
|
|
23
|
+
set Outputs(value: CWLOutput[]);
|
|
24
|
+
get Requirements(): Requirement_$union[] | undefined;
|
|
25
|
+
set Requirements(value: Option<Requirement_$union[]>);
|
|
26
|
+
get Hints(): HintEntry_$union[] | undefined;
|
|
27
|
+
set Hints(value: Option<HintEntry_$union[]>);
|
|
28
|
+
get Intent(): string[] | undefined;
|
|
29
|
+
set Intent(value: Option<string[]>);
|
|
30
|
+
get Metadata(): DynamicObj | undefined;
|
|
31
|
+
set Metadata(value: Option<DynamicObj>);
|
|
32
|
+
get Label(): string | undefined;
|
|
33
|
+
set Label(value: Option<string>);
|
|
34
|
+
get Doc(): string | undefined;
|
|
35
|
+
set Doc(value: Option<string>);
|
|
36
|
+
static getInputs(operation: CWLOperationDescription): CWLInput[];
|
|
37
|
+
static getOutputs(operation: CWLOperationDescription): CWLOutput[];
|
|
38
|
+
static getRequirementsOrEmpty(operation: CWLOperationDescription): Requirement_$union[];
|
|
39
|
+
static getHintsOrEmpty(operation: CWLOperationDescription): HintEntry_$union[];
|
|
40
|
+
static getIntentOrEmpty(operation: CWLOperationDescription): string[];
|
|
41
|
+
static getOrCreateHints(operation: CWLOperationDescription): HintEntry_$union[];
|
|
42
|
+
static getOrCreateIntent(operation: CWLOperationDescription): string[];
|
|
43
|
+
}
|
|
44
|
+
export declare function CWLOperationDescription_$reflection(): TypeInfo;
|
|
45
|
+
export declare function CWLOperationDescription_$ctor_58E129C8(inputs: CWLInput[], outputs: CWLOutput[], cwlVersion?: string, requirements?: Requirement_$union[], hints?: HintEntry_$union[], intent?: string[], metadata?: DynamicObj, label?: string, doc?: string): CWLOperationDescription;
|
|
46
|
+
//# sourceMappingURL=OperationDescription.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OperationDescription.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/CWL/OperationDescription.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import { defaultArg, unwrap, value } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
2
|
+
import { DynamicObj, DynamicObj_$reflection } from '../fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js';
|
|
3
|
+
import { class_type } from '../../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
4
|
+
|
|
5
|
+
class CWLOperationDescription extends DynamicObj {
|
|
6
|
+
constructor(inputs, outputs, cwlVersion, requirements, hints, intent, metadata, label, doc) {
|
|
7
|
+
super();
|
|
8
|
+
this._cwlVersion = defaultArg(cwlVersion, "v1.2");
|
|
9
|
+
this._inputs = inputs;
|
|
10
|
+
this._outputs = outputs;
|
|
11
|
+
this._requirements = requirements;
|
|
12
|
+
this._hints = hints;
|
|
13
|
+
this._intent = intent;
|
|
14
|
+
this._metadata = metadata;
|
|
15
|
+
this._label = label;
|
|
16
|
+
this._doc = doc;
|
|
17
|
+
}
|
|
18
|
+
get CWLVersion() {
|
|
19
|
+
const this$ = this;
|
|
20
|
+
return this$._cwlVersion;
|
|
21
|
+
}
|
|
22
|
+
set CWLVersion(value) {
|
|
23
|
+
const this$ = this;
|
|
24
|
+
this$._cwlVersion = value;
|
|
25
|
+
}
|
|
26
|
+
get Inputs() {
|
|
27
|
+
const this$ = this;
|
|
28
|
+
return this$._inputs;
|
|
29
|
+
}
|
|
30
|
+
set Inputs(value) {
|
|
31
|
+
const this$ = this;
|
|
32
|
+
this$._inputs = value;
|
|
33
|
+
}
|
|
34
|
+
get Outputs() {
|
|
35
|
+
const this$ = this;
|
|
36
|
+
return this$._outputs;
|
|
37
|
+
}
|
|
38
|
+
set Outputs(value) {
|
|
39
|
+
const this$ = this;
|
|
40
|
+
this$._outputs = value;
|
|
41
|
+
}
|
|
42
|
+
get Requirements() {
|
|
43
|
+
const this$ = this;
|
|
44
|
+
return unwrap(this$._requirements);
|
|
45
|
+
}
|
|
46
|
+
set Requirements(value) {
|
|
47
|
+
const this$ = this;
|
|
48
|
+
this$._requirements = value;
|
|
49
|
+
}
|
|
50
|
+
get Hints() {
|
|
51
|
+
const this$ = this;
|
|
52
|
+
return unwrap(this$._hints);
|
|
53
|
+
}
|
|
54
|
+
set Hints(value) {
|
|
55
|
+
const this$ = this;
|
|
56
|
+
this$._hints = value;
|
|
57
|
+
}
|
|
58
|
+
get Intent() {
|
|
59
|
+
const this$ = this;
|
|
60
|
+
return unwrap(this$._intent);
|
|
61
|
+
}
|
|
62
|
+
set Intent(value) {
|
|
63
|
+
const this$ = this;
|
|
64
|
+
this$._intent = value;
|
|
65
|
+
}
|
|
66
|
+
get Metadata() {
|
|
67
|
+
const this$ = this;
|
|
68
|
+
return unwrap(this$._metadata);
|
|
69
|
+
}
|
|
70
|
+
set Metadata(value) {
|
|
71
|
+
const this$ = this;
|
|
72
|
+
this$._metadata = value;
|
|
73
|
+
}
|
|
74
|
+
get Label() {
|
|
75
|
+
const this$ = this;
|
|
76
|
+
return unwrap(this$._label);
|
|
77
|
+
}
|
|
78
|
+
set Label(value) {
|
|
79
|
+
const this$ = this;
|
|
80
|
+
this$._label = value;
|
|
81
|
+
}
|
|
82
|
+
get Doc() {
|
|
83
|
+
const this$ = this;
|
|
84
|
+
return unwrap(this$._doc);
|
|
85
|
+
}
|
|
86
|
+
set Doc(value) {
|
|
87
|
+
const this$ = this;
|
|
88
|
+
this$._doc = value;
|
|
89
|
+
}
|
|
90
|
+
static getInputs(operation) {
|
|
91
|
+
return operation.Inputs;
|
|
92
|
+
}
|
|
93
|
+
static getOutputs(operation) {
|
|
94
|
+
return operation.Outputs;
|
|
95
|
+
}
|
|
96
|
+
static getRequirementsOrEmpty(operation) {
|
|
97
|
+
return defaultArg(operation.Requirements, []);
|
|
98
|
+
}
|
|
99
|
+
static getHintsOrEmpty(operation) {
|
|
100
|
+
return defaultArg(operation.Hints, []);
|
|
101
|
+
}
|
|
102
|
+
static getIntentOrEmpty(operation) {
|
|
103
|
+
return defaultArg(operation.Intent, []);
|
|
104
|
+
}
|
|
105
|
+
static getOrCreateHints(operation) {
|
|
106
|
+
const matchValue = operation.Hints;
|
|
107
|
+
if (matchValue == null) {
|
|
108
|
+
const hints_1 = [];
|
|
109
|
+
operation.Hints = hints_1;
|
|
110
|
+
return hints_1;
|
|
111
|
+
} else {
|
|
112
|
+
return value(matchValue);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
static getOrCreateIntent(operation) {
|
|
116
|
+
const matchValue = operation.Intent;
|
|
117
|
+
if (matchValue == null) {
|
|
118
|
+
const intent_1 = [];
|
|
119
|
+
operation.Intent = intent_1;
|
|
120
|
+
return intent_1;
|
|
121
|
+
} else {
|
|
122
|
+
return value(matchValue);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
function CWLOperationDescription_$reflection() {
|
|
127
|
+
return class_type("ARCtrl.CWL.CWLOperationDescription", void 0, CWLOperationDescription, DynamicObj_$reflection());
|
|
128
|
+
}
|
|
129
|
+
function CWLOperationDescription_$ctor_58E129C8(inputs, outputs, cwlVersion, requirements, hints, intent, metadata, label, doc) {
|
|
130
|
+
return new CWLOperationDescription(inputs, outputs, cwlVersion, requirements, hints, intent, metadata, label, doc);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export { CWLOperationDescription, CWLOperationDescription_$ctor_58E129C8, CWLOperationDescription_$reflection };
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { Union, 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 { CWLType_$union } from './CWLTypes.js';
|
|
6
|
+
import { DynamicObj } from '../fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js';
|
|
7
|
+
import { int32 } from '@fable-org/fable-library-js/Int32.js';
|
|
8
|
+
export declare class OutputBinding extends Record implements IEquatable<OutputBinding>, IComparable<OutputBinding> {
|
|
9
|
+
readonly Glob: Option<string>;
|
|
10
|
+
constructor(Glob: Option<string>);
|
|
11
|
+
}
|
|
12
|
+
export declare function OutputBinding_$reflection(): TypeInfo;
|
|
13
|
+
export declare function OutputBinding_create_6DFDD678(glob?: string): OutputBinding;
|
|
14
|
+
export type OutputSource_$union = OutputSource<0> | OutputSource<1>;
|
|
15
|
+
export type OutputSource_$cases = {
|
|
16
|
+
0: ["Single", [string]];
|
|
17
|
+
1: ["Multiple", [string[]]];
|
|
18
|
+
};
|
|
19
|
+
export declare function OutputSource_Single(Item: string): OutputSource<0>;
|
|
20
|
+
export declare function OutputSource_Multiple(Item: string[]): OutputSource<1>;
|
|
21
|
+
export declare class OutputSource<Tag extends keyof OutputSource_$cases> extends Union<Tag, OutputSource_$cases[Tag][0]> {
|
|
22
|
+
readonly tag: Tag;
|
|
23
|
+
readonly fields: OutputSource_$cases[Tag][1];
|
|
24
|
+
constructor(tag: Tag, fields: OutputSource_$cases[Tag][1]);
|
|
25
|
+
cases(): string[];
|
|
26
|
+
AsValues(): string[];
|
|
27
|
+
}
|
|
28
|
+
export declare function OutputSource_$reflection(): TypeInfo;
|
|
29
|
+
export declare class CWLOutput extends DynamicObj {
|
|
30
|
+
readonly name: string;
|
|
31
|
+
"init@23": int32;
|
|
32
|
+
constructor(name: string, type_?: CWLType_$union, outputBinding?: OutputBinding, outputSource?: OutputSource_$union);
|
|
33
|
+
get Name(): string;
|
|
34
|
+
get Type_(): CWLType_$union | undefined;
|
|
35
|
+
set Type_(value: Option<CWLType_$union>);
|
|
36
|
+
get OutputBinding(): OutputBinding | undefined;
|
|
37
|
+
set OutputBinding(value: Option<OutputBinding>);
|
|
38
|
+
get OutputSource(): OutputSource_$union | undefined;
|
|
39
|
+
set OutputSource(value: Option<OutputSource_$union>);
|
|
40
|
+
GetOutputSources(): string[];
|
|
41
|
+
}
|
|
42
|
+
export declare function CWLOutput_$reflection(): TypeInfo;
|
|
43
|
+
export declare function CWLOutput_$ctor_2471CF63(name: string, type_?: CWLType_$union, outputBinding?: OutputBinding, outputSource?: OutputSource_$union): CWLOutput;
|
|
44
|
+
//# sourceMappingURL=Outputs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Outputs.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/CWL/Outputs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,KAAK,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAChF,OAAO,EAA4B,MAAM,EAAE,MAAM,uCAAuC,CAAC;AACzF,OAAO,EAAa,WAAW,EAAE,UAAU,EAAE,MAAM,qCAAqC,CAAC;AACzF,OAAO,EAA6E,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AAChJ,OAAO,EAAE,cAAc,EAAW,MAAM,eAAe,CAAC;AACxD,OAAO,EAA0B,UAAU,EAAE,MAAM,oDAAoD,CAAC;AAExG,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAE7D,qBAAa,aAAc,SAAQ,MAAO,YAAW,UAAU,CAAC,aAAa,CAAC,EAAE,WAAW,CAAC,aAAa,CAAC;IACtG,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;gBAClB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC;CAInC;AAED,wBAAgB,yBAAyB,IAAI,QAAQ,CAEpD;AAED,wBAAgB,6BAA6B,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,aAAa,CAE1E;AAED,MAAM,MAAM,mBAAmB,GACzB,YAAY,CAAC,CAAC,CAAC,GACf,YAAY,CAAC,CAAC,CAAC,CAAA;AAErB,MAAM,MAAM,mBAAmB,GAAG;IAC9B,CAAC,EAAE,CAAC,QAAQ,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;IACxB,CAAC,EAAE,CAAC,UAAU,EAAE,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;CAC9B,CAAA;AAED,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,MAAM,mBAE/C;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,MAAM,EAAE,mBAEnD;AAED,qBAAa,YAAY,CAAC,GAAG,SAAS,MAAM,mBAAmB,CAAE,SAAQ,KAAK,CAAC,GAAG,EAAE,mBAAmB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAChG,QAAQ,CAAC,GAAG,EAAE,GAAG;IAAE,QAAQ,CAAC,MAAM,EAAE,mBAAmB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;gBAAtD,GAAG,EAAE,GAAG,EAAW,MAAM,EAAE,mBAAmB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;IAG3E,KAAK;IAGL,QAAQ,IAAI,MAAM,EAAE;CAIvB;AAED,wBAAgB,wBAAwB,IAAI,QAAQ,CAEnD;AAED,qBAAa,SAAU,SAAQ,UAAU;IACrC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,KAAK,CAAC;gBACL,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,cAAc,EAAE,aAAa,CAAC,EAAE,aAAa,EAAE,YAAY,CAAC,EAAE,mBAAmB;IAUnH,IAAI,IAAI,IAAI,MAAM,CAGjB;IACD,IAAI,KAAK,IAAI,cAAc,GAAG,SAAS,CAItC;IACD,IAAI,KAAK,CAAC,KAAK,EAAE,MAAM,CAAC,cAAc,CAAC,EAQtC;IACD,IAAI,aAAa,IAAI,aAAa,GAAG,SAAS,CAI7C;IACD,IAAI,aAAa,CAAC,KAAK,EAAE,MAAM,CAAC,aAAa,CAAC,EAQ7C;IACD,IAAI,YAAY,IAAI,mBAAmB,GAAG,SAAS,CAIlD;IACD,IAAI,YAAY,CAAC,KAAK,EAAE,MAAM,CAAC,mBAAmB,CAAC,EAmClD;IACD,gBAAgB,IAAI,MAAM,EAAE;CAW/B;AAED,wBAAgB,qBAAqB,IAAI,QAAQ,CAEhD;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,cAAc,EAAE,aAAa,CAAC,EAAE,aAAa,EAAE,YAAY,CAAC,EAAE,mBAAmB,GAAG,SAAS,CAE3J"}
|