@nfdi4plants/arctrl 3.0.0-beta.5 → 3.0.0-beta.6
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/node_modules/@fable-org/fable-library-js/Array.js +894 -4
- package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +121 -3
- package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +279 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +101 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +187 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +156 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +183 -7
- package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +217 -5
- package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +154 -5
- package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +20 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +30 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +68 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +6 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +98 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +18 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +601 -5
- package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +10 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +760 -16
- package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +26 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +18 -8
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +36 -4
- package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +35 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +26 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +355 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +21 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +133 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +543 -8
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +53 -4
- package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +673 -41
- package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +197 -4
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +128 -3
- package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +8 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +180 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +20 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +406 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +2 -2
- package/dist/ts/ts/ARC.d.ts +12 -5
- package/dist/ts/ts/ARC.d.ts.map +1 -1
- package/dist/ts/ts/ARC.js +172 -93
- package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ARC.js +8 -1
- package/dist/ts/ts/Contract/ArcAssay.js +14 -5
- package/dist/ts/ts/Contract/ArcInvestigation.js +10 -1
- package/dist/ts/ts/Contract/ArcRun.js +19 -6
- package/dist/ts/ts/Contract/ArcStudy.js +19 -6
- package/dist/ts/ts/Contract/ArcWorkflow.js +19 -6
- package/dist/ts/ts/Contract/Contract.js +42 -1
- package/dist/ts/ts/Contract/Datamap.js +61 -17
- package/dist/ts/ts/Contract/Git.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Git.js +22 -6
- package/dist/ts/ts/Contract/License.d.ts +5 -0
- package/dist/ts/ts/Contract/License.d.ts.map +1 -0
- package/dist/ts/ts/Contract/License.js +34 -0
- package/dist/ts/ts/Contract/ValidationPackagesConfig.js +31 -6
- package/dist/ts/ts/ContractIO/ContractIO.js +5 -5
- package/dist/ts/ts/ContractIO/FileSystemHelper.js +16 -4
- package/dist/ts/ts/Conversion.js +321 -48
- package/dist/ts/ts/Core/ArcTypes.js +216 -15
- package/dist/ts/ts/Core/Comment.js +11 -1
- package/dist/ts/ts/Core/CommentList.js +77 -2
- package/dist/ts/ts/Core/Conversion.js +123 -43
- package/dist/ts/ts/Core/Data.js +9 -2
- package/dist/ts/ts/Core/DataContext.js +19 -4
- package/dist/ts/ts/Core/DataFile.js +38 -1
- package/dist/ts/ts/Core/DataMap.js +111 -5
- package/dist/ts/ts/Core/Helper/Collections.js +106 -5
- package/dist/ts/ts/Core/Helper/HashCodes.js +4 -4
- package/dist/ts/ts/Core/Helper/Identifier.js +100 -2
- package/dist/ts/ts/Core/Helper/Regex.js +134 -2
- package/dist/ts/ts/Core/Helper/SemVer.js +23 -2
- package/dist/ts/ts/Core/IdentifierSetters.js +27 -3
- package/dist/ts/ts/Core/OntologyAnnotation.js +4 -1
- package/dist/ts/ts/Core/OntologySourceReference.js +8 -1
- package/dist/ts/ts/Core/Person.js +8 -1
- package/dist/ts/ts/Core/Process/ColumnIndex.js +121 -4
- package/dist/ts/ts/Core/Process/Component.js +37 -4
- package/dist/ts/ts/Core/Process/Factor.js +9 -4
- package/dist/ts/ts/Core/Process/FactorValue.js +61 -4
- package/dist/ts/ts/Core/Process/Material.js +14 -4
- package/dist/ts/ts/Core/Process/MaterialAttribute.js +41 -3
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +67 -4
- package/dist/ts/ts/Core/Process/MaterialType.js +15 -1
- package/dist/ts/ts/Core/Process/Process.js +150 -7
- package/dist/ts/ts/Core/Process/ProcessInput.js +48 -8
- package/dist/ts/ts/Core/Process/ProcessOutput.js +44 -7
- package/dist/ts/ts/Core/Process/ProcessParameterValue.js +10 -5
- package/dist/ts/ts/Core/Process/ProcessSequence.js +127 -6
- package/dist/ts/ts/Core/Process/Protocol.js +78 -4
- package/dist/ts/ts/Core/Process/ProtocolParameter.js +6 -2
- package/dist/ts/ts/Core/Process/Sample.js +21 -3
- package/dist/ts/ts/Core/Process/Source.js +13 -3
- package/dist/ts/ts/Core/Publication.js +8 -1
- package/dist/ts/ts/Core/Table/ArcTable.js +34 -25
- package/dist/ts/ts/Core/Table/ArcTableAux.js +150 -23
- package/dist/ts/ts/Core/Table/ArcTables.js +24 -15
- package/dist/ts/ts/Core/Table/CompositeCell.js +7 -3
- package/dist/ts/ts/Core/Table/CompositeColumn.js +8 -4
- package/dist/ts/ts/Core/Table/CompositeHeader.js +18 -15
- package/dist/ts/ts/Core/Template.js +12 -2
- package/dist/ts/ts/Core/Templates.js +8 -4
- package/dist/ts/ts/Core/Value.js +7 -3
- package/dist/ts/ts/CrossAsync.js +11 -1
- package/dist/ts/ts/FileSystem/Commit.js +18 -0
- package/dist/ts/ts/FileSystem/FileSystem.js +8 -3
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +1 -0
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystemTree.js +20 -13
- package/dist/ts/ts/FileSystem/Path.d.ts +2 -0
- package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Path.js +17 -3
- package/dist/ts/ts/Json/Assay.js +26 -26
- package/dist/ts/ts/Json/Comment.js +10 -10
- package/dist/ts/ts/Json/Data.js +6 -6
- package/dist/ts/ts/Json/DataMap/DataContext.js +4 -4
- package/dist/ts/ts/Json/DataMap/DataMap.js +2 -2
- package/dist/ts/ts/Json/Decode.js +14 -9
- package/dist/ts/ts/Json/Encode.js +43 -11
- package/dist/ts/ts/Json/Investigation.js +40 -22
- package/dist/ts/ts/Json/OntologyAnnotation.js +5 -5
- package/dist/ts/ts/Json/OntologySourceReference.js +2 -2
- package/dist/ts/ts/Json/Person.js +26 -26
- package/dist/ts/ts/Json/Process/Component.js +9 -6
- package/dist/ts/ts/Json/Process/Factor.js +3 -3
- package/dist/ts/ts/Json/Process/FactorValue.js +8 -8
- package/dist/ts/ts/Json/Process/Material.js +9 -9
- package/dist/ts/ts/Json/Process/MaterialAttribute.js +1 -1
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +8 -8
- package/dist/ts/ts/Json/Process/Process.js +12 -12
- package/dist/ts/ts/Json/Process/ProcessInput.js +4 -4
- package/dist/ts/ts/Json/Process/ProcessOutput.js +3 -3
- package/dist/ts/ts/Json/Process/ProcessParameterValue.js +10 -7
- package/dist/ts/ts/Json/Process/Protocol.js +12 -12
- package/dist/ts/ts/Json/Process/ProtocolParameter.js +3 -3
- package/dist/ts/ts/Json/Process/Sample.js +14 -14
- package/dist/ts/ts/Json/Process/Source.js +9 -9
- package/dist/ts/ts/Json/Process/Value.js +1 -1
- package/dist/ts/ts/Json/PropertyValue.js +1 -1
- package/dist/ts/ts/Json/Publication.js +6 -6
- package/dist/ts/ts/Json/ROCrate/LDContext.js +1 -0
- package/dist/ts/ts/Json/ROCrate/LDGraph.js +3 -3
- package/dist/ts/ts/Json/ROCrate/LDNode.js +19 -19
- package/dist/ts/ts/Json/Run.js +7 -7
- package/dist/ts/ts/Json/StringTable.js +1 -1
- package/dist/ts/ts/Json/Study.js +32 -32
- package/dist/ts/ts/Json/Table/ArcTable.js +29 -29
- package/dist/ts/ts/Json/Table/CellTable.js +6 -6
- package/dist/ts/ts/Json/Table/CompositeCell.js +4 -4
- package/dist/ts/ts/Json/Table/CompositeHeader.js +2 -2
- package/dist/ts/ts/Json/Table/IOType.js +1 -1
- package/dist/ts/ts/Json/Table/OATable.js +7 -7
- package/dist/ts/ts/Json/Table/Templates.js +92 -6
- package/dist/ts/ts/Json/Workflow.js +11 -11
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +27 -1
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +17 -1
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +19 -1
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +27 -1
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +20 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +18 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +20 -1
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +16 -1
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +25 -1
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +24 -1
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +23 -1
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +20 -1
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +19 -1
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +19 -1
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +35 -1
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +61 -0
- package/dist/ts/ts/Json.d.ts +13 -1
- package/dist/ts/ts/Json.d.ts.map +1 -1
- package/dist/ts/ts/Json.js +89 -2
- package/dist/ts/ts/JsonIO/Assay.js +15 -3
- package/dist/ts/ts/JsonIO/Investigation.js +15 -3
- package/dist/ts/ts/JsonIO/LDObject.js +17 -3
- package/dist/ts/ts/JsonIO/OntologyAnnotation.js +12 -2
- package/dist/ts/ts/JsonIO/Person.d.ts +16 -0
- package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Person.js +67 -0
- package/dist/ts/ts/JsonIO/Run.js +9 -3
- package/dist/ts/ts/JsonIO/Study.js +15 -3
- package/dist/ts/ts/JsonIO/Table/Compression.js +3 -3
- package/dist/ts/ts/JsonIO/Table/Templates.js +60 -5
- package/dist/ts/ts/JsonIO/Workflow.js +9 -3
- package/dist/ts/ts/License.d.ts +39 -0
- package/dist/ts/ts/License.d.ts.map +1 -0
- package/dist/ts/ts/License.js +123 -0
- package/dist/ts/ts/ROCrate/Generic/Comment.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts +69 -0
- package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/CreativeWork.js +450 -0
- package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts +1 -0
- package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/Generic/Dataset.js +27 -1
- package/dist/ts/ts/ROCrate/Generic/DefinedTerm.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/File.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/LabProcess.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/LabProtocol.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/Organization.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/Person.js +7 -2
- package/dist/ts/ts/ROCrate/Generic/PostalAddress.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/PropertyValue.js +19 -15
- package/dist/ts/ts/ROCrate/Generic/Sample.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.js +5 -1
- package/dist/ts/ts/ROCrate/LDContext.js +15 -6
- package/dist/ts/ts/ROCrate/LDObject.js +53 -17
- package/dist/ts/ts/ROCrateIO.d.ts +9 -3
- package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
- package/dist/ts/ts/ROCrateIO.js +67 -14
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +18 -15
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +5 -4
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +40 -17
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +4 -4
- package/dist/ts/ts/Spreadsheet/ArcAssay.js +30 -15
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +32 -18
- package/dist/ts/ts/Spreadsheet/ArcRun.js +23 -8
- package/dist/ts/ts/Spreadsheet/ArcStudy.js +22 -7
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +23 -8
- package/dist/ts/ts/Spreadsheet/CollectionAux.js +75 -5
- package/dist/ts/ts/Spreadsheet/DataMap.js +1 -1
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.js +4 -4
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.js +8 -8
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.js +4 -4
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +2 -2
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +6 -3
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +9 -3
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +6 -4
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +7 -5
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +10 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +5 -5
- package/dist/ts/ts/Spreadsheet/Metadata/Run.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +246 -10
- package/dist/ts/ts/Spreadsheet/Metadata/Study.js +19 -13
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +5 -5
- package/dist/ts/ts/Template.Web.js +5 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackage.js +8 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +10 -3
- package/dist/ts/ts/WebRequest/WebRequest.Node.js +1 -0
- package/dist/ts/ts/Xlsx.js +41 -1
- package/dist/ts/ts/Yaml/ValidationPackage.js +18 -2
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +5 -2
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +27 -4
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +14 -3
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +30 -4
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +5 -1
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +65 -2
- package/dist/ts/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +257 -1
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +71 -1
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +11 -1
- package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +188 -11
- package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +80 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCell.fs.js +63 -4
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCellsCollection.fs.js +17 -7
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/CellBuilder.fs.js +198 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Expression.fs.js +46 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/RowBuilder.fs.js +131 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Types.fs.js +307 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsAddress.fs.js +38 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsColumn.fs.js +11 -4
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsRow.fs.js +12 -5
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorkbook.fs.js +9 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorksheet.fs.js +14 -7
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/HashCodes.fs.js +31 -1
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Cell.fs.js +65 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Column.fs.js +38 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Row.fs.js +38 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Table.fs.js +34 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Value.fs.js +49 -3
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Workbook.fs.js +44 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Worksheet.fs.js +129 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRange.fs.js +9 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeAddress.fs.js +82 -3
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeBase.fs.js +12 -3
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeColumn.fs.js +17 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeRow.fs.js +9 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTable.fs.js +12 -5
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTableField.fs.js +12 -3
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +2 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/FsExtensions.fs.js +42 -3
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Json.fs.js +53 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Table.fs.js +9 -9
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Workbook.fs.js +1 -1
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Worksheet.fs.js +2 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Xlsx.fs.js +5 -1
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Decode.fs.js +730 -23
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Encode.fs.js +192 -7
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Types.fs.js +45 -1
- package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js +15 -2
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +1383 -15
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +45 -4
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +10 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +5 -5
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +16 -6
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +26 -23
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +1 -1
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +8 -8
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +18 -2
- package/package.json +1 -1
- package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts +0 -2
- package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts.map +0 -1
- package/dist/ts/ts/FileSystem/DefaultGitattributes.js +0 -3
- package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts +0 -2
- package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts.map +0 -1
- package/dist/ts/ts/FileSystem/DefaultGitignore.js +0 -3
|
@@ -7,6 +7,9 @@ function isIterable(x) {
|
|
|
7
7
|
function isEnumerable(x) {
|
|
8
8
|
return x != null && typeof x.GetEnumerator === "function";
|
|
9
9
|
}
|
|
10
|
+
function isComparer(x) {
|
|
11
|
+
return x != null && typeof x.Compare === "function";
|
|
12
|
+
}
|
|
10
13
|
function isComparable(x) {
|
|
11
14
|
return x != null && typeof x.CompareTo === "function";
|
|
12
15
|
}
|
|
@@ -30,6 +33,21 @@ function defaultOf() {
|
|
|
30
33
|
function sameConstructor(x, y) {
|
|
31
34
|
return Object.getPrototypeOf(x)?.constructor === Object.getPrototypeOf(y)?.constructor;
|
|
32
35
|
}
|
|
36
|
+
class Enumerable {
|
|
37
|
+
constructor(en) {
|
|
38
|
+
this.en = en;
|
|
39
|
+
}
|
|
40
|
+
GetEnumerator() { return this.en; }
|
|
41
|
+
"System.Collections.IEnumerable.GetEnumerator"() { return this.en; }
|
|
42
|
+
[Symbol.iterator]() {
|
|
43
|
+
return this;
|
|
44
|
+
}
|
|
45
|
+
next() {
|
|
46
|
+
const hasNext = this.en["System.Collections.IEnumerator.MoveNext"]();
|
|
47
|
+
const current = hasNext ? this.en["System.Collections.Generic.IEnumerator`1.get_Current"]() : undefined;
|
|
48
|
+
return { done: !hasNext, value: current };
|
|
49
|
+
}
|
|
50
|
+
}
|
|
33
51
|
class Enumerator {
|
|
34
52
|
constructor(iter) {
|
|
35
53
|
this.iter = iter;
|
|
@@ -53,6 +71,14 @@ class Enumerator {
|
|
|
53
71
|
return;
|
|
54
72
|
}
|
|
55
73
|
}
|
|
74
|
+
function toEnumerable(e) {
|
|
75
|
+
if (isEnumerable(e)) {
|
|
76
|
+
return e;
|
|
77
|
+
}
|
|
78
|
+
else {
|
|
79
|
+
return new Enumerable(new Enumerator(e[Symbol.iterator]()));
|
|
80
|
+
}
|
|
81
|
+
}
|
|
56
82
|
function getEnumerator(e) {
|
|
57
83
|
if (isEnumerable(e)) {
|
|
58
84
|
return e.GetEnumerator();
|
|
@@ -70,20 +96,92 @@ function toIterator(en) {
|
|
|
70
96
|
},
|
|
71
97
|
};
|
|
72
98
|
}
|
|
99
|
+
function enumerableToIterator(e) {
|
|
100
|
+
return toIterator(toEnumerable(e).GetEnumerator());
|
|
101
|
+
}
|
|
102
|
+
class Comparer {
|
|
103
|
+
constructor(f) {
|
|
104
|
+
this.Compare = f || compare;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
function comparerFromEqualityComparer(comparer) {
|
|
108
|
+
// Sometimes IEqualityComparer also implements IComparer
|
|
109
|
+
if (isComparer(comparer)) {
|
|
110
|
+
return new Comparer(comparer.Compare);
|
|
111
|
+
}
|
|
112
|
+
else {
|
|
113
|
+
return new Comparer((x, y) => {
|
|
114
|
+
const xhash = comparer.GetHashCode(x);
|
|
115
|
+
const yhash = comparer.GetHashCode(y);
|
|
116
|
+
if (xhash === yhash) {
|
|
117
|
+
return comparer.Equals(x, y) ? 0 : -1;
|
|
118
|
+
}
|
|
119
|
+
else {
|
|
120
|
+
return xhash < yhash ? -1 : 1;
|
|
121
|
+
}
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
function assertEqual(actual, expected, msg) {
|
|
126
|
+
if (!equals(actual, expected)) {
|
|
127
|
+
throw Object.assign(new Error(msg || `Expected: ${expected} - Actual: ${actual}`), {
|
|
128
|
+
actual,
|
|
129
|
+
expected,
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
function assertNotEqual(actual, expected, msg) {
|
|
134
|
+
if (equals(actual, expected)) {
|
|
135
|
+
throw Object.assign(new Error(msg || `Expected: ${expected} - Actual: ${actual}`), {
|
|
136
|
+
actual,
|
|
137
|
+
expected,
|
|
138
|
+
});
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
class Lazy {
|
|
142
|
+
constructor(factory) {
|
|
143
|
+
this.factory = factory;
|
|
144
|
+
this.isValueCreated = false;
|
|
145
|
+
}
|
|
146
|
+
get Value() {
|
|
147
|
+
if (!this.isValueCreated) {
|
|
148
|
+
this.createdValue = this.factory();
|
|
149
|
+
this.isValueCreated = true;
|
|
150
|
+
}
|
|
151
|
+
return this.createdValue;
|
|
152
|
+
}
|
|
153
|
+
get IsValueCreated() {
|
|
154
|
+
return this.isValueCreated;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
function lazyFromValue(v) {
|
|
158
|
+
return new Lazy(() => v);
|
|
159
|
+
}
|
|
73
160
|
function padWithZeros(i, length) {
|
|
74
161
|
return i.toString(10).padStart(length, "0");
|
|
75
162
|
}
|
|
163
|
+
function padLeftAndRightWithZeros(i, lengthLeft, lengthRight) {
|
|
164
|
+
return i.toString(10).padStart(lengthLeft, "0").padEnd(lengthRight, "0");
|
|
165
|
+
}
|
|
76
166
|
function dateOffset(date) {
|
|
77
167
|
const date1 = date;
|
|
78
168
|
return typeof date1.offset === "number"
|
|
79
169
|
? date1.offset
|
|
80
170
|
: (date.kind === 1 /* DateKind.UTC */
|
|
81
|
-
? 0 : date.getTimezoneOffset() * -
|
|
171
|
+
? 0 : date.getTimezoneOffset() * -60000);
|
|
172
|
+
}
|
|
173
|
+
function int16ToString(i, radix) {
|
|
174
|
+
i = i < 0 && radix != null && radix !== 10 ? 0xFFFF + i + 1 : i;
|
|
175
|
+
return i.toString(radix);
|
|
82
176
|
}
|
|
83
177
|
function int32ToString(i, radix) {
|
|
84
178
|
i = i < 0 && radix != null && radix !== 10 ? 0xFFFFFFFF + i + 1 : i;
|
|
85
179
|
return i.toString(radix);
|
|
86
180
|
}
|
|
181
|
+
function int64ToString(i, radix) {
|
|
182
|
+
i = i < 0 && radix != null && radix !== 10 ? 0xffffffffffffffffn + i + 1n : i;
|
|
183
|
+
return i.toString(radix);
|
|
184
|
+
}
|
|
87
185
|
class ObjectRef {
|
|
88
186
|
static id(o) {
|
|
89
187
|
if (!ObjectRef.idMap.has(o)) {
|
|
@@ -191,6 +289,10 @@ function structuralHash(x) {
|
|
|
191
289
|
}
|
|
192
290
|
}
|
|
193
291
|
}
|
|
292
|
+
// Intended for custom numeric types, like long or decimal
|
|
293
|
+
function fastStructuralHash(x) {
|
|
294
|
+
return stringHash(String(x));
|
|
295
|
+
}
|
|
194
296
|
// Intended for declared types that may or may not implement GetHashCode
|
|
195
297
|
function safeHash(x) {
|
|
196
298
|
// return x == null ? 0 : isHashable(x) ? x.GetHashCode() : numberHash(ObjectRef.id(x));
|
|
@@ -231,6 +333,9 @@ function equalObjects(x, y) {
|
|
|
231
333
|
}
|
|
232
334
|
return true;
|
|
233
335
|
}
|
|
336
|
+
function physicalEquality(x, y) {
|
|
337
|
+
return x === y;
|
|
338
|
+
}
|
|
234
339
|
function equals(x, y) {
|
|
235
340
|
if (x === y) {
|
|
236
341
|
return true;
|
|
@@ -343,6 +448,78 @@ function compare(x, y) {
|
|
|
343
448
|
return Object.getPrototypeOf(x)?.constructor === Object ? compareObjects(x, y) : -1;
|
|
344
449
|
}
|
|
345
450
|
}
|
|
451
|
+
function min(comparer, x, y) {
|
|
452
|
+
return comparer(x, y) < 0 ? x : y;
|
|
453
|
+
}
|
|
454
|
+
function max(comparer, x, y) {
|
|
455
|
+
return comparer(x, y) > 0 ? x : y;
|
|
456
|
+
}
|
|
457
|
+
function clamp(comparer, value, min, max) {
|
|
458
|
+
return (comparer(value, min) < 0) ? min : (comparer(value, max) > 0) ? max : value;
|
|
459
|
+
}
|
|
460
|
+
function createAtom(value) {
|
|
461
|
+
let atom = value;
|
|
462
|
+
return (...args) => {
|
|
463
|
+
if (args.length === 0) {
|
|
464
|
+
return atom;
|
|
465
|
+
}
|
|
466
|
+
else {
|
|
467
|
+
atom = args[0];
|
|
468
|
+
}
|
|
469
|
+
};
|
|
470
|
+
}
|
|
471
|
+
function createObj(fields) {
|
|
472
|
+
const obj = {};
|
|
473
|
+
for (const kv of fields) {
|
|
474
|
+
obj[kv[0]] = kv[1];
|
|
475
|
+
}
|
|
476
|
+
return obj;
|
|
477
|
+
}
|
|
478
|
+
function jsOptions(mutator) {
|
|
479
|
+
const opts = {};
|
|
480
|
+
mutator(opts);
|
|
481
|
+
return opts;
|
|
482
|
+
}
|
|
483
|
+
function round(value, digits = 0) {
|
|
484
|
+
const m = Math.pow(10, digits);
|
|
485
|
+
const n = +(digits ? value * m : value).toFixed(8);
|
|
486
|
+
const i = Math.floor(n);
|
|
487
|
+
const f = n - i;
|
|
488
|
+
const e = 1e-8;
|
|
489
|
+
const r = (f > 0.5 - e && f < 0.5 + e) ? ((i % 2 === 0) ? i : i + 1) : Math.round(n);
|
|
490
|
+
return digits ? r / m : r;
|
|
491
|
+
}
|
|
492
|
+
function sign(x) {
|
|
493
|
+
return x > 0 ? 1 : x < 0 ? -1 : 0;
|
|
494
|
+
}
|
|
495
|
+
function unescapeDataString(s) {
|
|
496
|
+
// https://stackoverflow.com/a/4458580/524236
|
|
497
|
+
return decodeURIComponent((s).replace(/\+/g, "%20"));
|
|
498
|
+
}
|
|
499
|
+
function escapeDataString(s) {
|
|
500
|
+
return encodeURIComponent(s).replace(/!/g, "%21")
|
|
501
|
+
.replace(/'/g, "%27")
|
|
502
|
+
.replace(/\(/g, "%28")
|
|
503
|
+
.replace(/\)/g, "%29")
|
|
504
|
+
.replace(/\*/g, "%2A");
|
|
505
|
+
}
|
|
506
|
+
function escapeUriString(s) {
|
|
507
|
+
return encodeURI(s);
|
|
508
|
+
}
|
|
509
|
+
// ICollection.Clear and Count members can be called on Arrays
|
|
510
|
+
// or Dictionaries so we need a runtime check (see #1120)
|
|
511
|
+
function count(col) {
|
|
512
|
+
if (isArrayLike(col)) {
|
|
513
|
+
return col.length;
|
|
514
|
+
}
|
|
515
|
+
else {
|
|
516
|
+
let count = 0;
|
|
517
|
+
for (const _ of col) {
|
|
518
|
+
count++;
|
|
519
|
+
}
|
|
520
|
+
return count;
|
|
521
|
+
}
|
|
522
|
+
}
|
|
346
523
|
function clear(col) {
|
|
347
524
|
if (isArrayLike(col)) {
|
|
348
525
|
col.splice(0);
|
|
@@ -363,5 +540,232 @@ function uncurry2(f) {
|
|
|
363
540
|
function curry2(f) {
|
|
364
541
|
return curried.get(f) ?? ((a1) => (a2) => f(a1, a2));
|
|
365
542
|
}
|
|
543
|
+
function uncurry3(f) {
|
|
544
|
+
if (f == null) {
|
|
545
|
+
return null;
|
|
546
|
+
}
|
|
547
|
+
const f2 = (a1, a2, a3) => f(a1)(a2)(a3);
|
|
548
|
+
curried.set(f2, f);
|
|
549
|
+
return f2;
|
|
550
|
+
}
|
|
551
|
+
function curry3(f) {
|
|
552
|
+
return curried.get(f)
|
|
553
|
+
?? ((a1) => (a2) => (a3) => f(a1, a2, a3));
|
|
554
|
+
}
|
|
555
|
+
function uncurry4(f) {
|
|
556
|
+
if (f == null) {
|
|
557
|
+
return null;
|
|
558
|
+
}
|
|
559
|
+
const f2 = (a1, a2, a3, a4) => f(a1)(a2)(a3)(a4);
|
|
560
|
+
curried.set(f2, f);
|
|
561
|
+
return f2;
|
|
562
|
+
}
|
|
563
|
+
function curry4(f) {
|
|
564
|
+
return curried.get(f)
|
|
565
|
+
?? ((a1) => (a2) => (a3) => (a4) => f(a1, a2, a3, a4));
|
|
566
|
+
}
|
|
567
|
+
function uncurry5(f) {
|
|
568
|
+
if (f == null) {
|
|
569
|
+
return null;
|
|
570
|
+
}
|
|
571
|
+
const f2 = (a1, a2, a3, a4, a5) => f(a1)(a2)(a3)(a4)(a5);
|
|
572
|
+
curried.set(f2, f);
|
|
573
|
+
return f2;
|
|
574
|
+
}
|
|
575
|
+
function curry5(f) {
|
|
576
|
+
return curried.get(f)
|
|
577
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => f(a1, a2, a3, a4, a5));
|
|
578
|
+
}
|
|
579
|
+
function uncurry6(f) {
|
|
580
|
+
if (f == null) {
|
|
581
|
+
return null;
|
|
582
|
+
}
|
|
583
|
+
const f2 = (a1, a2, a3, a4, a5, a6) => f(a1)(a2)(a3)(a4)(a5)(a6);
|
|
584
|
+
curried.set(f2, f);
|
|
585
|
+
return f2;
|
|
586
|
+
}
|
|
587
|
+
function curry6(f) {
|
|
588
|
+
return curried.get(f)
|
|
589
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => f(a1, a2, a3, a4, a5, a6));
|
|
590
|
+
}
|
|
591
|
+
function uncurry7(f) {
|
|
592
|
+
if (f == null) {
|
|
593
|
+
return null;
|
|
594
|
+
}
|
|
595
|
+
const f2 = (a1, a2, a3, a4, a5, a6, a7) => f(a1)(a2)(a3)(a4)(a5)(a6)(a7);
|
|
596
|
+
curried.set(f2, f);
|
|
597
|
+
return f2;
|
|
598
|
+
}
|
|
599
|
+
function curry7(f) {
|
|
600
|
+
return curried.get(f)
|
|
601
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => (a7) => f(a1, a2, a3, a4, a5, a6, a7));
|
|
602
|
+
}
|
|
603
|
+
function uncurry8(f) {
|
|
604
|
+
if (f == null) {
|
|
605
|
+
return null;
|
|
606
|
+
}
|
|
607
|
+
const f2 = (a1, a2, a3, a4, a5, a6, a7, a8) => f(a1)(a2)(a3)(a4)(a5)(a6)(a7)(a8);
|
|
608
|
+
curried.set(f2, f);
|
|
609
|
+
return f2;
|
|
610
|
+
}
|
|
611
|
+
function curry8(f) {
|
|
612
|
+
return curried.get(f)
|
|
613
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => (a7) => (a8) => f(a1, a2, a3, a4, a5, a6, a7, a8));
|
|
614
|
+
}
|
|
615
|
+
function uncurry9(f) {
|
|
616
|
+
if (f == null) {
|
|
617
|
+
return null;
|
|
618
|
+
}
|
|
619
|
+
const f2 = (a1, a2, a3, a4, a5, a6, a7, a8, a9) => f(a1)(a2)(a3)(a4)(a5)(a6)(a7)(a8)(a9);
|
|
620
|
+
curried.set(f2, f);
|
|
621
|
+
return f2;
|
|
622
|
+
}
|
|
623
|
+
function curry9(f) {
|
|
624
|
+
return curried.get(f)
|
|
625
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => (a7) => (a8) => (a9) => f(a1, a2, a3, a4, a5, a6, a7, a8, a9));
|
|
626
|
+
}
|
|
627
|
+
function uncurry10(f) {
|
|
628
|
+
if (f == null) {
|
|
629
|
+
return null;
|
|
630
|
+
}
|
|
631
|
+
const f2 = (a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) => f(a1)(a2)(a3)(a4)(a5)(a6)(a7)(a8)(a9)(a10);
|
|
632
|
+
curried.set(f2, f);
|
|
633
|
+
return f2;
|
|
634
|
+
}
|
|
635
|
+
function curry10(f) {
|
|
636
|
+
return curried.get(f)
|
|
637
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => (a7) => (a8) => (a9) => (a10) => f(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10));
|
|
638
|
+
}
|
|
639
|
+
function uncurry11(f) {
|
|
640
|
+
if (f == null) {
|
|
641
|
+
return null;
|
|
642
|
+
}
|
|
643
|
+
const f2 = (a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11) => f(a1)(a2)(a3)(a4)(a5)(a6)(a7)(a8)(a9)(a10)(a11);
|
|
644
|
+
curried.set(f2, f);
|
|
645
|
+
return f2;
|
|
646
|
+
}
|
|
647
|
+
function curry11(f) {
|
|
648
|
+
return curried.get(f)
|
|
649
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => (a7) => (a8) => (a9) => (a10) => (a11) => f(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11));
|
|
650
|
+
}
|
|
651
|
+
function uncurry12(f) {
|
|
652
|
+
if (f == null) {
|
|
653
|
+
return null;
|
|
654
|
+
}
|
|
655
|
+
const f2 = (a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12) => f(a1)(a2)(a3)(a4)(a5)(a6)(a7)(a8)(a9)(a10)(a11)(a12);
|
|
656
|
+
curried.set(f2, f);
|
|
657
|
+
return f2;
|
|
658
|
+
}
|
|
659
|
+
function curry12(f) {
|
|
660
|
+
return curried.get(f)
|
|
661
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => (a7) => (a8) => (a9) => (a10) => (a11) => (a12) => f(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12));
|
|
662
|
+
}
|
|
663
|
+
function uncurry13(f) {
|
|
664
|
+
if (f == null) {
|
|
665
|
+
return null;
|
|
666
|
+
}
|
|
667
|
+
const f2 = (a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13) => f(a1)(a2)(a3)(a4)(a5)(a6)(a7)(a8)(a9)(a10)(a11)(a12)(a13);
|
|
668
|
+
curried.set(f2, f);
|
|
669
|
+
return f2;
|
|
670
|
+
}
|
|
671
|
+
function curry13(f) {
|
|
672
|
+
return curried.get(f)
|
|
673
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => (a7) => (a8) => (a9) => (a10) => (a11) => (a12) => (a13) => f(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13));
|
|
674
|
+
}
|
|
675
|
+
function uncurry14(f) {
|
|
676
|
+
if (f == null) {
|
|
677
|
+
return null;
|
|
678
|
+
}
|
|
679
|
+
const f2 = (a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14) => f(a1)(a2)(a3)(a4)(a5)(a6)(a7)(a8)(a9)(a10)(a11)(a12)(a13)(a14);
|
|
680
|
+
curried.set(f2, f);
|
|
681
|
+
return f2;
|
|
682
|
+
}
|
|
683
|
+
function curry14(f) {
|
|
684
|
+
return curried.get(f)
|
|
685
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => (a7) => (a8) => (a9) => (a10) => (a11) => (a12) => (a13) => (a14) => f(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14));
|
|
686
|
+
}
|
|
687
|
+
function uncurry15(f) {
|
|
688
|
+
if (f == null) {
|
|
689
|
+
return null;
|
|
690
|
+
}
|
|
691
|
+
const f2 = (a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15) => f(a1)(a2)(a3)(a4)(a5)(a6)(a7)(a8)(a9)(a10)(a11)(a12)(a13)(a14)(a15);
|
|
692
|
+
curried.set(f2, f);
|
|
693
|
+
return f2;
|
|
694
|
+
}
|
|
695
|
+
function curry15(f) {
|
|
696
|
+
return curried.get(f)
|
|
697
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => (a7) => (a8) => (a9) => (a10) => (a11) => (a12) => (a13) => (a14) => (a15) => f(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15));
|
|
698
|
+
}
|
|
699
|
+
function uncurry16(f) {
|
|
700
|
+
if (f == null) {
|
|
701
|
+
return null;
|
|
702
|
+
}
|
|
703
|
+
const f2 = (a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16) => f(a1)(a2)(a3)(a4)(a5)(a6)(a7)(a8)(a9)(a10)(a11)(a12)(a13)(a14)(a15)(a16);
|
|
704
|
+
curried.set(f2, f);
|
|
705
|
+
return f2;
|
|
706
|
+
}
|
|
707
|
+
function curry16(f) {
|
|
708
|
+
return curried.get(f)
|
|
709
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => (a7) => (a8) => (a9) => (a10) => (a11) => (a12) => (a13) => (a14) => (a15) => (a16) => f(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16));
|
|
710
|
+
}
|
|
711
|
+
function uncurry17(f) {
|
|
712
|
+
if (f == null) {
|
|
713
|
+
return null;
|
|
714
|
+
}
|
|
715
|
+
const f2 = (a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17) => f(a1)(a2)(a3)(a4)(a5)(a6)(a7)(a8)(a9)(a10)(a11)(a12)(a13)(a14)(a15)(a16)(a17);
|
|
716
|
+
curried.set(f2, f);
|
|
717
|
+
return f2;
|
|
718
|
+
}
|
|
719
|
+
function curry17(f) {
|
|
720
|
+
return curried.get(f)
|
|
721
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => (a7) => (a8) => (a9) => (a10) => (a11) => (a12) => (a13) => (a14) => (a15) => (a16) => (a17) => f(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17));
|
|
722
|
+
}
|
|
723
|
+
function uncurry18(f) {
|
|
724
|
+
if (f == null) {
|
|
725
|
+
return null;
|
|
726
|
+
}
|
|
727
|
+
const f2 = (a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17, a18) => f(a1)(a2)(a3)(a4)(a5)(a6)(a7)(a8)(a9)(a10)(a11)(a12)(a13)(a14)(a15)(a16)(a17)(a18);
|
|
728
|
+
curried.set(f2, f);
|
|
729
|
+
return f2;
|
|
730
|
+
}
|
|
731
|
+
function curry18(f) {
|
|
732
|
+
return curried.get(f)
|
|
733
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => (a7) => (a8) => (a9) => (a10) => (a11) => (a12) => (a13) => (a14) => (a15) => (a16) => (a17) => (a18) => f(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17, a18));
|
|
734
|
+
}
|
|
735
|
+
function uncurry19(f) {
|
|
736
|
+
if (f == null) {
|
|
737
|
+
return null;
|
|
738
|
+
}
|
|
739
|
+
const f2 = (a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19) => f(a1)(a2)(a3)(a4)(a5)(a6)(a7)(a8)(a9)(a10)(a11)(a12)(a13)(a14)(a15)(a16)(a17)(a18)(a19);
|
|
740
|
+
curried.set(f2, f);
|
|
741
|
+
return f2;
|
|
742
|
+
}
|
|
743
|
+
function curry19(f) {
|
|
744
|
+
return curried.get(f)
|
|
745
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => (a7) => (a8) => (a9) => (a10) => (a11) => (a12) => (a13) => (a14) => (a15) => (a16) => (a17) => (a18) => (a19) => f(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19));
|
|
746
|
+
}
|
|
747
|
+
function uncurry20(f) {
|
|
748
|
+
if (f == null) {
|
|
749
|
+
return null;
|
|
750
|
+
}
|
|
751
|
+
const f2 = (a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20) => f(a1)(a2)(a3)(a4)(a5)(a6)(a7)(a8)(a9)(a10)(a11)(a12)(a13)(a14)(a15)(a16)(a17)(a18)(a19)(a20);
|
|
752
|
+
curried.set(f2, f);
|
|
753
|
+
return f2;
|
|
754
|
+
}
|
|
755
|
+
function curry20(f) {
|
|
756
|
+
return curried.get(f)
|
|
757
|
+
?? ((a1) => (a2) => (a3) => (a4) => (a5) => (a6) => (a7) => (a8) => (a9) => (a10) => (a11) => (a12) => (a13) => (a14) => (a15) => (a16) => (a17) => (a18) => (a19) => (a20) => f(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20));
|
|
758
|
+
}
|
|
759
|
+
// More performant method to copy arrays, see #2352
|
|
760
|
+
function copyToArray(source, sourceIndex, target, targetIndex, count) {
|
|
761
|
+
if (ArrayBuffer.isView(source) && ArrayBuffer.isView(target)) {
|
|
762
|
+
target.set(source.subarray(sourceIndex, sourceIndex + count), targetIndex);
|
|
763
|
+
}
|
|
764
|
+
else {
|
|
765
|
+
for (let i = 0; i < count; ++i) {
|
|
766
|
+
target[targetIndex + i] = source[sourceIndex + i];
|
|
767
|
+
}
|
|
768
|
+
}
|
|
769
|
+
}
|
|
366
770
|
|
|
367
|
-
export { Enumerator, ObjectRef, arrayHash, bigintHash, clear, combineHashCodes, compare, compareArrays, compareArraysWith, compareDates, comparePrimitives, curry2, dateHash, dateOffset, defaultOf, disposeSafe, equalArrays, equalArraysWith, equals, getEnumerator, identityHash, int32ToString, isArrayLike, isComparable, isDisposable, isEnumerable, isEquatable, isHashable, isIterable, numberHash, padWithZeros, physicalHash, safeHash, sameConstructor, stringHash, structuralHash, toIterator, uncurry2 };
|
|
771
|
+
export { Comparer, Enumerable, Enumerator, Lazy, ObjectRef, arrayHash, assertEqual, assertNotEqual, bigintHash, clamp, clear, combineHashCodes, compare, compareArrays, compareArraysWith, compareDates, comparePrimitives, comparerFromEqualityComparer, copyToArray, count, createAtom, createObj, curry10, curry11, curry12, curry13, curry14, curry15, curry16, curry17, curry18, curry19, curry2, curry20, curry3, curry4, curry5, curry6, curry7, curry8, curry9, dateHash, dateOffset, defaultOf, disposeSafe, enumerableToIterator, equalArrays, equalArraysWith, equals, escapeDataString, escapeUriString, fastStructuralHash, getEnumerator, identityHash, int16ToString, int32ToString, int64ToString, isArrayLike, isComparable, isComparer, isDisposable, isEnumerable, isEquatable, isHashable, isIterable, jsOptions, lazyFromValue, max, min, numberHash, padLeftAndRightWithZeros, padWithZeros, physicalEquality, physicalHash, round, safeHash, sameConstructor, sign, stringHash, structuralHash, toEnumerable, toIterator, uncurry10, uncurry11, uncurry12, uncurry13, uncurry14, uncurry15, uncurry16, uncurry17, uncurry18, uncurry19, uncurry2, uncurry20, uncurry3, uncurry4, uncurry5, uncurry6, uncurry7, uncurry8, uncurry9, unescapeDataString };
|
|
@@ -588,7 +588,7 @@ P.plus = P.add = function (y) {
|
|
|
588
588
|
*/
|
|
589
589
|
P.pow = function (n) {
|
|
590
590
|
var Big = this.constructor, x = new Big(this), y = new Big('1'), one = new Big('1'), isneg = n < 0;
|
|
591
|
-
if (n !== ~~n || n < -
|
|
591
|
+
if (n !== ~~n || n < -MAX_POWER || n > MAX_POWER) {
|
|
592
592
|
throw Error(INVALID + 'exponent');
|
|
593
593
|
}
|
|
594
594
|
if (isneg)
|
|
@@ -628,7 +628,7 @@ P.prec = function (sd, rm) {
|
|
|
628
628
|
P.round = function (dp, rm) {
|
|
629
629
|
if (dp === UNDEFINED)
|
|
630
630
|
dp = 0;
|
|
631
|
-
else if (dp !== ~~dp || dp < -
|
|
631
|
+
else if (dp !== ~~dp || dp < -MAX_DP || dp > MAX_DP) {
|
|
632
632
|
throw Error(INVALID_DP);
|
|
633
633
|
}
|
|
634
634
|
return round(new this.constructor(this), dp + this.e + 1, rm);
|
package/dist/ts/ts/ARC.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { FileSystem } from './FileSystem/FileSystem.js';
|
|
2
2
|
import { Option } from '@fable-org/fable-library-js/Option.js';
|
|
3
|
+
import { License } from './License.js';
|
|
3
4
|
import { ArcRun, ArcWorkflow, ArcStudy, ArcAssay, ArcInvestigation } from './Core/ArcTypes.js';
|
|
4
5
|
import { FSharpResult$2_$union } from '@fable-org/fable-library-js/Result.js';
|
|
5
6
|
import { Contract } from './Contract/Contract.js';
|
|
@@ -16,14 +17,18 @@ import { ValidationPackagesConfig } from './ValidationPackages/ValidationPackage
|
|
|
16
17
|
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
17
18
|
export declare class ARC extends ArcInvestigation {
|
|
18
19
|
_cwl: Option<void>;
|
|
20
|
+
_license: Option<License>;
|
|
19
21
|
_fs: FileSystem;
|
|
20
|
-
"init@
|
|
21
|
-
constructor(identifier: string, title?: string, description?: string, submissionDate?: string, publicReleaseDate?: string, ontologySourceReferences?: OntologySourceReference[], publications?: Publication[], contacts?: Person[], assays?: ArcAssay[], studies?: ArcStudy[], workflows?: ArcWorkflow[], runs?: ArcRun[], registeredStudyIdentifiers?: string[], comments?: Comment$[], remarks?: Remark[], cwl?: Option<void>, fs?: FileSystem);
|
|
22
|
+
"init@104": int32;
|
|
23
|
+
constructor(identifier: string, title?: string, description?: string, submissionDate?: string, publicReleaseDate?: string, ontologySourceReferences?: OntologySourceReference[], publications?: Publication[], contacts?: Person[], assays?: ArcAssay[], studies?: ArcStudy[], workflows?: ArcWorkflow[], runs?: ArcRun[], registeredStudyIdentifiers?: string[], comments?: Comment$[], remarks?: Remark[], cwl?: Option<void>, fs?: FileSystem, license?: License);
|
|
22
24
|
get FileSystem(): FileSystem;
|
|
23
25
|
set FileSystem(fs: FileSystem);
|
|
24
|
-
|
|
26
|
+
get License(): License | undefined;
|
|
27
|
+
set License(license: Option<License>);
|
|
28
|
+
static fromArcInvestigation(isa: ArcInvestigation, cwl?: Option<void>, fs?: FileSystem, license?: License): ARC;
|
|
25
29
|
TryWriteAsync(arcPath: string): Promise<FSharpResult$2_$union<Contract[], string[]>>;
|
|
26
30
|
TryUpdateAsync(arcPath: string): Promise<FSharpResult$2_$union<Contract[], string[]>>;
|
|
31
|
+
SetLicenseFulltext(fulltext: string, path?: string): void;
|
|
27
32
|
static tryLoadAsync(arcPath: string): Promise<FSharpResult$2_$union<ARC, string[]>>;
|
|
28
33
|
GetAssayRemoveContracts(assayIdentifier: string): Contract[];
|
|
29
34
|
TryRemoveAssayAsync(arcPath: string, assayIdentifier: string): Promise<FSharpResult$2_$union<Contract[], string[]>>;
|
|
@@ -58,6 +63,7 @@ export declare class ARC extends ArcInvestigation {
|
|
|
58
63
|
static fromROCrateJsonString(s: string): ARC;
|
|
59
64
|
ToROCrateJsonString(spaces?: int32): string;
|
|
60
65
|
static toROCrateJsonString(spaces?: int32): ((arg0: ARC) => string);
|
|
66
|
+
GetLicenseWriteContract(): Contract;
|
|
61
67
|
GetValidationPackagesConfigWriteContract(vpc: ValidationPackagesConfig): Contract;
|
|
62
68
|
GetValidationPackagesConfigDeleteContract(vpc: ValidationPackagesConfig): Contract;
|
|
63
69
|
GetValidationPackagesConfigReadContract(): Contract;
|
|
@@ -65,7 +71,7 @@ export declare class ARC extends ArcInvestigation {
|
|
|
65
71
|
ToFilePaths(removeRoot?: boolean, skipUpdateFS?: boolean): string[];
|
|
66
72
|
}
|
|
67
73
|
export declare function ARC_$reflection(): TypeInfo;
|
|
68
|
-
export declare function ARC_$
|
|
74
|
+
export declare function ARC_$ctor_Z4D7EB22(identifier: string, title?: string, description?: string, submissionDate?: string, publicReleaseDate?: string, ontologySourceReferences?: OntologySourceReference[], publications?: Publication[], contacts?: Person[], assays?: ArcAssay[], studies?: ArcStudy[], workflows?: ArcWorkflow[], runs?: ArcRun[], registeredStudyIdentifiers?: string[], comments?: Comment$[], remarks?: Remark[], cwl?: Option<void>, fs?: FileSystem, license?: License): ARC;
|
|
69
75
|
export declare function ARCAux_getArcAssaysFromContracts(contracts: Contract[]): ArcAssay[];
|
|
70
76
|
export declare function ARCAux_getArcStudiesFromContracts(contracts: Contract[]): [ArcStudy, FSharpList<ArcAssay>][];
|
|
71
77
|
export declare function ARCAux_getArcWorkflowsFromContracts(contracts: Contract[]): ArcWorkflow[];
|
|
@@ -75,6 +81,7 @@ export declare function ARCAux_getStudyDataMapFromContracts(studyIdentifier: str
|
|
|
75
81
|
export declare function ARCAux_getWorkflowDataMapFromContracts(workflowIdentifier: string, contracts: Contract[]): Option<DataMap>;
|
|
76
82
|
export declare function ARCAux_getRunDataMapFromContracts(runIdentifier: string, contracts: Contract[]): Option<DataMap>;
|
|
77
83
|
export declare function ARCAux_getArcInvestigationFromContracts(contracts: Contract[]): ArcInvestigation;
|
|
78
|
-
export declare function
|
|
84
|
+
export declare function ARCAux_getLicenseFromContracts(contracts: Contract[]): Option<License>;
|
|
85
|
+
export declare function ARCAux_updateFSByARC(isa: ArcInvestigation, license: Option<License>, fs: FileSystem): FileSystem;
|
|
79
86
|
export declare function ARCAux_updateFSByCWL(cwl: Option<void>, fs: FileSystem): FileSystem;
|
|
80
87
|
//# sourceMappingURL=ARC.d.ts.map
|
package/dist/ts/ts/ARC.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ARC.d.ts","sourceRoot":"","sources":["../../../src/ARCtrl/ts/ARC.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AACxD,OAAO,
|
|
1
|
+
{"version":3,"file":"ARC.d.ts","sourceRoot":"","sources":["../../../src/ARCtrl/ts/ARC.ts"],"names":[],"mappings":"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"}
|