@nfdi4plants/arctrl 3.1.0 → 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 +219 -59
- package/dist/ts/ts/CWL/CWLTypes.d.ts.map +1 -1
- package/dist/ts/ts/CWL/CWLTypes.js +696 -124
- package/dist/ts/ts/CWL/Decode.d.ts +303 -61
- package/dist/ts/ts/CWL/Decode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Decode.js +1162 -679
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts +37 -0
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts.map +1 -0
- package/dist/ts/ts/CWL/DynamicObjHelpers.js +57 -0
- package/dist/ts/ts/CWL/Encode.d.ts +138 -14
- package/dist/ts/ts/CWL/Encode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Encode.js +798 -522
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts +32 -6
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ExpressionToolDescription.js +31 -3
- 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 +69 -18
- package/dist/ts/ts/CWL/Inputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Inputs.js +191 -52
- package/dist/ts/ts/CWL/OperationDescription.d.ts +8 -6
- package/dist/ts/ts/CWL/OperationDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/OperationDescription.js +7 -3
- package/dist/ts/ts/CWL/Outputs.d.ts +55 -16
- package/dist/ts/ts/CWL/Outputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Outputs.js +170 -75
- package/dist/ts/ts/CWL/ParameterReference.d.ts +15 -9
- package/dist/ts/ts/CWL/ParameterReference.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ParameterReference.js +36 -17
- 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 +183 -66
- package/dist/ts/ts/CWL/Requirements.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Requirements.js +475 -137
- package/dist/ts/ts/CWL/ToolDescription.d.ts +57 -8
- package/dist/ts/ts/CWL/ToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ToolDescription.js +98 -7
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts +30 -7
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowDescription.js +28 -3
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts +91 -36
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowSteps.js +206 -41
- 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 +49 -44
- 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 +38 -18
- 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 +19 -12
- package/dist/ts/ts/Conversion/Person.d.ts +5 -5
- package/dist/ts/ts/Conversion/Person.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Person.js +57 -25
- 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 +452 -69
- 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 +26 -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 +30 -15
- 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 +86 -47
- package/dist/ts/ts/Conversion.d.ts +24 -21
- package/dist/ts/ts/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Conversion.js +20 -13
- 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 +585 -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 +10 -10
- package/dist/ts/ts/Json.d.ts.map +1 -1
- package/dist/ts/ts/Json.js +5 -5
- 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 +6 -5
- 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.7 → YAMLicious.1.0.0}/Decode.fs.js +100 -134
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Encode.fs.js +10 -10
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Escapes.fs.js +41 -34
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Persil.fs.js +56 -204
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Preprocessing.fs.js +319 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Reader.fs.js +1884 -0
- 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.7 → YAMLicious.1.0.0}/RegexActivePatterns.fs.js +16 -16
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Syntax.fs.js +840 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Writer.fs.js +106 -76
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → 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.7/FlowToBlock.fs.js +0 -956
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/Preprocessing.fs.js +0 -181
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/Reader.fs.js +0 -1493
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/Regex.fs.js +0 -21
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/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.7 → YAMLicious.1.0.0}/Interop/JsInterop.fs.js +0 -0
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { Union
|
|
2
|
-
import { union_type, string_type, class_type,
|
|
3
|
-
import { toText, printf } from '../../node_modules/@fable-org/fable-library-
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
1
|
+
import { Union } from '../../node_modules/@fable-org/fable-library-ts/Types.js';
|
|
2
|
+
import { union_type, string_type, class_type, array_type } from '../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
3
|
+
import { toText, printf } from '../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
4
|
+
import { unwrap, value, defaultArg, orElse } from '../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
5
|
+
import { fileInstance, directoryInstance, direntInstance, inputEnumSchema, inputRecordField, inputRecordSchema, inputArraySchema, schemaDefRequirementType, softwarePackage } from './CWLKnownFieldNames.js';
|
|
6
|
+
import { arrayHash, equals, safeHash, numberHash } from '../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
7
|
+
import { hashDynamicProperties, dynamicPropertiesEqual } from './DynamicObjHelpers.js';
|
|
8
|
+
import { DynamicObj, DynamicObj_$reflection } from '../fable_modules/DynamicObj.8.0.0/DynamicObj.fs.js';
|
|
9
|
+
import { forAll2, toList, map, tryFind, exists } from '../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
8
10
|
|
|
9
11
|
function SchemaSaladString_Literal(Item) {
|
|
10
12
|
return new SchemaSaladString(0, [Item]);
|
|
@@ -29,7 +31,7 @@ function SchemaSaladString_$reflection() {
|
|
|
29
31
|
return union_type("ARCtrl.CWL.SchemaSaladString", [], SchemaSaladString, () => [[["Item", string_type]], [["Item", string_type]], [["Item", string_type]]]);
|
|
30
32
|
}
|
|
31
33
|
function SchemaSaladString__get_Value(this$) {
|
|
32
|
-
let value;
|
|
34
|
+
let value = void 0;
|
|
33
35
|
switch (this$.tag) {
|
|
34
36
|
case /* Include */
|
|
35
37
|
1: {
|
|
@@ -78,170 +80,477 @@ function SchemaSaladStringModule_toDirectiveString(saladString) {
|
|
|
78
80
|
return SchemaSaladString__get_AsDirectiveString(saladString);
|
|
79
81
|
}
|
|
80
82
|
class FileInstance extends DynamicObj {
|
|
81
|
-
constructor() {
|
|
83
|
+
constructor(location, path, basename, dirname, nameroot, nameext, checksum, size, secondaryFiles, format, contents) {
|
|
82
84
|
super();
|
|
85
|
+
this._location = location;
|
|
86
|
+
this._path = path;
|
|
87
|
+
this._basename = basename;
|
|
88
|
+
this._dirname = dirname;
|
|
89
|
+
this._nameroot = nameroot;
|
|
90
|
+
this._nameext = nameext;
|
|
91
|
+
this._checksum = checksum;
|
|
92
|
+
this._size = size;
|
|
93
|
+
this._secondaryFiles = secondaryFiles;
|
|
94
|
+
this._format = format;
|
|
95
|
+
this._contents = contents;
|
|
96
|
+
}
|
|
97
|
+
get Location() {
|
|
98
|
+
const this$ = this;
|
|
99
|
+
return unwrap(this$._location);
|
|
100
|
+
}
|
|
101
|
+
set Location(value) {
|
|
102
|
+
const this$ = this;
|
|
103
|
+
this$._location = value;
|
|
104
|
+
}
|
|
105
|
+
get Path() {
|
|
106
|
+
const this$ = this;
|
|
107
|
+
return unwrap(this$._path);
|
|
108
|
+
}
|
|
109
|
+
set Path(value) {
|
|
110
|
+
const this$ = this;
|
|
111
|
+
this$._path = value;
|
|
112
|
+
}
|
|
113
|
+
get Basename() {
|
|
114
|
+
const this$ = this;
|
|
115
|
+
return unwrap(this$._basename);
|
|
116
|
+
}
|
|
117
|
+
set Basename(value) {
|
|
118
|
+
const this$ = this;
|
|
119
|
+
this$._basename = value;
|
|
120
|
+
}
|
|
121
|
+
get Dirname() {
|
|
122
|
+
const this$ = this;
|
|
123
|
+
return unwrap(this$._dirname);
|
|
124
|
+
}
|
|
125
|
+
set Dirname(value) {
|
|
126
|
+
const this$ = this;
|
|
127
|
+
this$._dirname = value;
|
|
128
|
+
}
|
|
129
|
+
get Nameroot() {
|
|
130
|
+
const this$ = this;
|
|
131
|
+
return unwrap(this$._nameroot);
|
|
132
|
+
}
|
|
133
|
+
set Nameroot(value) {
|
|
134
|
+
const this$ = this;
|
|
135
|
+
this$._nameroot = value;
|
|
136
|
+
}
|
|
137
|
+
get Nameext() {
|
|
138
|
+
const this$ = this;
|
|
139
|
+
return unwrap(this$._nameext);
|
|
140
|
+
}
|
|
141
|
+
set Nameext(value) {
|
|
142
|
+
const this$ = this;
|
|
143
|
+
this$._nameext = value;
|
|
144
|
+
}
|
|
145
|
+
get Checksum() {
|
|
146
|
+
const this$ = this;
|
|
147
|
+
return unwrap(this$._checksum);
|
|
148
|
+
}
|
|
149
|
+
set Checksum(value) {
|
|
150
|
+
const this$ = this;
|
|
151
|
+
this$._checksum = value;
|
|
152
|
+
}
|
|
153
|
+
get Size() {
|
|
154
|
+
const this$ = this;
|
|
155
|
+
return unwrap(this$._size);
|
|
156
|
+
}
|
|
157
|
+
set Size(value) {
|
|
158
|
+
const this$ = this;
|
|
159
|
+
this$._size = value;
|
|
160
|
+
}
|
|
161
|
+
get SecondaryFiles() {
|
|
162
|
+
const this$ = this;
|
|
163
|
+
return unwrap(this$._secondaryFiles);
|
|
164
|
+
}
|
|
165
|
+
set SecondaryFiles(value) {
|
|
166
|
+
const this$ = this;
|
|
167
|
+
this$._secondaryFiles = value;
|
|
168
|
+
}
|
|
169
|
+
get Format() {
|
|
170
|
+
const this$ = this;
|
|
171
|
+
return unwrap(this$._format);
|
|
172
|
+
}
|
|
173
|
+
set Format(value) {
|
|
174
|
+
const this$ = this;
|
|
175
|
+
this$._format = value;
|
|
176
|
+
}
|
|
177
|
+
get Contents() {
|
|
178
|
+
const this$ = this;
|
|
179
|
+
return unwrap(this$._contents);
|
|
180
|
+
}
|
|
181
|
+
set Contents(value) {
|
|
182
|
+
const this$ = this;
|
|
183
|
+
this$._contents = value;
|
|
184
|
+
}
|
|
185
|
+
static get KnownFieldNames() {
|
|
186
|
+
return fileInstance;
|
|
83
187
|
}
|
|
84
188
|
GetHashCode() {
|
|
85
189
|
const this$ = this;
|
|
86
|
-
return
|
|
190
|
+
return arrayHash([this$.Location, this$.Path, this$.Basename, this$.Dirname, this$.Nameroot, this$.Nameext, this$.Checksum, this$.Size, this$.SecondaryFiles, this$.Format, this$.Contents, hashDynamicProperties(this$)]) | 0;
|
|
87
191
|
}
|
|
88
192
|
Equals(o) {
|
|
89
|
-
let o_1;
|
|
193
|
+
let o_1 = void 0;
|
|
90
194
|
const this$ = this;
|
|
91
|
-
return o instanceof FileInstance && (o_1 = o, this$.
|
|
195
|
+
return o instanceof FileInstance && (o_1 = o, equals(this$.Location, o_1.Location) && equals(this$.Path, o_1.Path) && equals(this$.Basename, o_1.Basename) && equals(this$.Dirname, o_1.Dirname) && equals(this$.Nameroot, o_1.Nameroot) && equals(this$.Nameext, o_1.Nameext) && equals(this$.Checksum, o_1.Checksum) && equals(this$.Size, o_1.Size) && equals(this$.SecondaryFiles, o_1.SecondaryFiles) && equals(this$.Format, o_1.Format) && equals(this$.Contents, o_1.Contents) && dynamicPropertiesEqual(this$, o_1));
|
|
92
196
|
}
|
|
93
197
|
}
|
|
94
198
|
function FileInstance_$reflection() {
|
|
95
199
|
return class_type("ARCtrl.CWL.FileInstance", void 0, FileInstance, DynamicObj_$reflection());
|
|
96
200
|
}
|
|
97
|
-
function FileInstance_$
|
|
98
|
-
return new FileInstance();
|
|
201
|
+
function FileInstance_$ctor_75C1B52E(location, path, basename, dirname, nameroot, nameext, checksum, size, secondaryFiles, format, contents) {
|
|
202
|
+
return new FileInstance(location, path, basename, dirname, nameroot, nameext, checksum, size, secondaryFiles, format, contents);
|
|
99
203
|
}
|
|
100
204
|
class DirectoryInstance extends DynamicObj {
|
|
101
|
-
constructor() {
|
|
205
|
+
constructor(location, path, basename, listing) {
|
|
102
206
|
super();
|
|
207
|
+
this._location = location;
|
|
208
|
+
this._path = path;
|
|
209
|
+
this._basename = basename;
|
|
210
|
+
this._listing = listing;
|
|
211
|
+
}
|
|
212
|
+
get Location() {
|
|
213
|
+
const this$ = this;
|
|
214
|
+
return unwrap(this$._location);
|
|
215
|
+
}
|
|
216
|
+
set Location(value) {
|
|
217
|
+
const this$ = this;
|
|
218
|
+
this$._location = value;
|
|
219
|
+
}
|
|
220
|
+
get Path() {
|
|
221
|
+
const this$ = this;
|
|
222
|
+
return unwrap(this$._path);
|
|
223
|
+
}
|
|
224
|
+
set Path(value) {
|
|
225
|
+
const this$ = this;
|
|
226
|
+
this$._path = value;
|
|
227
|
+
}
|
|
228
|
+
get Basename() {
|
|
229
|
+
const this$ = this;
|
|
230
|
+
return unwrap(this$._basename);
|
|
231
|
+
}
|
|
232
|
+
set Basename(value) {
|
|
233
|
+
const this$ = this;
|
|
234
|
+
this$._basename = value;
|
|
235
|
+
}
|
|
236
|
+
get Listing() {
|
|
237
|
+
const this$ = this;
|
|
238
|
+
return unwrap(this$._listing);
|
|
239
|
+
}
|
|
240
|
+
set Listing(value) {
|
|
241
|
+
const this$ = this;
|
|
242
|
+
this$._listing = value;
|
|
243
|
+
}
|
|
244
|
+
static get KnownFieldNames() {
|
|
245
|
+
return directoryInstance;
|
|
103
246
|
}
|
|
104
247
|
Equals(o) {
|
|
105
|
-
let o_1;
|
|
248
|
+
let o_1 = void 0;
|
|
106
249
|
const this$ = this;
|
|
107
|
-
return o instanceof DirectoryInstance && (o_1 = o, this$.
|
|
250
|
+
return o instanceof DirectoryInstance && (o_1 = o, equals(this$.Location, o_1.Location) && equals(this$.Path, o_1.Path) && equals(this$.Basename, o_1.Basename) && equals(this$.Listing, o_1.Listing) && dynamicPropertiesEqual(this$, o_1));
|
|
108
251
|
}
|
|
109
252
|
GetHashCode() {
|
|
110
253
|
const this$ = this;
|
|
111
|
-
return
|
|
254
|
+
return arrayHash([this$.Location, this$.Path, this$.Basename, this$.Listing, hashDynamicProperties(this$)]) | 0;
|
|
112
255
|
}
|
|
113
256
|
}
|
|
114
257
|
function DirectoryInstance_$reflection() {
|
|
115
258
|
return class_type("ARCtrl.CWL.DirectoryInstance", void 0, DirectoryInstance, DynamicObj_$reflection());
|
|
116
259
|
}
|
|
117
|
-
function DirectoryInstance_$
|
|
118
|
-
return new DirectoryInstance();
|
|
260
|
+
function DirectoryInstance_$ctor_Z4C1E59AE(location, path, basename, listing) {
|
|
261
|
+
return new DirectoryInstance(location, path, basename, listing);
|
|
119
262
|
}
|
|
120
|
-
class DirentInstance extends
|
|
121
|
-
constructor(
|
|
263
|
+
class DirentInstance extends DynamicObj {
|
|
264
|
+
constructor(entry, entryname, writable) {
|
|
122
265
|
super();
|
|
123
|
-
this.
|
|
124
|
-
this.
|
|
125
|
-
this.
|
|
266
|
+
this._entry = entry;
|
|
267
|
+
this._entryname = entryname;
|
|
268
|
+
this._writable = writable;
|
|
269
|
+
}
|
|
270
|
+
get Entry() {
|
|
271
|
+
const this$ = this;
|
|
272
|
+
return this$._entry;
|
|
273
|
+
}
|
|
274
|
+
set Entry(value) {
|
|
275
|
+
const this$ = this;
|
|
276
|
+
this$._entry = value;
|
|
277
|
+
}
|
|
278
|
+
get Entryname() {
|
|
279
|
+
const this$ = this;
|
|
280
|
+
return unwrap(this$._entryname);
|
|
281
|
+
}
|
|
282
|
+
set Entryname(value) {
|
|
283
|
+
const this$ = this;
|
|
284
|
+
this$._entryname = value;
|
|
285
|
+
}
|
|
286
|
+
get Writable() {
|
|
287
|
+
const this$ = this;
|
|
288
|
+
return unwrap(this$._writable);
|
|
289
|
+
}
|
|
290
|
+
set Writable(value) {
|
|
291
|
+
const this$ = this;
|
|
292
|
+
this$._writable = value;
|
|
293
|
+
}
|
|
294
|
+
Equals(o) {
|
|
295
|
+
let other = void 0;
|
|
296
|
+
const this$ = this;
|
|
297
|
+
return o instanceof DirentInstance && (other = o, equals(this$.Entry, other.Entry) && equals(this$.Entryname, other.Entryname) && equals(this$.Writable, other.Writable) && dynamicPropertiesEqual(this$, other));
|
|
298
|
+
}
|
|
299
|
+
GetHashCode() {
|
|
300
|
+
const this$ = this;
|
|
301
|
+
return arrayHash([this$.Entry, this$.Entryname, this$.Writable, hashDynamicProperties(this$)]) | 0;
|
|
302
|
+
}
|
|
303
|
+
static get KnownFieldNames() {
|
|
304
|
+
return direntInstance;
|
|
126
305
|
}
|
|
127
306
|
}
|
|
128
307
|
function DirentInstance_$reflection() {
|
|
129
|
-
return
|
|
308
|
+
return class_type("ARCtrl.CWL.DirentInstance", void 0, DirentInstance, DynamicObj_$reflection());
|
|
130
309
|
}
|
|
131
|
-
|
|
132
|
-
|
|
310
|
+
function DirentInstance_$ctor_Z61DE5D76(entry, entryname, writable) {
|
|
311
|
+
return new DirentInstance(entry, entryname, writable);
|
|
312
|
+
}
|
|
313
|
+
class InputEnumSchema extends DynamicObj {
|
|
314
|
+
constructor(symbols, label, doc, name) {
|
|
133
315
|
super();
|
|
134
|
-
this.
|
|
135
|
-
this.
|
|
136
|
-
this.
|
|
137
|
-
this.
|
|
316
|
+
this._symbols = symbols;
|
|
317
|
+
this._label = label;
|
|
318
|
+
this._doc = doc;
|
|
319
|
+
this._name = name;
|
|
138
320
|
}
|
|
321
|
+
get Symbols() {
|
|
322
|
+
const this$ = this;
|
|
323
|
+
return this$._symbols;
|
|
324
|
+
}
|
|
325
|
+
set Symbols(value) {
|
|
326
|
+
const this$ = this;
|
|
327
|
+
this$._symbols = value;
|
|
328
|
+
}
|
|
329
|
+
get Label() {
|
|
330
|
+
const this$ = this;
|
|
331
|
+
return unwrap(this$._label);
|
|
332
|
+
}
|
|
333
|
+
set Label(value) {
|
|
334
|
+
const this$ = this;
|
|
335
|
+
this$._label = value;
|
|
336
|
+
}
|
|
337
|
+
get Doc() {
|
|
338
|
+
const this$ = this;
|
|
339
|
+
return unwrap(this$._doc);
|
|
340
|
+
}
|
|
341
|
+
set Doc(value) {
|
|
342
|
+
const this$ = this;
|
|
343
|
+
this$._doc = value;
|
|
344
|
+
}
|
|
345
|
+
get Name() {
|
|
346
|
+
const this$ = this;
|
|
347
|
+
return unwrap(this$._name);
|
|
348
|
+
}
|
|
349
|
+
set Name(value) {
|
|
350
|
+
const this$ = this;
|
|
351
|
+
this$._name = value;
|
|
352
|
+
}
|
|
353
|
+
/**
|
|
354
|
+
* Equality comparison that treats symbol order as significant.
|
|
355
|
+
* Two enums are equal only if their symbols appear in the same order.
|
|
356
|
+
* This follows the CWL specification where enum symbol order matters.
|
|
357
|
+
*/
|
|
139
358
|
Equals(o) {
|
|
140
|
-
let other;
|
|
359
|
+
let other = void 0;
|
|
141
360
|
const this$ = this;
|
|
142
|
-
return o instanceof InputEnumSchema && (other = o, equals(this$.Label, other.Label) && equals(this$.Doc, other.Doc) && equals(this$.Name, other.Name) && this$.Symbols.length === other.Symbols.length && forAll2((x, y) => x === y, this$.Symbols, other.Symbols));
|
|
361
|
+
return o instanceof InputEnumSchema && (other = o, equals(this$.Label, other.Label) && equals(this$.Doc, other.Doc) && equals(this$.Name, other.Name) && this$.Symbols.length === other.Symbols.length && forAll2((x, y) => x === y, this$.Symbols, other.Symbols) && dynamicPropertiesEqual(this$, other));
|
|
143
362
|
}
|
|
144
363
|
GetHashCode() {
|
|
145
364
|
const this$ = this;
|
|
146
|
-
return arrayHash([toList(this$.Symbols), this$.Label, this$.Doc, this$.Name]) | 0;
|
|
365
|
+
return arrayHash([toList(this$.Symbols), this$.Label, this$.Doc, this$.Name, hashDynamicProperties(this$)]) | 0;
|
|
366
|
+
}
|
|
367
|
+
static get KnownFieldNames() {
|
|
368
|
+
return inputEnumSchema;
|
|
147
369
|
}
|
|
148
370
|
}
|
|
149
371
|
function InputEnumSchema_$reflection() {
|
|
150
|
-
return
|
|
372
|
+
return class_type("ARCtrl.CWL.InputEnumSchema", void 0, InputEnumSchema, DynamicObj_$reflection());
|
|
151
373
|
}
|
|
152
|
-
|
|
153
|
-
|
|
374
|
+
function InputEnumSchema_$ctor_Z998ED46(symbols, label, doc, name) {
|
|
375
|
+
return new InputEnumSchema(symbols, label, doc, name);
|
|
376
|
+
}
|
|
377
|
+
class InputRecordField extends DynamicObj {
|
|
378
|
+
constructor(name, type_, doc, label) {
|
|
154
379
|
super();
|
|
155
|
-
this.
|
|
156
|
-
this.
|
|
157
|
-
this.
|
|
158
|
-
this.
|
|
380
|
+
this._name = name;
|
|
381
|
+
this._type = type_;
|
|
382
|
+
this._doc = doc;
|
|
383
|
+
this._label = label;
|
|
384
|
+
}
|
|
385
|
+
get Name() {
|
|
386
|
+
const this$ = this;
|
|
387
|
+
return this$._name;
|
|
388
|
+
}
|
|
389
|
+
set Name(value) {
|
|
390
|
+
const this$ = this;
|
|
391
|
+
this$._name = value;
|
|
392
|
+
}
|
|
393
|
+
get Type() {
|
|
394
|
+
const this$ = this;
|
|
395
|
+
return this$._type;
|
|
396
|
+
}
|
|
397
|
+
set Type(value) {
|
|
398
|
+
const this$ = this;
|
|
399
|
+
this$._type = value;
|
|
400
|
+
}
|
|
401
|
+
get Doc() {
|
|
402
|
+
const this$ = this;
|
|
403
|
+
return unwrap(this$._doc);
|
|
404
|
+
}
|
|
405
|
+
set Doc(value) {
|
|
406
|
+
const this$ = this;
|
|
407
|
+
this$._doc = value;
|
|
408
|
+
}
|
|
409
|
+
get Label() {
|
|
410
|
+
const this$ = this;
|
|
411
|
+
return unwrap(this$._label);
|
|
412
|
+
}
|
|
413
|
+
set Label(value) {
|
|
414
|
+
const this$ = this;
|
|
415
|
+
this$._label = value;
|
|
159
416
|
}
|
|
160
417
|
Equals(o) {
|
|
161
|
-
let other;
|
|
418
|
+
let other = void 0;
|
|
162
419
|
const this$ = this;
|
|
163
|
-
return o instanceof InputRecordField && (other = o, this$.Name === other.Name && equals(this$.Type, other.Type) && equals(this$.Doc, other.Doc) && equals(this$.Label, other.Label));
|
|
420
|
+
return o instanceof InputRecordField && (other = o, this$.Name === other.Name && equals(this$.Type, other.Type) && equals(this$.Doc, other.Doc) && equals(this$.Label, other.Label) && dynamicPropertiesEqual(this$, other));
|
|
164
421
|
}
|
|
165
422
|
GetHashCode() {
|
|
166
423
|
const this$ = this;
|
|
167
|
-
return arrayHash([this$.Name, this$.Type, this$.Doc, this$.Label]) | 0;
|
|
424
|
+
return arrayHash([this$.Name, this$.Type, this$.Doc, this$.Label, hashDynamicProperties(this$)]) | 0;
|
|
425
|
+
}
|
|
426
|
+
static get KnownFieldNames() {
|
|
427
|
+
return inputRecordField;
|
|
168
428
|
}
|
|
169
429
|
}
|
|
170
430
|
function InputRecordField_$reflection() {
|
|
171
|
-
return
|
|
431
|
+
return class_type("ARCtrl.CWL.InputRecordField", void 0, InputRecordField, DynamicObj_$reflection());
|
|
172
432
|
}
|
|
173
|
-
|
|
174
|
-
|
|
433
|
+
function InputRecordField_$ctor_Z155BDB64(name, type_, doc, label) {
|
|
434
|
+
return new InputRecordField(name, type_, doc, label);
|
|
435
|
+
}
|
|
436
|
+
class InputRecordSchema extends DynamicObj {
|
|
437
|
+
constructor(fields, label, doc, name) {
|
|
175
438
|
super();
|
|
176
|
-
this.
|
|
177
|
-
this.
|
|
178
|
-
this.
|
|
179
|
-
this.
|
|
439
|
+
this._fields = fields;
|
|
440
|
+
this._label = label;
|
|
441
|
+
this._doc = doc;
|
|
442
|
+
this._name = name;
|
|
443
|
+
}
|
|
444
|
+
get Fields() {
|
|
445
|
+
const this$ = this;
|
|
446
|
+
return unwrap(this$._fields);
|
|
447
|
+
}
|
|
448
|
+
set Fields(value) {
|
|
449
|
+
const this$ = this;
|
|
450
|
+
this$._fields = value;
|
|
451
|
+
}
|
|
452
|
+
get Label() {
|
|
453
|
+
const this$ = this;
|
|
454
|
+
return unwrap(this$._label);
|
|
455
|
+
}
|
|
456
|
+
set Label(value) {
|
|
457
|
+
const this$ = this;
|
|
458
|
+
this$._label = value;
|
|
459
|
+
}
|
|
460
|
+
get Doc() {
|
|
461
|
+
const this$ = this;
|
|
462
|
+
return unwrap(this$._doc);
|
|
463
|
+
}
|
|
464
|
+
set Doc(value) {
|
|
465
|
+
const this$ = this;
|
|
466
|
+
this$._doc = value;
|
|
467
|
+
}
|
|
468
|
+
get Name() {
|
|
469
|
+
const this$ = this;
|
|
470
|
+
return unwrap(this$._name);
|
|
471
|
+
}
|
|
472
|
+
set Name(value) {
|
|
473
|
+
const this$ = this;
|
|
474
|
+
this$._name = value;
|
|
180
475
|
}
|
|
181
476
|
Equals(o) {
|
|
477
|
+
let other = void 0, matchValue = void 0, matchValue_1 = void 0, f1 = void 0, f2 = void 0;
|
|
182
478
|
const this$ = this;
|
|
183
|
-
|
|
184
|
-
const other = o;
|
|
185
|
-
if (equals(this$.Label, other.Label) && equals(this$.Doc, other.Doc) && equals(this$.Name, other.Name)) {
|
|
186
|
-
const matchValue = this$.Fields;
|
|
187
|
-
const matchValue_1 = other.Fields;
|
|
188
|
-
let matchResult, f1, f2;
|
|
189
|
-
if (matchValue != null) {
|
|
190
|
-
if (matchValue_1 != null) {
|
|
191
|
-
matchResult = 1;
|
|
192
|
-
f1 = value(matchValue);
|
|
193
|
-
f2 = value(matchValue_1);
|
|
194
|
-
} else {
|
|
195
|
-
matchResult = 2;
|
|
196
|
-
}
|
|
197
|
-
} else if (matchValue_1 == null) {
|
|
198
|
-
matchResult = 0;
|
|
199
|
-
} else {
|
|
200
|
-
matchResult = 2;
|
|
201
|
-
}
|
|
202
|
-
switch (matchResult) {
|
|
203
|
-
case 0:
|
|
204
|
-
return true;
|
|
205
|
-
case 1:
|
|
206
|
-
return f1.length === f2.length && forAll2(equals, f1, f2);
|
|
207
|
-
default:
|
|
208
|
-
return false;
|
|
209
|
-
}
|
|
210
|
-
} else {
|
|
211
|
-
return false;
|
|
212
|
-
}
|
|
213
|
-
} else {
|
|
214
|
-
return false;
|
|
215
|
-
}
|
|
479
|
+
return o instanceof InputRecordSchema && (other = o, equals(this$.Label, other.Label) && equals(this$.Doc, other.Doc) && equals(this$.Name, other.Name) && (matchValue = this$.Fields, matchValue_1 = other.Fields, matchValue != null ? matchValue_1 != null && (f1 = value(matchValue), f2 = value(matchValue_1), f1.length === f2.length && forAll2(equals, f1, f2)) : matchValue_1 == null) && dynamicPropertiesEqual(this$, other));
|
|
216
480
|
}
|
|
217
481
|
GetHashCode() {
|
|
482
|
+
let option_1 = void 0;
|
|
218
483
|
const this$ = this;
|
|
219
|
-
return arrayHash([this$.Fields, this$.Label, this$.Doc, this$.Name]) | 0;
|
|
484
|
+
return arrayHash([(option_1 = this$.Fields, option_1 != null ? toList(map((field) => safeHash(field) | 0, value(option_1))) : void 0), this$.Label, this$.Doc, this$.Name, hashDynamicProperties(this$)]) | 0;
|
|
485
|
+
}
|
|
486
|
+
static get KnownFieldNames() {
|
|
487
|
+
return inputRecordSchema;
|
|
220
488
|
}
|
|
221
489
|
}
|
|
222
490
|
function InputRecordSchema_$reflection() {
|
|
223
|
-
return
|
|
491
|
+
return class_type("ARCtrl.CWL.InputRecordSchema", void 0, InputRecordSchema, DynamicObj_$reflection());
|
|
224
492
|
}
|
|
225
|
-
|
|
226
|
-
|
|
493
|
+
function InputRecordSchema_$ctor_Z52C4D9E4(fields, label, doc, name) {
|
|
494
|
+
return new InputRecordSchema(fields, label, doc, name);
|
|
495
|
+
}
|
|
496
|
+
class InputArraySchema extends DynamicObj {
|
|
497
|
+
constructor(items, label, doc, name) {
|
|
227
498
|
super();
|
|
228
|
-
this.
|
|
229
|
-
this.
|
|
230
|
-
this.
|
|
231
|
-
this.
|
|
499
|
+
this._items = items;
|
|
500
|
+
this._label = label;
|
|
501
|
+
this._doc = doc;
|
|
502
|
+
this._name = name;
|
|
503
|
+
}
|
|
504
|
+
get Items() {
|
|
505
|
+
const this$ = this;
|
|
506
|
+
return this$._items;
|
|
507
|
+
}
|
|
508
|
+
set Items(value) {
|
|
509
|
+
const this$ = this;
|
|
510
|
+
this$._items = value;
|
|
511
|
+
}
|
|
512
|
+
get Label() {
|
|
513
|
+
const this$ = this;
|
|
514
|
+
return unwrap(this$._label);
|
|
515
|
+
}
|
|
516
|
+
set Label(value) {
|
|
517
|
+
const this$ = this;
|
|
518
|
+
this$._label = value;
|
|
519
|
+
}
|
|
520
|
+
get Doc() {
|
|
521
|
+
const this$ = this;
|
|
522
|
+
return unwrap(this$._doc);
|
|
523
|
+
}
|
|
524
|
+
set Doc(value) {
|
|
525
|
+
const this$ = this;
|
|
526
|
+
this$._doc = value;
|
|
527
|
+
}
|
|
528
|
+
get Name() {
|
|
529
|
+
const this$ = this;
|
|
530
|
+
return unwrap(this$._name);
|
|
531
|
+
}
|
|
532
|
+
set Name(value) {
|
|
533
|
+
const this$ = this;
|
|
534
|
+
this$._name = value;
|
|
232
535
|
}
|
|
233
536
|
Equals(o) {
|
|
234
|
-
let other;
|
|
537
|
+
let other = void 0;
|
|
235
538
|
const this$ = this;
|
|
236
|
-
return o instanceof InputArraySchema && (other = o, equals(this$.Items, other.Items) && equals(this$.Label, other.Label) && equals(this$.Doc, other.Doc) && equals(this$.Name, other.Name));
|
|
539
|
+
return o instanceof InputArraySchema && (other = o, equals(this$.Items, other.Items) && equals(this$.Label, other.Label) && equals(this$.Doc, other.Doc) && equals(this$.Name, other.Name) && dynamicPropertiesEqual(this$, other));
|
|
237
540
|
}
|
|
238
541
|
GetHashCode() {
|
|
239
542
|
const this$ = this;
|
|
240
|
-
return arrayHash([this$.Items, this$.Label, this$.Doc, this$.Name]) | 0;
|
|
543
|
+
return arrayHash([this$.Items, this$.Label, this$.Doc, this$.Name, hashDynamicProperties(this$)]) | 0;
|
|
544
|
+
}
|
|
545
|
+
static get KnownFieldNames() {
|
|
546
|
+
return inputArraySchema;
|
|
241
547
|
}
|
|
242
548
|
}
|
|
243
549
|
function InputArraySchema_$reflection() {
|
|
244
|
-
return
|
|
550
|
+
return class_type("ARCtrl.CWL.InputArraySchema", void 0, InputArraySchema, DynamicObj_$reflection());
|
|
551
|
+
}
|
|
552
|
+
function InputArraySchema_$ctor_4E4FFD9F(items, label, doc, name) {
|
|
553
|
+
return new InputArraySchema(items, label, doc, name);
|
|
245
554
|
}
|
|
246
555
|
function CWLType_File(Item) {
|
|
247
556
|
return new CWLType(0, [Item]);
|
|
@@ -252,31 +561,31 @@ function CWLType_Directory(Item) {
|
|
|
252
561
|
function CWLType_Dirent(Item) {
|
|
253
562
|
return new CWLType(2, [Item]);
|
|
254
563
|
}
|
|
255
|
-
function CWLType_String() {
|
|
256
|
-
return
|
|
564
|
+
function CWLType_String$() {
|
|
565
|
+
return CWLType.String$;
|
|
257
566
|
}
|
|
258
567
|
function CWLType_Int() {
|
|
259
|
-
return
|
|
568
|
+
return CWLType.Int;
|
|
260
569
|
}
|
|
261
570
|
function CWLType_Long() {
|
|
262
|
-
return
|
|
571
|
+
return CWLType.Long;
|
|
263
572
|
}
|
|
264
573
|
function CWLType_Float() {
|
|
265
|
-
return
|
|
574
|
+
return CWLType.Float;
|
|
266
575
|
}
|
|
267
576
|
function CWLType_Double() {
|
|
268
|
-
return
|
|
577
|
+
return CWLType.Double;
|
|
269
578
|
}
|
|
270
|
-
function CWLType_Boolean() {
|
|
271
|
-
return
|
|
579
|
+
function CWLType_Boolean$() {
|
|
580
|
+
return CWLType.Boolean$;
|
|
272
581
|
}
|
|
273
582
|
function CWLType_Stdout() {
|
|
274
|
-
return
|
|
583
|
+
return CWLType.Stdout;
|
|
275
584
|
}
|
|
276
585
|
function CWLType_Null() {
|
|
277
|
-
return
|
|
586
|
+
return CWLType.Null;
|
|
278
587
|
}
|
|
279
|
-
function CWLType_Array(Item) {
|
|
588
|
+
function CWLType_Array$(Item) {
|
|
280
589
|
return new CWLType(11, [Item]);
|
|
281
590
|
}
|
|
282
591
|
function CWLType_Record(Item) {
|
|
@@ -297,8 +606,32 @@ class CWLType extends Union {
|
|
|
297
606
|
cases() {
|
|
298
607
|
return ["File", "Directory", "Dirent", "String", "Int", "Long", "Float", "Double", "Boolean", "Stdout", "Null", "Array", "Record", "Enum", "Union"];
|
|
299
608
|
}
|
|
609
|
+
static {
|
|
610
|
+
this.String$ = new CWLType(3, []);
|
|
611
|
+
}
|
|
612
|
+
static {
|
|
613
|
+
this.Int = new CWLType(4, []);
|
|
614
|
+
}
|
|
615
|
+
static {
|
|
616
|
+
this.Long = new CWLType(5, []);
|
|
617
|
+
}
|
|
618
|
+
static {
|
|
619
|
+
this.Float = new CWLType(6, []);
|
|
620
|
+
}
|
|
621
|
+
static {
|
|
622
|
+
this.Double = new CWLType(7, []);
|
|
623
|
+
}
|
|
624
|
+
static {
|
|
625
|
+
this.Boolean$ = new CWLType(8, []);
|
|
626
|
+
}
|
|
627
|
+
static {
|
|
628
|
+
this.Stdout = new CWLType(9, []);
|
|
629
|
+
}
|
|
630
|
+
static {
|
|
631
|
+
this.Null = new CWLType(10, []);
|
|
632
|
+
}
|
|
300
633
|
Equals(o) {
|
|
301
|
-
let other, d1, d2, di1, di2, a1, a2, r1, r2, e1, e2, u1, u2, f1, f2;
|
|
634
|
+
let other = void 0, d1 = void 0, d2 = void 0, di1 = void 0, di2 = void 0, a1 = void 0, a2 = void 0, r1 = void 0, r2 = void 0, e1 = void 0, e2 = void 0, u1 = void 0, u2 = void 0, f1 = void 0, f2 = void 0;
|
|
302
635
|
const this$ = this;
|
|
303
636
|
return o instanceof CWLType && (other = o, this$.tag === /* Directory */
|
|
304
637
|
1 ? other.tag === /* Directory */
|
|
@@ -347,38 +680,277 @@ class CWLType extends Union {
|
|
|
347
680
|
11 ? arrayHash([11, this$.fields[0]]) : this$.tag === /* Record */
|
|
348
681
|
12 ? arrayHash([12, this$.fields[0]]) : this$.tag === /* Enum */
|
|
349
682
|
13 ? arrayHash([13, this$.fields[0]]) : this$.tag === /* Union */
|
|
350
|
-
14 ? arrayHash([14, toList(map(safeHash, this$.fields[0]))]) : arrayHash([0, safeHash(this$.fields[0])])) | 0;
|
|
683
|
+
14 ? arrayHash([14, toList(map((t) => safeHash(t) | 0, this$.fields[0]))]) : arrayHash([0, safeHash(this$.fields[0])])) | 0;
|
|
351
684
|
}
|
|
352
685
|
}
|
|
353
686
|
function CWLType_$reflection() {
|
|
354
687
|
return union_type("ARCtrl.CWL.CWLType", [], CWLType, () => [[["Item", FileInstance_$reflection()]], [["Item", DirectoryInstance_$reflection()]], [["Item", DirentInstance_$reflection()]], [], [], [], [], [], [], [], [], [["Item", InputArraySchema_$reflection()]], [["Item", InputRecordSchema_$reflection()]], [["Item", InputEnumSchema_$reflection()]], [["Item", array_type(CWLType_$reflection())]]]);
|
|
355
688
|
}
|
|
356
689
|
function CWLType_file() {
|
|
357
|
-
return CWLType_File(
|
|
690
|
+
return CWLType_File(new FileInstance());
|
|
358
691
|
}
|
|
359
692
|
function CWLType_directory() {
|
|
360
|
-
return CWLType_Directory(
|
|
693
|
+
return CWLType_Directory(new DirectoryInstance());
|
|
361
694
|
}
|
|
362
|
-
class SchemaDefRequirementType extends
|
|
363
|
-
constructor(
|
|
695
|
+
class SchemaDefRequirementType extends DynamicObj {
|
|
696
|
+
constructor(name, type_) {
|
|
364
697
|
super();
|
|
365
|
-
this.
|
|
366
|
-
this.
|
|
698
|
+
this._name = name;
|
|
699
|
+
this._type = type_;
|
|
700
|
+
}
|
|
701
|
+
get Name() {
|
|
702
|
+
const this$ = this;
|
|
703
|
+
return this$._name;
|
|
704
|
+
}
|
|
705
|
+
set Name(value) {
|
|
706
|
+
const this$ = this;
|
|
707
|
+
this$._name = value;
|
|
708
|
+
}
|
|
709
|
+
get Type_() {
|
|
710
|
+
const this$ = this;
|
|
711
|
+
return this$._type;
|
|
712
|
+
}
|
|
713
|
+
set Type_(value) {
|
|
714
|
+
const this$ = this;
|
|
715
|
+
this$._type = value;
|
|
716
|
+
}
|
|
717
|
+
Equals(o) {
|
|
718
|
+
let other = void 0;
|
|
719
|
+
const this$ = this;
|
|
720
|
+
return o instanceof SchemaDefRequirementType && (other = o, this$.Name === other.Name && equals(this$.Type_, other.Type_) && dynamicPropertiesEqual(this$, other));
|
|
721
|
+
}
|
|
722
|
+
GetHashCode() {
|
|
723
|
+
const this$ = this;
|
|
724
|
+
return arrayHash([this$.Name, this$.Type_, hashDynamicProperties(this$)]) | 0;
|
|
725
|
+
}
|
|
726
|
+
static get KnownFieldNames() {
|
|
727
|
+
return schemaDefRequirementType;
|
|
367
728
|
}
|
|
368
729
|
}
|
|
369
730
|
function SchemaDefRequirementType_$reflection() {
|
|
370
|
-
return
|
|
731
|
+
return class_type("ARCtrl.CWL.SchemaDefRequirementType", void 0, SchemaDefRequirementType, DynamicObj_$reflection());
|
|
371
732
|
}
|
|
372
|
-
|
|
373
|
-
|
|
733
|
+
function SchemaDefRequirementType_$ctor_Z1662A364(name, type_) {
|
|
734
|
+
return new SchemaDefRequirementType(name, type_);
|
|
735
|
+
}
|
|
736
|
+
class SoftwarePackage extends DynamicObj {
|
|
737
|
+
constructor(package$, version, specs) {
|
|
374
738
|
super();
|
|
375
|
-
this.
|
|
376
|
-
this.
|
|
377
|
-
this.
|
|
739
|
+
this._package = package$;
|
|
740
|
+
this._version = version;
|
|
741
|
+
this._specs = specs;
|
|
742
|
+
}
|
|
743
|
+
get Package() {
|
|
744
|
+
const this$ = this;
|
|
745
|
+
return this$._package;
|
|
746
|
+
}
|
|
747
|
+
set Package(value) {
|
|
748
|
+
const this$ = this;
|
|
749
|
+
this$._package = value;
|
|
750
|
+
}
|
|
751
|
+
get Version() {
|
|
752
|
+
const this$ = this;
|
|
753
|
+
return unwrap(this$._version);
|
|
754
|
+
}
|
|
755
|
+
set Version(value) {
|
|
756
|
+
const this$ = this;
|
|
757
|
+
this$._version = value;
|
|
758
|
+
}
|
|
759
|
+
get Specs() {
|
|
760
|
+
const this$ = this;
|
|
761
|
+
return unwrap(this$._specs);
|
|
762
|
+
}
|
|
763
|
+
set Specs(value) {
|
|
764
|
+
const this$ = this;
|
|
765
|
+
this$._specs = value;
|
|
766
|
+
}
|
|
767
|
+
Equals(o) {
|
|
768
|
+
let other = void 0;
|
|
769
|
+
const this$ = this;
|
|
770
|
+
return o instanceof SoftwarePackage && (other = o, this$.Package === other.Package && equals(this$.Version, other.Version) && equals(this$.Specs, other.Specs) && dynamicPropertiesEqual(this$, other));
|
|
771
|
+
}
|
|
772
|
+
GetHashCode() {
|
|
773
|
+
const this$ = this;
|
|
774
|
+
return arrayHash([this$.Package, this$.Version, this$.Specs, hashDynamicProperties(this$)]) | 0;
|
|
775
|
+
}
|
|
776
|
+
static get KnownFieldNames() {
|
|
777
|
+
return softwarePackage;
|
|
378
778
|
}
|
|
379
779
|
}
|
|
380
780
|
function SoftwarePackage_$reflection() {
|
|
381
|
-
return
|
|
781
|
+
return class_type("ARCtrl.CWL.SoftwarePackage", void 0, SoftwarePackage, DynamicObj_$reflection());
|
|
782
|
+
}
|
|
783
|
+
function SoftwarePackage_$ctor_7A38CADB(package$, version, specs) {
|
|
784
|
+
return new SoftwarePackage(package$, version, specs);
|
|
785
|
+
}
|
|
786
|
+
function FileInstanceModule_pathOrLocation(value) {
|
|
787
|
+
return defaultArg(orElse(value.Path, value.Location), "");
|
|
788
|
+
}
|
|
789
|
+
function DirectoryInstanceModule_pathOrLocation(value) {
|
|
790
|
+
return defaultArg(orElse(value.Path, value.Location), "");
|
|
791
|
+
}
|
|
792
|
+
function InputRecordSchemaModule_tryGetFieldType(name, schema) {
|
|
793
|
+
let field_1 = void 0;
|
|
794
|
+
const option_3 = schema.Fields;
|
|
795
|
+
if (option_3 != null) {
|
|
796
|
+
const option_1 = tryFind((field) => field.Name === name, value(option_3));
|
|
797
|
+
if (option_1 != null) {
|
|
798
|
+
return field_1 = value(option_1), field_1.Type;
|
|
799
|
+
} else {
|
|
800
|
+
return void 0;
|
|
801
|
+
}
|
|
802
|
+
} else {
|
|
803
|
+
return void 0;
|
|
804
|
+
}
|
|
805
|
+
}
|
|
806
|
+
function CWLTypeModule_typesEqual(left_mut, right_mut) {
|
|
807
|
+
CWLTypeModule_typesEqual:
|
|
808
|
+
while (true) {
|
|
809
|
+
const left = left_mut, right = right_mut;
|
|
810
|
+
let matchResult = void 0, left_1 = void 0, right_1 = void 0, left_2 = void 0, right_2 = void 0, left_4 = void 0, right_4 = void 0;
|
|
811
|
+
switch (left.tag) {
|
|
812
|
+
case /* File */
|
|
813
|
+
0: {
|
|
814
|
+
if (right.tag === /* File */
|
|
815
|
+
0) {
|
|
816
|
+
matchResult = 0;
|
|
817
|
+
} else {
|
|
818
|
+
matchResult = 4;
|
|
819
|
+
}
|
|
820
|
+
break;
|
|
821
|
+
}
|
|
822
|
+
case /* Directory */
|
|
823
|
+
1: {
|
|
824
|
+
if (right.tag === /* Directory */
|
|
825
|
+
1) {
|
|
826
|
+
matchResult = 0;
|
|
827
|
+
} else {
|
|
828
|
+
matchResult = 4;
|
|
829
|
+
}
|
|
830
|
+
break;
|
|
831
|
+
}
|
|
832
|
+
case /* Array */
|
|
833
|
+
11: {
|
|
834
|
+
if (right.tag === /* Array */
|
|
835
|
+
11) {
|
|
836
|
+
matchResult = 1;
|
|
837
|
+
left_1 = left.fields[0];
|
|
838
|
+
right_1 = right.fields[0];
|
|
839
|
+
} else {
|
|
840
|
+
matchResult = 4;
|
|
841
|
+
}
|
|
842
|
+
break;
|
|
843
|
+
}
|
|
844
|
+
case /* Union */
|
|
845
|
+
14: {
|
|
846
|
+
if (right.tag === /* Union */
|
|
847
|
+
14) {
|
|
848
|
+
matchResult = 2;
|
|
849
|
+
left_2 = left.fields[0];
|
|
850
|
+
right_2 = right.fields[0];
|
|
851
|
+
} else {
|
|
852
|
+
matchResult = 4;
|
|
853
|
+
}
|
|
854
|
+
break;
|
|
855
|
+
}
|
|
856
|
+
case /* Record */
|
|
857
|
+
12: {
|
|
858
|
+
if (right.tag === /* Record */
|
|
859
|
+
12) {
|
|
860
|
+
matchResult = 3;
|
|
861
|
+
left_4 = left.fields[0];
|
|
862
|
+
right_4 = right.fields[0];
|
|
863
|
+
} else {
|
|
864
|
+
matchResult = 4;
|
|
865
|
+
}
|
|
866
|
+
break;
|
|
867
|
+
}
|
|
868
|
+
default:
|
|
869
|
+
matchResult = 4;
|
|
870
|
+
}
|
|
871
|
+
switch (matchResult) {
|
|
872
|
+
case 0:
|
|
873
|
+
return true;
|
|
874
|
+
case 1: {
|
|
875
|
+
left_mut = left_1.Items;
|
|
876
|
+
right_mut = right_1.Items;
|
|
877
|
+
continue CWLTypeModule_typesEqual;
|
|
878
|
+
}
|
|
879
|
+
case 2:
|
|
880
|
+
if (left_2.length === right_2.length) {
|
|
881
|
+
return forAll2(CWLTypeModule_typesEqual, left_2, right_2);
|
|
882
|
+
} else {
|
|
883
|
+
return false;
|
|
884
|
+
}
|
|
885
|
+
case 3: {
|
|
886
|
+
const matchValue_1 = left_4.Fields;
|
|
887
|
+
const matchValue_2 = right_4.Fields;
|
|
888
|
+
let matchResult_1 = void 0, leftFields = void 0, rightFields = void 0;
|
|
889
|
+
if (matchValue_1 != null) {
|
|
890
|
+
if (matchValue_2 != null) {
|
|
891
|
+
matchResult_1 = 1;
|
|
892
|
+
leftFields = value(matchValue_1);
|
|
893
|
+
rightFields = value(matchValue_2);
|
|
894
|
+
} else {
|
|
895
|
+
matchResult_1 = 2;
|
|
896
|
+
}
|
|
897
|
+
} else if (matchValue_2 == null) {
|
|
898
|
+
matchResult_1 = 0;
|
|
899
|
+
} else {
|
|
900
|
+
matchResult_1 = 2;
|
|
901
|
+
}
|
|
902
|
+
switch (matchResult_1) {
|
|
903
|
+
case 0:
|
|
904
|
+
return true;
|
|
905
|
+
case 1:
|
|
906
|
+
if (leftFields.length === rightFields.length) {
|
|
907
|
+
return forAll2((leftField, rightField) => leftField.Name === rightField.Name && CWLTypeModule_typesEqual(leftField.Type, rightField.Type), leftFields, rightFields);
|
|
908
|
+
} else {
|
|
909
|
+
return false;
|
|
910
|
+
}
|
|
911
|
+
default:
|
|
912
|
+
return false;
|
|
913
|
+
}
|
|
914
|
+
}
|
|
915
|
+
default:
|
|
916
|
+
return equals(left, right);
|
|
917
|
+
}
|
|
918
|
+
break;
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
function CWLTypeModule_isArrayType(type_) {
|
|
922
|
+
switch (type_.tag) {
|
|
923
|
+
case /* Array */
|
|
924
|
+
11:
|
|
925
|
+
return true;
|
|
926
|
+
case /* Union */
|
|
927
|
+
14:
|
|
928
|
+
return exists((_arg) => {
|
|
929
|
+
if (_arg.tag === /* Array */
|
|
930
|
+
11) {
|
|
931
|
+
return true;
|
|
932
|
+
} else {
|
|
933
|
+
return false;
|
|
934
|
+
}
|
|
935
|
+
}, type_.fields[0]);
|
|
936
|
+
default:
|
|
937
|
+
return false;
|
|
938
|
+
}
|
|
939
|
+
}
|
|
940
|
+
function CWLTypeModule_tryGetNonNullUnionType(type_) {
|
|
941
|
+
if (type_.tag === /* Union */
|
|
942
|
+
14) {
|
|
943
|
+
return tryFind((_arg) => {
|
|
944
|
+
if (_arg.tag === /* Null */
|
|
945
|
+
10) {
|
|
946
|
+
return false;
|
|
947
|
+
} else {
|
|
948
|
+
return true;
|
|
949
|
+
}
|
|
950
|
+
}, type_.fields[0]);
|
|
951
|
+
} else {
|
|
952
|
+
return type_;
|
|
953
|
+
}
|
|
382
954
|
}
|
|
383
955
|
|
|
384
|
-
export { CWLType, CWLType_$reflection, CWLType_Array
|
|
956
|
+
export { CWLType, CWLTypeModule_isArrayType, CWLTypeModule_tryGetNonNullUnionType, CWLTypeModule_typesEqual, CWLType_$reflection, CWLType_Array$, CWLType_Boolean$, CWLType_Directory, CWLType_Dirent, CWLType_Double, CWLType_Enum, CWLType_File, CWLType_Float, CWLType_Int, CWLType_Long, CWLType_Null, CWLType_Record, CWLType_Stdout, CWLType_String$, CWLType_Union, CWLType_directory, CWLType_file, DirectoryInstance, DirectoryInstanceModule_pathOrLocation, DirectoryInstance_$ctor_Z4C1E59AE, DirectoryInstance_$reflection, DirentInstance, DirentInstance_$ctor_Z61DE5D76, DirentInstance_$reflection, FileInstance, FileInstanceModule_pathOrLocation, FileInstance_$ctor_75C1B52E, FileInstance_$reflection, InputArraySchema, InputArraySchema_$ctor_4E4FFD9F, InputArraySchema_$reflection, InputEnumSchema, InputEnumSchema_$ctor_Z998ED46, InputEnumSchema_$reflection, InputRecordField, InputRecordField_$ctor_Z155BDB64, InputRecordField_$reflection, InputRecordSchema, InputRecordSchemaModule_tryGetFieldType, InputRecordSchema_$ctor_Z52C4D9E4, InputRecordSchema_$reflection, SchemaDefRequirementType, SchemaDefRequirementType_$ctor_Z1662A364, SchemaDefRequirementType_$reflection, SchemaSaladString, SchemaSaladStringModule_importPath, SchemaSaladStringModule_includePath, SchemaSaladStringModule_literal, SchemaSaladStringModule_toDirectiveString, SchemaSaladStringModule_value, SchemaSaladString_$reflection, SchemaSaladString_Import, SchemaSaladString_Include, SchemaSaladString_Literal, SchemaSaladString__get_AsDirectiveString, SchemaSaladString__get_Value, SoftwarePackage, SoftwarePackage_$ctor_7A38CADB, SoftwarePackage_$reflection };
|