@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,59 +1,31 @@
|
|
|
1
1
|
import { isString } from './Interop/JsInterop.fs.js';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { tryParse as tryParse$1 } from '../../../node_modules/@fable-org/fable-library-
|
|
10
|
-
import { tryParse as tryParse$2 } from '../../../node_modules/@fable-org/fable-library-
|
|
11
|
-
import { ofList, ofSeq } from '../../../node_modules/@fable-org/fable-library-
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import { minValue, tryParse as tryParse$
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import { class_type } from '../../../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
2
|
+
import { BlockScalar_foldLines, Line_normalizeNewlines } from './Syntax.fs.js';
|
|
3
|
+
import { ofArray, isEmpty, head, tail, map as map$1, toArray, tryFind, filter, exists, iterate } from '../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
4
|
+
import { split, toText, printf } from '../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
5
|
+
import { value, some } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
6
|
+
import { tryParse } from '../../../node_modules/@fable-org/fable-library-ts/Int32.js';
|
|
7
|
+
import { FSharpRef } from '../../../node_modules/@fable-org/fable-library-ts/Types.js';
|
|
8
|
+
import { Exception, compare, structuralHash, equals } from '../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
9
|
+
import { tryParse as tryParse$1 } from '../../../node_modules/@fable-org/fable-library-ts/Double.js';
|
|
10
|
+
import { tryParse as tryParse$2 } from '../../../node_modules/@fable-org/fable-library-ts/Boolean.js';
|
|
11
|
+
import { ofList, ofSeq } from '../../../node_modules/@fable-org/fable-library-ts/Map.js';
|
|
12
|
+
import { Dictionary } from '../../../node_modules/@fable-org/fable-library-ts/MutableMap.js';
|
|
13
|
+
import { minValue, tryParse as tryParse$3 } from '../../../node_modules/@fable-org/fable-library-ts/Date.js';
|
|
14
|
+
import { minValue as minValue$1, tryParse as tryParse$4 } from '../../../node_modules/@fable-org/fable-library-ts/DateOffset.js';
|
|
15
|
+
import { map as map$2 } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
16
|
+
import { addToDict } from '../../../node_modules/@fable-org/fable-library-ts/MapUtil.js';
|
|
17
|
+
import { class_type } from '../../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
19
18
|
import { read as read$1 } from './Reader.fs.js';
|
|
20
19
|
|
|
21
20
|
function Helper_isString(value) {
|
|
22
21
|
return isString(value);
|
|
23
22
|
}
|
|
24
23
|
function Helper_foldPlainScalarLines(value) {
|
|
25
|
-
|
|
26
|
-
const isMoreIndented = (line) => {
|
|
27
|
-
if (line.startsWith(" ")) {
|
|
28
|
-
return true;
|
|
29
|
-
} else {
|
|
30
|
-
return line.startsWith(" ");
|
|
31
|
-
}
|
|
32
|
-
};
|
|
33
|
-
const sb = StringBuilder_$ctor();
|
|
34
|
-
for (let i = 0; i <= lines.length - 1; i++) {
|
|
35
|
-
const line_1 = item(i, lines);
|
|
36
|
-
if (isNullOrWhiteSpace(line_1)) {
|
|
37
|
-
StringBuilder__Append_244C7CD6(sb, "\n");
|
|
38
|
-
} else {
|
|
39
|
-
StringBuilder__Append_Z721C83C5(sb, line_1);
|
|
40
|
-
if (i < lines.length - 1) {
|
|
41
|
-
const next = item(i + 1, lines);
|
|
42
|
-
if (isNullOrWhiteSpace(next)) {
|
|
43
|
-
StringBuilder__Append_244C7CD6(sb, "\n");
|
|
44
|
-
} else if (isMoreIndented(line_1) ? true : isMoreIndented(next)) {
|
|
45
|
-
StringBuilder__Append_244C7CD6(sb, "\n");
|
|
46
|
-
} else {
|
|
47
|
-
StringBuilder__Append_244C7CD6(sb, " ");
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
return toString(sb);
|
|
24
|
+
return BlockScalar_foldLines(ofArray(split(Line_normalizeNewlines(value), ["\n"], void 0, 0)));
|
|
53
25
|
}
|
|
54
26
|
function Helper_scalarValue(content) {
|
|
55
27
|
const matchValue = content.Style;
|
|
56
|
-
let matchResult;
|
|
28
|
+
let matchResult = void 0;
|
|
57
29
|
if (matchValue != null) {
|
|
58
30
|
if (value(matchValue).tag === /* Plain */
|
|
59
31
|
0) {
|
|
@@ -76,7 +48,7 @@ function Helper_scalarValue(content) {
|
|
|
76
48
|
}
|
|
77
49
|
}
|
|
78
50
|
function int(value) {
|
|
79
|
-
let matchResult, v;
|
|
51
|
+
let matchResult = void 0, v = void 0;
|
|
80
52
|
switch (value.tag) {
|
|
81
53
|
case /* Value */
|
|
82
54
|
1: {
|
|
@@ -111,22 +83,21 @@ function int(value) {
|
|
|
111
83
|
const scalar = Helper_scalarValue(v);
|
|
112
84
|
let matchValue;
|
|
113
85
|
let outArg = 0;
|
|
114
|
-
matchValue = [tryParse(scalar, 511, false, 32, new FSharpRef(() => outArg, (v_1) => {
|
|
86
|
+
matchValue = [tryParse(scalar, 511, false, 32, new FSharpRef(() => outArg | 0, (v_1) => {
|
|
115
87
|
outArg = v_1 | 0;
|
|
116
88
|
})), outArg];
|
|
117
89
|
if (matchValue[0]) {
|
|
118
90
|
return matchValue[1] | 0;
|
|
119
91
|
} else {
|
|
120
|
-
throw new
|
|
92
|
+
throw new Exception(toText(printf("%s: %A"))("Expected an int")(scalar) + " (Parameter 'value')");
|
|
121
93
|
}
|
|
122
94
|
}
|
|
123
95
|
default:
|
|
124
|
-
throw new
|
|
96
|
+
throw new Exception(toText(printf("%s: %A"))("Expected an YAMLElement.Value")(value) + " (Parameter 'value')");
|
|
125
97
|
}
|
|
126
98
|
}
|
|
127
99
|
function float(value) {
|
|
128
|
-
|
|
129
|
-
let matchResult, v;
|
|
100
|
+
let matchResult = void 0, v = void 0;
|
|
130
101
|
switch (value.tag) {
|
|
131
102
|
case /* Value */
|
|
132
103
|
1: {
|
|
@@ -167,15 +138,15 @@ function float(value) {
|
|
|
167
138
|
if (matchValue[0]) {
|
|
168
139
|
return matchValue[1];
|
|
169
140
|
} else {
|
|
170
|
-
throw new
|
|
141
|
+
throw new Exception(toText(printf("%s: %A"))("Expected an int")(scalar) + " (Parameter 'value')");
|
|
171
142
|
}
|
|
172
143
|
}
|
|
173
144
|
default:
|
|
174
|
-
throw new
|
|
145
|
+
throw new Exception(toText(printf("%s: %A"))("Expected an YAMLElement.Value")(value) + " (Parameter 'value')");
|
|
175
146
|
}
|
|
176
147
|
}
|
|
177
148
|
function char(value) {
|
|
178
|
-
let matchResult, v, anyElse;
|
|
149
|
+
let matchResult = void 0, v = void 0, anyElse = void 0;
|
|
179
150
|
switch (value.tag) {
|
|
180
151
|
case /* Value */
|
|
181
152
|
1: {
|
|
@@ -216,15 +187,15 @@ function char(value) {
|
|
|
216
187
|
if (Helper_isString(scalar)) {
|
|
217
188
|
return scalar[0];
|
|
218
189
|
} else {
|
|
219
|
-
throw new
|
|
190
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a char")(scalar) + " (Parameter 'value')");
|
|
220
191
|
}
|
|
221
192
|
}
|
|
222
193
|
default:
|
|
223
|
-
throw new
|
|
194
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a char")(anyElse) + " (Parameter 'value')");
|
|
224
195
|
}
|
|
225
196
|
}
|
|
226
197
|
function bool(value) {
|
|
227
|
-
let matchResult, v, anyElse;
|
|
198
|
+
let matchResult = void 0, v = void 0, anyElse = void 0;
|
|
228
199
|
switch (value.tag) {
|
|
229
200
|
case /* Value */
|
|
230
201
|
1: {
|
|
@@ -270,11 +241,11 @@ function bool(value) {
|
|
|
270
241
|
if (matchValue[0]) {
|
|
271
242
|
return matchValue[1];
|
|
272
243
|
} else {
|
|
273
|
-
throw new
|
|
244
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a bool")(scalar) + " (Parameter 'value')");
|
|
274
245
|
}
|
|
275
246
|
}
|
|
276
247
|
default:
|
|
277
|
-
throw new
|
|
248
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a bool")(anyElse) + " (Parameter 'value')");
|
|
278
249
|
}
|
|
279
250
|
}
|
|
280
251
|
function map(keyDecoder, valueDecoder, value) {
|
|
@@ -286,13 +257,13 @@ function map(keyDecoder, valueDecoder, value) {
|
|
|
286
257
|
const v_1 = x.fields[1];
|
|
287
258
|
return [keyDecoder(x.fields[0].Value), valueDecoder(v_1)];
|
|
288
259
|
} else {
|
|
289
|
-
throw new
|
|
260
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a mapping")(x) + " (Parameter 'value')");
|
|
290
261
|
}
|
|
291
262
|
}, value.fields[0]), {
|
|
292
|
-
Compare: compare
|
|
263
|
+
Compare: (x_1, y) => compare(x_1, y) | 0
|
|
293
264
|
});
|
|
294
265
|
} else {
|
|
295
|
-
throw new
|
|
266
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a map")(value) + " (Parameter 'value')");
|
|
296
267
|
}
|
|
297
268
|
}
|
|
298
269
|
function dict(keyDecoder, valueDecoder, value) {
|
|
@@ -304,20 +275,20 @@ function dict(keyDecoder, valueDecoder, value) {
|
|
|
304
275
|
const v_1 = x.fields[1];
|
|
305
276
|
return [keyDecoder(x.fields[0].Value), valueDecoder(v_1)];
|
|
306
277
|
} else {
|
|
307
|
-
throw new
|
|
278
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a mapping")(x) + " (Parameter 'value')");
|
|
308
279
|
}
|
|
309
280
|
}, value.fields[0]), {
|
|
310
|
-
Compare: compare
|
|
281
|
+
Compare: (x_1, y) => compare(x_1, y) | 0
|
|
311
282
|
}), {
|
|
312
283
|
Equals: equals,
|
|
313
|
-
GetHashCode: structuralHash
|
|
284
|
+
GetHashCode: (x_2) => structuralHash(x_2) | 0
|
|
314
285
|
});
|
|
315
286
|
} else {
|
|
316
|
-
throw new
|
|
287
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a dictionary")(value) + " (Parameter 'value')");
|
|
317
288
|
}
|
|
318
289
|
}
|
|
319
290
|
function datetime(value) {
|
|
320
|
-
let matchResult, v, anyElse;
|
|
291
|
+
let matchResult = void 0, v = void 0, anyElse = void 0;
|
|
321
292
|
switch (value.tag) {
|
|
322
293
|
case /* Value */
|
|
323
294
|
1: {
|
|
@@ -363,15 +334,15 @@ function datetime(value) {
|
|
|
363
334
|
if (matchValue[0]) {
|
|
364
335
|
return matchValue[1];
|
|
365
336
|
} else {
|
|
366
|
-
throw new
|
|
337
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a DateTime")(scalar) + " (Parameter 'value')");
|
|
367
338
|
}
|
|
368
339
|
}
|
|
369
340
|
default:
|
|
370
|
-
throw new
|
|
341
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a DateTime")(anyElse) + " (Parameter 'value')");
|
|
371
342
|
}
|
|
372
343
|
}
|
|
373
344
|
function datetimeOffset(value) {
|
|
374
|
-
let matchResult, v, anyElse;
|
|
345
|
+
let matchResult = void 0, v = void 0, anyElse = void 0;
|
|
375
346
|
switch (value.tag) {
|
|
376
347
|
case /* Value */
|
|
377
348
|
1: {
|
|
@@ -417,15 +388,15 @@ function datetimeOffset(value) {
|
|
|
417
388
|
if (matchValue[0]) {
|
|
418
389
|
return matchValue[1];
|
|
419
390
|
} else {
|
|
420
|
-
throw new
|
|
391
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a DateTimeOffset")(scalar) + " (Parameter 'value')");
|
|
421
392
|
}
|
|
422
393
|
}
|
|
423
394
|
default:
|
|
424
|
-
throw new
|
|
395
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a DateTimeOffset")(anyElse) + " (Parameter 'value')");
|
|
425
396
|
}
|
|
426
397
|
}
|
|
427
398
|
function option(decoder, value) {
|
|
428
|
-
let matchResult, v, anyElse;
|
|
399
|
+
let matchResult = void 0, v = void 0, anyElse = void 0;
|
|
429
400
|
switch (value.tag) {
|
|
430
401
|
case /* Value */
|
|
431
402
|
1: {
|
|
@@ -468,11 +439,11 @@ function option(decoder, value) {
|
|
|
468
439
|
return some(decoder(value));
|
|
469
440
|
}
|
|
470
441
|
default:
|
|
471
|
-
throw new
|
|
442
|
+
throw new Exception(toText(printf("%s: %A"))("Expected an option")(anyElse) + " (Parameter 'value')");
|
|
472
443
|
}
|
|
473
444
|
}
|
|
474
445
|
function string(value) {
|
|
475
|
-
let matchResult, v, anyElse;
|
|
446
|
+
let matchResult = void 0, v = void 0, anyElse = void 0;
|
|
476
447
|
switch (value.tag) {
|
|
477
448
|
case /* Value */
|
|
478
449
|
1: {
|
|
@@ -511,11 +482,11 @@ function string(value) {
|
|
|
511
482
|
case 0:
|
|
512
483
|
return Helper_scalarValue(v);
|
|
513
484
|
default:
|
|
514
|
-
throw new
|
|
485
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a string")(anyElse) + " (Parameter 'value')");
|
|
515
486
|
}
|
|
516
487
|
}
|
|
517
488
|
function tuple2(decoderA, decoderB, value) {
|
|
518
|
-
let matchResult, a, b, anyElse;
|
|
489
|
+
let matchResult = void 0, a = void 0, b = void 0, anyElse = void 0;
|
|
519
490
|
switch (value.tag) {
|
|
520
491
|
case /* Object */
|
|
521
492
|
3: {
|
|
@@ -586,11 +557,11 @@ function tuple2(decoderA, decoderB, value) {
|
|
|
586
557
|
case 0:
|
|
587
558
|
return [decoderA(a), decoderB(b)];
|
|
588
559
|
default:
|
|
589
|
-
throw new
|
|
560
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a tuple2")(anyElse) + " (Parameter 'value')");
|
|
590
561
|
}
|
|
591
562
|
}
|
|
592
563
|
function tuple3(decoderA, decoderB, decoderC, value) {
|
|
593
|
-
let matchResult, a, b, c, anyElse;
|
|
564
|
+
let matchResult = void 0, a = void 0, b = void 0, c = void 0, anyElse = void 0;
|
|
594
565
|
switch (value.tag) {
|
|
595
566
|
case /* Object */
|
|
596
567
|
3: {
|
|
@@ -673,11 +644,11 @@ function tuple3(decoderA, decoderB, decoderC, value) {
|
|
|
673
644
|
case 0:
|
|
674
645
|
return [decoderA(a), decoderB(b), decoderC(c)];
|
|
675
646
|
default:
|
|
676
|
-
throw new
|
|
647
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a tuple3")(anyElse) + " (Parameter 'value')");
|
|
677
648
|
}
|
|
678
649
|
}
|
|
679
650
|
function tuple4(decoderA, decoderB, decoderC, decoderD, value) {
|
|
680
|
-
let matchResult, a, b, c, d, anyElse;
|
|
651
|
+
let matchResult = void 0, a = void 0, b = void 0, c = void 0, d = void 0, anyElse = void 0;
|
|
681
652
|
switch (value.tag) {
|
|
682
653
|
case /* Object */
|
|
683
654
|
3: {
|
|
@@ -772,11 +743,11 @@ function tuple4(decoderA, decoderB, decoderC, decoderD, value) {
|
|
|
772
743
|
case 0:
|
|
773
744
|
return [decoderA(a), decoderB(b), decoderC(c), decoderD(d)];
|
|
774
745
|
default:
|
|
775
|
-
throw new
|
|
746
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a tuple4")(anyElse) + " (Parameter 'value')");
|
|
776
747
|
}
|
|
777
748
|
}
|
|
778
749
|
function tuple5(decoderA, decoderB, decoderC, decoderD, decoderE, value) {
|
|
779
|
-
let matchResult, a, b, c, d, e, anyElse;
|
|
750
|
+
let matchResult = void 0, a = void 0, b = void 0, c = void 0, d = void 0, e = void 0, anyElse = void 0;
|
|
780
751
|
switch (value.tag) {
|
|
781
752
|
case /* Object */
|
|
782
753
|
3: {
|
|
@@ -883,11 +854,11 @@ function tuple5(decoderA, decoderB, decoderC, decoderD, decoderE, value) {
|
|
|
883
854
|
case 0:
|
|
884
855
|
return [decoderA(a), decoderB(b), decoderC(c), decoderD(d), decoderE(e)];
|
|
885
856
|
default:
|
|
886
|
-
throw new
|
|
857
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a tuple5")(anyElse) + " (Parameter 'value')");
|
|
887
858
|
}
|
|
888
859
|
}
|
|
889
860
|
function tuple6(decoderA, decoderB, decoderC, decoderD, decoderE, decoderF, value) {
|
|
890
|
-
let matchResult, a, b, c, d, e, f, anyElse;
|
|
861
|
+
let matchResult = void 0, a = void 0, b = void 0, c = void 0, d = void 0, e = void 0, f = void 0, anyElse = void 0;
|
|
891
862
|
switch (value.tag) {
|
|
892
863
|
case /* Object */
|
|
893
864
|
3: {
|
|
@@ -1006,11 +977,11 @@ function tuple6(decoderA, decoderB, decoderC, decoderD, decoderE, decoderF, valu
|
|
|
1006
977
|
case 0:
|
|
1007
978
|
return [decoderA(a), decoderB(b), decoderC(c), decoderD(d), decoderE(e), decoderF(f)];
|
|
1008
979
|
default:
|
|
1009
|
-
throw new
|
|
980
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a tuple6")(anyElse) + " (Parameter 'value')");
|
|
1010
981
|
}
|
|
1011
982
|
}
|
|
1012
983
|
function tuple7(decoderA, decoderB, decoderC, decoderD, decoderE, decoderF, decoderG, value) {
|
|
1013
|
-
let matchResult, a, b, c, d, e, f, g, anyElse;
|
|
984
|
+
let matchResult = void 0, a = void 0, b = void 0, c = void 0, d = void 0, e = void 0, f = void 0, g = void 0, anyElse = void 0;
|
|
1014
985
|
switch (value.tag) {
|
|
1015
986
|
case /* Object */
|
|
1016
987
|
3: {
|
|
@@ -1141,11 +1112,11 @@ function tuple7(decoderA, decoderB, decoderC, decoderD, decoderE, decoderF, deco
|
|
|
1141
1112
|
case 0:
|
|
1142
1113
|
return [decoderA(a), decoderB(b), decoderC(c), decoderD(d), decoderE(e), decoderF(f), decoderG(g)];
|
|
1143
1114
|
default:
|
|
1144
|
-
throw new
|
|
1115
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a tuple7")(anyElse) + " (Parameter 'value')");
|
|
1145
1116
|
}
|
|
1146
1117
|
}
|
|
1147
1118
|
function tuple8(decoderA, decoderB, decoderC, decoderD, decoderE, decoderF, decoderG, decoderH, value) {
|
|
1148
|
-
let matchResult, a, b, c, d, e, f, g, h, anyElse;
|
|
1119
|
+
let matchResult = void 0, a = void 0, b = void 0, c = void 0, d = void 0, e = void 0, f = void 0, g = void 0, h = void 0, anyElse = void 0;
|
|
1149
1120
|
switch (value.tag) {
|
|
1150
1121
|
case /* Object */
|
|
1151
1122
|
3: {
|
|
@@ -1288,11 +1259,11 @@ function tuple8(decoderA, decoderB, decoderC, decoderD, decoderE, decoderF, deco
|
|
|
1288
1259
|
case 0:
|
|
1289
1260
|
return [decoderA(a), decoderB(b), decoderC(c), decoderD(d), decoderE(e), decoderF(f), decoderG(g), decoderH(h)];
|
|
1290
1261
|
default:
|
|
1291
|
-
throw new
|
|
1262
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a tuple8")(anyElse) + " (Parameter 'value')");
|
|
1292
1263
|
}
|
|
1293
1264
|
}
|
|
1294
1265
|
function list(decoder, value) {
|
|
1295
|
-
let matchResult, v, anyElse;
|
|
1266
|
+
let matchResult = void 0, v = void 0, anyElse = void 0;
|
|
1296
1267
|
switch (value.tag) {
|
|
1297
1268
|
case /* Sequence */
|
|
1298
1269
|
2: {
|
|
@@ -1331,11 +1302,11 @@ function list(decoder, value) {
|
|
|
1331
1302
|
case 0:
|
|
1332
1303
|
return map$1(decoder, v);
|
|
1333
1304
|
default:
|
|
1334
|
-
throw new
|
|
1305
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a list")(anyElse) + " (Parameter 'value')");
|
|
1335
1306
|
}
|
|
1336
1307
|
}
|
|
1337
1308
|
function array(decoder, value) {
|
|
1338
|
-
let matchResult, v, anyElse;
|
|
1309
|
+
let matchResult = void 0, v = void 0, anyElse = void 0;
|
|
1339
1310
|
switch (value.tag) {
|
|
1340
1311
|
case /* Sequence */
|
|
1341
1312
|
2: {
|
|
@@ -1374,11 +1345,11 @@ function array(decoder, value) {
|
|
|
1374
1345
|
case 0:
|
|
1375
1346
|
return toArray(map$1(decoder, v));
|
|
1376
1347
|
default:
|
|
1377
|
-
throw new
|
|
1348
|
+
throw new Exception(toText(printf("%s: %A"))("Expected an array")(anyElse) + " (Parameter 'value')");
|
|
1378
1349
|
}
|
|
1379
1350
|
}
|
|
1380
1351
|
function seq(decoder, value) {
|
|
1381
|
-
let matchResult, v, anyElse;
|
|
1352
|
+
let matchResult = void 0, v = void 0, anyElse = void 0;
|
|
1382
1353
|
switch (value.tag) {
|
|
1383
1354
|
case /* Sequence */
|
|
1384
1355
|
2: {
|
|
@@ -1417,11 +1388,11 @@ function seq(decoder, value) {
|
|
|
1417
1388
|
case 0:
|
|
1418
1389
|
return map$2(decoder, v);
|
|
1419
1390
|
default:
|
|
1420
|
-
throw new
|
|
1391
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a seq")(anyElse) + " (Parameter 'value')");
|
|
1421
1392
|
}
|
|
1422
1393
|
}
|
|
1423
1394
|
function resizearray(decoder, value) {
|
|
1424
|
-
let matchResult, v, anyElse;
|
|
1395
|
+
let matchResult = void 0, v = void 0, anyElse = void 0;
|
|
1425
1396
|
switch (value.tag) {
|
|
1426
1397
|
case /* Sequence */
|
|
1427
1398
|
2: {
|
|
@@ -1462,11 +1433,11 @@ function resizearray(decoder, value) {
|
|
|
1462
1433
|
return Array.from(collection);
|
|
1463
1434
|
}
|
|
1464
1435
|
default:
|
|
1465
|
-
throw new
|
|
1436
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a resizearray")(anyElse) + " (Parameter 'value')");
|
|
1466
1437
|
}
|
|
1467
1438
|
}
|
|
1468
1439
|
function values(decoder, value) {
|
|
1469
|
-
let matchResult, v, anyElse_1;
|
|
1440
|
+
let matchResult = void 0, v = void 0, anyElse_1 = void 0;
|
|
1470
1441
|
switch (value.tag) {
|
|
1471
1442
|
case /* Sequence */
|
|
1472
1443
|
2: {
|
|
@@ -1504,7 +1475,7 @@ function values(decoder, value) {
|
|
|
1504
1475
|
switch (matchResult) {
|
|
1505
1476
|
case 0:
|
|
1506
1477
|
return map$1((_arg) => {
|
|
1507
|
-
let matchResult_1, element, element_1, anyElse;
|
|
1478
|
+
let matchResult_1 = void 0, element = void 0, element_1 = void 0, anyElse = void 0;
|
|
1508
1479
|
switch (_arg.tag) {
|
|
1509
1480
|
case /* Value */
|
|
1510
1481
|
1: {
|
|
@@ -1545,71 +1516,66 @@ function values(decoder, value) {
|
|
|
1545
1516
|
case 1:
|
|
1546
1517
|
return decoder(element_1);
|
|
1547
1518
|
default:
|
|
1548
|
-
throw new
|
|
1519
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a values")(anyElse) + " (Parameter 'value')");
|
|
1549
1520
|
}
|
|
1550
1521
|
}, v);
|
|
1551
1522
|
default:
|
|
1552
|
-
throw new
|
|
1523
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a values")(anyElse_1) + " (Parameter 'value')");
|
|
1553
1524
|
}
|
|
1554
1525
|
}
|
|
1555
1526
|
class Getter {
|
|
1556
1527
|
constructor(ele) {
|
|
1557
|
-
|
|
1558
|
-
this.required = (_this = this, {
|
|
1528
|
+
this.required = (this, {
|
|
1559
1529
|
Field(fieldName, dec) {
|
|
1560
|
-
let arg_3;
|
|
1530
|
+
let _arg_1 = void 0, arg_3 = void 0;
|
|
1561
1531
|
if (ele.tag === /* Object */
|
|
1562
1532
|
3) {
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
0) {
|
|
1566
|
-
return dec(_arg_1.fields[1]);
|
|
1567
|
-
} else {
|
|
1568
|
-
throw new Error(toText(printf("%s: %A"))("Expected a mapping")(ele) + "\\nParameter name: value");
|
|
1569
|
-
}
|
|
1570
|
-
}, tryFind((_arg) => {
|
|
1533
|
+
let x;
|
|
1534
|
+
const option_2 = tryFind((_arg) => {
|
|
1571
1535
|
if (_arg.tag === /* Mapping */
|
|
1572
1536
|
0) {
|
|
1573
1537
|
return _arg.fields[0].Value === fieldName;
|
|
1574
1538
|
} else {
|
|
1575
1539
|
return false;
|
|
1576
1540
|
}
|
|
1577
|
-
}, ele.fields[0])
|
|
1541
|
+
}, ele.fields[0]);
|
|
1542
|
+
x = option_2 != null ? some((_arg_1 = value(option_2), _arg_1.tag === /* Mapping */
|
|
1543
|
+
0 ? dec(_arg_1.fields[1]) : (() => {
|
|
1544
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a mapping")(ele) + " (Parameter 'value')");
|
|
1545
|
+
})())) : void 0;
|
|
1578
1546
|
if (x == null) {
|
|
1579
|
-
throw new
|
|
1547
|
+
throw new Exception((arg_3 = toText(printf("Field not found: %s"))(fieldName), toText(printf("%s: %A"))(arg_3)(ele)) + " (Parameter 'value')");
|
|
1580
1548
|
} else {
|
|
1581
1549
|
return value(x);
|
|
1582
1550
|
}
|
|
1583
1551
|
} else {
|
|
1584
|
-
throw new
|
|
1552
|
+
throw new Exception(toText(printf("%s: %A"))("Expected an object")(ele) + " (Parameter 'value')");
|
|
1585
1553
|
}
|
|
1586
1554
|
}
|
|
1587
1555
|
});
|
|
1588
|
-
this.optional = (
|
|
1556
|
+
this.optional = (this, {
|
|
1589
1557
|
Field(fieldName_1, dec_1) {
|
|
1558
|
+
let _arg_3 = void 0;
|
|
1590
1559
|
if (ele.tag === /* Object */
|
|
1591
1560
|
3) {
|
|
1592
|
-
|
|
1593
|
-
if (_arg_3.tag === /* Mapping */
|
|
1594
|
-
0) {
|
|
1595
|
-
return dec_1(_arg_3.fields[1]);
|
|
1596
|
-
} else {
|
|
1597
|
-
throw new Error(toText(printf("%s: %A"))("Expected a mapping")(ele) + "\\nParameter name: value");
|
|
1598
|
-
}
|
|
1599
|
-
}, tryFind((_arg_2) => {
|
|
1561
|
+
const option_4 = tryFind((_arg_2) => {
|
|
1600
1562
|
if (_arg_2.tag === /* Mapping */
|
|
1601
1563
|
0) {
|
|
1602
1564
|
return _arg_2.fields[0].Value === fieldName_1;
|
|
1603
1565
|
} else {
|
|
1604
1566
|
return false;
|
|
1605
1567
|
}
|
|
1606
|
-
}, ele.fields[0])
|
|
1568
|
+
}, ele.fields[0]);
|
|
1569
|
+
return option_4 != null ? some((_arg_3 = value(option_4), _arg_3.tag === /* Mapping */
|
|
1570
|
+
0 ? dec_1(_arg_3.fields[1]) : (() => {
|
|
1571
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a mapping")(ele) + " (Parameter 'value')");
|
|
1572
|
+
})())) : void 0;
|
|
1607
1573
|
} else {
|
|
1608
|
-
throw new
|
|
1574
|
+
throw new Exception(toText(printf("%s: %A"))("Expected an object")(ele) + " (Parameter 'value')");
|
|
1609
1575
|
}
|
|
1610
1576
|
}
|
|
1611
1577
|
});
|
|
1612
|
-
this.multipleOptional = (
|
|
1578
|
+
this.multipleOptional = (this, {
|
|
1613
1579
|
FieldList(fieldNames) {
|
|
1614
1580
|
if (ele.tag === /* Object */
|
|
1615
1581
|
3) {
|
|
@@ -1618,7 +1584,7 @@ class Getter {
|
|
|
1618
1584
|
0) {
|
|
1619
1585
|
return [_arg_5.fields[0].Value, _arg_5.fields[1]];
|
|
1620
1586
|
} else {
|
|
1621
|
-
throw new
|
|
1587
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a mapping")(ele) + " (Parameter 'value')");
|
|
1622
1588
|
}
|
|
1623
1589
|
}, filter((_arg_4) => {
|
|
1624
1590
|
if (_arg_4.tag === /* Mapping */
|
|
@@ -1635,11 +1601,11 @@ class Getter {
|
|
|
1635
1601
|
}, overflow);
|
|
1636
1602
|
return dict_1;
|
|
1637
1603
|
} else {
|
|
1638
|
-
throw new
|
|
1604
|
+
throw new Exception(toText(printf("%s: %A"))("Expected an object")(ele) + " (Parameter 'value')");
|
|
1639
1605
|
}
|
|
1640
1606
|
}
|
|
1641
1607
|
});
|
|
1642
|
-
this.overflow = (
|
|
1608
|
+
this.overflow = (this, {
|
|
1643
1609
|
FieldList(fieldNames_1) {
|
|
1644
1610
|
if (ele.tag === /* Object */
|
|
1645
1611
|
3) {
|
|
@@ -1648,7 +1614,7 @@ class Getter {
|
|
|
1648
1614
|
0) {
|
|
1649
1615
|
return [_arg_7.fields[0].Value, _arg_7.fields[1]];
|
|
1650
1616
|
} else {
|
|
1651
|
-
throw new
|
|
1617
|
+
throw new Exception(toText(printf("%s: %A"))("Expected a mapping")(ele) + " (Parameter 'value')");
|
|
1652
1618
|
}
|
|
1653
1619
|
}, filter((_arg_6) => {
|
|
1654
1620
|
if (_arg_6.tag === /* Mapping */
|
|
@@ -1665,7 +1631,7 @@ class Getter {
|
|
|
1665
1631
|
}, overflow_1);
|
|
1666
1632
|
return dict_2;
|
|
1667
1633
|
} else {
|
|
1668
|
-
throw new
|
|
1634
|
+
throw new Exception(toText(printf("%s: %A"))("Expected an object")(ele) + " (Parameter 'value')");
|
|
1669
1635
|
}
|
|
1670
1636
|
}
|
|
1671
1637
|
});
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { YAMLElement_Value, YAMLContent_create_Z1C3A29C9, YAMLElement_Sequence, YAMLElement_Object
|
|
2
|
-
import { int32ToString } from '../../../node_modules/@fable-org/fable-library-
|
|
3
|
-
import { toString } from '../../../node_modules/@fable-org/fable-library-
|
|
4
|
-
import { toString as toString$1 } from '../../../node_modules/@fable-org/fable-library-
|
|
5
|
-
import { ofSeq, map as map$1, ofArray } from '../../../node_modules/@fable-org/fable-library-
|
|
6
|
-
import { map } from '../../../node_modules/@fable-org/fable-library-
|
|
7
|
-
import { value } from '../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { YAMLElement_Value, YAMLContent_create_Z1C3A29C9, YAMLElement_Sequence, YAMLElement_Object$, YAMLElement_Comment$, YAMLElement, Config } from './YAMLiciousTypes.fs.js';
|
|
2
|
+
import { int32ToString } from '../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
3
|
+
import { toString } from '../../../node_modules/@fable-org/fable-library-ts/Types.js';
|
|
4
|
+
import { toString as toString$1 } from '../../../node_modules/@fable-org/fable-library-ts/Date.js';
|
|
5
|
+
import { ofSeq, map as map$1, ofArray } from '../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
6
|
+
import { map } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
7
|
+
import { value } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
8
8
|
import { write as write$1 } from './Writer.fs.js';
|
|
9
9
|
|
|
10
10
|
function int(value) {
|
|
@@ -41,12 +41,12 @@ function list(encoder, l) {
|
|
|
41
41
|
return YAMLElement_Sequence(map$1(encoder, l));
|
|
42
42
|
}
|
|
43
43
|
function values(encoder, values_1) {
|
|
44
|
-
return YAMLElement_Object(ofSeq(map((arg_1) => YAMLElement_Value(YAMLContent_create_Z1C3A29C9(encoder(arg_1))), values_1)));
|
|
44
|
+
return YAMLElement_Object$(ofSeq(map((arg_1) => YAMLElement_Value(YAMLContent_create_Z1C3A29C9(encoder(arg_1))), values_1)));
|
|
45
45
|
}
|
|
46
46
|
function comment(string_1) {
|
|
47
|
-
return YAMLElement_Comment(string_1);
|
|
47
|
+
return YAMLElement_Comment$(string_1);
|
|
48
48
|
}
|
|
49
|
-
const nil =
|
|
49
|
+
const nil = YAMLElement.Nil;
|
|
50
50
|
function tryInclude(name, encoder, value$1) {
|
|
51
51
|
return [name, value$1 != null ? encoder(value(value$1)) : nil];
|
|
52
52
|
}
|