@nfdi4plants/arctrl 3.1.1 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ts/index.d.ts +3 -0
- package/dist/ts/index.d.ts.map +1 -1
- package/dist/ts/index.js +3 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Array.js +1296 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Async.js +174 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/AsyncBuilder.js +190 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/BigInt.js +479 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Boolean.js +23 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Char.js +172 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Choice.js +187 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/CollectionUtil.js +148 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Date.js +843 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/DateOffset.js +247 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Decimal.js +279 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Double.js +53 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/FSharp.Collections.js +48 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/FSharp.Core.js +148 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Global.js +31 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Guid.js +140 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Int32.js +165 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/List.js +1282 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Long.js +40 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Map.js +1298 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MapUtil.js +126 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MutableMap.js +323 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MutableSet.js +225 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Native.js +14 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Numeric.js +63 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Option.js +81 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Random.js +174 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Range.js +47 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Reflection.js +471 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/RegExp.js +137 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Result.js +169 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Seq.js +1398 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Seq2.js +110 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Set.js +1670 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/String.js +660 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.Collections.Generic.js +328 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.Text.js +201 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.js +292 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/TimeSpan.js +170 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Types.js +199 -0
- package/dist/ts/node_modules/@fable-org/{fable-library-js → fable-library-ts}/Unicode.13.0.0.js +0 -2
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Uri.js +154 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Util.js +747 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/lib/big.js +1052 -0
- package/dist/ts/ts/ARC.d.ts +122 -62
- package/dist/ts/ts/ARC.d.ts.map +1 -1
- package/dist/ts/ts/ARC.js +142 -86
- package/dist/ts/ts/CWL/CWLKnownFieldNames.d.ts +32 -0
- package/dist/ts/ts/CWL/CWLKnownFieldNames.d.ts.map +1 -0
- package/dist/ts/ts/CWL/CWLKnownFieldNames.js +95 -0
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts +12 -12
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts.map +1 -1
- package/dist/ts/ts/CWL/CWLProcessingUnit.js +7 -7
- package/dist/ts/ts/CWL/CWLTypes.d.ts +62 -19
- package/dist/ts/ts/CWL/CWLTypes.d.ts.map +1 -1
- package/dist/ts/ts/CWL/CWLTypes.js +241 -60
- package/dist/ts/ts/CWL/Decode.d.ts +24 -25
- package/dist/ts/ts/CWL/Decode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Decode.js +454 -314
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts +4 -4
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts.map +1 -1
- package/dist/ts/ts/CWL/DynamicObjHelpers.js +10 -10
- package/dist/ts/ts/CWL/Encode.d.ts +26 -17
- package/dist/ts/ts/CWL/Encode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Encode.js +451 -411
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts +31 -7
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ExpressionToolDescription.js +29 -8
- package/dist/ts/ts/CWL/HashHelpers.d.ts +4 -3
- package/dist/ts/ts/CWL/HashHelpers.d.ts.map +1 -1
- package/dist/ts/ts/CWL/HashHelpers.js +9 -9
- package/dist/ts/ts/CWL/Inputs.d.ts +8 -8
- package/dist/ts/ts/CWL/Inputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Inputs.js +9 -13
- package/dist/ts/ts/CWL/OperationDescription.d.ts +7 -7
- package/dist/ts/ts/CWL/OperationDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/OperationDescription.js +5 -8
- package/dist/ts/ts/CWL/Outputs.d.ts +10 -10
- package/dist/ts/ts/CWL/Outputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Outputs.js +36 -17
- package/dist/ts/ts/CWL/ParameterReference.d.ts +13 -10
- package/dist/ts/ts/CWL/ParameterReference.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ParameterReference.js +29 -21
- package/dist/ts/ts/CWL/ParameterValue.d.ts +57 -0
- package/dist/ts/ts/CWL/ParameterValue.d.ts.map +1 -0
- package/dist/ts/ts/CWL/ParameterValue.js +321 -0
- package/dist/ts/ts/CWL/Requirements.d.ts +51 -23
- package/dist/ts/ts/CWL/Requirements.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Requirements.js +89 -81
- package/dist/ts/ts/CWL/ToolDescription.d.ts +33 -9
- package/dist/ts/ts/CWL/ToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ToolDescription.js +29 -8
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts +29 -8
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowDescription.js +26 -8
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts +45 -21
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowSteps.js +70 -34
- package/dist/ts/ts/CWLRunResolver.d.ts +11 -11
- package/dist/ts/ts/CWLRunResolver.d.ts.map +1 -1
- package/dist/ts/ts/CWLRunResolver.js +16 -16
- package/dist/ts/ts/Contract/ARC.d.ts +2 -2
- package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ARC.js +1 -1
- package/dist/ts/ts/Contract/ArcAssay.d.ts +7 -6
- package/dist/ts/ts/Contract/ArcAssay.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcAssay.js +15 -10
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts +5 -4
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcInvestigation.js +12 -7
- package/dist/ts/ts/Contract/ArcRun.d.ts +11 -10
- package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcRun.js +24 -21
- package/dist/ts/ts/Contract/ArcStudy.d.ts +8 -7
- package/dist/ts/ts/Contract/ArcStudy.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcStudy.js +15 -10
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts +9 -8
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcWorkflow.js +20 -16
- package/dist/ts/ts/Contract/Contract.d.ts +38 -8
- package/dist/ts/ts/Contract/Contract.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Contract.js +46 -7
- package/dist/ts/ts/Contract/Datamap.d.ts +5 -4
- package/dist/ts/ts/Contract/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Datamap.js +45 -32
- package/dist/ts/ts/Contract/Git.d.ts +6 -5
- package/dist/ts/ts/Contract/Git.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Git.js +4 -4
- package/dist/ts/ts/Contract/License.d.ts +4 -3
- package/dist/ts/ts/Contract/License.d.ts.map +1 -1
- package/dist/ts/ts/Contract/License.js +5 -5
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts +5 -4
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ValidationPackagesConfig.js +6 -7
- package/dist/ts/ts/ContractIO/ContractIO.d.ts +5 -4
- package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -1
- package/dist/ts/ts/ContractIO/ContractIO.js +45 -43
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts +13 -12
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts.map +1 -1
- package/dist/ts/ts/ContractIO/FileSystemHelper.js +6 -6
- package/dist/ts/ts/Conversion/Assay.d.ts +5 -5
- package/dist/ts/ts/Conversion/Assay.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Assay.js +35 -16
- package/dist/ts/ts/Conversion/Basic.d.ts +16 -13
- package/dist/ts/ts/Conversion/Basic.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Basic.js +69 -38
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts +3 -3
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/ColumnIndex.js +8 -8
- package/dist/ts/ts/Conversion/Datamap.d.ts +4 -4
- package/dist/ts/ts/Conversion/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Datamap.js +2 -2
- package/dist/ts/ts/Conversion/DateTime.d.ts +1 -1
- package/dist/ts/ts/Conversion/DateTime.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/DateTime.js +7 -6
- package/dist/ts/ts/Conversion/Investigation.d.ts +5 -5
- package/dist/ts/ts/Conversion/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Investigation.js +17 -10
- package/dist/ts/ts/Conversion/Person.d.ts +4 -4
- package/dist/ts/ts/Conversion/Person.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Person.js +39 -23
- package/dist/ts/ts/Conversion/Process.d.ts +14 -11
- package/dist/ts/ts/Conversion/Process.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Process.js +57 -46
- package/dist/ts/ts/Conversion/Run.d.ts +12 -17
- package/dist/ts/ts/Conversion/Run.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Run.js +450 -68
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts +4 -4
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/ScholarlyArticle.js +25 -17
- package/dist/ts/ts/Conversion/Study.d.ts +5 -5
- package/dist/ts/ts/Conversion/Study.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Study.js +27 -13
- package/dist/ts/ts/Conversion/Table.d.ts +10 -11
- package/dist/ts/ts/Conversion/Table.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Table.js +17 -24
- package/dist/ts/ts/Conversion/Workflow.d.ts +17 -17
- package/dist/ts/ts/Conversion/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Workflow.js +78 -40
- package/dist/ts/ts/Conversion.d.ts +10 -11
- package/dist/ts/ts/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Conversion.js +2 -2
- package/dist/ts/ts/Core/ArcTypes.d.ts +331 -76
- package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -1
- package/dist/ts/ts/Core/ArcTypes.js +567 -299
- package/dist/ts/ts/Core/Comment.d.ts +5 -5
- package/dist/ts/ts/Core/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Core/Comment.js +17 -10
- package/dist/ts/ts/Core/CommentList.d.ts +3 -3
- package/dist/ts/ts/Core/CommentList.d.ts.map +1 -1
- package/dist/ts/ts/Core/CommentList.js +8 -8
- package/dist/ts/ts/Core/Conversion.d.ts +25 -25
- package/dist/ts/ts/Core/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Core/Conversion.js +102 -102
- package/dist/ts/ts/Core/Data.d.ts +6 -6
- package/dist/ts/ts/Core/Data.d.ts.map +1 -1
- package/dist/ts/ts/Core/Data.js +11 -10
- package/dist/ts/ts/Core/DataContext.d.ts +10 -10
- package/dist/ts/ts/Core/DataContext.d.ts.map +1 -1
- package/dist/ts/ts/Core/DataContext.js +3 -3
- package/dist/ts/ts/Core/DataFile.d.ts +9 -6
- package/dist/ts/ts/Core/DataFile.d.ts.map +1 -1
- package/dist/ts/ts/Core/DataFile.js +20 -9
- package/dist/ts/ts/Core/Datamap.d.ts +17 -16
- package/dist/ts/ts/Core/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Core/Datamap.js +16 -14
- package/dist/ts/ts/Core/Helper/Collections.d.ts +4 -4
- package/dist/ts/ts/Core/Helper/Collections.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Collections.js +30 -37
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts +15 -4
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/HashCodes.js +33 -14
- package/dist/ts/ts/Core/Helper/Identifier.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Identifier.js +10 -8
- package/dist/ts/ts/Core/Helper/ORCID.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/ORCID.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/ORCID.js +4 -3
- package/dist/ts/ts/Core/Helper/Regex.d.ts +7 -7
- package/dist/ts/ts/Core/Helper/Regex.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Regex.js +20 -12
- package/dist/ts/ts/Core/Helper/SemVer.d.ts +5 -5
- package/dist/ts/ts/Core/Helper/SemVer.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/SemVer.js +7 -7
- package/dist/ts/ts/Core/Helper/Url.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/Url.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Url.js +8 -7
- package/dist/ts/ts/Core/IdentifierSetters.d.ts +2 -2
- package/dist/ts/ts/Core/IdentifierSetters.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts +23 -5
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologyAnnotation.js +116 -45
- package/dist/ts/ts/Core/OntologySourceReference.d.ts +4 -4
- package/dist/ts/ts/Core/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologySourceReference.js +4 -4
- package/dist/ts/ts/Core/Person.d.ts +19 -9
- package/dist/ts/ts/Core/Person.d.ts.map +1 -1
- package/dist/ts/ts/Core/Person.js +27 -11
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts +11 -11
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ColumnIndex.js +68 -29
- package/dist/ts/ts/Core/Process/Component.d.ts +16 -16
- package/dist/ts/ts/Core/Process/Component.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Component.js +38 -25
- package/dist/ts/ts/Core/Process/Factor.d.ts +53 -8
- package/dist/ts/ts/Core/Process/Factor.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Factor.js +62 -11
- package/dist/ts/ts/Core/Process/FactorValue.d.ts +15 -15
- package/dist/ts/ts/Core/Process/FactorValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/FactorValue.js +39 -47
- package/dist/ts/ts/Core/Process/Material.d.ts +9 -9
- package/dist/ts/ts/Core/Process/Material.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Material.js +5 -5
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts +7 -7
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialAttribute.js +17 -8
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts +15 -15
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +45 -48
- package/dist/ts/ts/Core/Process/MaterialType.d.ts +7 -5
- package/dist/ts/ts/Core/Process/MaterialType.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialType.js +14 -7
- package/dist/ts/ts/Core/Process/Process.d.ts +22 -22
- package/dist/ts/ts/Core/Process/Process.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Process.js +42 -26
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts +14 -14
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessInput.js +15 -10
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts +14 -14
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessOutput.js +15 -10
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts +30 -15
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessParameterValue.js +56 -46
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts +16 -16
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessSequence.js +33 -26
- package/dist/ts/ts/Core/Process/Protocol.d.ts +9 -9
- package/dist/ts/ts/Core/Process/Protocol.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Protocol.js +21 -13
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts +28 -7
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProtocolParameter.js +33 -8
- package/dist/ts/ts/Core/Process/Sample.d.ts +10 -10
- package/dist/ts/ts/Core/Process/Sample.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Sample.js +5 -5
- package/dist/ts/ts/Core/Process/Source.d.ts +8 -8
- package/dist/ts/ts/Core/Process/Source.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Source.js +5 -5
- package/dist/ts/ts/Core/Publication.d.ts +5 -5
- package/dist/ts/ts/Core/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Core/Publication.js +18 -11
- package/dist/ts/ts/Core/ScalarValue.d.ts +41 -0
- package/dist/ts/ts/Core/ScalarValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/{Value.js → ScalarValue.js} +56 -29
- package/dist/ts/ts/Core/Table/ArcTable.d.ts +134 -15
- package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTable.js +204 -68
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts +15 -10
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTableAux.js +75 -71
- package/dist/ts/ts/Core/Table/ArcTables.d.ts +12 -9
- package/dist/ts/ts/Core/Table/ArcTables.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTables.js +42 -38
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts +46 -7
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeCell.js +52 -12
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts +20 -7
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeColumn.js +17 -4
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts +116 -22
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeHeader.js +219 -65
- package/dist/ts/ts/Core/Template.d.ts +15 -9
- package/dist/ts/ts/Core/Template.d.ts.map +1 -1
- package/dist/ts/ts/Core/Template.js +19 -11
- package/dist/ts/ts/Core/Templates.d.ts +24 -5
- package/dist/ts/ts/Core/Templates.d.ts.map +1 -1
- package/dist/ts/ts/Core/Templates.js +26 -8
- package/dist/ts/ts/Core/URI.d.ts.map +1 -1
- package/dist/ts/ts/CrossAsync.d.ts +6 -5
- package/dist/ts/ts/CrossAsync.d.ts.map +1 -1
- package/dist/ts/ts/CrossAsync.js +6 -6
- package/dist/ts/ts/FileSystem/Commit.d.ts +3 -3
- package/dist/ts/ts/FileSystem/Commit.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Commit.js +2 -2
- package/dist/ts/ts/FileSystem/FileSystem.d.ts +9 -9
- package/dist/ts/ts/FileSystem/FileSystem.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystem.js +4 -4
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +35 -16
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystemTree.js +36 -18
- package/dist/ts/ts/FileSystem/Path.d.ts +9 -8
- package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Path.js +13 -13
- package/dist/ts/ts/Json/Assay.d.ts +9 -9
- package/dist/ts/ts/Json/Assay.d.ts.map +1 -1
- package/dist/ts/ts/Json/Assay.js +86 -50
- package/dist/ts/ts/Json/Comment.d.ts +4 -4
- package/dist/ts/ts/Json/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Json/Comment.js +38 -17
- package/dist/ts/ts/Json/Data.d.ts +7 -7
- package/dist/ts/ts/Json/Data.d.ts.map +1 -1
- package/dist/ts/ts/Json/Data.js +48 -20
- package/dist/ts/ts/Json/DataFile.d.ts +2 -2
- package/dist/ts/ts/Json/DataFile.d.ts.map +1 -1
- package/dist/ts/ts/Json/DataFile.js +10 -9
- package/dist/ts/ts/Json/Datamap/DataContext.d.ts +2 -2
- package/dist/ts/ts/Json/Datamap/DataContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/Datamap/DataContext.js +14 -7
- package/dist/ts/ts/Json/Datamap/Datamap.d.ts +7 -7
- package/dist/ts/ts/Json/Datamap/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Json/Datamap/Datamap.js +4 -4
- package/dist/ts/ts/Json/Decode.d.ts +6 -6
- package/dist/ts/ts/Json/Decode.d.ts.map +1 -1
- package/dist/ts/ts/Json/Decode.js +32 -32
- package/dist/ts/ts/Json/Encode.d.ts +6 -5
- package/dist/ts/ts/Json/Encode.d.ts.map +1 -1
- package/dist/ts/ts/Json/Encode.js +28 -26
- package/dist/ts/ts/Json/IDTable.d.ts +2 -2
- package/dist/ts/ts/Json/IDTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/IDTable.js +2 -2
- package/dist/ts/ts/Json/Investigation.d.ts +9 -9
- package/dist/ts/ts/Json/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/Json/Investigation.js +68 -33
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts +6 -6
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Json/OntologyAnnotation.js +60 -25
- package/dist/ts/ts/Json/OntologySourceReference.d.ts +4 -4
- package/dist/ts/ts/Json/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Json/OntologySourceReference.js +36 -15
- package/dist/ts/ts/Json/Person.d.ts +5 -5
- package/dist/ts/ts/Json/Person.d.ts.map +1 -1
- package/dist/ts/ts/Json/Person.js +57 -29
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts +5 -5
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/AssayMaterials.js +12 -5
- package/dist/ts/ts/Json/Process/Component.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Component.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Component.js +25 -11
- package/dist/ts/ts/Json/Process/Factor.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Factor.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Factor.js +17 -9
- package/dist/ts/ts/Json/Process/FactorValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/FactorValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/FactorValue.js +14 -7
- package/dist/ts/ts/Json/Process/Material.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Material.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Material.js +31 -31
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts +4 -4
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialAttribute.js +16 -8
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +14 -7
- package/dist/ts/ts/Json/Process/MaterialType.d.ts +2 -2
- package/dist/ts/ts/Json/Process/MaterialType.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialType.js +9 -8
- package/dist/ts/ts/Json/Process/Process.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Process.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Process.js +28 -14
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessInput.js +2 -2
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessOutput.js +2 -2
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessParameterValue.js +16 -8
- package/dist/ts/ts/Json/Process/Protocol.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Protocol.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Protocol.js +30 -16
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProtocolParameter.js +16 -8
- package/dist/ts/ts/Json/Process/Sample.d.ts +7 -7
- package/dist/ts/ts/Json/Process/Sample.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Sample.js +37 -60
- package/dist/ts/ts/Json/Process/Source.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Source.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Source.js +34 -57
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts +5 -5
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/StudyMaterials.js +12 -5
- package/dist/ts/ts/Json/Process/Value.d.ts +6 -6
- package/dist/ts/ts/Json/Process/Value.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Value.js +4 -4
- package/dist/ts/ts/Json/PropertyValue.d.ts +6 -6
- package/dist/ts/ts/Json/PropertyValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/PropertyValue.js +31 -22
- package/dist/ts/ts/Json/Publication.d.ts +5 -5
- package/dist/ts/ts/Json/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Json/Publication.js +36 -15
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDContext.js +17 -16
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDGraph.js +21 -14
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDNode.js +94 -29
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDRef.js +4 -4
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDValue.js +8 -7
- package/dist/ts/ts/Json/Run.d.ts +7 -7
- package/dist/ts/ts/Json/Run.d.ts.map +1 -1
- package/dist/ts/ts/Json/Run.js +28 -14
- package/dist/ts/ts/Json/StringTable.d.ts +7 -7
- package/dist/ts/ts/Json/StringTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/StringTable.js +10 -10
- package/dist/ts/ts/Json/Study.d.ts +9 -9
- package/dist/ts/ts/Json/Study.d.ts.map +1 -1
- package/dist/ts/ts/Json/Study.js +79 -45
- package/dist/ts/ts/Json/Table/ArcTable.d.ts +10 -10
- package/dist/ts/ts/Json/Table/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/ArcTable.js +28 -28
- package/dist/ts/ts/Json/Table/CellTable.d.ts +9 -9
- package/dist/ts/ts/Json/Table/CellTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CellTable.js +8 -8
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts +6 -6
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CompositeCell.js +7 -7
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts +2 -2
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CompositeHeader.js +7 -7
- package/dist/ts/ts/Json/Table/IOType.d.ts +2 -2
- package/dist/ts/ts/Json/Table/IOType.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/IOType.js +2 -2
- package/dist/ts/ts/Json/Table/OATable.d.ts +8 -8
- package/dist/ts/ts/Json/Table/OATable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/OATable.js +8 -8
- package/dist/ts/ts/Json/Table/Templates.d.ts +9 -9
- package/dist/ts/ts/Json/Table/Templates.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/Templates.js +11 -11
- package/dist/ts/ts/Json/Workflow.d.ts +7 -7
- package/dist/ts/ts/Json/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Json/Workflow.js +28 -14
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts +1 -1
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/property_value_context.js +1 -1
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +3 -3
- package/dist/ts/ts/Json.d.ts +9 -9
- package/dist/ts/ts/Json.d.ts.map +1 -1
- package/dist/ts/ts/Json.js +2 -2
- package/dist/ts/ts/JsonIO/Assay.d.ts +6 -7
- package/dist/ts/ts/JsonIO/Assay.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Assay.js +13 -12
- package/dist/ts/ts/JsonIO/Datamap.d.ts +3 -4
- package/dist/ts/ts/JsonIO/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Datamap.js +7 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts +5 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Investigation.js +11 -10
- package/dist/ts/ts/JsonIO/LDObject.d.ts +5 -6
- package/dist/ts/ts/JsonIO/LDObject.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/LDObject.js +14 -13
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts +5 -6
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/OntologyAnnotation.js +11 -10
- package/dist/ts/ts/JsonIO/Person.d.ts +5 -6
- package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Person.js +11 -10
- package/dist/ts/ts/JsonIO/Run.d.ts +4 -5
- package/dist/ts/ts/JsonIO/Run.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Run.js +9 -8
- package/dist/ts/ts/JsonIO/Study.d.ts +7 -8
- package/dist/ts/ts/JsonIO/Study.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Study.js +13 -12
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts +6 -6
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Table/Compression.js +4 -4
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts +10 -10
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Table/Templates.js +13 -12
- package/dist/ts/ts/JsonIO/Workflow.d.ts +4 -5
- package/dist/ts/ts/JsonIO/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Workflow.js +9 -8
- package/dist/ts/ts/License.d.ts +12 -6
- package/dist/ts/ts/License.d.ts.map +1 -1
- package/dist/ts/ts/License.js +49 -14
- package/dist/ts/ts/ROCrate/Helper.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/Helper.js +1 -1
- package/dist/ts/ts/ROCrate/LDContext.d.ts +15 -4
- package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDContext.js +27 -16
- package/dist/ts/ts/ROCrate/LDObject.d.ts +19 -10
- package/dist/ts/ts/ROCrate/LDObject.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDObject.js +76 -38
- package/dist/ts/ts/ROCrate/LDTypes/Comment.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Comment.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Comment.js +11 -9
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts +5 -5
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.js +18 -16
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.js +22 -16
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.js +15 -13
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.js +25 -23
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.js +48 -45
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.js +11 -9
- package/dist/ts/ts/ROCrate/LDTypes/File.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/File.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/File.js +15 -13
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.js +18 -16
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.js +16 -14
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.js +17 -16
- package/dist/ts/ts/ROCrate/LDTypes/Organization.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Organization.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Organization.js +8 -6
- package/dist/ts/ts/ROCrate/LDTypes/Person.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Person.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Person.js +28 -25
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.js +17 -16
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts +10 -6
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.js +104 -61
- package/dist/ts/ts/ROCrate/LDTypes/Sample.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Sample.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Sample.js +14 -13
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.js +12 -10
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts +5 -5
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.js +11 -10
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts +3 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.js +4 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts +3 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.js +4 -3
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +1 -1
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/ROCrateContext.js +2 -2
- package/dist/ts/ts/ROCrateIO.d.ts +13 -8
- package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
- package/dist/ts/ts/ROCrateIO.js +16 -13
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +13 -12
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +15 -15
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +9 -8
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +23 -12
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +17 -18
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +18 -17
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +37 -29
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts +6 -6
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcAssay.js +16 -15
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +21 -21
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcRun.js +9 -9
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcStudy.js +13 -12
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +9 -9
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts +8 -8
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/CollectionAux.js +11 -11
- package/dist/ts/ts/Spreadsheet/Datamap.d.ts +2 -2
- package/dist/ts/ts/Spreadsheet/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Datamap.js +6 -5
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.d.ts +4 -4
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.js +14 -10
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.js +30 -21
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.js +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +12 -9
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +11 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +8 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts +9 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +9 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +11 -9
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Run.js +13 -10
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +55 -49
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Study.js +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +8 -8
- package/dist/ts/ts/Template.Web.d.ts +10 -6
- package/dist/ts/ts/Template.Web.d.ts.map +1 -1
- package/dist/ts/ts/Template.Web.js +4 -4
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts +6 -3
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts.map +1 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackage.js +10 -7
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts +7 -4
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +29 -24
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts.map +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.Node.js +4 -4
- package/dist/ts/ts/WebRequest/WebRequest.d.ts +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.d.ts.map +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.js +3 -3
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts +6 -6
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/Adapters.js +13 -13
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts +7 -4
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/BuildOptions.js +2 -2
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts +25 -19
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/Builder.js +82 -68
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts +52 -32
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/GraphTypes.js +90 -30
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts +5 -5
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.js +4 -4
- package/dist/ts/ts/Xlsx.d.ts +5 -5
- package/dist/ts/ts/Xlsx.d.ts.map +1 -1
- package/dist/ts/ts/Xlsx.js +8 -6
- package/dist/ts/ts/Yaml/Encode.d.ts +2 -2
- package/dist/ts/ts/Yaml/Encode.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/Encode.js +2 -2
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts +4 -5
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackage.js +12 -12
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +4 -5
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +12 -12
- package/dist/ts/ts/Yaml.d.ts +3 -3
- package/dist/ts/ts/Yaml.d.ts.map +1 -1
- package/dist/ts/ts/Yaml.js +3 -8
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/DynObj.fs.js +6 -6
- package/dist/ts/ts/fable_modules/DynamicObj.8.0.0/DynamicObj.fs.js +515 -0
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/FableJS.fs.js +23 -8
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/HashCodes.fs.js +11 -11
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/PropertyHelper.fs.js +2 -2
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/ReflectionUtils.fs.js +16 -6
- package/dist/ts/ts/fable_modules/{Fable.Fetch.2.6.0 → Fable.Fetch.2.7.0}/Fetch.fs.js +11 -11
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +8 -7
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{Fable.SimpleHttp.3.5.0 → Fable.SimpleHttp.3.6.0}/Http.fs.js +21 -21
- package/dist/ts/ts/fable_modules/{Fable.SimpleHttp.3.5.0 → Fable.SimpleHttp.3.6.0}/Types.fs.js +52 -19
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Cells/FsCell.fs.js +255 -126
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Cells/FsCellsCollection.fs.js +135 -18
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/CellBuilder.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Expression.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/RowBuilder.fs.js +5 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Types.fs.js +16 -16
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsAddress.fs.js +41 -17
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsColumn.fs.js +70 -7
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsRow.fs.js +76 -8
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsWorkbook.fs.js +77 -11
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsWorksheet.fs.js +237 -32
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/HashCodes.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Cell.fs.js +10 -10
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Column.fs.js +6 -6
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Row.fs.js +6 -6
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Table.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Value.fs.js +11 -11
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Workbook.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Worksheet.fs.js +8 -8
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRange.fs.js +6 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeAddress.fs.js +11 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeBase.fs.js +18 -13
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeColumn.fs.js +9 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeRow.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Tables/FsTable.fs.js +185 -26
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Tables/FsTableField.fs.js +48 -5
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.1/Cell.fs.js +65 -0
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/FsExtensions.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Json.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Table.fs.js +15 -14
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Workbook.fs.js +4 -4
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Worksheet.fs.js +4 -4
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Xlsx.fs.js +2 -2
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Decode.fs.js +265 -159
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Encode.fs.js +94 -36
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Types.fs.js +16 -22
- package/dist/ts/ts/fable_modules/{Thoth.Json.JavaScript.0.4.1 → Thoth.Json.JavaScript.0.5.0}/Decode.fs.js +9 -7
- package/dist/ts/ts/fable_modules/{Thoth.Json.JavaScript.0.4.1 → Thoth.Json.JavaScript.0.5.0}/Encode.fs.js +2 -3
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Decode.fs.js +98 -104
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Encode.fs.js +10 -10
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Escapes.fs.js +41 -34
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Persil.fs.js +48 -48
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Preprocessing.fs.js +14 -14
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Reader.fs.js +129 -112
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Regex.fs.js +23 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/RegexActivePatterns.fs.js +14 -14
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Syntax.fs.js +77 -56
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Writer.fs.js +34 -31
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/YAMLiciousTypes.fs.js +74 -32
- package/package.json +3 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +0 -1244
- package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +0 -146
- package/dist/ts/node_modules/@fable-org/fable-library-js/AsyncBuilder.js +0 -186
- package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +0 -286
- package/dist/ts/node_modules/@fable-org/fable-library-js/Boolean.js +0 -24
- package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +0 -172
- package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +0 -187
- package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +0 -185
- package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +0 -750
- package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +0 -271
- package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +0 -214
- package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +0 -49
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +0 -30
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +0 -72
- package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +0 -10
- package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +0 -145
- package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +0 -137
- package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +0 -1276
- package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +0 -49
- package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +0 -1399
- package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +0 -130
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +0 -330
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +0 -236
- package/dist/ts/node_modules/@fable-org/fable-library-js/Native.js +0 -10
- package/dist/ts/node_modules/@fable-org/fable-library-js/Numeric.js +0 -73
- package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +0 -99
- package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +0 -48
- package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +0 -465
- package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +0 -133
- package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +0 -168
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +0 -1381
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +0 -114
- package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +0 -1792
- package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +0 -557
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Collections.Generic.js +0 -320
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +0 -165
- package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +0 -8
- package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +0 -180
- package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +0 -211
- package/dist/ts/node_modules/@fable-org/fable-library-js/Uri.js +0 -160
- package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +0 -771
- package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +0 -825
- package/dist/ts/ts/Core/Value.d.ts +0 -41
- package/dist/ts/ts/Core/Value.d.ts.map +0 -1
- package/dist/ts/ts/fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js +0 -367
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +0 -68
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.11/Regex.fs.js +0 -21
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.11/StringBuffer.fs.js +0 -60
- /package/dist/ts/ts/fable_modules/{Fable.Exceljs.1.6.0 → Fable.Exceljs.2.0.0_565fc3e-alpha.1}/ExcelJs.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Interop/JsInterop.fs.js +0 -0
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { getEnumerator, disposeSafe, comparePrimitives, equals, safeHash } from '../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { getEnumerator, disposeSafe, Exception, comparePrimitives, equals, safeHash } from '../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
2
2
|
import { CompositeCell, CompositeCell_Term, CompositeCell_FreeText } from './CompositeCell.js';
|
|
3
3
|
import { SanityChecks_validateCellColumns, ArcTableValues, SanityChecks_validateArcTableValues, Unchecked_tryGetCellAt, SanityChecks_validateColumnIndex, SanityChecks_validateRowIndex, Unchecked_getCellWithDefault, Unchecked_setCellAt, tryFindDuplicateUnique, SanityChecks_validateColumn, Unchecked_addColumn, Unchecked_addColumnFill, Unchecked_removeHeader, Unchecked_removeColumnCells, tryFindDuplicateUniqueInArray, Unchecked_removeColumnCells_withIndexChange, getEmptyCellForHeader, Unchecked_moveColumnTo, Unchecked_addRow, Unchecked_addEmptyRow, Unchecked_addRows, Unchecked_removeRowCells_withIndexChange, Unchecked_alignByHeaders } from './ArcTableAux.js';
|
|
4
|
-
import {
|
|
5
|
-
import { defaultArg, unwrap, value
|
|
6
|
-
import { toArray, delay, map, removeAt, iterate as iterate$1, tryFindIndex, length, collect, singleton, choose, indexed, toList, mapIndexed, append as append$1 } from '../../../node_modules/@fable-org/fable-library-
|
|
4
|
+
import { CompositeHeader } from './CompositeHeader.js';
|
|
5
|
+
import { defaultArg, unwrap, value } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
6
|
+
import { toArray, delay, map, removeAt, iterate as iterate$1, tryFindIndex, length, collect, singleton, choose, indexed, toList, mapIndexed, append as append$1 } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
7
7
|
import { CompositeColumn } from './CompositeColumn.js';
|
|
8
|
-
import { rangeDouble } from '../../../node_modules/@fable-org/fable-library-
|
|
8
|
+
import { rangeDouble } from '../../../node_modules/@fable-org/fable-library-ts/Range.js';
|
|
9
9
|
import { ResizeArray_map, ResizeArray_iteri, ResizeArray_singleton, ResizeArray_iter, ResizeArray_init, ResizeArray_choose, ResizeArray_mapi, ResizeArray_groupBy, ResizeArray_indexed } from '../Helper/Collections.js';
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import { getItemFromDict } from '../../../node_modules/@fable-org/fable-library-
|
|
15
|
-
import { toFail, printf, join } from '../../../node_modules/@fable-org/fable-library-
|
|
10
|
+
import { item, setItem, sortDescending } from '../../../node_modules/@fable-org/fable-library-ts/Array.js';
|
|
11
|
+
import { isEmpty, iterate, append } from '../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
12
|
+
import { StringBuilder_$ctor, StringBuilder__AppendLine_Z721C83C5 } from '../../../node_modules/@fable-org/fable-library-ts/System.Text.js';
|
|
13
|
+
import { toString } from '../../../node_modules/@fable-org/fable-library-ts/Types.js';
|
|
14
|
+
import { getItemFromDict } from '../../../node_modules/@fable-org/fable-library-ts/MapUtil.js';
|
|
15
|
+
import { toFail, printf, join, concat } from '../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
16
16
|
import { boxHashArray, boxHashSeq } from '../Helper/HashCodes.js';
|
|
17
|
-
import { class_type } from '../../../node_modules/@fable-org/fable-library-
|
|
17
|
+
import { class_type } from '../../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
18
18
|
|
|
19
19
|
class ArcTable {
|
|
20
20
|
constructor(name, headers, columns) {
|
|
21
21
|
const headers_1 = defaultArg(headers, []);
|
|
22
22
|
const columns_1 = defaultArg(columns, []);
|
|
23
|
-
|
|
23
|
+
SanityChecks_validateCellColumns(headers_1, columns_1, true);
|
|
24
24
|
this._values = ArcTableValues.fromCellColumns(columns_1);
|
|
25
25
|
this._name = name;
|
|
26
26
|
this._headers = headers_1;
|
|
@@ -65,6 +65,9 @@ class ArcTable {
|
|
|
65
65
|
static create(name, headers, values) {
|
|
66
66
|
return new ArcTable(name, headers, values);
|
|
67
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* Create ArcTable with empty 'ValueHeader' and 'Values'
|
|
70
|
+
*/
|
|
68
71
|
static init(name) {
|
|
69
72
|
return new ArcTable(name, [], []);
|
|
70
73
|
}
|
|
@@ -81,11 +84,21 @@ class ArcTable {
|
|
|
81
84
|
t.AddRows(rows);
|
|
82
85
|
return t;
|
|
83
86
|
}
|
|
87
|
+
/**
|
|
88
|
+
* Will return true or false if table is valid.
|
|
89
|
+
*
|
|
90
|
+
* Set `raiseException` = `true` to raise exception.
|
|
91
|
+
*/
|
|
84
92
|
Validate(raiseException) {
|
|
85
93
|
const this$ = this;
|
|
86
94
|
const raiseException_1 = defaultArg(raiseException, true);
|
|
87
95
|
return SanityChecks_validateArcTableValues(this$.Headers, this$.Values, raiseException_1);
|
|
88
96
|
}
|
|
97
|
+
/**
|
|
98
|
+
* Will return true or false if table is valid.
|
|
99
|
+
*
|
|
100
|
+
* Set `raiseException` = `true` to raise exception.
|
|
101
|
+
*/
|
|
89
102
|
static validate(raiseException) {
|
|
90
103
|
return (table) => table.Validate(unwrap(raiseException));
|
|
91
104
|
}
|
|
@@ -94,7 +107,7 @@ class ArcTable {
|
|
|
94
107
|
return this$.Headers.length | 0;
|
|
95
108
|
}
|
|
96
109
|
static columnCount(table) {
|
|
97
|
-
return table.ColumnCount;
|
|
110
|
+
return table.ColumnCount | 0;
|
|
98
111
|
}
|
|
99
112
|
get RowCount() {
|
|
100
113
|
const this$ = this;
|
|
@@ -105,7 +118,7 @@ class ArcTable {
|
|
|
105
118
|
this$._values.RowCount = newRowCount | 0;
|
|
106
119
|
}
|
|
107
120
|
static rowCount(table) {
|
|
108
|
-
return table.RowCount;
|
|
121
|
+
return table.RowCount | 0;
|
|
109
122
|
}
|
|
110
123
|
static setRowCount(newRowCount) {
|
|
111
124
|
return (table) => {
|
|
@@ -124,6 +137,9 @@ class ArcTable {
|
|
|
124
137
|
const nextValues = this$._values.Copy();
|
|
125
138
|
return ArcTable.fromArcTableValues(this$.Name, nextHeaders, nextValues);
|
|
126
139
|
}
|
|
140
|
+
/**
|
|
141
|
+
* Returns a cell at given position if it exists, else returns None.
|
|
142
|
+
*/
|
|
127
143
|
TryGetCellAt(column, row) {
|
|
128
144
|
const this$ = this;
|
|
129
145
|
return Unchecked_tryGetCellAt(column, row, this$._values);
|
|
@@ -166,15 +182,21 @@ class ArcTable {
|
|
|
166
182
|
return copy;
|
|
167
183
|
};
|
|
168
184
|
}
|
|
185
|
+
/**
|
|
186
|
+
* Update an already existing cell in the table. Fails if cell is outside the column AND row bounds of the table
|
|
187
|
+
*/
|
|
169
188
|
UpdateCellAt(columnIndex, rowIndex, c, skipValidation) {
|
|
170
189
|
const this$ = this;
|
|
171
190
|
if (!defaultArg(skipValidation, false)) {
|
|
172
191
|
SanityChecks_validateColumnIndex(columnIndex, this$.ColumnCount, false);
|
|
173
192
|
SanityChecks_validateRowIndex(rowIndex, this$.RowCount, false);
|
|
174
|
-
c.ValidateAgainstHeader(this$.Headers
|
|
193
|
+
c.ValidateAgainstHeader(item(columnIndex, this$.Headers), true);
|
|
175
194
|
}
|
|
176
195
|
Unchecked_setCellAt(columnIndex, rowIndex, c, this$._values);
|
|
177
196
|
}
|
|
197
|
+
/**
|
|
198
|
+
* Update an already existing cell in the table. Fails if cell is outside the columnd AND row bounds of the table
|
|
199
|
+
*/
|
|
178
200
|
static updateCellAt(columnIndex, rowIndex, cell, skipValidation) {
|
|
179
201
|
return (table) => {
|
|
180
202
|
const newTable = table.Copy();
|
|
@@ -182,14 +204,20 @@ class ArcTable {
|
|
|
182
204
|
return newTable;
|
|
183
205
|
};
|
|
184
206
|
}
|
|
207
|
+
/**
|
|
208
|
+
* Update an already existing cell in the table, or adds a new cell if the row boundary is exceeded. Fails if cell is outside the column bounds of the table
|
|
209
|
+
*/
|
|
185
210
|
SetCellAt(columnIndex, rowIndex, c, skipValidation) {
|
|
186
211
|
const this$ = this;
|
|
187
212
|
if (!defaultArg(skipValidation, false)) {
|
|
188
213
|
SanityChecks_validateColumnIndex(columnIndex, this$.ColumnCount, false);
|
|
189
|
-
c.ValidateAgainstHeader(this$.Headers
|
|
214
|
+
c.ValidateAgainstHeader(item(columnIndex, this$.Headers), true);
|
|
190
215
|
}
|
|
191
216
|
Unchecked_setCellAt(columnIndex, rowIndex, c, this$._values);
|
|
192
217
|
}
|
|
218
|
+
/**
|
|
219
|
+
* Update an already existing cell in the table, or adds a new cell if the row boundary is exceeded. Fails if cell is outside the column bounds of the table
|
|
220
|
+
*/
|
|
193
221
|
static setCellAt(columnIndex, rowIndex, cell, skipValidation) {
|
|
194
222
|
return (table) => {
|
|
195
223
|
const newTable = table.Copy();
|
|
@@ -197,6 +225,11 @@ class ArcTable {
|
|
|
197
225
|
return newTable;
|
|
198
226
|
};
|
|
199
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* Update cells in a column by a function.
|
|
230
|
+
*
|
|
231
|
+
* Inputs of the function are columnIndex, rowIndex, and the current cell.
|
|
232
|
+
*/
|
|
200
233
|
UpdateCellsBy(f, skipValidation) {
|
|
201
234
|
const this$ = this;
|
|
202
235
|
const skipValidation_1 = defaultArg(skipValidation, false);
|
|
@@ -209,7 +242,7 @@ class ArcTable {
|
|
|
209
242
|
const ci = patternInput[0] | 0;
|
|
210
243
|
const newCell = f(ci, ri, kv[1]);
|
|
211
244
|
if (!skipValidation_1) {
|
|
212
|
-
newCell.ValidateAgainstHeader(this$.Headers
|
|
245
|
+
newCell.ValidateAgainstHeader(item(ci, this$.Headers), true);
|
|
213
246
|
}
|
|
214
247
|
Unchecked_setCellAt(ci, ri, newCell, this$._values);
|
|
215
248
|
}
|
|
@@ -217,12 +250,22 @@ class ArcTable {
|
|
|
217
250
|
disposeSafe(enumerator);
|
|
218
251
|
}
|
|
219
252
|
}
|
|
253
|
+
/**
|
|
254
|
+
* Update cells in a column by a function.
|
|
255
|
+
*
|
|
256
|
+
* Inputs of the function are columnIndex, rowIndex, and the current cell.static member updateCellBy(f : int -> int -> CompositeCell -> CompositeCell) =
|
|
257
|
+
*/
|
|
220
258
|
static updateCellsBy(f, skipValidation) {
|
|
221
259
|
return (table) => {
|
|
222
260
|
const newTable = table.Copy();
|
|
223
261
|
newTable.UpdateCellsBy(f, unwrap(skipValidation));
|
|
224
262
|
};
|
|
225
263
|
}
|
|
264
|
+
/**
|
|
265
|
+
* Update cells in a column by a function.
|
|
266
|
+
*
|
|
267
|
+
* Inputs of the function are columnIndex, rowIndex, and the current cell.
|
|
268
|
+
*/
|
|
226
269
|
UpdateCellBy(columnIndex, rowIndex, f, skipValidation) {
|
|
227
270
|
const this$ = this;
|
|
228
271
|
const skipValidation_1 = defaultArg(skipValidation, false);
|
|
@@ -232,10 +275,15 @@ class ArcTable {
|
|
|
232
275
|
}
|
|
233
276
|
const newCell = f(this$.GetCellAt(columnIndex, rowIndex));
|
|
234
277
|
if (!skipValidation_1) {
|
|
235
|
-
newCell.ValidateAgainstHeader(this$.Headers
|
|
278
|
+
newCell.ValidateAgainstHeader(item(columnIndex, this$.Headers), true);
|
|
236
279
|
}
|
|
237
280
|
Unchecked_setCellAt(columnIndex, rowIndex, newCell, this$._values);
|
|
238
281
|
}
|
|
282
|
+
/**
|
|
283
|
+
* Update cells in a column by a function.
|
|
284
|
+
*
|
|
285
|
+
* Inputs of the function are columnIndex, rowIndex, and the current cell.static member updateCellBy(f : int -> int -> CompositeCell -> CompositeCell) =
|
|
286
|
+
*/
|
|
239
287
|
static updateCellBy(columnIndex, rowIndex, f, skipValidation) {
|
|
240
288
|
return (table) => {
|
|
241
289
|
const newTable = table.Copy();
|
|
@@ -249,12 +297,11 @@ class ArcTable {
|
|
|
249
297
|
const header = newHeader;
|
|
250
298
|
const matchValue = tryFindDuplicateUnique(header, removeAt(index, this$.Headers));
|
|
251
299
|
if (matchValue != null) {
|
|
252
|
-
throw new
|
|
300
|
+
throw new Exception(`Invalid input. Tried setting unique header \`${header}\`, but header of same type already exists at index ${value(matchValue)}.`);
|
|
253
301
|
}
|
|
254
302
|
const c = new CompositeColumn(newHeader, this$.GetColumn(index).Cells);
|
|
255
303
|
if (c.Validate()) {
|
|
256
|
-
|
|
257
|
-
setHeader = this$.Headers[index] = newHeader;
|
|
304
|
+
setItem(this$.Headers, index, newHeader);
|
|
258
305
|
} else if (forceConvertCells_1) {
|
|
259
306
|
const convertedCells = newHeader.IsTermColumn ? ResizeArray_map((c_1) => {
|
|
260
307
|
if (c_1.isFreeText) {
|
|
@@ -265,7 +312,7 @@ class ArcTable {
|
|
|
265
312
|
}, c.Cells) : ResizeArray_map((c_2) => c_2.ToFreeTextCell(), c.Cells);
|
|
266
313
|
this$.UpdateColumn(index, newHeader, convertedCells);
|
|
267
314
|
} else {
|
|
268
|
-
throw new
|
|
315
|
+
throw new Exception("Tried setting header for column with invalid type of cells. Set `forceConvertCells` flag to automatically convert cells into valid CompositeCell type.");
|
|
269
316
|
}
|
|
270
317
|
}
|
|
271
318
|
static updateHeader(index, header) {
|
|
@@ -291,6 +338,9 @@ class ArcTable {
|
|
|
291
338
|
return newTable;
|
|
292
339
|
};
|
|
293
340
|
}
|
|
341
|
+
/**
|
|
342
|
+
* Adds a new column which fills in the single given value for the length of the table.
|
|
343
|
+
*/
|
|
294
344
|
AddColumnFill(header, cell, index, forceReplace) {
|
|
295
345
|
const this$ = this;
|
|
296
346
|
const index_1 = defaultArg(index, this$.ColumnCount) | 0;
|
|
@@ -306,6 +356,9 @@ class ArcTable {
|
|
|
306
356
|
return newTable;
|
|
307
357
|
};
|
|
308
358
|
}
|
|
359
|
+
/**
|
|
360
|
+
* Replaces the header and cells of a column at given index.
|
|
361
|
+
*/
|
|
309
362
|
UpdateColumn(columnIndex, header, cells) {
|
|
310
363
|
const this$ = this;
|
|
311
364
|
SanityChecks_validateColumnIndex(columnIndex, this$.ColumnCount, false);
|
|
@@ -314,7 +367,7 @@ class ArcTable {
|
|
|
314
367
|
const header_1 = column.Header;
|
|
315
368
|
const matchValue = tryFindDuplicateUnique(header_1, removeAt(columnIndex, this$.Headers));
|
|
316
369
|
if (matchValue != null) {
|
|
317
|
-
throw new
|
|
370
|
+
throw new Exception(`Invalid input. Tried setting unique header \`${header_1}\`, but header of same type already exists at index ${value(matchValue)}.`);
|
|
318
371
|
}
|
|
319
372
|
Unchecked_removeHeader(columnIndex, this$.Headers);
|
|
320
373
|
Unchecked_removeColumnCells(columnIndex, this$._values);
|
|
@@ -323,6 +376,9 @@ class ArcTable {
|
|
|
323
376
|
Unchecked_setCellAt(columnIndex, rowIndex, v, this$._values);
|
|
324
377
|
}, column.Cells);
|
|
325
378
|
}
|
|
379
|
+
/**
|
|
380
|
+
* Replaces the header and cells of a column at given index.
|
|
381
|
+
*/
|
|
326
382
|
static updateColumn(columnIndex, header, cells) {
|
|
327
383
|
return (table) => {
|
|
328
384
|
const newTable = table.Copy();
|
|
@@ -364,7 +420,7 @@ class ArcTable {
|
|
|
364
420
|
iterate((x_1) => {
|
|
365
421
|
StringBuilder__AppendLine_Z721C83C5(sb, `Duplicate \`${x_1.HeaderType}\` at index ${x_1.Index1} and ${x_1.Index2}.`);
|
|
366
422
|
}, duplicates);
|
|
367
|
-
throw new
|
|
423
|
+
throw new Exception(toString(sb));
|
|
368
424
|
}
|
|
369
425
|
iterate$1((x_2) => {
|
|
370
426
|
SanityChecks_validateColumn(x_2);
|
|
@@ -404,7 +460,7 @@ class ArcTable {
|
|
|
404
460
|
SanityChecks_validateColumnIndex(index, this$.ColumnCount, false);
|
|
405
461
|
});
|
|
406
462
|
const indexArr_1 = sortDescending(indexArr, {
|
|
407
|
-
Compare: comparePrimitives
|
|
463
|
+
Compare: (x, y) => comparePrimitives(x, y) | 0
|
|
408
464
|
});
|
|
409
465
|
indexArr_1.forEach((index_1) => {
|
|
410
466
|
this$.RemoveColumn(index_1);
|
|
@@ -417,11 +473,14 @@ class ArcTable {
|
|
|
417
473
|
return newTable;
|
|
418
474
|
};
|
|
419
475
|
}
|
|
476
|
+
/**
|
|
477
|
+
* Return a CompositeColumn for the given column index. Fills the column with empty cells for rows that do not have a value.
|
|
478
|
+
*/
|
|
420
479
|
GetColumn(columnIndex, failOnMissingCell) {
|
|
421
480
|
const this$ = this;
|
|
422
481
|
const failOnMissingCell_1 = defaultArg(failOnMissingCell, false);
|
|
423
482
|
SanityChecks_validateColumnIndex(columnIndex, this$.ColumnCount, false);
|
|
424
|
-
const h = this$.Headers
|
|
483
|
+
const h = item(columnIndex, this$.Headers);
|
|
425
484
|
const cells = [];
|
|
426
485
|
if (this$.RowCount !== 0) {
|
|
427
486
|
const col = getItemFromDict(this$._values.Columns, columnIndex);
|
|
@@ -448,23 +507,49 @@ class ArcTable {
|
|
|
448
507
|
}
|
|
449
508
|
return CompositeColumn.create(h, cells);
|
|
450
509
|
}
|
|
510
|
+
/**
|
|
511
|
+
* Return a CompositeColumn for the given column index. Fills the column with empty cells for rows that do not have a value.
|
|
512
|
+
*/
|
|
451
513
|
static getColumn(index, failOnMissingCell) {
|
|
452
514
|
return (table) => table.GetColumn(index, unwrap(failOnMissingCell));
|
|
453
515
|
}
|
|
516
|
+
/**
|
|
517
|
+
* Returns a column by its header.
|
|
518
|
+
* If the header is not found, returns None. Fills the column with empty cells for rows that do not have a value.
|
|
519
|
+
*/
|
|
454
520
|
TryGetColumnByHeader(header, failOnMissingCell) {
|
|
521
|
+
let i = void 0;
|
|
455
522
|
const this$ = this;
|
|
456
|
-
|
|
523
|
+
const option_1 = tryFindIndex((x) => equals(x, header), this$.Headers);
|
|
524
|
+
return option_1 != null ? (i = value(option_1) | 0, this$.GetColumn(i, unwrap(failOnMissingCell))) : void 0;
|
|
457
525
|
}
|
|
526
|
+
/**
|
|
527
|
+
* Returns a column by its header.
|
|
528
|
+
* If the header is not found, returns None. Fills the column with empty cells for rows that do not have a value.
|
|
529
|
+
*/
|
|
458
530
|
static tryGetColumnByHeader(header, failOnMissingCell) {
|
|
459
531
|
return (table) => table.TryGetColumnByHeader(header, unwrap(failOnMissingCell));
|
|
460
532
|
}
|
|
533
|
+
/**
|
|
534
|
+
* Returns the first column for that the header predicate returns true.
|
|
535
|
+
* If the header is not found, returns None. Fills the column with empty cells for rows that do not have a value.
|
|
536
|
+
*/
|
|
461
537
|
TryGetColumnByHeaderBy(headerPredicate, failOnMissingCell) {
|
|
538
|
+
let i = void 0;
|
|
462
539
|
const this$ = this;
|
|
463
|
-
|
|
540
|
+
const option_1 = tryFindIndex(headerPredicate, this$.Headers);
|
|
541
|
+
return option_1 != null ? (i = value(option_1) | 0, this$.GetColumn(i, unwrap(failOnMissingCell))) : void 0;
|
|
464
542
|
}
|
|
543
|
+
/**
|
|
544
|
+
* Returns the first column for that the header predicate returns true.
|
|
545
|
+
* If the header is not found, returns None. Fills the column with empty cells for rows that do not have a value.
|
|
546
|
+
*/
|
|
465
547
|
static tryGetColumnByHeaderBy(headerPredicate, failOnMissingCell) {
|
|
466
548
|
return (table) => table.TryGetColumnByHeaderBy(headerPredicate, unwrap(failOnMissingCell));
|
|
467
549
|
}
|
|
550
|
+
/**
|
|
551
|
+
* Returns a column by its header. Fills the column with empty cells for rows that do not have a value.
|
|
552
|
+
*/
|
|
468
553
|
GetColumnByHeader(header, failOnMissingCell) {
|
|
469
554
|
const this$ = this;
|
|
470
555
|
const matchValue = this$.TryGetColumnByHeader(header, unwrap(failOnMissingCell));
|
|
@@ -479,8 +564,10 @@ class ArcTable {
|
|
|
479
564
|
return (table) => table.GetColumnByHeader(header, unwrap(failOnMissingCell));
|
|
480
565
|
}
|
|
481
566
|
TryGetInputColumn() {
|
|
567
|
+
let i = void 0;
|
|
482
568
|
const this$ = this;
|
|
483
|
-
|
|
569
|
+
const option_1 = tryFindIndex((x) => x.isInput, this$.Headers);
|
|
570
|
+
return option_1 != null ? (i = value(option_1) | 0, this$.GetColumn(i)) : void 0;
|
|
484
571
|
}
|
|
485
572
|
static tryGetInputColumn() {
|
|
486
573
|
return (table) => table.TryGetInputColumn();
|
|
@@ -499,8 +586,10 @@ class ArcTable {
|
|
|
499
586
|
return (table) => table.GetInputColumn();
|
|
500
587
|
}
|
|
501
588
|
TryGetOutputColumn() {
|
|
589
|
+
let i = void 0;
|
|
502
590
|
const this$ = this;
|
|
503
|
-
|
|
591
|
+
const option_1 = tryFindIndex((x) => x.isOutput, this$.Headers);
|
|
592
|
+
return option_1 != null ? (i = value(option_1) | 0, this$.GetColumn(i)) : void 0;
|
|
504
593
|
}
|
|
505
594
|
static tryGetOutputColumn() {
|
|
506
595
|
return (table) => table.TryGetOutputColumn();
|
|
@@ -546,14 +635,14 @@ class ArcTable {
|
|
|
546
635
|
const columnCount = this$.ColumnCount | 0;
|
|
547
636
|
const newCellsCount = length(newCells) | 0;
|
|
548
637
|
if (columnCount === 0) {
|
|
549
|
-
throw new
|
|
638
|
+
throw new Exception("Table contains no columns! Cannot add row to empty table!");
|
|
550
639
|
} else if (newCellsCount !== columnCount) {
|
|
551
|
-
throw new
|
|
640
|
+
throw new Exception(`Cannot add a new row with ${newCellsCount} cells, as the table has ${columnCount} columns.`);
|
|
552
641
|
}
|
|
553
642
|
for (let columnIndex = 0; columnIndex <= this$.ColumnCount - 1; columnIndex++) {
|
|
554
|
-
const h = this$.Headers
|
|
555
|
-
|
|
556
|
-
cells_1
|
|
643
|
+
const h = item(columnIndex, this$.Headers);
|
|
644
|
+
CompositeColumn.create(h, [item(columnIndex, cells_1)]);
|
|
645
|
+
item(columnIndex, cells_1).ValidateAgainstHeader(h, true);
|
|
557
646
|
}
|
|
558
647
|
Unchecked_addRow(index_1, cells_1, this$.Headers, this$._values);
|
|
559
648
|
} else {
|
|
@@ -574,12 +663,12 @@ class ArcTable {
|
|
|
574
663
|
const columnCount = this$.RowCount | 0;
|
|
575
664
|
const newCellsCount = length(newCells) | 0;
|
|
576
665
|
if (columnCount === 0) {
|
|
577
|
-
throw new
|
|
666
|
+
throw new Exception("Table contains no columns! Cannot add row to empty table!");
|
|
578
667
|
} else if (newCellsCount !== columnCount) {
|
|
579
|
-
throw new
|
|
668
|
+
throw new Exception(`Cannot add a new row with ${newCellsCount} cells, as the table has ${columnCount} columns.`);
|
|
580
669
|
}
|
|
581
670
|
ResizeArray_iteri((i, cell) => {
|
|
582
|
-
const h = this$.Headers
|
|
671
|
+
const h = item(i, this$.Headers);
|
|
583
672
|
SanityChecks_validateColumn(CompositeColumn.create(h, ResizeArray_singleton(cell)));
|
|
584
673
|
}, cells);
|
|
585
674
|
ResizeArray_iteri((columnIndex, cell_1) => {
|
|
@@ -624,9 +713,9 @@ class ArcTable {
|
|
|
624
713
|
const columnCount = this$.ColumnCount | 0;
|
|
625
714
|
const newCellsCount = length(newCells) | 0;
|
|
626
715
|
if (columnCount === 0) {
|
|
627
|
-
throw new
|
|
716
|
+
throw new Exception("Table contains no columns! Cannot add row to empty table!");
|
|
628
717
|
} else if (newCellsCount !== columnCount) {
|
|
629
|
-
throw new
|
|
718
|
+
throw new Exception(`Cannot add a new row with ${newCellsCount} cells, as the table has ${columnCount} columns.`);
|
|
630
719
|
}
|
|
631
720
|
}, rows);
|
|
632
721
|
let enumerator = getEnumerator(rows);
|
|
@@ -634,8 +723,8 @@ class ArcTable {
|
|
|
634
723
|
while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
|
|
635
724
|
const row_1 = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
|
|
636
725
|
for (let columnIndex = 0; columnIndex <= this$.ColumnCount - 1; columnIndex++) {
|
|
637
|
-
const h = this$.Headers
|
|
638
|
-
row_1
|
|
726
|
+
const h = item(columnIndex, this$.Headers);
|
|
727
|
+
item(columnIndex, row_1).ValidateAgainstHeader(h, true);
|
|
639
728
|
}
|
|
640
729
|
}
|
|
641
730
|
} finally {
|
|
@@ -653,7 +742,7 @@ class ArcTable {
|
|
|
653
742
|
AddRowsEmpty(rowCount, index) {
|
|
654
743
|
const this$ = this;
|
|
655
744
|
let row;
|
|
656
|
-
const collection = toArray(delay(() => collect((columnIndex) => singleton(getEmptyCellForHeader(this$.Headers
|
|
745
|
+
const collection = toArray(delay(() => collect((columnIndex) => singleton(getEmptyCellForHeader(item(columnIndex, this$.Headers), Unchecked_tryGetCellAt(columnIndex, 0, this$._values))), rangeDouble(0, 1, this$.ColumnCount - 1))));
|
|
657
746
|
row = Array.from(collection);
|
|
658
747
|
const rows = ResizeArray_init(rowCount, (_arg) => row);
|
|
659
748
|
this$.AddRows(rows, unwrap(index));
|
|
@@ -683,7 +772,7 @@ class ArcTable {
|
|
|
683
772
|
SanityChecks_validateRowIndex(index, this$.RowCount, false);
|
|
684
773
|
});
|
|
685
774
|
const indexArr_1 = sortDescending(indexArr, {
|
|
686
|
-
Compare: comparePrimitives
|
|
775
|
+
Compare: (x, y) => comparePrimitives(x, y) | 0
|
|
687
776
|
});
|
|
688
777
|
indexArr_1.forEach((index_1) => {
|
|
689
778
|
this$.RemoveRow(index_1);
|
|
@@ -707,6 +796,9 @@ class ArcTable {
|
|
|
707
796
|
static getRow(index) {
|
|
708
797
|
return (table) => table.GetRow(index);
|
|
709
798
|
}
|
|
799
|
+
/**
|
|
800
|
+
* This function can be used to join two arc tables.
|
|
801
|
+
*/
|
|
710
802
|
Join(table, index, joinOptions, forceReplace) {
|
|
711
803
|
const this$ = this;
|
|
712
804
|
const joinOptions_1 = defaultArg(joinOptions, "headers");
|
|
@@ -732,7 +824,7 @@ class ArcTable {
|
|
|
732
824
|
iterate((x_1) => {
|
|
733
825
|
StringBuilder__AppendLine_Z721C83C5(sb, `Duplicate \`${x_1.HeaderType}\` at index ${x_1.Index1} and ${x_1.Index2}.`);
|
|
734
826
|
}, duplicates);
|
|
735
|
-
throw new
|
|
827
|
+
throw new Exception(toString(sb));
|
|
736
828
|
}
|
|
737
829
|
ResizeArray_iter((x_2) => {
|
|
738
830
|
SanityChecks_validateColumn(x_2);
|
|
@@ -754,52 +846,65 @@ class ArcTable {
|
|
|
754
846
|
}
|
|
755
847
|
AddProtocolTypeColumn(types, index, forceReplace) {
|
|
756
848
|
const this$ = this;
|
|
757
|
-
|
|
758
|
-
|
|
849
|
+
let cells;
|
|
850
|
+
const option_1 = types;
|
|
851
|
+
cells = option_1 != null ? ResizeArray_map(CompositeCell_Term, value(option_1)) : void 0;
|
|
852
|
+
this$.AddColumn(CompositeHeader.ProtocolType, unwrap(cells), unwrap(index), unwrap(forceReplace));
|
|
759
853
|
}
|
|
760
854
|
AddProtocolVersionColumn(versions, index, forceReplace) {
|
|
761
855
|
const this$ = this;
|
|
762
|
-
|
|
763
|
-
|
|
856
|
+
let cells;
|
|
857
|
+
const option_1 = versions;
|
|
858
|
+
cells = option_1 != null ? ResizeArray_map(CompositeCell_FreeText, value(option_1)) : void 0;
|
|
859
|
+
this$.AddColumn(CompositeHeader.ProtocolVersion, unwrap(cells), unwrap(index), unwrap(forceReplace));
|
|
764
860
|
}
|
|
765
861
|
AddProtocolUriColumn(uris, index, forceReplace) {
|
|
766
862
|
const this$ = this;
|
|
767
|
-
|
|
768
|
-
|
|
863
|
+
let cells;
|
|
864
|
+
const option_1 = uris;
|
|
865
|
+
cells = option_1 != null ? ResizeArray_map(CompositeCell_FreeText, value(option_1)) : void 0;
|
|
866
|
+
this$.AddColumn(CompositeHeader.ProtocolUri, unwrap(cells), unwrap(index), unwrap(forceReplace));
|
|
769
867
|
}
|
|
770
868
|
AddProtocolDescriptionColumn(descriptions, index, forceReplace) {
|
|
771
869
|
const this$ = this;
|
|
772
|
-
|
|
773
|
-
|
|
870
|
+
let cells;
|
|
871
|
+
const option_1 = descriptions;
|
|
872
|
+
cells = option_1 != null ? ResizeArray_map(CompositeCell_FreeText, value(option_1)) : void 0;
|
|
873
|
+
this$.AddColumn(CompositeHeader.ProtocolDescription, unwrap(cells), unwrap(index), unwrap(forceReplace));
|
|
774
874
|
}
|
|
775
875
|
AddProtocolNameColumn(names, index, forceReplace) {
|
|
776
876
|
const this$ = this;
|
|
777
|
-
|
|
778
|
-
|
|
877
|
+
let cells;
|
|
878
|
+
const option_1 = names;
|
|
879
|
+
cells = option_1 != null ? ResizeArray_map(CompositeCell_FreeText, value(option_1)) : void 0;
|
|
880
|
+
this$.AddColumn(CompositeHeader.ProtocolREF, unwrap(cells), unwrap(index), unwrap(forceReplace));
|
|
779
881
|
}
|
|
882
|
+
/**
|
|
883
|
+
* Get functions for the protocol columns
|
|
884
|
+
*/
|
|
780
885
|
GetProtocolTypeColumn() {
|
|
781
886
|
const this$ = this;
|
|
782
|
-
return this$.GetColumnByHeader(
|
|
887
|
+
return this$.GetColumnByHeader(CompositeHeader.ProtocolType);
|
|
783
888
|
}
|
|
784
889
|
GetProtocolVersionColumn() {
|
|
785
890
|
const this$ = this;
|
|
786
|
-
return this$.GetColumnByHeader(
|
|
891
|
+
return this$.GetColumnByHeader(CompositeHeader.ProtocolVersion);
|
|
787
892
|
}
|
|
788
893
|
GetProtocolUriColumn() {
|
|
789
894
|
const this$ = this;
|
|
790
|
-
return this$.GetColumnByHeader(
|
|
895
|
+
return this$.GetColumnByHeader(CompositeHeader.ProtocolUri);
|
|
791
896
|
}
|
|
792
897
|
GetProtocolDescriptionColumn() {
|
|
793
898
|
const this$ = this;
|
|
794
|
-
return this$.GetColumnByHeader(
|
|
899
|
+
return this$.GetColumnByHeader(CompositeHeader.ProtocolDescription);
|
|
795
900
|
}
|
|
796
901
|
GetProtocolNameColumn() {
|
|
797
902
|
const this$ = this;
|
|
798
|
-
return this$.GetColumnByHeader(
|
|
903
|
+
return this$.GetColumnByHeader(CompositeHeader.ProtocolREF);
|
|
799
904
|
}
|
|
800
905
|
TryGetProtocolNameColumn() {
|
|
801
906
|
const this$ = this;
|
|
802
|
-
return this$.TryGetColumnByHeader(
|
|
907
|
+
return this$.TryGetColumnByHeader(CompositeHeader.ProtocolREF);
|
|
803
908
|
}
|
|
804
909
|
GetComponentColumns() {
|
|
805
910
|
const this$ = this;
|
|
@@ -811,17 +916,27 @@ class ArcTable {
|
|
|
811
916
|
}
|
|
812
917
|
}, this$.Headers);
|
|
813
918
|
}
|
|
919
|
+
/**
|
|
920
|
+
* This will rescan the value map of the table, so that it is up to date with the current values.
|
|
921
|
+
* This is useful if you have changed the values of the table and want to update the value map.
|
|
922
|
+
*/
|
|
814
923
|
RescanValueMap() {
|
|
815
924
|
const this$ = this;
|
|
816
925
|
this$._values.RescanValueMap();
|
|
817
926
|
}
|
|
927
|
+
/**
|
|
928
|
+
* Splits the table rowWise into a collection of tables, so that each new table has only one value for the given column
|
|
929
|
+
*/
|
|
818
930
|
static SplitByColumnValues(columnIndex) {
|
|
819
931
|
return (table) => ResizeArray_mapi((i, indexGroup) => {
|
|
820
932
|
const headers = table.Headers;
|
|
821
933
|
const rows = ResizeArray_map((i_1) => table.GetRow(i_1, true), indexGroup);
|
|
822
934
|
return ArcTable.createFromRows(table.Name, headers, rows);
|
|
823
|
-
}, ResizeArray_map((tupledArg) => ResizeArray_map((tuple_1) => tuple_1[0], tupledArg[1]), ResizeArray_groupBy((tuple) => tuple[1], ResizeArray_indexed(table.GetColumn(columnIndex).Cells))));
|
|
935
|
+
}, ResizeArray_map((tupledArg) => ResizeArray_map((tuple_1) => tuple_1[0] | 0, tupledArg[1]), ResizeArray_groupBy((tuple) => tuple[1], ResizeArray_indexed(table.GetColumn(columnIndex).Cells))));
|
|
824
936
|
}
|
|
937
|
+
/**
|
|
938
|
+
* Splits the table rowWise into a collection of tables, so that each new table has only one value for the given column
|
|
939
|
+
*/
|
|
825
940
|
static SplitByColumnValuesByHeader(header) {
|
|
826
941
|
return (table) => {
|
|
827
942
|
const index = tryFindIndex((x) => equals(x, header), table.Headers);
|
|
@@ -833,9 +948,15 @@ class ArcTable {
|
|
|
833
948
|
}
|
|
834
949
|
};
|
|
835
950
|
}
|
|
836
|
-
|
|
837
|
-
|
|
951
|
+
/**
|
|
952
|
+
* Splits the table rowWise into a collection of tables, so that each new table has only one value for the ProtocolREF column
|
|
953
|
+
*/
|
|
954
|
+
static SplitByProtocolREF(table) {
|
|
955
|
+
return ArcTable.SplitByColumnValuesByHeader(CompositeHeader.ProtocolREF)(table);
|
|
838
956
|
}
|
|
957
|
+
/**
|
|
958
|
+
* This method is meant to update an ArcTable stored as a protocol in a study or investigation file with the information from an ArcTable actually stored as an annotation table
|
|
959
|
+
*/
|
|
839
960
|
static updateReferenceByAnnotationTable(refTable, annotationTable) {
|
|
840
961
|
const refTable_1 = refTable.Copy();
|
|
841
962
|
const annotationTable_1 = annotationTable.Copy();
|
|
@@ -859,26 +980,41 @@ class ArcTable {
|
|
|
859
980
|
}
|
|
860
981
|
return refTable_1;
|
|
861
982
|
}
|
|
983
|
+
/**
|
|
984
|
+
* Append the rows of another table to this one
|
|
985
|
+
*
|
|
986
|
+
* The headers of the other table will be aligned with the headers of this table
|
|
987
|
+
*
|
|
988
|
+
* The name of table 2 will be ignored
|
|
989
|
+
*/
|
|
862
990
|
static append(table1, table2) {
|
|
863
|
-
const getList = (t) => toList(delay(() => map((row) => toList(mapIndexed((i, c) => [t.Headers
|
|
991
|
+
const getList = (t) => toList(delay(() => map((row) => toList(mapIndexed((i, c) => [item(i, t.Headers), c], t.GetRow(row, true))), rangeDouble(0, 1, t.RowCount - 1))));
|
|
864
992
|
const patternInput = Unchecked_alignByHeaders(false, append(getList(table1), getList(table2)));
|
|
865
993
|
return ArcTable.fromArcTableValues(table1.Name, patternInput[0], patternInput[1]);
|
|
866
994
|
}
|
|
995
|
+
/**
|
|
996
|
+
* Pretty printer
|
|
997
|
+
*/
|
|
867
998
|
toString() {
|
|
868
999
|
const this$ = this;
|
|
869
1000
|
const rowCount = this$.RowCount | 0;
|
|
870
|
-
return join("\n", toList(delay(() => append$1(singleton(
|
|
1001
|
+
return join("\n", toList(delay(() => append$1(singleton(concat("Table: ", this$.Name)), delay(() => append$1(singleton("-------------"), delay(() => append$1(singleton(join(" | ", map(toString, this$.Headers))), delay(() => rowCount > 50 ? append$1(map((rowI) => join(" | ", map(toString, this$.GetRow(rowI))), rangeDouble(0, 1, 19)), delay(() => append$1(singleton("..."), delay(() => map((rowI_1) => join(" | ", map(toString, this$.GetRow(rowI_1))), rangeDouble(rowCount - 20, 1, rowCount - 1)))))) : rowCount === 0 ? singleton("No rows") : map((rowI_2) => join(" | ", map(toString, this$.GetRow(rowI_2))), rangeDouble(0, 1, rowCount - 1)))))))))));
|
|
871
1002
|
}
|
|
872
1003
|
StructurallyEquals(other) {
|
|
873
1004
|
const this$ = this;
|
|
874
1005
|
return safeHash(this$) === safeHash(other);
|
|
875
1006
|
}
|
|
1007
|
+
/**
|
|
1008
|
+
* Use this function to check if this ArcTable and the input ArcTable refer to the same object.
|
|
1009
|
+
*
|
|
1010
|
+
* If true, updating one will update the other due to mutability.
|
|
1011
|
+
*/
|
|
876
1012
|
ReferenceEquals(other) {
|
|
877
1013
|
const this$ = this;
|
|
878
1014
|
return this$ === other;
|
|
879
1015
|
}
|
|
880
1016
|
Equals(other) {
|
|
881
|
-
let table;
|
|
1017
|
+
let table = void 0;
|
|
882
1018
|
const this$ = this;
|
|
883
1019
|
return other instanceof ArcTable && (table = other, this$.StructurallyEquals(table));
|
|
884
1020
|
}
|