@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
|
@@ -1,11 +1,22 @@
|
|
|
1
|
-
import { map } from '../../../node_modules/@fable-org/fable-library-js/List.js';
|
|
2
|
-
import { map as map$
|
|
3
|
-
import {
|
|
1
|
+
import { map as map$1 } from '../../../node_modules/@fable-org/fable-library-js/List.js';
|
|
2
|
+
import { map as map$2 } from '../../../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
3
|
+
import { getEnumerator, disposeSafe } from '../../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
4
|
+
import { toSeq, toList } from '../../../node_modules/@fable-org/fable-library-js/Map.js';
|
|
5
|
+
import { map as map$3 } from '../../../node_modules/@fable-org/fable-library-js/Array.js';
|
|
6
|
+
import { defaultArgWith, map as map$4, value } from '../../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
4
7
|
|
|
8
|
+
function float32(value) {
|
|
9
|
+
const value_1 = value;
|
|
10
|
+
return {
|
|
11
|
+
Encode(helpers) {
|
|
12
|
+
return helpers.encodeDecimalNumber(value_1);
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
}
|
|
5
16
|
function list(values) {
|
|
6
17
|
return {
|
|
7
18
|
Encode(helpers) {
|
|
8
|
-
const arg = map((v) => v.Encode(helpers), values);
|
|
19
|
+
const arg = map$1((v) => v.Encode(helpers), values);
|
|
9
20
|
return helpers.encodeList(arg);
|
|
10
21
|
}
|
|
11
22
|
};
|
|
@@ -13,19 +24,193 @@ function list(values) {
|
|
|
13
24
|
function seq(values) {
|
|
14
25
|
return {
|
|
15
26
|
Encode(helpers) {
|
|
16
|
-
const arg = map$
|
|
27
|
+
const arg = map$2((v) => v.Encode(helpers), values);
|
|
17
28
|
return helpers.encodeSeq(arg);
|
|
18
29
|
}
|
|
19
30
|
};
|
|
20
31
|
}
|
|
32
|
+
function resizeArray(values) {
|
|
33
|
+
return {
|
|
34
|
+
Encode(helpers) {
|
|
35
|
+
const result = [];
|
|
36
|
+
let enumerator = getEnumerator(values);
|
|
37
|
+
try {
|
|
38
|
+
while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
|
|
39
|
+
const v = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
|
|
40
|
+
void result.push(v.Encode(helpers));
|
|
41
|
+
}
|
|
42
|
+
} finally {
|
|
43
|
+
disposeSafe(enumerator);
|
|
44
|
+
}
|
|
45
|
+
return helpers.encodeResizeArray(result);
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
function dict(values) {
|
|
50
|
+
const values_1 = toSeq(values);
|
|
51
|
+
return {
|
|
52
|
+
Encode(helpers) {
|
|
53
|
+
const arg = map$2((tupledArg) => [tupledArg[0], tupledArg[1].Encode(helpers)], values_1);
|
|
54
|
+
return helpers.encodeObject(arg);
|
|
55
|
+
}
|
|
56
|
+
};
|
|
57
|
+
}
|
|
21
58
|
function tuple2(enc1, enc2, v1, v2) {
|
|
22
59
|
const values = [enc1(v1), enc2(v2)];
|
|
23
60
|
return {
|
|
24
61
|
Encode(helpers) {
|
|
25
|
-
const arg = map$
|
|
62
|
+
const arg = map$3((v) => v.Encode(helpers), values);
|
|
63
|
+
return helpers.encodeArray(arg);
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
function tuple3(enc1, enc2, enc3, v1, v2, v3) {
|
|
68
|
+
const values = [enc1(v1), enc2(v2), enc3(v3)];
|
|
69
|
+
return {
|
|
70
|
+
Encode(helpers) {
|
|
71
|
+
const arg = map$3((v) => v.Encode(helpers), values);
|
|
72
|
+
return helpers.encodeArray(arg);
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
function tuple4(enc1, enc2, enc3, enc4, v1, v2, v3, v4) {
|
|
77
|
+
const values = [enc1(v1), enc2(v2), enc3(v3), enc4(v4)];
|
|
78
|
+
return {
|
|
79
|
+
Encode(helpers) {
|
|
80
|
+
const arg = map$3((v) => v.Encode(helpers), values);
|
|
81
|
+
return helpers.encodeArray(arg);
|
|
82
|
+
}
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
function tuple5(enc1, enc2, enc3, enc4, enc5, v1, v2, v3, v4, v5) {
|
|
86
|
+
const values = [enc1(v1), enc2(v2), enc3(v3), enc4(v4), enc5(v5)];
|
|
87
|
+
return {
|
|
88
|
+
Encode(helpers) {
|
|
89
|
+
const arg = map$3((v) => v.Encode(helpers), values);
|
|
90
|
+
return helpers.encodeArray(arg);
|
|
91
|
+
}
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
function tuple6(enc1, enc2, enc3, enc4, enc5, enc6, v1, v2, v3, v4, v5, v6) {
|
|
95
|
+
const values = [enc1(v1), enc2(v2), enc3(v3), enc4(v4), enc5(v5), enc6(v6)];
|
|
96
|
+
return {
|
|
97
|
+
Encode(helpers) {
|
|
98
|
+
const arg = map$3((v) => v.Encode(helpers), values);
|
|
99
|
+
return helpers.encodeArray(arg);
|
|
100
|
+
}
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
function tuple7(enc1, enc2, enc3, enc4, enc5, enc6, enc7, v1, v2, v3, v4, v5, v6, v7) {
|
|
104
|
+
const values = [enc1(v1), enc2(v2), enc3(v3), enc4(v4), enc5(v5), enc6(v6), enc7(v7)];
|
|
105
|
+
return {
|
|
106
|
+
Encode(helpers) {
|
|
107
|
+
const arg = map$3((v) => v.Encode(helpers), values);
|
|
108
|
+
return helpers.encodeArray(arg);
|
|
109
|
+
}
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
function tuple8(enc1, enc2, enc3, enc4, enc5, enc6, enc7, enc8, v1, v2, v3, v4, v5, v6, v7, v8) {
|
|
113
|
+
const values = [enc1(v1), enc2(v2), enc3(v3), enc4(v4), enc5(v5), enc6(v6), enc7(v7), enc8(v8)];
|
|
114
|
+
return {
|
|
115
|
+
Encode(helpers) {
|
|
116
|
+
const arg = map$3((v) => v.Encode(helpers), values);
|
|
26
117
|
return helpers.encodeArray(arg);
|
|
27
118
|
}
|
|
28
119
|
};
|
|
29
120
|
}
|
|
121
|
+
function map(keyEncoder, valueEncoder, values) {
|
|
122
|
+
return list(map$1((tupledArg) => tuple2(keyEncoder, valueEncoder, tupledArg[0], tupledArg[1]), toList(values)));
|
|
123
|
+
}
|
|
124
|
+
function Enum_byte(value) {
|
|
125
|
+
const value_1 = value;
|
|
126
|
+
return {
|
|
127
|
+
Encode(helpers) {
|
|
128
|
+
return helpers.encodeUnsignedIntegralNumber(value_1);
|
|
129
|
+
}
|
|
130
|
+
};
|
|
131
|
+
}
|
|
132
|
+
function Enum_sbyte(value) {
|
|
133
|
+
const value_1 = value | 0;
|
|
134
|
+
return {
|
|
135
|
+
Encode(helpers) {
|
|
136
|
+
return helpers.encodeSignedIntegralNumber(value_1);
|
|
137
|
+
}
|
|
138
|
+
};
|
|
139
|
+
}
|
|
140
|
+
function Enum_int16(value) {
|
|
141
|
+
const value_1 = value | 0;
|
|
142
|
+
return {
|
|
143
|
+
Encode(helpers) {
|
|
144
|
+
return helpers.encodeSignedIntegralNumber(value_1);
|
|
145
|
+
}
|
|
146
|
+
};
|
|
147
|
+
}
|
|
148
|
+
function Enum_uint16(value) {
|
|
149
|
+
const value_1 = value;
|
|
150
|
+
return {
|
|
151
|
+
Encode(helpers) {
|
|
152
|
+
return helpers.encodeUnsignedIntegralNumber(value_1);
|
|
153
|
+
}
|
|
154
|
+
};
|
|
155
|
+
}
|
|
156
|
+
function Enum_int(value) {
|
|
157
|
+
const value_1 = value | 0;
|
|
158
|
+
return {
|
|
159
|
+
Encode(helpers) {
|
|
160
|
+
return helpers.encodeSignedIntegralNumber(value_1);
|
|
161
|
+
}
|
|
162
|
+
};
|
|
163
|
+
}
|
|
164
|
+
function Enum_uint32(value) {
|
|
165
|
+
const value_1 = value;
|
|
166
|
+
return {
|
|
167
|
+
Encode(helpers) {
|
|
168
|
+
return helpers.encodeUnsignedIntegralNumber(value_1);
|
|
169
|
+
}
|
|
170
|
+
};
|
|
171
|
+
}
|
|
172
|
+
function lossyOption(encoder) {
|
|
173
|
+
return (arg) => defaultArgWith(map$4(encoder, arg), () => ({
|
|
174
|
+
Encode(helpers) {
|
|
175
|
+
return helpers.encodeNull();
|
|
176
|
+
}
|
|
177
|
+
}));
|
|
178
|
+
}
|
|
179
|
+
function losslessOption(encoder, value$1) {
|
|
180
|
+
if (value$1 == null) {
|
|
181
|
+
const values_1 = [["$type", {
|
|
182
|
+
Encode(helpers_3) {
|
|
183
|
+
return helpers_3.encodeString("option");
|
|
184
|
+
}
|
|
185
|
+
}], ["$case", {
|
|
186
|
+
Encode(helpers_4) {
|
|
187
|
+
return helpers_4.encodeString("none");
|
|
188
|
+
}
|
|
189
|
+
}]];
|
|
190
|
+
return {
|
|
191
|
+
Encode(helpers_5) {
|
|
192
|
+
const arg_1 = map$2((tupledArg_1) => [tupledArg_1[0], tupledArg_1[1].Encode(helpers_5)], values_1);
|
|
193
|
+
return helpers_5.encodeObject(arg_1);
|
|
194
|
+
}
|
|
195
|
+
};
|
|
196
|
+
} else {
|
|
197
|
+
const v = value(value$1);
|
|
198
|
+
const values = [["$type", {
|
|
199
|
+
Encode(helpers) {
|
|
200
|
+
return helpers.encodeString("option");
|
|
201
|
+
}
|
|
202
|
+
}], ["$case", {
|
|
203
|
+
Encode(helpers_1) {
|
|
204
|
+
return helpers_1.encodeString("some");
|
|
205
|
+
}
|
|
206
|
+
}], ["$value", encoder(v)]];
|
|
207
|
+
return {
|
|
208
|
+
Encode(helpers_2) {
|
|
209
|
+
const arg = map$2((tupledArg) => [tupledArg[0], tupledArg[1].Encode(helpers_2)], values);
|
|
210
|
+
return helpers_2.encodeObject(arg);
|
|
211
|
+
}
|
|
212
|
+
};
|
|
213
|
+
}
|
|
214
|
+
}
|
|
30
215
|
|
|
31
|
-
export { list, seq, tuple2 };
|
|
216
|
+
export { Enum_byte, Enum_int, Enum_int16, Enum_sbyte, Enum_uint16, Enum_uint32, dict, float32, list, losslessOption, lossyOption, map, resizeArray, seq, tuple2, tuple3, tuple4, tuple5, tuple6, tuple7, tuple8 };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Union } from '../../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
2
|
+
import { union_type, string_type, list_type, tuple_type, char_type, float64_type, bool_type, class_type, array_type, uint32_type } from '../../../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
2
3
|
|
|
3
4
|
function ErrorReason$1_BadPrimitive(Item1, Item2) {
|
|
4
5
|
return new ErrorReason$1(0, [Item1, Item2]);
|
|
@@ -34,5 +35,48 @@ class ErrorReason$1 extends Union {
|
|
|
34
35
|
return ["BadPrimitive", "BadPrimitiveExtra", "BadType", "BadField", "BadPath", "TooSmallArray", "FailMessage", "BadOneOf"];
|
|
35
36
|
}
|
|
36
37
|
}
|
|
38
|
+
function ErrorReason$1_$reflection(gen0) {
|
|
39
|
+
return union_type("Thoth.Json.Core.ErrorReason`1", [gen0], ErrorReason$1, () => [[["Item1", string_type], ["Item2", gen0]], [["Item1", string_type], ["Item2", gen0], ["Item3", string_type]], [["Item1", string_type], ["Item2", gen0]], [["Item1", string_type], ["Item2", gen0]], [["Item1", string_type], ["Item2", gen0], ["Item3", string_type]], [["Item1", string_type], ["Item2", gen0]], [["Item", string_type]], [["Item", list_type(tuple_type(string_type, ErrorReason$1_$reflection(gen0)))]]]);
|
|
40
|
+
}
|
|
41
|
+
function Json_String(Item) {
|
|
42
|
+
return new Json(0, [Item]);
|
|
43
|
+
}
|
|
44
|
+
function Json_Char(Item) {
|
|
45
|
+
return new Json(1, [Item]);
|
|
46
|
+
}
|
|
47
|
+
function Json_DecimalNumber(Item) {
|
|
48
|
+
return new Json(2, [Item]);
|
|
49
|
+
}
|
|
50
|
+
function Json_Null() {
|
|
51
|
+
return new Json(3, []);
|
|
52
|
+
}
|
|
53
|
+
function Json_Boolean(Item) {
|
|
54
|
+
return new Json(4, [Item]);
|
|
55
|
+
}
|
|
56
|
+
function Json_Object(Item) {
|
|
57
|
+
return new Json(5, [Item]);
|
|
58
|
+
}
|
|
59
|
+
function Json_Array(Item) {
|
|
60
|
+
return new Json(6, [Item]);
|
|
61
|
+
}
|
|
62
|
+
function Json_IntegralNumber(Item) {
|
|
63
|
+
return new Json(7, [Item]);
|
|
64
|
+
}
|
|
65
|
+
function Json_Unit() {
|
|
66
|
+
return new Json(8, []);
|
|
67
|
+
}
|
|
68
|
+
class Json extends Union {
|
|
69
|
+
constructor(tag, fields) {
|
|
70
|
+
super();
|
|
71
|
+
this.tag = tag;
|
|
72
|
+
this.fields = fields;
|
|
73
|
+
}
|
|
74
|
+
cases() {
|
|
75
|
+
return ["String", "Char", "DecimalNumber", "Null", "Boolean", "Object", "Array", "IntegralNumber", "Unit"];
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
function Json_$reflection() {
|
|
79
|
+
return union_type("Thoth.Json.Core.Json", [], Json, () => [[["Item", string_type]], [["Item", char_type]], [["Item", float64_type]], [], [["Item", bool_type]], [["Item", class_type("System.Collections.Generic.IEnumerable`1", [tuple_type(string_type, Json_$reflection())])]], [["Item", array_type(Json_$reflection())]], [["Item", uint32_type]], []]);
|
|
80
|
+
}
|
|
37
81
|
|
|
38
|
-
export { ErrorReason$1, ErrorReason$1_BadField, ErrorReason$1_BadOneOf, ErrorReason$1_BadPath, ErrorReason$1_BadPrimitive, ErrorReason$1_BadPrimitiveExtra, ErrorReason$1_BadType, ErrorReason$1_FailMessage, ErrorReason$1_TooSmallArray };
|
|
82
|
+
export { ErrorReason$1, ErrorReason$1_$reflection, ErrorReason$1_BadField, ErrorReason$1_BadOneOf, ErrorReason$1_BadPath, ErrorReason$1_BadPrimitive, ErrorReason$1_BadPrimitiveExtra, ErrorReason$1_BadType, ErrorReason$1_FailMessage, ErrorReason$1_TooSmallArray, Json, Json_$reflection, Json_Array, Json_Boolean, Json_Char, Json_DecimalNumber, Json_IntegralNumber, Json_Null, Json_Object, Json_String, Json_Unit };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Helpers_prependPath, errorToString } from '../Thoth.Json.Core.0.7.0/Decode.fs.js';
|
|
1
|
+
import { Advanced_fromValue, Helpers_prependPath, errorToString } from '../Thoth.Json.Core.0.7.0/Decode.fs.js';
|
|
2
2
|
import { FSharpResult$2_Error, FSharpResult$2_Ok } from '../../../node_modules/@fable-org/fable-library-js/Result.js';
|
|
3
3
|
|
|
4
4
|
const helpers = {
|
|
@@ -22,6 +22,7 @@ const helpers = {
|
|
|
22
22
|
},
|
|
23
23
|
hasProperty(fieldName, jsonValue_6) {
|
|
24
24
|
return jsonValue_6.hasOwnProperty(fieldName);
|
|
25
|
+
;
|
|
25
26
|
},
|
|
26
27
|
isIntegralValue(jsonValue_7) {
|
|
27
28
|
return isFinite(jsonValue_7) && Math.floor(jsonValue_7) === jsonValue_7;
|
|
@@ -54,6 +55,9 @@ const helpers = {
|
|
|
54
55
|
return JSON.stringify(jsonValue_16, null, 4) + "";
|
|
55
56
|
}
|
|
56
57
|
};
|
|
58
|
+
function fromValue(decoder) {
|
|
59
|
+
return (value) => Advanced_fromValue(helpers, decoder, value);
|
|
60
|
+
}
|
|
57
61
|
function fromString(decoder, value) {
|
|
58
62
|
try {
|
|
59
63
|
const json = JSON.parse(value);
|
|
@@ -75,5 +79,14 @@ function fromString(decoder, value) {
|
|
|
75
79
|
}
|
|
76
80
|
}
|
|
77
81
|
}
|
|
82
|
+
function unsafeFromString(decoder, value) {
|
|
83
|
+
const matchValue = fromString(decoder, value);
|
|
84
|
+
if (matchValue.tag === /* Error */
|
|
85
|
+
1) {
|
|
86
|
+
throw new Error(matchValue.fields[0]);
|
|
87
|
+
} else {
|
|
88
|
+
return matchValue.fields[0];
|
|
89
|
+
}
|
|
90
|
+
}
|
|
78
91
|
|
|
79
|
-
export { fromString, helpers };
|
|
92
|
+
export { fromString, fromValue, helpers, unsafeFromString };
|