@nfdi4plants/arctrl 3.1.1 → 3.2.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/dist/ts/index.d.ts +3 -0
- package/dist/ts/index.d.ts.map +1 -1
- package/dist/ts/index.js +3 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Array.js +1296 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Async.js +174 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/AsyncBuilder.js +190 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/BigInt.js +479 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Boolean.js +23 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Char.js +172 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Choice.js +187 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/CollectionUtil.js +148 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Date.js +843 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/DateOffset.js +247 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Decimal.js +279 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Double.js +53 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/FSharp.Collections.js +48 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/FSharp.Core.js +148 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Global.js +31 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Guid.js +140 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Int32.js +165 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/List.js +1282 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Long.js +40 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Map.js +1298 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MapUtil.js +126 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MutableMap.js +323 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MutableSet.js +225 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Native.js +14 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Numeric.js +63 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Option.js +81 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Random.js +174 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Range.js +47 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Reflection.js +471 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/RegExp.js +137 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Result.js +169 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Seq.js +1398 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Seq2.js +110 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Set.js +1670 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/String.js +660 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.Collections.Generic.js +328 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.Text.js +201 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.js +292 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/TimeSpan.js +170 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Types.js +199 -0
- package/dist/ts/node_modules/@fable-org/{fable-library-js → fable-library-ts}/Unicode.13.0.0.js +0 -2
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Uri.js +154 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Util.js +747 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/lib/big.js +1052 -0
- package/dist/ts/ts/ARC.d.ts +122 -62
- package/dist/ts/ts/ARC.d.ts.map +1 -1
- package/dist/ts/ts/ARC.js +142 -86
- package/dist/ts/ts/CWL/CWLKnownFieldNames.d.ts +32 -0
- package/dist/ts/ts/CWL/CWLKnownFieldNames.d.ts.map +1 -0
- package/dist/ts/ts/CWL/CWLKnownFieldNames.js +95 -0
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts +12 -12
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts.map +1 -1
- package/dist/ts/ts/CWL/CWLProcessingUnit.js +7 -7
- package/dist/ts/ts/CWL/CWLTypes.d.ts +62 -19
- package/dist/ts/ts/CWL/CWLTypes.d.ts.map +1 -1
- package/dist/ts/ts/CWL/CWLTypes.js +241 -60
- package/dist/ts/ts/CWL/Decode.d.ts +24 -25
- package/dist/ts/ts/CWL/Decode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Decode.js +454 -314
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts +4 -4
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts.map +1 -1
- package/dist/ts/ts/CWL/DynamicObjHelpers.js +10 -10
- package/dist/ts/ts/CWL/Encode.d.ts +26 -17
- package/dist/ts/ts/CWL/Encode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Encode.js +451 -411
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts +31 -7
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ExpressionToolDescription.js +29 -8
- package/dist/ts/ts/CWL/HashHelpers.d.ts +4 -3
- package/dist/ts/ts/CWL/HashHelpers.d.ts.map +1 -1
- package/dist/ts/ts/CWL/HashHelpers.js +9 -9
- package/dist/ts/ts/CWL/Inputs.d.ts +8 -8
- package/dist/ts/ts/CWL/Inputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Inputs.js +9 -13
- package/dist/ts/ts/CWL/OperationDescription.d.ts +7 -7
- package/dist/ts/ts/CWL/OperationDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/OperationDescription.js +5 -8
- package/dist/ts/ts/CWL/Outputs.d.ts +10 -10
- package/dist/ts/ts/CWL/Outputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Outputs.js +36 -17
- package/dist/ts/ts/CWL/ParameterReference.d.ts +13 -10
- package/dist/ts/ts/CWL/ParameterReference.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ParameterReference.js +29 -21
- package/dist/ts/ts/CWL/ParameterValue.d.ts +57 -0
- package/dist/ts/ts/CWL/ParameterValue.d.ts.map +1 -0
- package/dist/ts/ts/CWL/ParameterValue.js +321 -0
- package/dist/ts/ts/CWL/Requirements.d.ts +51 -23
- package/dist/ts/ts/CWL/Requirements.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Requirements.js +89 -81
- package/dist/ts/ts/CWL/ToolDescription.d.ts +33 -9
- package/dist/ts/ts/CWL/ToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ToolDescription.js +29 -8
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts +29 -8
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowDescription.js +26 -8
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts +45 -21
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowSteps.js +70 -34
- package/dist/ts/ts/CWLRunResolver.d.ts +11 -11
- package/dist/ts/ts/CWLRunResolver.d.ts.map +1 -1
- package/dist/ts/ts/CWLRunResolver.js +16 -16
- package/dist/ts/ts/Contract/ARC.d.ts +2 -2
- package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ARC.js +1 -1
- package/dist/ts/ts/Contract/ArcAssay.d.ts +7 -6
- package/dist/ts/ts/Contract/ArcAssay.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcAssay.js +15 -10
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts +5 -4
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcInvestigation.js +12 -7
- package/dist/ts/ts/Contract/ArcRun.d.ts +11 -10
- package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcRun.js +24 -21
- package/dist/ts/ts/Contract/ArcStudy.d.ts +8 -7
- package/dist/ts/ts/Contract/ArcStudy.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcStudy.js +15 -10
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts +9 -8
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcWorkflow.js +20 -16
- package/dist/ts/ts/Contract/Contract.d.ts +38 -8
- package/dist/ts/ts/Contract/Contract.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Contract.js +46 -7
- package/dist/ts/ts/Contract/Datamap.d.ts +5 -4
- package/dist/ts/ts/Contract/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Datamap.js +45 -32
- package/dist/ts/ts/Contract/Git.d.ts +6 -5
- package/dist/ts/ts/Contract/Git.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Git.js +4 -4
- package/dist/ts/ts/Contract/License.d.ts +4 -3
- package/dist/ts/ts/Contract/License.d.ts.map +1 -1
- package/dist/ts/ts/Contract/License.js +5 -5
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts +5 -4
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ValidationPackagesConfig.js +6 -7
- package/dist/ts/ts/ContractIO/ContractIO.d.ts +5 -4
- package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -1
- package/dist/ts/ts/ContractIO/ContractIO.js +45 -43
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts +13 -12
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts.map +1 -1
- package/dist/ts/ts/ContractIO/FileSystemHelper.js +6 -6
- package/dist/ts/ts/Conversion/Assay.d.ts +5 -5
- package/dist/ts/ts/Conversion/Assay.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Assay.js +35 -16
- package/dist/ts/ts/Conversion/Basic.d.ts +16 -13
- package/dist/ts/ts/Conversion/Basic.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Basic.js +69 -38
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts +3 -3
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/ColumnIndex.js +8 -8
- package/dist/ts/ts/Conversion/Datamap.d.ts +4 -4
- package/dist/ts/ts/Conversion/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Datamap.js +2 -2
- package/dist/ts/ts/Conversion/DateTime.d.ts +1 -1
- package/dist/ts/ts/Conversion/DateTime.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/DateTime.js +7 -6
- package/dist/ts/ts/Conversion/Investigation.d.ts +5 -5
- package/dist/ts/ts/Conversion/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Investigation.js +17 -10
- package/dist/ts/ts/Conversion/Person.d.ts +4 -4
- package/dist/ts/ts/Conversion/Person.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Person.js +39 -23
- package/dist/ts/ts/Conversion/Process.d.ts +14 -11
- package/dist/ts/ts/Conversion/Process.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Process.js +57 -46
- package/dist/ts/ts/Conversion/Run.d.ts +12 -17
- package/dist/ts/ts/Conversion/Run.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Run.js +450 -68
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts +4 -4
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/ScholarlyArticle.js +25 -17
- package/dist/ts/ts/Conversion/Study.d.ts +5 -5
- package/dist/ts/ts/Conversion/Study.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Study.js +27 -13
- package/dist/ts/ts/Conversion/Table.d.ts +10 -11
- package/dist/ts/ts/Conversion/Table.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Table.js +17 -24
- package/dist/ts/ts/Conversion/Workflow.d.ts +17 -17
- package/dist/ts/ts/Conversion/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Workflow.js +78 -40
- package/dist/ts/ts/Conversion.d.ts +10 -11
- package/dist/ts/ts/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Conversion.js +2 -2
- package/dist/ts/ts/Core/ArcTypes.d.ts +331 -76
- package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -1
- package/dist/ts/ts/Core/ArcTypes.js +567 -299
- package/dist/ts/ts/Core/Comment.d.ts +5 -5
- package/dist/ts/ts/Core/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Core/Comment.js +17 -10
- package/dist/ts/ts/Core/CommentList.d.ts +3 -3
- package/dist/ts/ts/Core/CommentList.d.ts.map +1 -1
- package/dist/ts/ts/Core/CommentList.js +8 -8
- package/dist/ts/ts/Core/Conversion.d.ts +25 -25
- package/dist/ts/ts/Core/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Core/Conversion.js +102 -102
- package/dist/ts/ts/Core/Data.d.ts +6 -6
- package/dist/ts/ts/Core/Data.d.ts.map +1 -1
- package/dist/ts/ts/Core/Data.js +11 -10
- package/dist/ts/ts/Core/DataContext.d.ts +10 -10
- package/dist/ts/ts/Core/DataContext.d.ts.map +1 -1
- package/dist/ts/ts/Core/DataContext.js +3 -3
- package/dist/ts/ts/Core/DataFile.d.ts +9 -6
- package/dist/ts/ts/Core/DataFile.d.ts.map +1 -1
- package/dist/ts/ts/Core/DataFile.js +20 -9
- package/dist/ts/ts/Core/Datamap.d.ts +17 -16
- package/dist/ts/ts/Core/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Core/Datamap.js +16 -14
- package/dist/ts/ts/Core/Helper/Collections.d.ts +4 -4
- package/dist/ts/ts/Core/Helper/Collections.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Collections.js +30 -37
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts +15 -4
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/HashCodes.js +33 -14
- package/dist/ts/ts/Core/Helper/Identifier.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Identifier.js +10 -8
- package/dist/ts/ts/Core/Helper/ORCID.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/ORCID.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/ORCID.js +4 -3
- package/dist/ts/ts/Core/Helper/Regex.d.ts +7 -7
- package/dist/ts/ts/Core/Helper/Regex.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Regex.js +20 -12
- package/dist/ts/ts/Core/Helper/SemVer.d.ts +5 -5
- package/dist/ts/ts/Core/Helper/SemVer.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/SemVer.js +7 -7
- package/dist/ts/ts/Core/Helper/Url.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/Url.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Url.js +8 -7
- package/dist/ts/ts/Core/IdentifierSetters.d.ts +2 -2
- package/dist/ts/ts/Core/IdentifierSetters.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts +23 -5
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologyAnnotation.js +116 -45
- package/dist/ts/ts/Core/OntologySourceReference.d.ts +4 -4
- package/dist/ts/ts/Core/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologySourceReference.js +4 -4
- package/dist/ts/ts/Core/Person.d.ts +19 -9
- package/dist/ts/ts/Core/Person.d.ts.map +1 -1
- package/dist/ts/ts/Core/Person.js +27 -11
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts +11 -11
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ColumnIndex.js +68 -29
- package/dist/ts/ts/Core/Process/Component.d.ts +16 -16
- package/dist/ts/ts/Core/Process/Component.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Component.js +38 -25
- package/dist/ts/ts/Core/Process/Factor.d.ts +53 -8
- package/dist/ts/ts/Core/Process/Factor.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Factor.js +62 -11
- package/dist/ts/ts/Core/Process/FactorValue.d.ts +15 -15
- package/dist/ts/ts/Core/Process/FactorValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/FactorValue.js +39 -47
- package/dist/ts/ts/Core/Process/Material.d.ts +9 -9
- package/dist/ts/ts/Core/Process/Material.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Material.js +5 -5
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts +7 -7
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialAttribute.js +17 -8
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts +15 -15
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +45 -48
- package/dist/ts/ts/Core/Process/MaterialType.d.ts +7 -5
- package/dist/ts/ts/Core/Process/MaterialType.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialType.js +14 -7
- package/dist/ts/ts/Core/Process/Process.d.ts +22 -22
- package/dist/ts/ts/Core/Process/Process.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Process.js +42 -26
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts +14 -14
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessInput.js +15 -10
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts +14 -14
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessOutput.js +15 -10
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts +30 -15
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessParameterValue.js +56 -46
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts +16 -16
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessSequence.js +33 -26
- package/dist/ts/ts/Core/Process/Protocol.d.ts +9 -9
- package/dist/ts/ts/Core/Process/Protocol.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Protocol.js +21 -13
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts +28 -7
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProtocolParameter.js +33 -8
- package/dist/ts/ts/Core/Process/Sample.d.ts +10 -10
- package/dist/ts/ts/Core/Process/Sample.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Sample.js +5 -5
- package/dist/ts/ts/Core/Process/Source.d.ts +8 -8
- package/dist/ts/ts/Core/Process/Source.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Source.js +5 -5
- package/dist/ts/ts/Core/Publication.d.ts +5 -5
- package/dist/ts/ts/Core/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Core/Publication.js +18 -11
- package/dist/ts/ts/Core/ScalarValue.d.ts +41 -0
- package/dist/ts/ts/Core/ScalarValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/{Value.js → ScalarValue.js} +56 -29
- package/dist/ts/ts/Core/Table/ArcTable.d.ts +134 -15
- package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTable.js +204 -68
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts +15 -10
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTableAux.js +75 -71
- package/dist/ts/ts/Core/Table/ArcTables.d.ts +12 -9
- package/dist/ts/ts/Core/Table/ArcTables.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTables.js +42 -38
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts +46 -7
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeCell.js +52 -12
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts +20 -7
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeColumn.js +17 -4
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts +116 -22
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeHeader.js +219 -65
- package/dist/ts/ts/Core/Template.d.ts +15 -9
- package/dist/ts/ts/Core/Template.d.ts.map +1 -1
- package/dist/ts/ts/Core/Template.js +19 -11
- package/dist/ts/ts/Core/Templates.d.ts +24 -5
- package/dist/ts/ts/Core/Templates.d.ts.map +1 -1
- package/dist/ts/ts/Core/Templates.js +26 -8
- package/dist/ts/ts/Core/URI.d.ts.map +1 -1
- package/dist/ts/ts/CrossAsync.d.ts +6 -5
- package/dist/ts/ts/CrossAsync.d.ts.map +1 -1
- package/dist/ts/ts/CrossAsync.js +6 -6
- package/dist/ts/ts/FileSystem/Commit.d.ts +3 -3
- package/dist/ts/ts/FileSystem/Commit.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Commit.js +2 -2
- package/dist/ts/ts/FileSystem/FileSystem.d.ts +9 -9
- package/dist/ts/ts/FileSystem/FileSystem.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystem.js +4 -4
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +35 -16
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystemTree.js +36 -18
- package/dist/ts/ts/FileSystem/Path.d.ts +9 -8
- package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Path.js +13 -13
- package/dist/ts/ts/Json/Assay.d.ts +9 -9
- package/dist/ts/ts/Json/Assay.d.ts.map +1 -1
- package/dist/ts/ts/Json/Assay.js +86 -50
- package/dist/ts/ts/Json/Comment.d.ts +4 -4
- package/dist/ts/ts/Json/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Json/Comment.js +38 -17
- package/dist/ts/ts/Json/Data.d.ts +7 -7
- package/dist/ts/ts/Json/Data.d.ts.map +1 -1
- package/dist/ts/ts/Json/Data.js +48 -20
- package/dist/ts/ts/Json/DataFile.d.ts +2 -2
- package/dist/ts/ts/Json/DataFile.d.ts.map +1 -1
- package/dist/ts/ts/Json/DataFile.js +10 -9
- package/dist/ts/ts/Json/Datamap/DataContext.d.ts +2 -2
- package/dist/ts/ts/Json/Datamap/DataContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/Datamap/DataContext.js +14 -7
- package/dist/ts/ts/Json/Datamap/Datamap.d.ts +7 -7
- package/dist/ts/ts/Json/Datamap/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Json/Datamap/Datamap.js +4 -4
- package/dist/ts/ts/Json/Decode.d.ts +6 -6
- package/dist/ts/ts/Json/Decode.d.ts.map +1 -1
- package/dist/ts/ts/Json/Decode.js +32 -32
- package/dist/ts/ts/Json/Encode.d.ts +6 -5
- package/dist/ts/ts/Json/Encode.d.ts.map +1 -1
- package/dist/ts/ts/Json/Encode.js +28 -26
- package/dist/ts/ts/Json/IDTable.d.ts +2 -2
- package/dist/ts/ts/Json/IDTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/IDTable.js +2 -2
- package/dist/ts/ts/Json/Investigation.d.ts +9 -9
- package/dist/ts/ts/Json/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/Json/Investigation.js +68 -33
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts +6 -6
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Json/OntologyAnnotation.js +60 -25
- package/dist/ts/ts/Json/OntologySourceReference.d.ts +4 -4
- package/dist/ts/ts/Json/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Json/OntologySourceReference.js +36 -15
- package/dist/ts/ts/Json/Person.d.ts +5 -5
- package/dist/ts/ts/Json/Person.d.ts.map +1 -1
- package/dist/ts/ts/Json/Person.js +57 -29
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts +5 -5
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/AssayMaterials.js +12 -5
- package/dist/ts/ts/Json/Process/Component.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Component.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Component.js +25 -11
- package/dist/ts/ts/Json/Process/Factor.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Factor.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Factor.js +17 -9
- package/dist/ts/ts/Json/Process/FactorValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/FactorValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/FactorValue.js +14 -7
- package/dist/ts/ts/Json/Process/Material.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Material.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Material.js +31 -31
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts +4 -4
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialAttribute.js +16 -8
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +14 -7
- package/dist/ts/ts/Json/Process/MaterialType.d.ts +2 -2
- package/dist/ts/ts/Json/Process/MaterialType.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialType.js +9 -8
- package/dist/ts/ts/Json/Process/Process.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Process.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Process.js +28 -14
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessInput.js +2 -2
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessOutput.js +2 -2
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessParameterValue.js +16 -8
- package/dist/ts/ts/Json/Process/Protocol.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Protocol.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Protocol.js +30 -16
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProtocolParameter.js +16 -8
- package/dist/ts/ts/Json/Process/Sample.d.ts +7 -7
- package/dist/ts/ts/Json/Process/Sample.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Sample.js +37 -60
- package/dist/ts/ts/Json/Process/Source.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Source.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Source.js +34 -57
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts +5 -5
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/StudyMaterials.js +12 -5
- package/dist/ts/ts/Json/Process/Value.d.ts +6 -6
- package/dist/ts/ts/Json/Process/Value.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Value.js +4 -4
- package/dist/ts/ts/Json/PropertyValue.d.ts +6 -6
- package/dist/ts/ts/Json/PropertyValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/PropertyValue.js +31 -22
- package/dist/ts/ts/Json/Publication.d.ts +5 -5
- package/dist/ts/ts/Json/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Json/Publication.js +36 -15
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDContext.js +17 -16
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDGraph.js +21 -14
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDNode.js +94 -29
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDRef.js +4 -4
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDValue.js +8 -7
- package/dist/ts/ts/Json/Run.d.ts +7 -7
- package/dist/ts/ts/Json/Run.d.ts.map +1 -1
- package/dist/ts/ts/Json/Run.js +28 -14
- package/dist/ts/ts/Json/StringTable.d.ts +7 -7
- package/dist/ts/ts/Json/StringTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/StringTable.js +10 -10
- package/dist/ts/ts/Json/Study.d.ts +9 -9
- package/dist/ts/ts/Json/Study.d.ts.map +1 -1
- package/dist/ts/ts/Json/Study.js +79 -45
- package/dist/ts/ts/Json/Table/ArcTable.d.ts +10 -10
- package/dist/ts/ts/Json/Table/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/ArcTable.js +28 -28
- package/dist/ts/ts/Json/Table/CellTable.d.ts +9 -9
- package/dist/ts/ts/Json/Table/CellTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CellTable.js +8 -8
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts +6 -6
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CompositeCell.js +7 -7
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts +2 -2
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CompositeHeader.js +7 -7
- package/dist/ts/ts/Json/Table/IOType.d.ts +2 -2
- package/dist/ts/ts/Json/Table/IOType.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/IOType.js +2 -2
- package/dist/ts/ts/Json/Table/OATable.d.ts +8 -8
- package/dist/ts/ts/Json/Table/OATable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/OATable.js +8 -8
- package/dist/ts/ts/Json/Table/Templates.d.ts +9 -9
- package/dist/ts/ts/Json/Table/Templates.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/Templates.js +11 -11
- package/dist/ts/ts/Json/Workflow.d.ts +7 -7
- package/dist/ts/ts/Json/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Json/Workflow.js +28 -14
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts +1 -1
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/property_value_context.js +1 -1
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +3 -3
- package/dist/ts/ts/Json.d.ts +9 -9
- package/dist/ts/ts/Json.d.ts.map +1 -1
- package/dist/ts/ts/Json.js +2 -2
- package/dist/ts/ts/JsonIO/Assay.d.ts +6 -7
- package/dist/ts/ts/JsonIO/Assay.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Assay.js +13 -12
- package/dist/ts/ts/JsonIO/Datamap.d.ts +3 -4
- package/dist/ts/ts/JsonIO/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Datamap.js +7 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts +5 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Investigation.js +11 -10
- package/dist/ts/ts/JsonIO/LDObject.d.ts +5 -6
- package/dist/ts/ts/JsonIO/LDObject.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/LDObject.js +14 -13
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts +5 -6
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/OntologyAnnotation.js +11 -10
- package/dist/ts/ts/JsonIO/Person.d.ts +5 -6
- package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Person.js +11 -10
- package/dist/ts/ts/JsonIO/Run.d.ts +4 -5
- package/dist/ts/ts/JsonIO/Run.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Run.js +9 -8
- package/dist/ts/ts/JsonIO/Study.d.ts +7 -8
- package/dist/ts/ts/JsonIO/Study.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Study.js +13 -12
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts +6 -6
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Table/Compression.js +4 -4
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts +10 -10
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Table/Templates.js +13 -12
- package/dist/ts/ts/JsonIO/Workflow.d.ts +4 -5
- package/dist/ts/ts/JsonIO/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Workflow.js +9 -8
- package/dist/ts/ts/License.d.ts +12 -6
- package/dist/ts/ts/License.d.ts.map +1 -1
- package/dist/ts/ts/License.js +49 -14
- package/dist/ts/ts/ROCrate/Helper.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/Helper.js +1 -1
- package/dist/ts/ts/ROCrate/LDContext.d.ts +15 -4
- package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDContext.js +27 -16
- package/dist/ts/ts/ROCrate/LDObject.d.ts +19 -10
- package/dist/ts/ts/ROCrate/LDObject.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDObject.js +76 -38
- package/dist/ts/ts/ROCrate/LDTypes/Comment.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Comment.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Comment.js +11 -9
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts +5 -5
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.js +18 -16
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.js +22 -16
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.js +15 -13
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.js +25 -23
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.js +48 -45
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.js +11 -9
- package/dist/ts/ts/ROCrate/LDTypes/File.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/File.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/File.js +15 -13
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.js +18 -16
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.js +16 -14
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.js +17 -16
- package/dist/ts/ts/ROCrate/LDTypes/Organization.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Organization.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Organization.js +8 -6
- package/dist/ts/ts/ROCrate/LDTypes/Person.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Person.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Person.js +28 -25
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.js +17 -16
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts +10 -6
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.js +104 -61
- package/dist/ts/ts/ROCrate/LDTypes/Sample.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Sample.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Sample.js +14 -13
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.js +12 -10
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts +5 -5
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.js +11 -10
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts +3 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.js +4 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts +3 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.js +4 -3
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +1 -1
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/ROCrateContext.js +2 -2
- package/dist/ts/ts/ROCrateIO.d.ts +13 -8
- package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
- package/dist/ts/ts/ROCrateIO.js +16 -13
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +13 -12
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +15 -15
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +9 -8
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +23 -12
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +17 -18
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +18 -17
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +37 -29
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts +6 -6
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcAssay.js +16 -15
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +21 -21
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcRun.js +9 -9
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcStudy.js +13 -12
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +9 -9
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts +8 -8
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/CollectionAux.js +11 -11
- package/dist/ts/ts/Spreadsheet/Datamap.d.ts +2 -2
- package/dist/ts/ts/Spreadsheet/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Datamap.js +6 -5
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.d.ts +4 -4
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.js +14 -10
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.js +30 -21
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.js +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +12 -9
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +11 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +8 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts +9 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +9 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +11 -9
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Run.js +13 -10
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +55 -49
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Study.js +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +8 -8
- package/dist/ts/ts/Template.Web.d.ts +10 -6
- package/dist/ts/ts/Template.Web.d.ts.map +1 -1
- package/dist/ts/ts/Template.Web.js +4 -4
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts +6 -3
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts.map +1 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackage.js +10 -7
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts +7 -4
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +29 -24
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts.map +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.Node.js +4 -4
- package/dist/ts/ts/WebRequest/WebRequest.d.ts +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.d.ts.map +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.js +3 -3
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts +6 -6
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/Adapters.js +13 -13
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts +7 -4
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/BuildOptions.js +2 -2
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts +25 -19
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/Builder.js +82 -68
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts +52 -32
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/GraphTypes.js +90 -30
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts +5 -5
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.js +4 -4
- package/dist/ts/ts/Xlsx.d.ts +5 -5
- package/dist/ts/ts/Xlsx.d.ts.map +1 -1
- package/dist/ts/ts/Xlsx.js +8 -6
- package/dist/ts/ts/Yaml/Encode.d.ts +2 -2
- package/dist/ts/ts/Yaml/Encode.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/Encode.js +2 -2
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts +4 -5
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackage.js +12 -12
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +4 -5
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +12 -12
- package/dist/ts/ts/Yaml.d.ts +3 -3
- package/dist/ts/ts/Yaml.d.ts.map +1 -1
- package/dist/ts/ts/Yaml.js +3 -8
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/DynObj.fs.js +6 -6
- package/dist/ts/ts/fable_modules/DynamicObj.8.0.0/DynamicObj.fs.js +515 -0
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/FableJS.fs.js +23 -8
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/HashCodes.fs.js +11 -11
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/PropertyHelper.fs.js +2 -2
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/ReflectionUtils.fs.js +16 -6
- package/dist/ts/ts/fable_modules/{Fable.Fetch.2.6.0 → Fable.Fetch.2.7.0}/Fetch.fs.js +11 -11
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +8 -7
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{Fable.SimpleHttp.3.5.0 → Fable.SimpleHttp.3.6.0}/Http.fs.js +21 -21
- package/dist/ts/ts/fable_modules/{Fable.SimpleHttp.3.5.0 → Fable.SimpleHttp.3.6.0}/Types.fs.js +52 -19
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Cells/FsCell.fs.js +255 -126
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Cells/FsCellsCollection.fs.js +135 -18
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/CellBuilder.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Expression.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/RowBuilder.fs.js +5 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Types.fs.js +16 -16
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsAddress.fs.js +41 -17
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsColumn.fs.js +70 -7
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsRow.fs.js +76 -8
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsWorkbook.fs.js +77 -11
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsWorksheet.fs.js +237 -32
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/HashCodes.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Cell.fs.js +10 -10
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Column.fs.js +6 -6
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Row.fs.js +6 -6
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Table.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Value.fs.js +11 -11
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Workbook.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Worksheet.fs.js +8 -8
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRange.fs.js +6 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeAddress.fs.js +11 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeBase.fs.js +18 -13
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeColumn.fs.js +9 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeRow.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Tables/FsTable.fs.js +185 -26
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Tables/FsTableField.fs.js +48 -5
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.1/Cell.fs.js +65 -0
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/FsExtensions.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Json.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Table.fs.js +15 -14
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Workbook.fs.js +4 -4
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Worksheet.fs.js +4 -4
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Xlsx.fs.js +2 -2
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Decode.fs.js +265 -159
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Encode.fs.js +94 -36
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Types.fs.js +16 -22
- package/dist/ts/ts/fable_modules/{Thoth.Json.JavaScript.0.4.1 → Thoth.Json.JavaScript.0.5.0}/Decode.fs.js +9 -7
- package/dist/ts/ts/fable_modules/{Thoth.Json.JavaScript.0.4.1 → Thoth.Json.JavaScript.0.5.0}/Encode.fs.js +2 -3
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Decode.fs.js +98 -104
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Encode.fs.js +10 -10
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Escapes.fs.js +41 -34
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Persil.fs.js +48 -48
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Preprocessing.fs.js +14 -14
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Reader.fs.js +129 -112
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Regex.fs.js +23 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/RegexActivePatterns.fs.js +14 -14
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Syntax.fs.js +77 -56
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Writer.fs.js +34 -31
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/YAMLiciousTypes.fs.js +74 -32
- package/package.json +3 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +0 -1244
- package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +0 -146
- package/dist/ts/node_modules/@fable-org/fable-library-js/AsyncBuilder.js +0 -186
- package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +0 -286
- package/dist/ts/node_modules/@fable-org/fable-library-js/Boolean.js +0 -24
- package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +0 -172
- package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +0 -187
- package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +0 -185
- package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +0 -750
- package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +0 -271
- package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +0 -214
- package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +0 -49
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +0 -30
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +0 -72
- package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +0 -10
- package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +0 -145
- package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +0 -137
- package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +0 -1276
- package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +0 -49
- package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +0 -1399
- package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +0 -130
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +0 -330
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +0 -236
- package/dist/ts/node_modules/@fable-org/fable-library-js/Native.js +0 -10
- package/dist/ts/node_modules/@fable-org/fable-library-js/Numeric.js +0 -73
- package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +0 -99
- package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +0 -48
- package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +0 -465
- package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +0 -133
- package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +0 -168
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +0 -1381
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +0 -114
- package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +0 -1792
- package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +0 -557
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Collections.Generic.js +0 -320
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +0 -165
- package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +0 -8
- package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +0 -180
- package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +0 -211
- package/dist/ts/node_modules/@fable-org/fable-library-js/Uri.js +0 -160
- package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +0 -771
- package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +0 -825
- package/dist/ts/ts/Core/Value.d.ts +0 -41
- package/dist/ts/ts/Core/Value.d.ts.map +0 -1
- package/dist/ts/ts/fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js +0 -367
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +0 -68
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.11/Regex.fs.js +0 -21
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.11/StringBuffer.fs.js +0 -60
- /package/dist/ts/ts/fable_modules/{Fable.Exceljs.1.6.0 → Fable.Exceljs.2.0.0_565fc3e-alpha.1}/ExcelJs.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Interop/JsInterop.fs.js +0 -0
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { value, unwrap, defaultArg } from '../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
2
|
+
import { CWLParameterValueModule_fromFlatStrings, CWLParameterValueModule_toFlatStrings } from './ParameterValue.js';
|
|
3
|
+
import { boxHashArray, hash, boxHashOption } from './HashHelpers.js';
|
|
3
4
|
import { hashDynamicProperties, dynamicPropertiesEqual } from './DynamicObjHelpers.js';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import { class_type } from '../../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
5
|
+
import { equals } from '../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
6
|
+
import { parameterReference } from './CWLKnownFieldNames.js';
|
|
7
|
+
import { DynamicObj, DynamicObj_$reflection } from '../fable_modules/DynamicObj.8.0.0/DynamicObj.fs.js';
|
|
8
|
+
import { class_type } from '../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
9
9
|
|
|
10
10
|
class CWLParameterReference extends DynamicObj {
|
|
11
|
-
constructor(key, values, type_) {
|
|
11
|
+
constructor(key, values, value$1, type_) {
|
|
12
12
|
super();
|
|
13
|
+
let option_3 = void 0, option_1 = void 0;
|
|
13
14
|
this._key = key;
|
|
14
|
-
this.
|
|
15
|
+
this._value = (option_3 = value$1, option_3 != null ? option_3 : (option_1 = values, option_1 != null ? CWLParameterValueModule_fromFlatStrings(value(option_1)) : void 0));
|
|
15
16
|
this._type = type_;
|
|
16
17
|
}
|
|
17
18
|
get Key() {
|
|
@@ -22,13 +23,22 @@ class CWLParameterReference extends DynamicObj {
|
|
|
22
23
|
const this$ = this;
|
|
23
24
|
this$._key = value;
|
|
24
25
|
}
|
|
26
|
+
get Value() {
|
|
27
|
+
const this$ = this;
|
|
28
|
+
return unwrap(this$._value);
|
|
29
|
+
}
|
|
30
|
+
set Value(value) {
|
|
31
|
+
const this$ = this;
|
|
32
|
+
this$._value = value;
|
|
33
|
+
}
|
|
25
34
|
get Values() {
|
|
35
|
+
let option_1 = void 0;
|
|
26
36
|
const this$ = this;
|
|
27
|
-
return this$.
|
|
37
|
+
return defaultArg((option_1 = this$._value, option_1 != null ? CWLParameterValueModule_toFlatStrings(value(option_1)) : void 0), []);
|
|
28
38
|
}
|
|
29
|
-
set Values(
|
|
39
|
+
set Values(values) {
|
|
30
40
|
const this$ = this;
|
|
31
|
-
this$.
|
|
41
|
+
this$._value = CWLParameterValueModule_fromFlatStrings(values);
|
|
32
42
|
}
|
|
33
43
|
get Type() {
|
|
34
44
|
const this$ = this;
|
|
@@ -40,32 +50,30 @@ class CWLParameterReference extends DynamicObj {
|
|
|
40
50
|
}
|
|
41
51
|
GetHashCode() {
|
|
42
52
|
const this$ = this;
|
|
43
|
-
return boxHashArray([
|
|
53
|
+
return boxHashArray([hash(this$.Key), boxHashOption(this$.Value), boxHashOption(this$.Type), hashDynamicProperties(this$)]) | 0;
|
|
44
54
|
}
|
|
45
55
|
Equals(obj) {
|
|
46
|
-
let other;
|
|
56
|
+
let other = void 0;
|
|
47
57
|
const this$ = this;
|
|
48
58
|
return obj instanceof CWLParameterReference && (other = obj, this$.StructurallyEquals(other));
|
|
49
59
|
}
|
|
50
60
|
StructurallyEquals(other) {
|
|
51
61
|
const this$ = this;
|
|
52
|
-
return this$.Key === other.Key &&
|
|
62
|
+
return this$.Key === other.Key && equals(this$.Value, other.Value) && equals(this$.Type, other.Type) && dynamicPropertiesEqual(this$, other);
|
|
53
63
|
}
|
|
54
64
|
ReferenceEquals(other) {
|
|
55
65
|
const this$ = this;
|
|
56
66
|
return this$ === other;
|
|
57
67
|
}
|
|
58
68
|
static get KnownFieldNames() {
|
|
59
|
-
return
|
|
60
|
-
Compare: comparePrimitives
|
|
61
|
-
});
|
|
69
|
+
return parameterReference;
|
|
62
70
|
}
|
|
63
71
|
}
|
|
64
72
|
function CWLParameterReference_$reflection() {
|
|
65
73
|
return class_type("ARCtrl.CWL.CWLParameterReference", void 0, CWLParameterReference, DynamicObj_$reflection());
|
|
66
74
|
}
|
|
67
|
-
function CWLParameterReference_$
|
|
68
|
-
return new CWLParameterReference(key, values, type_);
|
|
75
|
+
function CWLParameterReference_$ctor_Z1832860(key, values, value, type_) {
|
|
76
|
+
return new CWLParameterReference(key, values, value, type_);
|
|
69
77
|
}
|
|
70
78
|
|
|
71
|
-
export { CWLParameterReference, CWLParameterReference_$
|
|
79
|
+
export { CWLParameterReference, CWLParameterReference_$ctor_Z1832860, CWLParameterReference_$reflection };
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { float64, int32 } from '@fable-org/fable-library-ts/Int32.ts';
|
|
2
|
+
import { TypeInfo } from '@fable-org/fable-library-ts/Reflection.ts';
|
|
3
|
+
import { int64 } from '@fable-org/fable-library-ts/BigInt.ts';
|
|
4
|
+
import { CWLType_$union, DirectoryInstance, FileInstance } from './CWLTypes.ts';
|
|
5
|
+
import { Union } from '@fable-org/fable-library-ts/Types.ts';
|
|
6
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
7
|
+
export declare class CWLParameterRecordField {
|
|
8
|
+
"Name@": string;
|
|
9
|
+
"Value@": CWLParameterValue_$union;
|
|
10
|
+
constructor(name: string, value: CWLParameterValue_$union);
|
|
11
|
+
get Name(): string;
|
|
12
|
+
set Name(v: string);
|
|
13
|
+
get Value(): CWLParameterValue_$union;
|
|
14
|
+
set Value(v: CWLParameterValue_$union);
|
|
15
|
+
Equals(other: any): boolean;
|
|
16
|
+
GetHashCode(): int32;
|
|
17
|
+
}
|
|
18
|
+
export declare function CWLParameterRecordField_$reflection(): TypeInfo;
|
|
19
|
+
export declare function CWLParameterRecordField_$ctor_30FA5786(name: string, value: CWLParameterValue_$union): CWLParameterRecordField;
|
|
20
|
+
export type CWLParameterValue_$union = CWLParameterValue<0> | CWLParameterValue<1> | CWLParameterValue<2> | CWLParameterValue<3> | CWLParameterValue<4> | CWLParameterValue<5> | CWLParameterValue<6> | CWLParameterValue<7> | CWLParameterValue<8>;
|
|
21
|
+
export type CWLParameterValue_$cases = {
|
|
22
|
+
0: ["Null", []];
|
|
23
|
+
1: ["String", [string]];
|
|
24
|
+
2: ["Int", [int64]];
|
|
25
|
+
3: ["Float", [float64]];
|
|
26
|
+
4: ["Boolean", [boolean]];
|
|
27
|
+
5: ["File", [FileInstance]];
|
|
28
|
+
6: ["Directory", [DirectoryInstance]];
|
|
29
|
+
7: ["Array", [CWLParameterValue_$union[]]];
|
|
30
|
+
8: ["Record", [CWLParameterRecordField[]]];
|
|
31
|
+
};
|
|
32
|
+
export declare function CWLParameterValue_Null(): any;
|
|
33
|
+
export declare function CWLParameterValue_String$(Item: string): CWLParameterValue<1>;
|
|
34
|
+
export declare function CWLParameterValue_Int(Item: int64): CWLParameterValue<2>;
|
|
35
|
+
export declare function CWLParameterValue_Float(Item: float64): CWLParameterValue<3>;
|
|
36
|
+
export declare function CWLParameterValue_Boolean$(Item: boolean): CWLParameterValue<4>;
|
|
37
|
+
export declare function CWLParameterValue_File(Item: FileInstance): CWLParameterValue<5>;
|
|
38
|
+
export declare function CWLParameterValue_Directory(Item: DirectoryInstance): CWLParameterValue<6>;
|
|
39
|
+
export declare function CWLParameterValue_Array$(Item: CWLParameterValue_$union[]): CWLParameterValue<7>;
|
|
40
|
+
export declare function CWLParameterValue_Record(Item: CWLParameterRecordField[]): CWLParameterValue<8>;
|
|
41
|
+
export declare class CWLParameterValue<Tag extends keyof CWLParameterValue_$cases> extends Union<Tag, CWLParameterValue_$cases[Tag][0]> {
|
|
42
|
+
constructor(tag: Tag, fields: CWLParameterValue_$cases[Tag][1]);
|
|
43
|
+
readonly tag: Tag;
|
|
44
|
+
readonly fields: CWLParameterValue_$cases[Tag][1];
|
|
45
|
+
cases(): string[];
|
|
46
|
+
static readonly Null: any;
|
|
47
|
+
Equals(other: any): boolean;
|
|
48
|
+
GetHashCode(): int32;
|
|
49
|
+
}
|
|
50
|
+
export declare function CWLParameterValue_$reflection(): TypeInfo;
|
|
51
|
+
export declare function CWLParameterValueModule_floatToRoundTripString(value: float64): string;
|
|
52
|
+
export declare function CWLParameterValueModule_tryParseInt64(value: any): Option<int64>;
|
|
53
|
+
export declare function CWLParameterValueModule_tryParseFloat(value: any): Option<float64>;
|
|
54
|
+
export declare function CWLParameterValueModule_toFlatStrings(value: CWLParameterValue_$union): string[];
|
|
55
|
+
export declare function CWLParameterValueModule_fromFlatStrings(values: string[]): Option<CWLParameterValue_$union>;
|
|
56
|
+
export declare function CWLParameterValueModule_tryInferType(value: CWLParameterValue_$union): Option<CWLType_$union>;
|
|
57
|
+
//# sourceMappingURL=ParameterValue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ParameterValue.d.ts","sourceRoot":"","sources":["../../../../src/ARCtrl/ts/CWL/ParameterValue.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AACtE,OAAO,EAAwF,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AAE3J,OAAO,EAAuF,KAAK,EAAE,MAAM,uCAAuC,CAAC;AACnJ,OAAO,EAA8D,cAAc,EAAuK,iBAAiB,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AACjT,OAAO,EAAa,KAAK,EAAE,MAAM,sCAAsC,CAAC;AACxE,OAAO,EAAoB,MAAM,EAAE,MAAM,uCAAuC,CAAC;AAOjF,qBAAa,uBAAuB;IAChC,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,wBAAwB,CAAC;gBACvB,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,wBAAwB;IAIzD,IAAI,IAAI,IAAI,MAAM,CAGjB;IACD,IAAI,IAAI,CAAC,CAAC,EAAE,MAAM,EAGjB;IACD,IAAI,KAAK,IAAI,wBAAwB,CAGpC;IACD,IAAI,KAAK,CAAC,CAAC,EAAE,wBAAwB,EAGpC;IACD,MAAM,CAAC,KAAK,EAAE,GAAG,GAAG,OAAO;IAK3B,WAAW,IAAI,KAAK;CAIvB;AAED,wBAAgB,mCAAmC,IAAI,QAAQ,CAE9D;AAED,wBAAgB,sCAAsC,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,wBAAwB,GAAG,uBAAuB,CAE7H;AAED,MAAM,MAAM,wBAAwB,GAC9B,iBAAiB,CAAC,CAAC,CAAC,GACpB,iBAAiB,CAAC,CAAC,CAAC,GACpB,iBAAiB,CAAC,CAAC,CAAC,GACpB,iBAAiB,CAAC,CAAC,CAAC,GACpB,iBAAiB,CAAC,CAAC,CAAC,GACpB,iBAAiB,CAAC,CAAC,CAAC,GACpB,iBAAiB,CAAC,CAAC,CAAC,GACpB,iBAAiB,CAAC,CAAC,CAAC,GACpB,iBAAiB,CAAC,CAAC,CAAC,CAAA;AAE1B,MAAM,MAAM,wBAAwB,GAAG;IACnC,CAAC,EAAE,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;IAChB,CAAC,EAAE,CAAC,QAAQ,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;IACxB,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC;IACpB,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IACxB,CAAC,EAAE,CAAC,SAAS,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IAC1B,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC;IAC5B,CAAC,EAAE,CAAC,WAAW,EAAE,CAAC,iBAAiB,CAAC,CAAC,CAAC;IACtC,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,wBAAwB,EAAE,CAAC,CAAC,CAAC;IAC3C,CAAC,EAAE,CAAC,QAAQ,EAAE,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAA;CAC7C,CAAA;AAED,wBAAgB,sBAAsB,QAErC;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,MAAM,wBAErD;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,KAAK,wBAEhD;AAED,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,OAAO,wBAEpD;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,OAAO,wBAEvD;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,YAAY,wBAExD;AAED,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,iBAAiB,wBAElE;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,wBAAwB,EAAE,wBAExE;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,uBAAuB,EAAE,wBAEvE;AAED,qBAAa,iBAAiB,CAAC,GAAG,SAAS,MAAM,wBAAwB,CAAE,SAAQ,KAAK,CAAC,GAAG,EAAE,wBAAwB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC/G,GAAG,EAAE,GAAG,EAAE,MAAM,EAAE,wBAAwB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;IAK9D,QAAQ,CAAC,GAAG,EAAE,GAAG,CAAC;IAClB,QAAQ,CAAC,MAAM,EAAE,wBAAwB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAClD,KAAK;IAGL,MAAM,CAAC,QAAQ,CAAC,IAAI,EAAE,GAAG,CAAmC;IAC5D,MAAM,CAAC,KAAK,EAAE,GAAG,GAAG,OAAO;IAa3B,WAAW,IAAI,KAAK;CAIvB;AAED,wBAAgB,6BAA6B,IAAI,QAAQ,CAExD;AAED,wBAAgB,8CAA8C,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,CAErF;AAED,wBAAgB,qCAAqC,CAAC,KAAK,EAAE,GAAG,GAAG,MAAM,CAAC,KAAK,CAAC,CAuD/E;AAED,wBAAgB,qCAAqC,CAAC,KAAK,EAAE,GAAG,GAAG,MAAM,CAAC,OAAO,CAAC,CA6BjF;AAED,wBAAgB,qCAAqC,CAAC,KAAK,EAAE,wBAAwB,GAAG,MAAM,EAAE,CA2B/F;AAED,wBAAgB,uCAAuC,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,CAAC,wBAAwB,CAAC,CAW1G;AAED,wBAAgB,oCAAoC,CAAC,KAAK,EAAE,wBAAwB,GAAG,MAAM,CAAC,cAAc,CAAC,CA+D5G"}
|
|
@@ -0,0 +1,321 @@
|
|
|
1
|
+
import { equals, arrayHash, safeHash, numberHash, Exception, int64ToString } from '../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
2
|
+
import { class_type, union_type, string_type, int64_type, float64_type, bool_type, array_type } from '../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
3
|
+
import { forAll2, toArray, map, collect, delay, singleton } from '../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
4
|
+
import { equals as equals$1, toInt64_unchecked, fromInt32, toDecimal, fromFloat64, toFloat64 } from '../../node_modules/@fable-org/fable-library-ts/BigInt.js';
|
|
5
|
+
import { FileInstance_$reflection, DirectoryInstance_$reflection, DirectoryInstanceModule_pathOrLocation, FileInstanceModule_pathOrLocation, CWLTypeModule_typesEqual, CWLType_Array$, InputArraySchema, CWLType_directory, CWLType_file } from './CWLTypes.js';
|
|
6
|
+
import { Union, FSharpRef } from '../../node_modules/@fable-org/fable-library-ts/Types.js';
|
|
7
|
+
import { value } from '../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
8
|
+
import { toInt64, equals as equals$2, toFloat64 as toFloat64$1 } from '../../node_modules/@fable-org/fable-library-ts/Decimal.js';
|
|
9
|
+
import { tryParse } from '../../node_modules/@fable-org/fable-library-ts/Long.js';
|
|
10
|
+
import { tryParse as tryParse$1 } from '../../node_modules/@fable-org/fable-library-ts/Double.js';
|
|
11
|
+
import { item } from '../../node_modules/@fable-org/fable-library-ts/Array.js';
|
|
12
|
+
import { Big } from '../../node_modules/@fable-org/fable-library-ts/lib/big.js';
|
|
13
|
+
|
|
14
|
+
class CWLParameterRecordField {
|
|
15
|
+
constructor(name, value) {
|
|
16
|
+
this["Name@"] = name;
|
|
17
|
+
this["Value@"] = value;
|
|
18
|
+
}
|
|
19
|
+
get Name() {
|
|
20
|
+
const __ = this;
|
|
21
|
+
return __["Name@"];
|
|
22
|
+
}
|
|
23
|
+
set Name(v) {
|
|
24
|
+
const __ = this;
|
|
25
|
+
__["Name@"] = v;
|
|
26
|
+
}
|
|
27
|
+
get Value() {
|
|
28
|
+
const __ = this;
|
|
29
|
+
return __["Value@"];
|
|
30
|
+
}
|
|
31
|
+
set Value(v) {
|
|
32
|
+
const __ = this;
|
|
33
|
+
__["Value@"] = v;
|
|
34
|
+
}
|
|
35
|
+
Equals(other) {
|
|
36
|
+
let other_1 = void 0;
|
|
37
|
+
const this$ = this;
|
|
38
|
+
return other instanceof CWLParameterRecordField && (other_1 = other, this$.Name === other_1.Name && equals(this$.Value, other_1.Value));
|
|
39
|
+
}
|
|
40
|
+
GetHashCode() {
|
|
41
|
+
const this$ = this;
|
|
42
|
+
return arrayHash([this$.Name, this$.Value]) | 0;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
function CWLParameterRecordField_$reflection() {
|
|
46
|
+
return class_type("ARCtrl.CWL.CWLParameterRecordField", void 0, CWLParameterRecordField);
|
|
47
|
+
}
|
|
48
|
+
function CWLParameterRecordField_$ctor_30FA5786(name, value) {
|
|
49
|
+
return new CWLParameterRecordField(name, value);
|
|
50
|
+
}
|
|
51
|
+
function CWLParameterValue_Null() {
|
|
52
|
+
return CWLParameterValue.Null;
|
|
53
|
+
}
|
|
54
|
+
function CWLParameterValue_String$(Item) {
|
|
55
|
+
return new CWLParameterValue(1, [Item]);
|
|
56
|
+
}
|
|
57
|
+
function CWLParameterValue_Int(Item) {
|
|
58
|
+
return new CWLParameterValue(2, [Item]);
|
|
59
|
+
}
|
|
60
|
+
function CWLParameterValue_Float(Item) {
|
|
61
|
+
return new CWLParameterValue(3, [Item]);
|
|
62
|
+
}
|
|
63
|
+
function CWLParameterValue_Boolean$(Item) {
|
|
64
|
+
return new CWLParameterValue(4, [Item]);
|
|
65
|
+
}
|
|
66
|
+
function CWLParameterValue_File(Item) {
|
|
67
|
+
return new CWLParameterValue(5, [Item]);
|
|
68
|
+
}
|
|
69
|
+
function CWLParameterValue_Directory(Item) {
|
|
70
|
+
return new CWLParameterValue(6, [Item]);
|
|
71
|
+
}
|
|
72
|
+
function CWLParameterValue_Array$(Item) {
|
|
73
|
+
return new CWLParameterValue(7, [Item]);
|
|
74
|
+
}
|
|
75
|
+
function CWLParameterValue_Record(Item) {
|
|
76
|
+
return new CWLParameterValue(8, [Item]);
|
|
77
|
+
}
|
|
78
|
+
class CWLParameterValue extends Union {
|
|
79
|
+
constructor(tag, fields) {
|
|
80
|
+
super();
|
|
81
|
+
this.tag = tag;
|
|
82
|
+
this.fields = fields;
|
|
83
|
+
}
|
|
84
|
+
cases() {
|
|
85
|
+
return ["Null", "String", "Int", "Float", "Boolean", "File", "Directory", "Array", "Record"];
|
|
86
|
+
}
|
|
87
|
+
static {
|
|
88
|
+
this.Null = new CWLParameterValue(0, []);
|
|
89
|
+
}
|
|
90
|
+
Equals(other) {
|
|
91
|
+
let other_1 = void 0, left_1 = void 0, right_1 = void 0, left_2 = void 0, right_2 = void 0, left_3 = void 0, right_3 = void 0, left_4 = void 0, right_4 = void 0, left_5 = void 0, right_5 = void 0, left_6 = void 0, right_6 = void 0, left_7 = void 0, right_7 = void 0, left_8 = void 0, right_8 = void 0;
|
|
92
|
+
const this$ = this;
|
|
93
|
+
const resizeArrayEqual = (left, right) => {
|
|
94
|
+
if (left.length === right.length) {
|
|
95
|
+
return forAll2(equals, left, right);
|
|
96
|
+
} else {
|
|
97
|
+
return false;
|
|
98
|
+
}
|
|
99
|
+
};
|
|
100
|
+
return other instanceof CWLParameterValue && (other_1 = other, this$.tag === /* String */
|
|
101
|
+
1 ? other_1.tag === /* String */
|
|
102
|
+
1 && (left_1 = this$.fields[0], right_1 = other_1.fields[0], left_1 === right_1) : this$.tag === /* Int */
|
|
103
|
+
2 ? other_1.tag === /* Int */
|
|
104
|
+
2 && (left_2 = this$.fields[0], right_2 = other_1.fields[0], equals$1(left_2, right_2)) : this$.tag === /* Float */
|
|
105
|
+
3 ? other_1.tag === /* Float */
|
|
106
|
+
3 && (left_3 = this$.fields[0], right_3 = other_1.fields[0], left_3 === right_3) : this$.tag === /* Boolean */
|
|
107
|
+
4 ? other_1.tag === /* Boolean */
|
|
108
|
+
4 && (left_4 = this$.fields[0], right_4 = other_1.fields[0], left_4 === right_4) : this$.tag === /* File */
|
|
109
|
+
5 ? other_1.tag === /* File */
|
|
110
|
+
5 && (left_5 = this$.fields[0], right_5 = other_1.fields[0], equals(left_5, right_5)) : this$.tag === /* Directory */
|
|
111
|
+
6 ? other_1.tag === /* Directory */
|
|
112
|
+
6 && (left_6 = this$.fields[0], right_6 = other_1.fields[0], equals(left_6, right_6)) : this$.tag === /* Array */
|
|
113
|
+
7 ? other_1.tag === /* Array */
|
|
114
|
+
7 && (left_7 = this$.fields[0], right_7 = other_1.fields[0], resizeArrayEqual(left_7, right_7)) : this$.tag === /* Record */
|
|
115
|
+
8 ? other_1.tag === /* Record */
|
|
116
|
+
8 && (left_8 = this$.fields[0], right_8 = other_1.fields[0], resizeArrayEqual(left_8, right_8)) : other_1.tag === /* Null */
|
|
117
|
+
0);
|
|
118
|
+
}
|
|
119
|
+
GetHashCode() {
|
|
120
|
+
const this$ = this;
|
|
121
|
+
return (this$.tag === /* String */
|
|
122
|
+
1 ? arrayHash([1, this$.fields[0]]) : this$.tag === /* Int */
|
|
123
|
+
2 ? arrayHash([2, this$.fields[0]]) : this$.tag === /* Float */
|
|
124
|
+
3 ? arrayHash([3, this$.fields[0]]) : this$.tag === /* Boolean */
|
|
125
|
+
4 ? arrayHash([4, this$.fields[0]]) : this$.tag === /* File */
|
|
126
|
+
5 ? arrayHash([5, this$.fields[0]]) : this$.tag === /* Directory */
|
|
127
|
+
6 ? arrayHash([6, this$.fields[0]]) : this$.tag === /* Array */
|
|
128
|
+
7 ? arrayHash([7, toArray(map((obj) => safeHash(obj) | 0, this$.fields[0]))]) : this$.tag === /* Record */
|
|
129
|
+
8 ? arrayHash([8, toArray(map((obj_1) => safeHash(obj_1) | 0, this$.fields[0]))]) : numberHash(0)) | 0;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
function CWLParameterValue_$reflection() {
|
|
133
|
+
return union_type("ARCtrl.CWL.CWLParameterValue", [], CWLParameterValue, () => [[], [["Item", string_type]], [["Item", int64_type]], [["Item", float64_type]], [["Item", bool_type]], [["Item", FileInstance_$reflection()]], [["Item", DirectoryInstance_$reflection()]], [["Item", array_type(CWLParameterValue_$reflection())]], [["Item", array_type(CWLParameterRecordField_$reflection())]]]);
|
|
134
|
+
}
|
|
135
|
+
function CWLParameterValueModule_floatToRoundTripString(value) {
|
|
136
|
+
return value.toString();
|
|
137
|
+
}
|
|
138
|
+
function CWLParameterValueModule_tryParseInt64(value) {
|
|
139
|
+
const tryConvert = (convert) => {
|
|
140
|
+
try {
|
|
141
|
+
return convert();
|
|
142
|
+
} catch (matchValue) {
|
|
143
|
+
return void 0;
|
|
144
|
+
}
|
|
145
|
+
};
|
|
146
|
+
if (typeof value === "number") {
|
|
147
|
+
return toInt64_unchecked(fromInt32(value));
|
|
148
|
+
} else if (typeof value === "bigint") {
|
|
149
|
+
return value;
|
|
150
|
+
} else if (value instanceof Big) {
|
|
151
|
+
const value_3 = value;
|
|
152
|
+
return tryConvert(() => {
|
|
153
|
+
const converted = toInt64(value_3);
|
|
154
|
+
if (equals$2(toDecimal(converted), value_3)) {
|
|
155
|
+
return converted;
|
|
156
|
+
} else {
|
|
157
|
+
throw new Exception("Expected an integral decimal value.");
|
|
158
|
+
}
|
|
159
|
+
});
|
|
160
|
+
} else if (typeof value === "number") {
|
|
161
|
+
const value_4 = value;
|
|
162
|
+
return tryConvert(() => {
|
|
163
|
+
const converted_1 = toInt64_unchecked(fromFloat64(value_4));
|
|
164
|
+
if (toFloat64(converted_1) === value_4) {
|
|
165
|
+
return converted_1;
|
|
166
|
+
} else {
|
|
167
|
+
throw new Exception("Expected an integral floating-point value.");
|
|
168
|
+
}
|
|
169
|
+
});
|
|
170
|
+
} else if (typeof value === "string") {
|
|
171
|
+
let matchValue_1;
|
|
172
|
+
let outArg = 0n;
|
|
173
|
+
matchValue_1 = [tryParse(value, 7, false, 64, new FSharpRef(() => outArg, (v) => {
|
|
174
|
+
outArg = v;
|
|
175
|
+
})), outArg];
|
|
176
|
+
if (matchValue_1[0]) {
|
|
177
|
+
return matchValue_1[1];
|
|
178
|
+
} else {
|
|
179
|
+
return void 0;
|
|
180
|
+
}
|
|
181
|
+
} else {
|
|
182
|
+
return void 0;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
function CWLParameterValueModule_tryParseFloat(value) {
|
|
186
|
+
if (typeof value === "number") {
|
|
187
|
+
return value;
|
|
188
|
+
} else if (value instanceof Big) {
|
|
189
|
+
return toFloat64$1(value);
|
|
190
|
+
} else if (typeof value === "number") {
|
|
191
|
+
return value;
|
|
192
|
+
} else if (typeof value === "bigint") {
|
|
193
|
+
return toFloat64(value);
|
|
194
|
+
} else if (typeof value === "string") {
|
|
195
|
+
let matchValue;
|
|
196
|
+
let outArg = 0;
|
|
197
|
+
matchValue = [tryParse$1(value, new FSharpRef(() => outArg, (v) => {
|
|
198
|
+
outArg = v;
|
|
199
|
+
})), outArg];
|
|
200
|
+
if (matchValue[0]) {
|
|
201
|
+
return matchValue[1];
|
|
202
|
+
} else {
|
|
203
|
+
return void 0;
|
|
204
|
+
}
|
|
205
|
+
} else {
|
|
206
|
+
return void 0;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
function CWLParameterValueModule_toFlatStrings(value) {
|
|
210
|
+
switch (value.tag) {
|
|
211
|
+
case /* String */
|
|
212
|
+
1:
|
|
213
|
+
return [value.fields[0]];
|
|
214
|
+
case /* Int */
|
|
215
|
+
2:
|
|
216
|
+
return [int64ToString(value.fields[0])];
|
|
217
|
+
case /* Float */
|
|
218
|
+
3:
|
|
219
|
+
return [CWLParameterValueModule_floatToRoundTripString(value.fields[0])];
|
|
220
|
+
case /* Boolean */
|
|
221
|
+
4: {
|
|
222
|
+
const value_4 = value.fields[0];
|
|
223
|
+
return Array.from(toArray(delay(() => value_4 ? singleton("true") : singleton("false"))));
|
|
224
|
+
}
|
|
225
|
+
case /* File */
|
|
226
|
+
5:
|
|
227
|
+
return [FileInstanceModule_pathOrLocation(value.fields[0])];
|
|
228
|
+
case /* Directory */
|
|
229
|
+
6:
|
|
230
|
+
return [DirectoryInstanceModule_pathOrLocation(value.fields[0])];
|
|
231
|
+
case /* Array */
|
|
232
|
+
7: {
|
|
233
|
+
const collection = collect(CWLParameterValueModule_toFlatStrings, value.fields[0]);
|
|
234
|
+
return Array.from(collection);
|
|
235
|
+
}
|
|
236
|
+
case /* Record */
|
|
237
|
+
8: {
|
|
238
|
+
const collection_1 = collect((field) => CWLParameterValueModule_toFlatStrings(field.Value), value.fields[0]);
|
|
239
|
+
return Array.from(collection_1);
|
|
240
|
+
}
|
|
241
|
+
default:
|
|
242
|
+
return [];
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
function CWLParameterValueModule_fromFlatStrings(values) {
|
|
246
|
+
let collection = void 0;
|
|
247
|
+
const matchValue = values.length | 0;
|
|
248
|
+
switch (matchValue) {
|
|
249
|
+
case 0:
|
|
250
|
+
return void 0;
|
|
251
|
+
case 1:
|
|
252
|
+
return CWLParameterValue_String$(item(0, values));
|
|
253
|
+
default:
|
|
254
|
+
return CWLParameterValue_Array$((collection = map(CWLParameterValue_String$, values), Array.from(collection)));
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
function CWLParameterValueModule_tryInferType(value$1) {
|
|
258
|
+
let firstType = void 0, values = void 0;
|
|
259
|
+
let matchResult = void 0, values_1 = void 0;
|
|
260
|
+
switch (value$1.tag) {
|
|
261
|
+
case /* File */
|
|
262
|
+
5: {
|
|
263
|
+
matchResult = 0;
|
|
264
|
+
break;
|
|
265
|
+
}
|
|
266
|
+
case /* Directory */
|
|
267
|
+
6: {
|
|
268
|
+
matchResult = 1;
|
|
269
|
+
break;
|
|
270
|
+
}
|
|
271
|
+
case /* Array */
|
|
272
|
+
7: {
|
|
273
|
+
if (values = value$1.fields[0], values.length > 0) {
|
|
274
|
+
matchResult = 2;
|
|
275
|
+
values_1 = value$1.fields[0];
|
|
276
|
+
} else {
|
|
277
|
+
matchResult = 3;
|
|
278
|
+
}
|
|
279
|
+
break;
|
|
280
|
+
}
|
|
281
|
+
default:
|
|
282
|
+
matchResult = 3;
|
|
283
|
+
}
|
|
284
|
+
switch (matchResult) {
|
|
285
|
+
case 0:
|
|
286
|
+
return CWLType_file();
|
|
287
|
+
case 1:
|
|
288
|
+
return CWLType_directory();
|
|
289
|
+
case 2: {
|
|
290
|
+
const inferredItemTypes = toArray(map(CWLParameterValueModule_tryInferType, values_1));
|
|
291
|
+
const matchValue = item(0, inferredItemTypes);
|
|
292
|
+
let matchResult_1 = void 0, firstType_1 = void 0;
|
|
293
|
+
if (matchValue != null) {
|
|
294
|
+
if (firstType = value(matchValue), inferredItemTypes.every((_arg) => {
|
|
295
|
+
if (_arg == null) {
|
|
296
|
+
return false;
|
|
297
|
+
} else {
|
|
298
|
+
return CWLTypeModule_typesEqual(firstType, value(_arg));
|
|
299
|
+
}
|
|
300
|
+
})) {
|
|
301
|
+
matchResult_1 = 0;
|
|
302
|
+
firstType_1 = value(matchValue);
|
|
303
|
+
} else {
|
|
304
|
+
matchResult_1 = 1;
|
|
305
|
+
}
|
|
306
|
+
} else {
|
|
307
|
+
matchResult_1 = 1;
|
|
308
|
+
}
|
|
309
|
+
switch (matchResult_1) {
|
|
310
|
+
case 0:
|
|
311
|
+
return CWLType_Array$(new InputArraySchema(firstType_1));
|
|
312
|
+
default:
|
|
313
|
+
return void 0;
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
default:
|
|
317
|
+
return void 0;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
export { CWLParameterRecordField, CWLParameterRecordField_$ctor_30FA5786, CWLParameterRecordField_$reflection, CWLParameterValue, CWLParameterValueModule_floatToRoundTripString, CWLParameterValueModule_fromFlatStrings, CWLParameterValueModule_toFlatStrings, CWLParameterValueModule_tryInferType, CWLParameterValueModule_tryParseFloat, CWLParameterValueModule_tryParseInt64, CWLParameterValue_$reflection, CWLParameterValue_Array$, CWLParameterValue_Boolean$, CWLParameterValue_Directory, CWLParameterValue_File, CWLParameterValue_Float, CWLParameterValue_Int, CWLParameterValue_Null, CWLParameterValue_Record, CWLParameterValue_String$ };
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { Option } from '@fable-org/fable-library-
|
|
2
|
-
import { SoftwarePackage, SchemaDefRequirementType, DirectoryInstance, FileInstance, DirentInstance, SchemaSaladString_$union } from './CWLTypes.
|
|
3
|
-
import { float64, int32 } from '@fable-org/fable-library-
|
|
4
|
-
import { FSharpSet } from '@fable-org/fable-library-
|
|
5
|
-
import { DynamicObj } from '../fable_modules/DynamicObj.
|
|
6
|
-
import { TypeInfo } from '@fable-org/fable-library-
|
|
7
|
-
import { Union } from '@fable-org/fable-library-
|
|
8
|
-
import { int64 } from '@fable-org/fable-library-
|
|
9
|
-
import { FSharpList } from '@fable-org/fable-library-
|
|
10
|
-
import { YAMLElement_$union } from '../fable_modules/YAMLicious.1.0.0
|
|
1
|
+
import { Option } from '@fable-org/fable-library-ts/Option.ts';
|
|
2
|
+
import { SoftwarePackage, SchemaDefRequirementType, DirectoryInstance, FileInstance, DirentInstance, SchemaSaladString_$union } from './CWLTypes.ts';
|
|
3
|
+
import { float64, int32 } from '@fable-org/fable-library-ts/Int32.ts';
|
|
4
|
+
import { FSharpSet } from '@fable-org/fable-library-ts/Set.ts';
|
|
5
|
+
import { DynamicObj } from '../fable_modules/DynamicObj.8.0.0/DynamicObj.fs.js';
|
|
6
|
+
import { TypeInfo } from '@fable-org/fable-library-ts/Reflection.ts';
|
|
7
|
+
import { Union } from '@fable-org/fable-library-ts/Types.ts';
|
|
8
|
+
import { int64 } from '@fable-org/fable-library-ts/BigInt.ts';
|
|
9
|
+
import { FSharpList } from '@fable-org/fable-library-ts/List.ts';
|
|
10
|
+
import { YAMLElement_$union } from '../fable_modules/YAMLicious.1.0.0/YAMLiciousTypes.fs.js';
|
|
11
11
|
export declare class DockerRequirement extends DynamicObj {
|
|
12
12
|
_dockerPull: Option<string>;
|
|
13
13
|
_dockerFile: Option<SchemaSaladString_$union>;
|
|
@@ -33,11 +33,18 @@ export declare class DockerRequirement extends DynamicObj {
|
|
|
33
33
|
set DockerRunOptions(value: Option<string[]>);
|
|
34
34
|
Equals(o: any): boolean;
|
|
35
35
|
GetHashCode(): int32;
|
|
36
|
+
/**
|
|
37
|
+
* Create a DockerRequirement from a plain docker file path or explicit schema-salad reference.
|
|
38
|
+
* If both `dockerFileReference` and `dockerFile` are provided, `dockerFileReference` takes precedence.
|
|
39
|
+
*/
|
|
36
40
|
static create(dockerPull?: string, dockerFile?: string, dockerFileReference?: SchemaSaladString_$union, dockerImageId?: string, dockerLoad?: string, dockerImport?: string, dockerOutputDirectory?: string, dockerRunOptions?: string[]): DockerRequirement;
|
|
37
41
|
static get KnownFieldNames(): FSharpSet<string>;
|
|
38
42
|
}
|
|
39
43
|
export declare function DockerRequirement_$reflection(): TypeInfo;
|
|
40
44
|
export declare function DockerRequirement_$ctor_Z4715023E(dockerPull?: string, dockerFile?: SchemaSaladString_$union, dockerImageId?: string, dockerLoad?: string, dockerImport?: string, dockerOutputDirectory?: string, dockerRunOptions?: string[]): DockerRequirement;
|
|
45
|
+
/**
|
|
46
|
+
* Define an environment variable that will be set in the runtime environment by the workflow platform when executing the command line tool.
|
|
47
|
+
*/
|
|
41
48
|
export declare class EnvironmentDef extends DynamicObj {
|
|
42
49
|
_envName: string;
|
|
43
50
|
_envValue: string;
|
|
@@ -58,14 +65,17 @@ export type LoadListingEnum_$cases = {
|
|
|
58
65
|
1: ["ShallowListing", []];
|
|
59
66
|
2: ["DeepListing", []];
|
|
60
67
|
};
|
|
61
|
-
export declare function LoadListingEnum_NoListing():
|
|
62
|
-
export declare function LoadListingEnum_ShallowListing():
|
|
63
|
-
export declare function LoadListingEnum_DeepListing():
|
|
68
|
+
export declare function LoadListingEnum_NoListing(): any;
|
|
69
|
+
export declare function LoadListingEnum_ShallowListing(): any;
|
|
70
|
+
export declare function LoadListingEnum_DeepListing(): any;
|
|
64
71
|
export declare class LoadListingEnum<Tag extends keyof LoadListingEnum_$cases> extends Union<Tag, LoadListingEnum_$cases[Tag][0]> {
|
|
72
|
+
constructor(tag: Tag, fields: LoadListingEnum_$cases[Tag][1]);
|
|
65
73
|
readonly tag: Tag;
|
|
66
74
|
readonly fields: LoadListingEnum_$cases[Tag][1];
|
|
67
|
-
constructor(tag: Tag, fields: LoadListingEnum_$cases[Tag][1]);
|
|
68
75
|
cases(): string[];
|
|
76
|
+
static readonly NoListing: any;
|
|
77
|
+
static readonly ShallowListing: any;
|
|
78
|
+
static readonly DeepListing: any;
|
|
69
79
|
}
|
|
70
80
|
export declare function LoadListingEnum_$reflection(): TypeInfo;
|
|
71
81
|
export declare function LoadListingEnum_get_toCwlString(): ((arg0: LoadListingEnum_$union) => string);
|
|
@@ -126,12 +136,21 @@ export type ToolTimeLimitValue_$cases = {
|
|
|
126
136
|
export declare function ToolTimeLimitValue_ToolTimeLimitSeconds(Item: int64): ToolTimeLimitValue<0>;
|
|
127
137
|
export declare function ToolTimeLimitValue_ToolTimeLimitExpression(Item: string): ToolTimeLimitValue<1>;
|
|
128
138
|
export declare class ToolTimeLimitValue<Tag extends keyof ToolTimeLimitValue_$cases> extends Union<Tag, ToolTimeLimitValue_$cases[Tag][0]> {
|
|
139
|
+
constructor(tag: Tag, fields: ToolTimeLimitValue_$cases[Tag][1]);
|
|
129
140
|
readonly tag: Tag;
|
|
130
141
|
readonly fields: ToolTimeLimitValue_$cases[Tag][1];
|
|
131
|
-
constructor(tag: Tag, fields: ToolTimeLimitValue_$cases[Tag][1]);
|
|
132
142
|
cases(): string[];
|
|
133
143
|
}
|
|
134
144
|
export declare function ToolTimeLimitValue_$reflection(): TypeInfo;
|
|
145
|
+
/**
|
|
146
|
+
* "min" is the minimum amount of a resource that must be reserved to schedule a job. If "min" cannot be satisfied, the job should not be run.
|
|
147
|
+
* "max" is the maximum amount of a resource that the job shall be permitted to use. If a node has sufficient resources, multiple jobs may be scheduled on a single node provided each job's "max" resource requirements are met.
|
|
148
|
+
* If a job attempts to exceed its "max" resource allocation, an implementation may deny additional resources, which may result in job failure.
|
|
149
|
+
* If "min" is specified but "max" is not, then "max" == "min" If "max" is specified by "min" is not, then "min" == "max".
|
|
150
|
+
* It is an error if max < min.
|
|
151
|
+
* It is an error if the value of any of these fields is negative.
|
|
152
|
+
* If neither "min" nor "max" is specified for a resource, default values are used.
|
|
153
|
+
*/
|
|
135
154
|
export declare class ResourceRequirementInstance extends DynamicObj {
|
|
136
155
|
_coresMin: Option<any>;
|
|
137
156
|
_coresMax: Option<any>;
|
|
@@ -180,10 +199,14 @@ export declare function InitialWorkDirEntry_DirentEntry(Item: DirentInstance): I
|
|
|
180
199
|
export declare function InitialWorkDirEntry_StringEntry(Item: SchemaSaladString_$union): InitialWorkDirEntry<1>;
|
|
181
200
|
export declare function InitialWorkDirEntry_FileEntry(Item: FileInstance): InitialWorkDirEntry<2>;
|
|
182
201
|
export declare function InitialWorkDirEntry_DirectoryEntry(Item: DirectoryInstance): InitialWorkDirEntry<3>;
|
|
202
|
+
/**
|
|
203
|
+
* Entry in InitialWorkDirRequirement listing.
|
|
204
|
+
* CWL allows either a Dirent object or a string/expression entry.
|
|
205
|
+
*/
|
|
183
206
|
export declare class InitialWorkDirEntry<Tag extends keyof InitialWorkDirEntry_$cases> extends Union<Tag, InitialWorkDirEntry_$cases[Tag][0]> {
|
|
207
|
+
constructor(tag: Tag, fields: InitialWorkDirEntry_$cases[Tag][1]);
|
|
184
208
|
readonly tag: Tag;
|
|
185
209
|
readonly fields: InitialWorkDirEntry_$cases[Tag][1];
|
|
186
|
-
constructor(tag: Tag, fields: InitialWorkDirEntry_$cases[Tag][1]);
|
|
187
210
|
cases(): string[];
|
|
188
211
|
}
|
|
189
212
|
export declare function InitialWorkDirEntry_$reflection(): TypeInfo;
|
|
@@ -242,7 +265,7 @@ export declare function Requirement_SoftwareRequirement(Item: SoftwarePackage[])
|
|
|
242
265
|
export declare function Requirement_LoadListingRequirement(Item: LoadListingRequirementValue): Requirement<4>;
|
|
243
266
|
export declare function Requirement_InitialWorkDirRequirement(Item: InitialWorkDirEntry_$union[]): Requirement<5>;
|
|
244
267
|
export declare function Requirement_EnvVarRequirement(Item: EnvironmentDef[]): Requirement<6>;
|
|
245
|
-
export declare function Requirement_ShellCommandRequirement():
|
|
268
|
+
export declare function Requirement_ShellCommandRequirement(): any;
|
|
246
269
|
export declare function Requirement_ResourceRequirement(Item: ResourceRequirementInstance): Requirement<8>;
|
|
247
270
|
export declare function Requirement_WorkReuseRequirement(Item: WorkReuseRequirementValue): Requirement<9>;
|
|
248
271
|
export declare function Requirement_WorkReuseExpressionRequirement(Item: string): Requirement<10>;
|
|
@@ -250,15 +273,20 @@ export declare function Requirement_NetworkAccessRequirement(Item: NetworkAccess
|
|
|
250
273
|
export declare function Requirement_NetworkAccessExpressionRequirement(Item: string): Requirement<12>;
|
|
251
274
|
export declare function Requirement_InplaceUpdateRequirement(Item: InplaceUpdateRequirementValue): Requirement<13>;
|
|
252
275
|
export declare function Requirement_ToolTimeLimitRequirement(Item: ToolTimeLimitValue_$union): Requirement<14>;
|
|
253
|
-
export declare function Requirement_SubworkflowFeatureRequirement():
|
|
254
|
-
export declare function Requirement_ScatterFeatureRequirement():
|
|
255
|
-
export declare function Requirement_MultipleInputFeatureRequirement():
|
|
256
|
-
export declare function Requirement_StepInputExpressionRequirement():
|
|
276
|
+
export declare function Requirement_SubworkflowFeatureRequirement(): any;
|
|
277
|
+
export declare function Requirement_ScatterFeatureRequirement(): any;
|
|
278
|
+
export declare function Requirement_MultipleInputFeatureRequirement(): any;
|
|
279
|
+
export declare function Requirement_StepInputExpressionRequirement(): any;
|
|
257
280
|
export declare class Requirement<Tag extends keyof Requirement_$cases> extends Union<Tag, Requirement_$cases[Tag][0]> {
|
|
281
|
+
constructor(tag: Tag, fields: Requirement_$cases[Tag][1]);
|
|
258
282
|
readonly tag: Tag;
|
|
259
283
|
readonly fields: Requirement_$cases[Tag][1];
|
|
260
|
-
constructor(tag: Tag, fields: Requirement_$cases[Tag][1]);
|
|
261
284
|
cases(): string[];
|
|
285
|
+
static readonly ShellCommandRequirement: any;
|
|
286
|
+
static readonly SubworkflowFeatureRequirement: any;
|
|
287
|
+
static readonly ScatterFeatureRequirement: any;
|
|
288
|
+
static readonly MultipleInputFeatureRequirement: any;
|
|
289
|
+
static readonly StepInputExpressionRequirement: any;
|
|
262
290
|
}
|
|
263
291
|
export declare function Requirement_$reflection(): TypeInfo;
|
|
264
292
|
export declare function Requirement_get_defaultInlineJavascriptRequirement(): Requirement_$union;
|
|
@@ -275,9 +303,9 @@ export type HintEntry_$cases = {
|
|
|
275
303
|
export declare function HintEntry_KnownHint(Item: Requirement_$union): HintEntry<0>;
|
|
276
304
|
export declare function HintEntry_UnknownHint(Item: HintUnknownValue): HintEntry<1>;
|
|
277
305
|
export declare class HintEntry<Tag extends keyof HintEntry_$cases> extends Union<Tag, HintEntry_$cases[Tag][0]> {
|
|
306
|
+
constructor(tag: Tag, fields: HintEntry_$cases[Tag][1]);
|
|
278
307
|
readonly tag: Tag;
|
|
279
308
|
readonly fields: HintEntry_$cases[Tag][1];
|
|
280
|
-
constructor(tag: Tag, fields: HintEntry_$cases[Tag][1]);
|
|
281
309
|
cases(): string[];
|
|
282
310
|
}
|
|
283
311
|
export declare function HintEntry_$reflection(): TypeInfo;
|