@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
package/dist/ts/ts/Json/Run.js
CHANGED
|
@@ -2,7 +2,7 @@ import { choose, ofArray } from '../../node_modules/@fable-org/fable-library-js/
|
|
|
2
2
|
import { map, unwrap } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
3
3
|
import { tryInclude, tryIncludeSeq } from './Encode.js';
|
|
4
4
|
import { OntologyAnnotation_encoder, OntologyAnnotation_decoder } from './OntologyAnnotation.js';
|
|
5
|
-
import { encoder as encoder$1, decoder as decoder$2, encoderCompressed as encoderCompressed$1, decoderCompressed as decoderCompressed$2 } from './
|
|
5
|
+
import { encoder as encoder$1, decoder as decoder$2, encoderCompressed as encoderCompressed$1, decoderCompressed as decoderCompressed$2 } from './Datamap/Datamap.js';
|
|
6
6
|
import { encoder as encoder$2, decoder as decoder$1, encoderCompressed as encoderCompressed$2, decoderCompressed as decoderCompressed$1 } from './Table/ArcTable.js';
|
|
7
7
|
import { encoder as encoder$3, decoder as decoder$3 } from './Person.js';
|
|
8
8
|
import { encoder as encoder$4, decoder as decoder$4 } from './Comment.js';
|
|
@@ -24,7 +24,7 @@ function encoder(run) {
|
|
|
24
24
|
Encode(helpers_2) {
|
|
25
25
|
return helpers_2.encodeString(value_3);
|
|
26
26
|
}
|
|
27
|
-
}), run.Description), tryInclude("MeasurementType", OntologyAnnotation_encoder, run.MeasurementType), tryInclude("TechnologyType", OntologyAnnotation_encoder, run.TechnologyType), tryInclude("TechnologyPlatform", OntologyAnnotation_encoder, run.TechnologyPlatform), tryInclude("
|
|
27
|
+
}), run.Description), tryInclude("MeasurementType", OntologyAnnotation_encoder, run.MeasurementType), tryInclude("TechnologyType", OntologyAnnotation_encoder, run.TechnologyType), tryInclude("TechnologyPlatform", OntologyAnnotation_encoder, run.TechnologyPlatform), tryInclude("Datamap", encoder$1, run.Datamap), tryIncludeSeq("WorkflowIdentifiers", (value_5) => ({
|
|
28
28
|
Encode(helpers_3) {
|
|
29
29
|
return helpers_3.encodeString(value_5);
|
|
30
30
|
}
|
|
@@ -38,7 +38,7 @@ function encoder(run) {
|
|
|
38
38
|
}
|
|
39
39
|
const decoder = object((get$) => {
|
|
40
40
|
let objectArg, objectArg_1, objectArg_2, objectArg_3, objectArg_4, objectArg_5, arg_13, objectArg_6, arg_15, objectArg_7, objectArg_8, arg_19, objectArg_9, arg_21, objectArg_10;
|
|
41
|
-
return ArcRun.create((objectArg = get$.Required, objectArg.Field("Identifier", string)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("Title", string))), unwrap((objectArg_2 = get$.Optional, objectArg_2.Field("Description", string))), unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("MeasurementType", OntologyAnnotation_decoder))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("TechnologyType", OntologyAnnotation_decoder))), unwrap((objectArg_5 = get$.Optional, objectArg_5.Field("TechnologyPlatform", OntologyAnnotation_decoder))), unwrap((arg_13 = resizeArray(string), objectArg_6 = get$.Optional, objectArg_6.Field("WorkflowIdentifiers", arg_13))), unwrap((arg_15 = resizeArray(decoder$1), objectArg_7 = get$.Optional, objectArg_7.Field("Tables", arg_15))), unwrap((objectArg_8 = get$.Optional, objectArg_8.Field("
|
|
41
|
+
return ArcRun.create((objectArg = get$.Required, objectArg.Field("Identifier", string)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("Title", string))), unwrap((objectArg_2 = get$.Optional, objectArg_2.Field("Description", string))), unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("MeasurementType", OntologyAnnotation_decoder))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("TechnologyType", OntologyAnnotation_decoder))), unwrap((objectArg_5 = get$.Optional, objectArg_5.Field("TechnologyPlatform", OntologyAnnotation_decoder))), unwrap((arg_13 = resizeArray(string), objectArg_6 = get$.Optional, objectArg_6.Field("WorkflowIdentifiers", arg_13))), unwrap((arg_15 = resizeArray(decoder$1), objectArg_7 = get$.Optional, objectArg_7.Field("Tables", arg_15))), unwrap((objectArg_8 = get$.Optional, objectArg_8.Field("Datamap", decoder$2))), unwrap((arg_19 = resizeArray(decoder$3), objectArg_9 = get$.Optional, objectArg_9.Field("Performers", arg_19))), void 0, void 0, unwrap((arg_21 = resizeArray(decoder$4), objectArg_10 = get$.Optional, objectArg_10.Field("Comments", arg_21))));
|
|
42
42
|
});
|
|
43
43
|
function encoderCompressed(stringTable, oaTable, cellTable, run) {
|
|
44
44
|
let value;
|
|
@@ -54,7 +54,7 @@ function encoderCompressed(stringTable, oaTable, cellTable, run) {
|
|
|
54
54
|
Encode(helpers_2) {
|
|
55
55
|
return helpers_2.encodeString(value_3);
|
|
56
56
|
}
|
|
57
|
-
}), run.Description), tryInclude("MeasurementType", OntologyAnnotation_encoder, run.MeasurementType), tryInclude("TechnologyType", OntologyAnnotation_encoder, run.TechnologyType), tryInclude("TechnologyPlatform", OntologyAnnotation_encoder, run.TechnologyPlatform), tryInclude("
|
|
57
|
+
}), run.Description), tryInclude("MeasurementType", OntologyAnnotation_encoder, run.MeasurementType), tryInclude("TechnologyType", OntologyAnnotation_encoder, run.TechnologyType), tryInclude("TechnologyPlatform", OntologyAnnotation_encoder, run.TechnologyPlatform), tryInclude("Datamap", (dm) => encoderCompressed$1(stringTable, oaTable, cellTable, dm), run.Datamap), tryIncludeSeq("WorkflowIdentifiers", (value_5) => ({
|
|
58
58
|
Encode(helpers_3) {
|
|
59
59
|
return helpers_3.encodeString(value_5);
|
|
60
60
|
}
|
|
@@ -69,7 +69,7 @@ function encoderCompressed(stringTable, oaTable, cellTable, run) {
|
|
|
69
69
|
function decoderCompressed(stringTable, oaTable, cellTable) {
|
|
70
70
|
return object((get$) => {
|
|
71
71
|
let objectArg, objectArg_1, objectArg_2, objectArg_3, objectArg_4, objectArg_5, arg_13, objectArg_6, arg_15, objectArg_7, arg_17, objectArg_8, arg_19, objectArg_9, arg_21, objectArg_10;
|
|
72
|
-
return ArcRun.create((objectArg = get$.Required, objectArg.Field("Identifier", string)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("Title", string))), unwrap((objectArg_2 = get$.Optional, objectArg_2.Field("Description", string))), unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("MeasurementType", OntologyAnnotation_decoder))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("TechnologyType", OntologyAnnotation_decoder))), unwrap((objectArg_5 = get$.Optional, objectArg_5.Field("TechnologyPlatform", OntologyAnnotation_decoder))), unwrap((arg_13 = resizeArray(string), objectArg_6 = get$.Optional, objectArg_6.Field("WorkflowIdentifiers", arg_13))), unwrap((arg_15 = resizeArray(decoderCompressed$1(stringTable, oaTable, cellTable)), objectArg_7 = get$.Optional, objectArg_7.Field("Tables", arg_15))), unwrap((arg_17 = decoderCompressed$2(stringTable, oaTable, cellTable), objectArg_8 = get$.Optional, objectArg_8.Field("
|
|
72
|
+
return ArcRun.create((objectArg = get$.Required, objectArg.Field("Identifier", string)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("Title", string))), unwrap((objectArg_2 = get$.Optional, objectArg_2.Field("Description", string))), unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("MeasurementType", OntologyAnnotation_decoder))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("TechnologyType", OntologyAnnotation_decoder))), unwrap((objectArg_5 = get$.Optional, objectArg_5.Field("TechnologyPlatform", OntologyAnnotation_decoder))), unwrap((arg_13 = resizeArray(string), objectArg_6 = get$.Optional, objectArg_6.Field("WorkflowIdentifiers", arg_13))), unwrap((arg_15 = resizeArray(decoderCompressed$1(stringTable, oaTable, cellTable)), objectArg_7 = get$.Optional, objectArg_7.Field("Tables", arg_15))), unwrap((arg_17 = decoderCompressed$2(stringTable, oaTable, cellTable), objectArg_8 = get$.Optional, objectArg_8.Field("Datamap", arg_17))), unwrap((arg_19 = resizeArray(decoder$3), objectArg_9 = get$.Optional, objectArg_9.Field("Performers", arg_19))), void 0, void 0, unwrap((arg_21 = resizeArray(decoder$4), objectArg_10 = get$.Optional, objectArg_10.Field("Comments", arg_21))));
|
|
73
73
|
});
|
|
74
74
|
}
|
|
75
75
|
|
package/dist/ts/ts/Json/Study.js
CHANGED
|
@@ -7,7 +7,7 @@ import { encoder as encoder$1, decoder as decoder$1, ROCrate_encoder as ROCrate_
|
|
|
7
7
|
import { encoder as encoder$2, decoder as decoder$2, ROCrate_encoder as ROCrate_encoder$2, ROCrate_decoder as ROCrate_decoder$4, ISAJson_encoder as ISAJson_encoder$3, ISAJson_decoder as ISAJson_decoder$3 } from './Person.js';
|
|
8
8
|
import { OntologyAnnotation_encoder, OntologyAnnotation_decoder, OntologyAnnotation_ROCrate_encoderDefinedTerm, OntologyAnnotation_ROCrate_decoderDefinedTerm, OntologyAnnotation_ISAJson_encoder, OntologyAnnotation_ISAJson_decoder } from './OntologyAnnotation.js';
|
|
9
9
|
import { encoder as encoder$3, decoder as decoder$3, encoderCompressed as encoderCompressed$1, decoderCompressed as decoderCompressed$1 } from './Table/ArcTable.js';
|
|
10
|
-
import { encoder as encoder$4, decoder as decoder$4, encoderCompressed as encoderCompressed$2, decoderCompressed as decoderCompressed$2 } from './
|
|
10
|
+
import { encoder as encoder$4, decoder as decoder$4, encoderCompressed as encoderCompressed$2, decoderCompressed as decoderCompressed$2 } from './Datamap/Datamap.js';
|
|
11
11
|
import { encoder as encoder$5, decoder as decoder$5, ROCrate_encoder as ROCrate_encoder$6, ROCrate_decoder as ROCrate_decoder$5, ISAJson_encoder as ISAJson_encoder$6, ISAJson_decoder as ISAJson_decoder$5 } from './Comment.js';
|
|
12
12
|
import { map as map$1, isEmpty } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
13
13
|
import { object, string, resizeArray, list as list$1 } from '../fable_modules/Thoth.Json.Core.0.7.0/Decode.fs.js';
|
|
@@ -57,7 +57,7 @@ function encoder(study) {
|
|
|
57
57
|
Encode(helpers_4) {
|
|
58
58
|
return helpers_4.encodeString(value_7);
|
|
59
59
|
}
|
|
60
|
-
}), study.PublicReleaseDate), tryIncludeSeq("Publications", encoder$1, study.Publications), tryIncludeSeq("Contacts", encoder$2, study.Contacts), tryIncludeSeq("StudyDesignDescriptors", OntologyAnnotation_encoder, study.StudyDesignDescriptors), tryIncludeSeq("Tables", encoder$3, study.Tables), tryInclude("
|
|
60
|
+
}), study.PublicReleaseDate), tryIncludeSeq("Publications", encoder$1, study.Publications), tryIncludeSeq("Contacts", encoder$2, study.Contacts), tryIncludeSeq("StudyDesignDescriptors", OntologyAnnotation_encoder, study.StudyDesignDescriptors), tryIncludeSeq("Tables", encoder$3, study.Tables), tryInclude("Datamap", encoder$4, study.Datamap), tryIncludeSeq("RegisteredAssayIdentifiers", (value_9) => ({
|
|
61
61
|
Encode(helpers_5) {
|
|
62
62
|
return helpers_5.encodeString(value_9);
|
|
63
63
|
}
|
|
@@ -71,7 +71,7 @@ function encoder(study) {
|
|
|
71
71
|
}
|
|
72
72
|
const decoder = object((get$) => {
|
|
73
73
|
let objectArg, objectArg_1, objectArg_2, objectArg_3, objectArg_4, arg_11, objectArg_5, arg_13, objectArg_6, arg_15, objectArg_7, arg_17, objectArg_8, objectArg_9, arg_21, objectArg_10, arg_23, objectArg_11;
|
|
74
|
-
return new ArcStudy((objectArg = get$.Required, objectArg.Field("Identifier", string)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("Title", string))), unwrap((objectArg_2 = get$.Optional, objectArg_2.Field("Description", string))), unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("SubmissionDate", string))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("PublicReleaseDate", string))), unwrap((arg_11 = resizeArray(decoder$1), objectArg_5 = get$.Optional, objectArg_5.Field("Publications", arg_11))), unwrap((arg_13 = resizeArray(decoder$2), objectArg_6 = get$.Optional, objectArg_6.Field("Contacts", arg_13))), unwrap((arg_15 = resizeArray(OntologyAnnotation_decoder), objectArg_7 = get$.Optional, objectArg_7.Field("StudyDesignDescriptors", arg_15))), unwrap((arg_17 = resizeArray(decoder$3), objectArg_8 = get$.Optional, objectArg_8.Field("Tables", arg_17))), unwrap((objectArg_9 = get$.Optional, objectArg_9.Field("
|
|
74
|
+
return new ArcStudy((objectArg = get$.Required, objectArg.Field("Identifier", string)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("Title", string))), unwrap((objectArg_2 = get$.Optional, objectArg_2.Field("Description", string))), unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("SubmissionDate", string))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("PublicReleaseDate", string))), unwrap((arg_11 = resizeArray(decoder$1), objectArg_5 = get$.Optional, objectArg_5.Field("Publications", arg_11))), unwrap((arg_13 = resizeArray(decoder$2), objectArg_6 = get$.Optional, objectArg_6.Field("Contacts", arg_13))), unwrap((arg_15 = resizeArray(OntologyAnnotation_decoder), objectArg_7 = get$.Optional, objectArg_7.Field("StudyDesignDescriptors", arg_15))), unwrap((arg_17 = resizeArray(decoder$3), objectArg_8 = get$.Optional, objectArg_8.Field("Tables", arg_17))), unwrap((objectArg_9 = get$.Optional, objectArg_9.Field("Datamap", decoder$4))), unwrap((arg_21 = resizeArray(string), objectArg_10 = get$.Optional, objectArg_10.Field("RegisteredAssayIdentifiers", arg_21))), unwrap((arg_23 = resizeArray(decoder$5), objectArg_11 = get$.Optional, objectArg_11.Field("Comments", arg_23))));
|
|
75
75
|
});
|
|
76
76
|
function encoderCompressed(stringTable, oaTable, cellTable, study) {
|
|
77
77
|
let value;
|
|
@@ -95,7 +95,7 @@ function encoderCompressed(stringTable, oaTable, cellTable, study) {
|
|
|
95
95
|
Encode(helpers_4) {
|
|
96
96
|
return helpers_4.encodeString(value_7);
|
|
97
97
|
}
|
|
98
|
-
}), study.PublicReleaseDate), tryIncludeSeq("Publications", encoder$1, study.Publications), tryIncludeSeq("Contacts", encoder$2, study.Contacts), tryIncludeSeq("StudyDesignDescriptors", OntologyAnnotation_encoder, study.StudyDesignDescriptors), tryIncludeSeq("Tables", (table) => encoderCompressed$1(stringTable, oaTable, cellTable, table), study.Tables), tryInclude("
|
|
98
|
+
}), study.PublicReleaseDate), tryIncludeSeq("Publications", encoder$1, study.Publications), tryIncludeSeq("Contacts", encoder$2, study.Contacts), tryIncludeSeq("StudyDesignDescriptors", OntologyAnnotation_encoder, study.StudyDesignDescriptors), tryIncludeSeq("Tables", (table) => encoderCompressed$1(stringTable, oaTable, cellTable, table), study.Tables), tryInclude("Datamap", (dm) => encoderCompressed$2(stringTable, oaTable, cellTable, dm), study.Datamap), tryIncludeSeq("RegisteredAssayIdentifiers", (value_9) => ({
|
|
99
99
|
Encode(helpers_5) {
|
|
100
100
|
return helpers_5.encodeString(value_9);
|
|
101
101
|
}
|
|
@@ -110,7 +110,7 @@ function encoderCompressed(stringTable, oaTable, cellTable, study) {
|
|
|
110
110
|
function decoderCompressed(stringTable, oaTable, cellTable) {
|
|
111
111
|
return object((get$) => {
|
|
112
112
|
let objectArg, objectArg_1, objectArg_2, objectArg_3, objectArg_4, arg_11, objectArg_5, arg_13, objectArg_6, arg_15, objectArg_7, arg_17, objectArg_8, arg_19, objectArg_9, arg_21, objectArg_10, arg_23, objectArg_11;
|
|
113
|
-
return new ArcStudy((objectArg = get$.Required, objectArg.Field("Identifier", string)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("Title", string))), unwrap((objectArg_2 = get$.Optional, objectArg_2.Field("Description", string))), unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("SubmissionDate", string))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("PublicReleaseDate", string))), unwrap((arg_11 = resizeArray(decoder$1), objectArg_5 = get$.Optional, objectArg_5.Field("Publications", arg_11))), unwrap((arg_13 = resizeArray(decoder$2), objectArg_6 = get$.Optional, objectArg_6.Field("Contacts", arg_13))), unwrap((arg_15 = resizeArray(OntologyAnnotation_decoder), objectArg_7 = get$.Optional, objectArg_7.Field("StudyDesignDescriptors", arg_15))), unwrap((arg_17 = resizeArray(decoderCompressed$1(stringTable, oaTable, cellTable)), objectArg_8 = get$.Optional, objectArg_8.Field("Tables", arg_17))), unwrap((arg_19 = decoderCompressed$2(stringTable, oaTable, cellTable), objectArg_9 = get$.Optional, objectArg_9.Field("
|
|
113
|
+
return new ArcStudy((objectArg = get$.Required, objectArg.Field("Identifier", string)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("Title", string))), unwrap((objectArg_2 = get$.Optional, objectArg_2.Field("Description", string))), unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("SubmissionDate", string))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("PublicReleaseDate", string))), unwrap((arg_11 = resizeArray(decoder$1), objectArg_5 = get$.Optional, objectArg_5.Field("Publications", arg_11))), unwrap((arg_13 = resizeArray(decoder$2), objectArg_6 = get$.Optional, objectArg_6.Field("Contacts", arg_13))), unwrap((arg_15 = resizeArray(OntologyAnnotation_decoder), objectArg_7 = get$.Optional, objectArg_7.Field("StudyDesignDescriptors", arg_15))), unwrap((arg_17 = resizeArray(decoderCompressed$1(stringTable, oaTable, cellTable)), objectArg_8 = get$.Optional, objectArg_8.Field("Tables", arg_17))), unwrap((arg_19 = decoderCompressed$2(stringTable, oaTable, cellTable), objectArg_9 = get$.Optional, objectArg_9.Field("Datamap", arg_19))), unwrap((arg_21 = resizeArray(string), objectArg_10 = get$.Optional, objectArg_10.Field("RegisteredAssayIdentifiers", arg_21))), unwrap((arg_23 = resizeArray(decoder$5), objectArg_11 = get$.Optional, objectArg_11.Field("Comments", arg_23))));
|
|
114
114
|
});
|
|
115
115
|
}
|
|
116
116
|
function ROCrate_genID(a) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Workflow.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Json/Workflow.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAqB,UAAU,EAAE,MAAM,oDAAoD,CAAC;AAG9G,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"Workflow.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/Json/Workflow.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAqB,UAAU,EAAE,MAAM,oDAAoD,CAAC;AAG9G,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AAUnE,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAElD,OAAO,EAAE,IAAI,EAAE,MAAM,qCAAqC,CAAC;AAC3D,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAC7D,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAEtE,wBAAgB,OAAO,CAAC,QAAQ,EAAE,WAAW,GAAG,UAAU,CAiCzD;AAED,eAAO,MAAM,OAAO,EAAE,SAAS,CAAC,WAAW,CAGzC,CAAC;AAEH,wBAAgB,iBAAiB,CAAC,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE,KAAK,CAAC,EAAE,OAAO,EAAE,IAAI,CAAC,kBAAkB,EAAE,KAAK,CAAC,EAAE,SAAS,EAAE,IAAI,CAAC,oBAAoB,EAAE,KAAK,CAAC,EAAE,QAAQ,EAAE,WAAW,GAAG,UAAU,CAiC7L;AAED,wBAAgB,iBAAiB,CAAC,WAAW,EAAE,MAAM,EAAE,EAAE,OAAO,EAAE,kBAAkB,EAAE,EAAE,SAAS,EAAE,oBAAoB,EAAE,GAAG,SAAS,CAAC,WAAW,CAAC,CAKjJ"}
|
|
@@ -2,11 +2,10 @@ import { choose, ofArray } from '../../node_modules/@fable-org/fable-library-js/
|
|
|
2
2
|
import { map, unwrap } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
3
3
|
import { tryInclude, tryIncludeSeq } from './Encode.js';
|
|
4
4
|
import { OntologyAnnotation_encoder, OntologyAnnotation_decoder } from './OntologyAnnotation.js';
|
|
5
|
-
import { encoder as encoder$1, decoder as decoder$
|
|
6
|
-
import { encoder as encoder$2, decoder as decoder$1 } from './Process/
|
|
7
|
-
import { encoder as encoder$3, decoder as decoder$
|
|
8
|
-
import { encoder as encoder$4, decoder as decoder$4 } from './
|
|
9
|
-
import { encoder as encoder$5, decoder as decoder$5 } from './Comment.js';
|
|
5
|
+
import { encoder as encoder$1, decoder as decoder$2, encoderCompressed as encoderCompressed$1, decoderCompressed as decoderCompressed$1 } from './Datamap/Datamap.js';
|
|
6
|
+
import { encoder as encoder$2, decoder as decoder$1 } from './Process/Component.js';
|
|
7
|
+
import { encoder as encoder$3, decoder as decoder$3 } from './Person.js';
|
|
8
|
+
import { encoder as encoder$4, decoder as decoder$4 } from './Comment.js';
|
|
10
9
|
import { map as map$1 } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
11
10
|
import { ArcWorkflow } from '../Core/ArcTypes.js';
|
|
12
11
|
import { object, string, resizeArray } from '../fable_modules/Thoth.Json.Core.0.7.0/Decode.fs.js';
|
|
@@ -33,11 +32,11 @@ function encoder(workflow) {
|
|
|
33
32
|
Encode(helpers_4) {
|
|
34
33
|
return helpers_4.encodeString(value_7);
|
|
35
34
|
}
|
|
36
|
-
}), workflow.Version), tryInclude("
|
|
35
|
+
}), workflow.Version), tryInclude("Datamap", encoder$1, workflow.Datamap), tryIncludeSeq("SubWorkflowIdentifiers", (value_9) => ({
|
|
37
36
|
Encode(helpers_5) {
|
|
38
37
|
return helpers_5.encodeString(value_9);
|
|
39
38
|
}
|
|
40
|
-
}), workflow.SubWorkflowIdentifiers), tryIncludeSeq("Parameters",
|
|
39
|
+
}), workflow.SubWorkflowIdentifiers), tryIncludeSeq("Parameters", OntologyAnnotation_encoder, workflow.Parameters), tryIncludeSeq("Components", encoder$2, workflow.Components), tryIncludeSeq("Contacts", encoder$3, workflow.Contacts), tryIncludeSeq("Comments", encoder$4, workflow.Comments)]));
|
|
41
40
|
return {
|
|
42
41
|
Encode(helpers_6) {
|
|
43
42
|
const arg = map$1((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers_6)], values_1);
|
|
@@ -47,7 +46,7 @@ function encoder(workflow) {
|
|
|
47
46
|
}
|
|
48
47
|
const decoder = object((get$) => {
|
|
49
48
|
let objectArg, objectArg_1, objectArg_2, objectArg_3, objectArg_4, objectArg_5, arg_13, objectArg_6, arg_15, objectArg_7, arg_17, objectArg_8, objectArg_9, arg_21, objectArg_10, arg_23, objectArg_11;
|
|
50
|
-
return ArcWorkflow.create((objectArg = get$.Required, objectArg.Field("Identifier", string)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("Title", string))), unwrap((objectArg_2 = get$.Optional, objectArg_2.Field("Description", string))), unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("WorkflowType", OntologyAnnotation_decoder))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("URI", string))), unwrap((objectArg_5 = get$.Optional, objectArg_5.Field("Version", string))), unwrap((arg_13 = resizeArray(string), objectArg_6 = get$.Optional, objectArg_6.Field("SubWorkflowIdentifiers", arg_13))), unwrap((arg_15 = resizeArray(
|
|
49
|
+
return ArcWorkflow.create((objectArg = get$.Required, objectArg.Field("Identifier", string)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("Title", string))), unwrap((objectArg_2 = get$.Optional, objectArg_2.Field("Description", string))), unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("WorkflowType", OntologyAnnotation_decoder))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("URI", string))), unwrap((objectArg_5 = get$.Optional, objectArg_5.Field("Version", string))), unwrap((arg_13 = resizeArray(string), objectArg_6 = get$.Optional, objectArg_6.Field("SubWorkflowIdentifiers", arg_13))), unwrap((arg_15 = resizeArray(OntologyAnnotation_decoder), objectArg_7 = get$.Optional, objectArg_7.Field("Parameters", arg_15))), unwrap((arg_17 = resizeArray(decoder$1), objectArg_8 = get$.Optional, objectArg_8.Field("Components", arg_17))), unwrap((objectArg_9 = get$.Optional, objectArg_9.Field("Datamap", decoder$2))), unwrap((arg_21 = resizeArray(decoder$3), objectArg_10 = get$.Optional, objectArg_10.Field("Contacts", arg_21))), void 0, unwrap((arg_23 = resizeArray(decoder$4), objectArg_11 = get$.Optional, objectArg_11.Field("Comments", arg_23))));
|
|
51
50
|
});
|
|
52
51
|
function encoderCompressed(stringTable, oaTable, cellTable, workflow) {
|
|
53
52
|
let value;
|
|
@@ -71,11 +70,11 @@ function encoderCompressed(stringTable, oaTable, cellTable, workflow) {
|
|
|
71
70
|
Encode(helpers_4) {
|
|
72
71
|
return helpers_4.encodeString(value_7);
|
|
73
72
|
}
|
|
74
|
-
}), workflow.Version), tryInclude("
|
|
73
|
+
}), workflow.Version), tryInclude("Datamap", (dm) => encoderCompressed$1(stringTable, oaTable, cellTable, dm), workflow.Datamap), tryIncludeSeq("SubWorkflowIdentifiers", (value_9) => ({
|
|
75
74
|
Encode(helpers_5) {
|
|
76
75
|
return helpers_5.encodeString(value_9);
|
|
77
76
|
}
|
|
78
|
-
}), workflow.SubWorkflowIdentifiers), tryIncludeSeq("Parameters",
|
|
77
|
+
}), workflow.SubWorkflowIdentifiers), tryIncludeSeq("Parameters", OntologyAnnotation_encoder, workflow.Parameters), tryIncludeSeq("Components", encoder$2, workflow.Components), tryIncludeSeq("Contacts", encoder$3, workflow.Contacts), tryIncludeSeq("Comments", encoder$4, workflow.Comments)]));
|
|
79
78
|
return {
|
|
80
79
|
Encode(helpers_6) {
|
|
81
80
|
const arg = map$1((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers_6)], values_1);
|
|
@@ -86,7 +85,7 @@ function encoderCompressed(stringTable, oaTable, cellTable, workflow) {
|
|
|
86
85
|
function decoderCompressed(stringTable, oaTable, cellTable) {
|
|
87
86
|
return object((get$) => {
|
|
88
87
|
let objectArg, objectArg_1, objectArg_2, objectArg_3, objectArg_4, objectArg_5, arg_13, objectArg_6, arg_15, objectArg_7, arg_17, objectArg_8, arg_19, objectArg_9, arg_21, objectArg_10, arg_23, objectArg_11;
|
|
89
|
-
return ArcWorkflow.create((objectArg = get$.Required, objectArg.Field("Identifier", string)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("Title", string))), unwrap((objectArg_2 = get$.Optional, objectArg_2.Field("Description", string))), unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("WorkflowType", OntologyAnnotation_decoder))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("URI", string))), unwrap((objectArg_5 = get$.Optional, objectArg_5.Field("Version", string))), unwrap((arg_13 = resizeArray(string), objectArg_6 = get$.Optional, objectArg_6.Field("SubWorkflowIdentifiers", arg_13))), unwrap((arg_15 = resizeArray(
|
|
88
|
+
return ArcWorkflow.create((objectArg = get$.Required, objectArg.Field("Identifier", string)), unwrap((objectArg_1 = get$.Optional, objectArg_1.Field("Title", string))), unwrap((objectArg_2 = get$.Optional, objectArg_2.Field("Description", string))), unwrap((objectArg_3 = get$.Optional, objectArg_3.Field("WorkflowType", OntologyAnnotation_decoder))), unwrap((objectArg_4 = get$.Optional, objectArg_4.Field("URI", string))), unwrap((objectArg_5 = get$.Optional, objectArg_5.Field("Version", string))), unwrap((arg_13 = resizeArray(string), objectArg_6 = get$.Optional, objectArg_6.Field("SubWorkflowIdentifiers", arg_13))), unwrap((arg_15 = resizeArray(OntologyAnnotation_decoder), objectArg_7 = get$.Optional, objectArg_7.Field("Parameters", arg_15))), unwrap((arg_17 = resizeArray(decoder$1), objectArg_8 = get$.Optional, objectArg_8.Field("Components", arg_17))), unwrap((arg_19 = decoderCompressed$1(stringTable, oaTable, cellTable), objectArg_9 = get$.Optional, objectArg_9.Field("Datamap", arg_19))), unwrap((arg_21 = resizeArray(decoder$3), objectArg_10 = get$.Optional, objectArg_10.Field("Contacts", arg_21))), void 0, unwrap((arg_23 = resizeArray(decoder$4), objectArg_11 = get$.Optional, objectArg_11.Field("Comments", arg_23))));
|
|
90
89
|
});
|
|
91
90
|
}
|
|
92
91
|
|
package/dist/ts/ts/Json.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { int32 } from '@fable-org/fable-library-js/Int32.js';
|
|
|
3
3
|
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
4
4
|
import { Person } from './Core/Person.js';
|
|
5
5
|
import { LDGraph, LDNode } from './ROCrate/LDObject.js';
|
|
6
|
-
import {
|
|
6
|
+
import { Datamap } from './Core/Datamap.js';
|
|
7
7
|
import { ArcInvestigation, ArcRun, ArcWorkflow, ArcStudy, ArcAssay } from './Core/ArcTypes.js';
|
|
8
8
|
import { FSharpList } from '@fable-org/fable-library-js/List.js';
|
|
9
9
|
import { ARC } from './ARC.js';
|
|
@@ -31,8 +31,8 @@ export declare function JsonHelper_PersonJson_$reflection(): TypeInfo;
|
|
|
31
31
|
export declare function JsonHelper_PersonJson_$ctor(): JsonHelper_PersonJson;
|
|
32
32
|
export declare class JsonHelper_DatamapJson {
|
|
33
33
|
constructor();
|
|
34
|
-
fromJsonString(s: string):
|
|
35
|
-
toJsonString(datamap:
|
|
34
|
+
fromJsonString(s: string): Datamap;
|
|
35
|
+
toJsonString(datamap: Datamap, spaces?: int32): string;
|
|
36
36
|
}
|
|
37
37
|
export declare function JsonHelper_DatamapJson_$reflection(): TypeInfo;
|
|
38
38
|
export declare function JsonHelper_DatamapJson_$ctor(): JsonHelper_DatamapJson;
|
|
@@ -85,11 +85,9 @@ export declare class JsonHelper_InvestigationJson {
|
|
|
85
85
|
fromJsonString(s: string): ArcInvestigation;
|
|
86
86
|
fromCompressedJsonString(s: string): ArcInvestigation;
|
|
87
87
|
fromISAJsonString(s: string): ArcInvestigation;
|
|
88
|
-
fromROCrateJsonString(s: string): ArcInvestigation;
|
|
89
88
|
toJsonString(investigation: ArcInvestigation, spaces?: int32): string;
|
|
90
89
|
toCompressedJsonString(investigation: ArcInvestigation, spaces?: int32): string;
|
|
91
90
|
toISAJsonString(investigation: ArcInvestigation, spaces?: int32, useIDReferencing?: boolean): string;
|
|
92
|
-
toROCrateJsonString(investigation: ArcInvestigation, spaces?: int32): string;
|
|
93
91
|
}
|
|
94
92
|
export declare function JsonHelper_InvestigationJson_$reflection(): TypeInfo;
|
|
95
93
|
export declare function JsonHelper_InvestigationJson_$ctor(): JsonHelper_InvestigationJson;
|
package/dist/ts/ts/Json.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Json.d.ts","sourceRoot":"","sources":["../../../src/ARCtrl/ts/Json.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"Json.d.ts","sourceRoot":"","sources":["../../../src/ARCtrl/ts/Json.ts"],"names":[],"mappings":"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"}
|
package/dist/ts/ts/Json.js
CHANGED
|
@@ -3,12 +3,12 @@ import { unwrap } from '../node_modules/@fable-org/fable-library-js/Option.js';
|
|
|
3
3
|
import { class_type } from '../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
4
4
|
import { ARCtrl_Person__Person_fromJsonString_Static_Z721C83C5, ARCtrl_Person__Person_fromISAJsonString_Static_Z721C83C5, ARCtrl_Person__Person_toJsonString_Static_71136F3F, ARCtrl_Person__Person_toISAJsonString_Static_Z3B036AA, ARCtrl_Person__Person_toROCrateJsonString_Static_71136F3F } from './JsonIO/Person.js';
|
|
5
5
|
import { ARCtrl_ROCrate_LDNode__LDNode_fromROCrateJsonString_Static_Z721C83C5, ARCtrl_ROCrate_LDGraph__LDGraph_fromROCrateJsonString_Static_Z721C83C5, ARCtrl_ROCrate_LDGraph__LDGraph_toROCrateJsonString_Static_71136F3F, ARCtrl_ROCrate_LDNode__LDNode_toROCrateJsonString_Static_71136F3F } from './JsonIO/LDObject.js';
|
|
6
|
-
import {
|
|
6
|
+
import { ARCtrl_Datamap__Datamap_fromJsonString_Static_Z721C83C5, ARCtrl_Datamap__Datamap_toJsonString_Static_71136F3F } from './JsonIO/Datamap.js';
|
|
7
7
|
import { ARCtrl_ArcAssay__ArcAssay_fromJsonString_Static_Z721C83C5, ARCtrl_ArcAssay__ArcAssay_fromCompressedJsonString_Static_Z721C83C5, ARCtrl_ArcAssay__ArcAssay_fromISAJsonString_Static_Z721C83C5, ARCtrl_ArcAssay__ArcAssay_fromROCrateJsonString_Static_Z721C83C5, ARCtrl_ArcAssay__ArcAssay_toJsonString_Static_71136F3F, ARCtrl_ArcAssay__ArcAssay_toCompressedJsonString_Static_71136F3F, ARCtrl_ArcAssay__ArcAssay_toISAJsonString_Static_Z3B036AA, ARCtrl_ArcAssay__ArcAssay_toROCrateJsonString_Static_5CABCA47 } from './JsonIO/Assay.js';
|
|
8
8
|
import { ARCtrl_ArcStudy__ArcStudy_fromJsonString_Static_Z721C83C5, ARCtrl_ArcStudy__ArcStudy_fromCompressedJsonString_Static_Z721C83C5, ARCtrl_ArcStudy__ArcStudy_fromISAJsonString_Static_Z721C83C5, ARCtrl_ArcStudy__ArcStudy_fromROCrateJsonString_Static_Z721C83C5, ARCtrl_ArcStudy__ArcStudy_toJsonString_Static_71136F3F, ARCtrl_ArcStudy__ArcStudy_toCompressedJsonString_Static_71136F3F, ARCtrl_ArcStudy__ArcStudy_toISAJsonString_Static_Z3FD920F1, ARCtrl_ArcStudy__ArcStudy_toROCrateJsonString_Static_3BA23086 } from './JsonIO/Study.js';
|
|
9
9
|
import { ARCtrl_ArcWorkflow__ArcWorkflow_fromJsonString_Static_Z721C83C5, ARCtrl_ArcWorkflow__ArcWorkflow_fromCompressedJsonString_Static_Z721C83C5, ARCtrl_ArcWorkflow__ArcWorkflow_toJsonString_Static_71136F3F, ARCtrl_ArcWorkflow__ArcWorkflow_toCompressedJsonString_Static_71136F3F } from './JsonIO/Workflow.js';
|
|
10
10
|
import { ARCtrl_ArcRun__ArcRun_fromJsonString_Static_Z721C83C5, ARCtrl_ArcRun__ArcRun_fromCompressedJsonString_Static_Z721C83C5, ARCtrl_ArcRun__ArcRun_toJsonString_Static_71136F3F, ARCtrl_ArcRun__ArcRun_toCompressedJsonString_Static_71136F3F } from './JsonIO/Run.js';
|
|
11
|
-
import { ARCtrl_ArcInvestigation__ArcInvestigation_fromJsonString_Static_Z721C83C5, ARCtrl_ArcInvestigation__ArcInvestigation_fromCompressedJsonString_Static_Z721C83C5, ARCtrl_ArcInvestigation__ArcInvestigation_fromISAJsonString_Static_Z721C83C5,
|
|
11
|
+
import { ARCtrl_ArcInvestigation__ArcInvestigation_fromJsonString_Static_Z721C83C5, ARCtrl_ArcInvestigation__ArcInvestigation_fromCompressedJsonString_Static_Z721C83C5, ARCtrl_ArcInvestigation__ArcInvestigation_fromISAJsonString_Static_Z721C83C5, ARCtrl_ArcInvestigation__ArcInvestigation_toJsonString_Static_71136F3F, ARCtrl_ArcInvestigation__ArcInvestigation_toCompressedJsonString_Static_71136F3F, ARCtrl_ArcInvestigation__ArcInvestigation_toISAJsonString_Static_Z3B036AA } from './JsonIO/Investigation.js';
|
|
12
12
|
import { ARC } from './ARC.js';
|
|
13
13
|
|
|
14
14
|
class JsonHelper_OntologyAnnotationJson {
|
|
@@ -71,10 +71,10 @@ class JsonHelper_DatamapJson {
|
|
|
71
71
|
constructor() {
|
|
72
72
|
}
|
|
73
73
|
fromJsonString(s) {
|
|
74
|
-
return
|
|
74
|
+
return ARCtrl_Datamap__Datamap_fromJsonString_Static_Z721C83C5(s);
|
|
75
75
|
}
|
|
76
76
|
toJsonString(datamap, spaces) {
|
|
77
|
-
return
|
|
77
|
+
return ARCtrl_Datamap__Datamap_toJsonString_Static_71136F3F(unwrap(spaces))(datamap);
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
function JsonHelper_DatamapJson_$reflection() {
|
|
@@ -207,9 +207,6 @@ class JsonHelper_InvestigationJson {
|
|
|
207
207
|
fromISAJsonString(s) {
|
|
208
208
|
return ARCtrl_ArcInvestigation__ArcInvestigation_fromISAJsonString_Static_Z721C83C5(s);
|
|
209
209
|
}
|
|
210
|
-
fromROCrateJsonString(s) {
|
|
211
|
-
return ARCtrl_ArcInvestigation__ArcInvestigation_fromROCrateJsonString_Static_Z721C83C5(s);
|
|
212
|
-
}
|
|
213
210
|
toJsonString(investigation, spaces) {
|
|
214
211
|
return ARCtrl_ArcInvestigation__ArcInvestigation_toJsonString_Static_71136F3F(unwrap(spaces))(investigation);
|
|
215
212
|
}
|
|
@@ -219,9 +216,6 @@ class JsonHelper_InvestigationJson {
|
|
|
219
216
|
toISAJsonString(investigation, spaces, useIDReferencing) {
|
|
220
217
|
return ARCtrl_ArcInvestigation__ArcInvestigation_toISAJsonString_Static_Z3B036AA(unwrap(spaces), unwrap(useIDReferencing))(investigation);
|
|
221
218
|
}
|
|
222
|
-
toROCrateJsonString(investigation, spaces) {
|
|
223
|
-
return ARCtrl_ArcInvestigation__ArcInvestigation_toROCrateJsonString_Static_71136F3F(unwrap(spaces))(investigation);
|
|
224
|
-
}
|
|
225
219
|
}
|
|
226
220
|
function JsonHelper_InvestigationJson_$reflection() {
|
|
227
221
|
return class_type("ARCtrl.JsonHelper.InvestigationJson", void 0, JsonHelper_InvestigationJson);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Datamap } from '../Core/Datamap.js';
|
|
2
2
|
import { int32 } from '@fable-org/fable-library-js/Int32.js';
|
|
3
3
|
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
4
|
-
export declare function
|
|
5
|
-
export declare function
|
|
6
|
-
export declare function
|
|
4
|
+
export declare function ARCtrl_Datamap__Datamap_fromJsonString_Static_Z721C83C5(s: string): Datamap;
|
|
5
|
+
export declare function ARCtrl_Datamap__Datamap_toJsonString_Static_71136F3F(spaces?: int32): ((arg0: Datamap) => string);
|
|
6
|
+
export declare function ARCtrl_Datamap__Datamap_ToJsonString_71136F3F(this$: Datamap, spaces: Option<int32>): string;
|
|
7
7
|
//# sourceMappingURL=Datamap.d.ts.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { fromString } from '../fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js';
|
|
2
|
-
import { decoder, encoder } from '../Json/
|
|
2
|
+
import { decoder, encoder } from '../Json/Datamap/Datamap.js';
|
|
3
3
|
import { toText, printf } from '../../node_modules/@fable-org/fable-library-js/String.js';
|
|
4
4
|
import { toString } from '../fable_modules/Thoth.Json.JavaScript.0.4.1/Encode.fs.js';
|
|
5
5
|
import { defaultSpaces } from '../Json/Encode.js';
|
|
6
6
|
import { unwrap } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
7
7
|
|
|
8
|
-
function
|
|
8
|
+
function ARCtrl_Datamap__Datamap_fromJsonString_Static_Z721C83C5(s) {
|
|
9
9
|
let arg;
|
|
10
10
|
const matchValue = fromString(decoder, s);
|
|
11
11
|
if (matchValue.tag === /* Error */
|
|
@@ -15,14 +15,14 @@ function ARCtrl_DataMap__DataMap_fromJsonString_Static_Z721C83C5(s) {
|
|
|
15
15
|
return matchValue.fields[0];
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
|
-
function
|
|
18
|
+
function ARCtrl_Datamap__Datamap_toJsonString_Static_71136F3F(spaces) {
|
|
19
19
|
return (obj) => {
|
|
20
20
|
const value = encoder(obj);
|
|
21
21
|
return toString(defaultSpaces(spaces), value);
|
|
22
22
|
};
|
|
23
23
|
}
|
|
24
|
-
function
|
|
25
|
-
return
|
|
24
|
+
function ARCtrl_Datamap__Datamap_ToJsonString_71136F3F(this$, spaces) {
|
|
25
|
+
return ARCtrl_Datamap__Datamap_toJsonString_Static_71136F3F(unwrap(spaces))(this$);
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
export {
|
|
28
|
+
export { ARCtrl_Datamap__Datamap_ToJsonString_71136F3F, ARCtrl_Datamap__Datamap_fromJsonString_Static_Z721C83C5, ARCtrl_Datamap__Datamap_toJsonString_Static_71136F3F };
|
|
@@ -7,12 +7,6 @@ export declare function ARCtrl_ArcInvestigation__ArcInvestigation_ToJsonString_7
|
|
|
7
7
|
export declare function ARCtrl_ArcInvestigation__ArcInvestigation_fromCompressedJsonString_Static_Z721C83C5(s: string): ArcInvestigation;
|
|
8
8
|
export declare function ARCtrl_ArcInvestigation__ArcInvestigation_toCompressedJsonString_Static_71136F3F(spaces?: int32): ((arg0: ArcInvestigation) => string);
|
|
9
9
|
export declare function ARCtrl_ArcInvestigation__ArcInvestigation_ToCompressedJsonString_71136F3F(this$: ArcInvestigation, spaces: Option<int32>): string;
|
|
10
|
-
export declare function ARCtrl_ArcInvestigation__ArcInvestigation_fromROCrateJsonString_Static_Z721C83C5(s: string): ArcInvestigation;
|
|
11
|
-
/**
|
|
12
|
-
* exports in json-ld format
|
|
13
|
-
*/
|
|
14
|
-
export declare function ARCtrl_ArcInvestigation__ArcInvestigation_toROCrateJsonString_Static_71136F3F(spaces?: int32): ((arg0: ArcInvestigation) => string);
|
|
15
|
-
export declare function ARCtrl_ArcInvestigation__ArcInvestigation_ToROCrateJsonString_71136F3F(this$: ArcInvestigation, spaces: Option<int32>): string;
|
|
16
10
|
export declare function ARCtrl_ArcInvestigation__ArcInvestigation_toISAJsonString_Static_Z3B036AA(spaces?: int32, useIDReferencing?: boolean): ((arg0: ArcInvestigation) => string);
|
|
17
11
|
export declare function ARCtrl_ArcInvestigation__ArcInvestigation_fromISAJsonString_Static_Z721C83C5(s: string): ArcInvestigation;
|
|
18
12
|
export declare function ARCtrl_ArcInvestigation__ArcInvestigation_ToISAJsonString_Z3B036AA(this$: ArcInvestigation, spaces: Option<int32>, useIDReferencing: Option<boolean>): string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Investigation.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/JsonIO/Investigation.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAMvD,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAC7D,OAAO,EAAc,MAAM,EAAU,MAAM,uCAAuC,CAAC;AAMnF,wBAAgB,yEAAyE,CAAC,CAAC,EAAE,MAAM,GAAG,gBAAgB,CASrH;AAED,wBAAgB,sEAAsE,CAAC,MAAM,CAAC,EAAE,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,gBAAgB,KAAK,MAAM,CAAC,CAK3I;AAED,wBAAgB,+DAA+D,CAAC,KAAK,EAAE,gBAAgB,EAAE,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,GAAG,MAAM,CAEtI;AAED,wBAAgB,mFAAmF,CAAC,CAAC,EAAE,MAAM,GAAG,gBAAgB,CAe/H;AAED,wBAAgB,gFAAgF,CAAC,MAAM,CAAC,EAAE,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,gBAAgB,KAAK,MAAM,CAAC,CAErJ;AAED,wBAAgB,yEAAyE,CAAC,KAAK,EAAE,gBAAgB,EAAE,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,GAAG,MAAM,CAEhJ;AAED,wBAAgB,
|
|
1
|
+
{"version":3,"file":"Investigation.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/JsonIO/Investigation.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAMvD,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAC7D,OAAO,EAAc,MAAM,EAAU,MAAM,uCAAuC,CAAC;AAMnF,wBAAgB,yEAAyE,CAAC,CAAC,EAAE,MAAM,GAAG,gBAAgB,CASrH;AAED,wBAAgB,sEAAsE,CAAC,MAAM,CAAC,EAAE,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,gBAAgB,KAAK,MAAM,CAAC,CAK3I;AAED,wBAAgB,+DAA+D,CAAC,KAAK,EAAE,gBAAgB,EAAE,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,GAAG,MAAM,CAEtI;AAED,wBAAgB,mFAAmF,CAAC,CAAC,EAAE,MAAM,GAAG,gBAAgB,CAe/H;AAED,wBAAgB,gFAAgF,CAAC,MAAM,CAAC,EAAE,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,gBAAgB,KAAK,MAAM,CAAC,CAErJ;AAED,wBAAgB,yEAAyE,CAAC,KAAK,EAAE,gBAAgB,EAAE,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,GAAG,MAAM,CAEhJ;AAED,wBAAgB,yEAAyE,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,gBAAgB,CAAC,EAAE,OAAO,GAAG,CAAC,CAAC,IAAI,EAAE,gBAAgB,KAAK,MAAM,CAAC,CAM1K;AAED,wBAAgB,4EAA4E,CAAC,CAAC,EAAE,MAAM,GAAG,gBAAgB,CASxH;AAED,wBAAgB,kEAAkE,CAAC,KAAK,EAAE,gBAAgB,EAAE,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE,gBAAgB,EAAE,MAAM,CAAC,OAAO,CAAC,GAAG,MAAM,CAE5K"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { fromString } from '../fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js';
|
|
2
|
-
import { decoder, encoder, decoderCompressed, encoderCompressed,
|
|
2
|
+
import { decoder, encoder, decoderCompressed, encoderCompressed, ISAJson_encoder, ISAJson_decoder } from '../Json/Investigation.js';
|
|
3
3
|
import { toText, printf, toFail } from '../../node_modules/@fable-org/fable-library-js/String.js';
|
|
4
4
|
import { toString } from '../fable_modules/Thoth.Json.JavaScript.0.4.1/Encode.fs.js';
|
|
5
5
|
import { defaultSpaces } from '../Json/Encode.js';
|
|
@@ -46,25 +46,6 @@ function ARCtrl_ArcInvestigation__ArcInvestigation_toCompressedJsonString_Static
|
|
|
46
46
|
function ARCtrl_ArcInvestigation__ArcInvestigation_ToCompressedJsonString_71136F3F(this$, spaces) {
|
|
47
47
|
return ARCtrl_ArcInvestigation__ArcInvestigation_toCompressedJsonString_Static_71136F3F(unwrap(spaces))(this$);
|
|
48
48
|
}
|
|
49
|
-
function ARCtrl_ArcInvestigation__ArcInvestigation_fromROCrateJsonString_Static_Z721C83C5(s) {
|
|
50
|
-
let arg;
|
|
51
|
-
const matchValue = fromString(ROCrate_decoder, s);
|
|
52
|
-
if (matchValue.tag === /* Error */
|
|
53
|
-
1) {
|
|
54
|
-
throw new Error((arg = matchValue.fields[0], toText(printf("Error decoding string: %O"))(arg)));
|
|
55
|
-
} else {
|
|
56
|
-
return matchValue.fields[0];
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
function ARCtrl_ArcInvestigation__ArcInvestigation_toROCrateJsonString_Static_71136F3F(spaces) {
|
|
60
|
-
return (obj) => {
|
|
61
|
-
const value = ROCrate_encoder(obj);
|
|
62
|
-
return toString(defaultSpaces(spaces), value);
|
|
63
|
-
};
|
|
64
|
-
}
|
|
65
|
-
function ARCtrl_ArcInvestigation__ArcInvestigation_ToROCrateJsonString_71136F3F(this$, spaces) {
|
|
66
|
-
return ARCtrl_ArcInvestigation__ArcInvestigation_toROCrateJsonString_Static_71136F3F(unwrap(spaces))(this$);
|
|
67
|
-
}
|
|
68
49
|
function ARCtrl_ArcInvestigation__ArcInvestigation_toISAJsonString_Static_Z3B036AA(spaces, useIDReferencing) {
|
|
69
50
|
const idMap = defaultArg(useIDReferencing, false) ? /* @__PURE__ */ new Map([]) : void 0;
|
|
70
51
|
return (obj) => {
|
|
@@ -86,4 +67,4 @@ function ARCtrl_ArcInvestigation__ArcInvestigation_ToISAJsonString_Z3B036AA(this
|
|
|
86
67
|
return ARCtrl_ArcInvestigation__ArcInvestigation_toISAJsonString_Static_Z3B036AA(unwrap(spaces), unwrap(useIDReferencing))(this$);
|
|
87
68
|
}
|
|
88
69
|
|
|
89
|
-
export { ARCtrl_ArcInvestigation__ArcInvestigation_ToCompressedJsonString_71136F3F, ARCtrl_ArcInvestigation__ArcInvestigation_ToISAJsonString_Z3B036AA, ARCtrl_ArcInvestigation__ArcInvestigation_ToJsonString_71136F3F,
|
|
70
|
+
export { ARCtrl_ArcInvestigation__ArcInvestigation_ToCompressedJsonString_71136F3F, ARCtrl_ArcInvestigation__ArcInvestigation_ToISAJsonString_Z3B036AA, ARCtrl_ArcInvestigation__ArcInvestigation_ToJsonString_71136F3F, ARCtrl_ArcInvestigation__ArcInvestigation_fromCompressedJsonString_Static_Z721C83C5, ARCtrl_ArcInvestigation__ArcInvestigation_fromISAJsonString_Static_Z721C83C5, ARCtrl_ArcInvestigation__ArcInvestigation_fromJsonString_Static_Z721C83C5, ARCtrl_ArcInvestigation__ArcInvestigation_toCompressedJsonString_Static_71136F3F, ARCtrl_ArcInvestigation__ArcInvestigation_toISAJsonString_Static_Z3B036AA, ARCtrl_ArcInvestigation__ArcInvestigation_toJsonString_Static_71136F3F };
|
package/dist/ts/ts/License.js
CHANGED
|
@@ -86,7 +86,7 @@ class License {
|
|
|
86
86
|
return c.Operation === "READ" ? c.DTOType != null ? value(c.DTOType) === "PlainText" ? c.DTO != null ? typeof value(c.DTO) === "string" ? (txt = value(c.DTO), c.Path === "LICENSE" ? true : contains(c.Path, alternativeLICENSEFileNames, {
|
|
87
87
|
Equals: (x, y) => x === y,
|
|
88
88
|
GetHashCode: stringHash
|
|
89
|
-
})) ? (txt_1 = value(c.DTO), License.initFulltext(txt_1)) : void 0 : void 0 : void 0 : void 0 : void 0 : void 0;
|
|
89
|
+
})) ? (txt_1 = value(c.DTO), License.initFulltext(txt_1, c.Path)) : void 0 : void 0 : void 0 : void 0 : void 0 : void 0;
|
|
90
90
|
}
|
|
91
91
|
static GetDefaultLicense() {
|
|
92
92
|
return License.initFulltext("ALL RIGHTS RESERVED BY THE AUTHORS");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LDContext.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/ROCrate/LDContext.ts"],"names":[],"mappings":"AACA,OAAO,EAAwC,MAAM,EAAE,MAAM,uCAAuC,CAAC;AAGrG,OAAO,EAAkF,IAAI,EAAE,MAAM,qCAAqC,CAAC;
|
|
1
|
+
{"version":3,"file":"LDContext.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/ROCrate/LDContext.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,6 +3,7 @@ import { value, defaultArg, unwrap } from '../../node_modules/@fable-org/fable-l
|
|
|
3
3
|
import { toString, FSharpRef } from '../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
4
4
|
import { Uri } from '../../node_modules/@fable-org/fable-library-js/Uri.js';
|
|
5
5
|
import { getEnumerator, disposeSafe, safeHash, comparePrimitives, stringHash, defaultOf } from '../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
6
|
+
import { toFail, printf, replace } from '../../node_modules/@fable-org/fable-library-js/String.js';
|
|
6
7
|
import { addToDict, getItemFromDict, tryGetValue } from '../../node_modules/@fable-org/fable-library-js/MapUtil.js';
|
|
7
8
|
import { reduce, map, sort, tryPick } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
8
9
|
import { StringDictionary_ofSeq } from '../Core/Helper/Collections.js';
|
|
@@ -82,15 +83,20 @@ class LDContext {
|
|
|
82
83
|
}
|
|
83
84
|
AddMapping(term, definition) {
|
|
84
85
|
const this$ = this;
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
dict.
|
|
90
|
-
|
|
91
|
-
|
|
86
|
+
try {
|
|
87
|
+
const key = term;
|
|
88
|
+
const value = definition;
|
|
89
|
+
const dict = this$["mappings@45"];
|
|
90
|
+
if (dict.has(key)) {
|
|
91
|
+
dict.set(key, value);
|
|
92
|
+
} else {
|
|
93
|
+
addToDict(dict, key, value);
|
|
94
|
+
}
|
|
95
|
+
this$.addReverseMapping(term, definition);
|
|
96
|
+
} catch (ex) {
|
|
97
|
+
const arg_2 = ex.message;
|
|
98
|
+
toFail(printf("Failed to add mapping to context: %s -> %s: %s"))(term)(definition)(arg_2);
|
|
92
99
|
}
|
|
93
|
-
this$.addReverseMapping(term, definition);
|
|
94
100
|
}
|
|
95
101
|
TryResolveTerm(term) {
|
|
96
102
|
const this$ = this;
|
|
@@ -193,7 +199,9 @@ class LDContext {
|
|
|
193
199
|
}
|
|
194
200
|
addReverseMapping(key, value$1) {
|
|
195
201
|
const this$ = this;
|
|
196
|
-
const
|
|
202
|
+
const http = replace(value$1, "https://", "http://");
|
|
203
|
+
const https = replace(value$1, "http://", "https://");
|
|
204
|
+
const key_1 = http;
|
|
197
205
|
const value_1 = key;
|
|
198
206
|
const dict = this$.reverseMappings;
|
|
199
207
|
if (dict.has(key_1)) {
|
|
@@ -201,17 +209,25 @@ class LDContext {
|
|
|
201
209
|
} else {
|
|
202
210
|
addToDict(dict, key_1, value_1);
|
|
203
211
|
}
|
|
212
|
+
const key_2 = https;
|
|
213
|
+
const value_2 = key;
|
|
214
|
+
const dict_1 = this$.reverseMappings;
|
|
215
|
+
if (dict_1.has(key_2)) {
|
|
216
|
+
dict_1.set(key_2, value_2);
|
|
217
|
+
} else {
|
|
218
|
+
addToDict(dict_1, key_2, value_2);
|
|
219
|
+
}
|
|
204
220
|
const activePatternResult = IRIHelper_$007CCompactIri$007C_$007C(value$1);
|
|
205
221
|
if (activePatternResult != null) {
|
|
206
222
|
const prefix = value(activePatternResult)[0];
|
|
207
223
|
const suffix = value(activePatternResult)[1];
|
|
208
|
-
const
|
|
209
|
-
const
|
|
210
|
-
const
|
|
211
|
-
if (
|
|
212
|
-
|
|
224
|
+
const key_3 = prefix;
|
|
225
|
+
const value_3 = [suffix, key];
|
|
226
|
+
const dict_2 = this$.compactReverseMappings;
|
|
227
|
+
if (dict_2.has(key_3)) {
|
|
228
|
+
dict_2.set(key_3, value_3);
|
|
213
229
|
} else {
|
|
214
|
-
addToDict(
|
|
230
|
+
addToDict(dict_2, key_3, value_3);
|
|
215
231
|
}
|
|
216
232
|
let matchValue;
|
|
217
233
|
let patternInput;
|
|
@@ -222,14 +238,8 @@ class LDContext {
|
|
|
222
238
|
matchValue = patternInput[0] ? patternInput[1] : void 0;
|
|
223
239
|
if (matchValue == null) {
|
|
224
240
|
} else {
|
|
225
|
-
const
|
|
226
|
-
|
|
227
|
-
const dict_3 = this$.reverseMappings;
|
|
228
|
-
if (dict_3.has(key_4)) {
|
|
229
|
-
dict_3.set(key_4, value_3);
|
|
230
|
-
} else {
|
|
231
|
-
addToDict(dict_3, key_4, value_3);
|
|
232
|
-
}
|
|
241
|
+
const iri = IRIHelper_combine(value(matchValue), suffix);
|
|
242
|
+
this$.addReverseMapping(key, iri);
|
|
233
243
|
}
|
|
234
244
|
} else {
|
|
235
245
|
let matchValue_1;
|
|
@@ -242,14 +252,8 @@ class LDContext {
|
|
|
242
252
|
if (matchValue_1 == null) {
|
|
243
253
|
} else {
|
|
244
254
|
const term = value(matchValue_1)[1];
|
|
245
|
-
const
|
|
246
|
-
|
|
247
|
-
const dict_5 = this$.reverseMappings;
|
|
248
|
-
if (dict_5.has(key_6)) {
|
|
249
|
-
dict_5.set(key_6, value_4);
|
|
250
|
-
} else {
|
|
251
|
-
addToDict(dict_5, key_6, value_4);
|
|
252
|
-
}
|
|
255
|
+
const iri_1 = IRIHelper_combine(value$1, value(matchValue_1)[0]);
|
|
256
|
+
this$.addReverseMapping(term, iri_1);
|
|
253
257
|
}
|
|
254
258
|
}
|
|
255
259
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { IMap } from '@fable-org/fable-library-js/Util.js';
|
|
2
2
|
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
3
|
-
import { DynamicObj } from '../fable_modules/DynamicObj.7.0
|
|
3
|
+
import { DynamicObj } from '../fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js';
|
|
4
4
|
import { int32 } from '@fable-org/fable-library-js/Int32.js';
|
|
5
5
|
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
6
6
|
import { LDContext } from './LDContext.js';
|
|
7
|
-
import { PropertyHelper } from '../fable_modules/DynamicObj.7.0
|
|
7
|
+
import { PropertyHelper } from '../fable_modules/DynamicObj.7.1.0/PropertyHelper.fs.js';
|
|
8
8
|
export declare function ActivePattern_$007CNonStringEnumerable$007C_$007C(o: any): Option<Iterable<any>>;
|
|
9
9
|
export declare function DynamicObj_DynamicObj__DynamicObj_HasProperty_Z721C83C5(this$: DynamicObj, propertyName: string): boolean;
|
|
10
10
|
export interface ILDObject {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { isIterable, equals, identityHash, stringHash, defaultOf, getEnumerator, curry2, structuralHash, isArrayLike } from '../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
2
2
|
import { defaultArg, value, unwrap, some, map } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
3
|
-
import { DynamicObj, DynamicObj_$reflection } from '../fable_modules/DynamicObj.7.0
|
|
4
|
-
import { mergeHashes } from '../fable_modules/DynamicObj.7.0
|
|
3
|
+
import { DynamicObj, DynamicObj_$reflection } from '../fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js';
|
|
4
|
+
import { mergeHashes } from '../fable_modules/DynamicObj.7.1.0/HashCodes.fs.js';
|
|
5
5
|
import { class_type } from '../../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
6
6
|
import { addToDict, getItemFromDict, tryGetValue } from '../../node_modules/@fable-org/fable-library-js/MapUtil.js';
|
|
7
7
|
import { FSharpRef } from '../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Comment.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/ROCrate/
|
|
1
|
+
{"version":3,"file":"Comment.d.ts","sourceRoot":"","sources":["../../../../../src/ARCtrl/ts/ROCrate/LDTypes/Comment.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,MAAM,EAAU,MAAM,uCAAuC,CAAC;AAE9E,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAE5C,OAAO,EAAc,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AAEjF,qBAAa,SAAS;;IAGlB,MAAM,KAAK,UAAU,IAAI,MAAM,CAE9B;IACD,MAAM,KAAK,IAAI,IAAI,MAAM,CAExB;IACD,MAAM,KAAK,IAAI,IAAI,MAAM,CAExB;IACD,MAAM,CAAC,kBAAkB,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC;IAsB1E,MAAM,CAAC,eAAe,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,SAAS,GAAG,MAAM;IAe/D,MAAM,CAAC,eAAe,CAAC,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,SAAS,GAAG,EAAE;IAG7E,MAAM,CAAC,kBAAkB,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC;IAsB1E,MAAM,CAAC,eAAe,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,SAAS,GAAG,MAAM;IAe/D,MAAM,CAAC,eAAe,CAAC,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,SAAS,GAAG,EAAE;IAG7E,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM;IAGjD,MAAM,CAAC,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO;IAGzD,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,SAAS,GAAG,MAAM;CAMvF;AAED,wBAAgB,qBAAqB,IAAI,QAAQ,CAEhD"}
|