@twin.org/blob-storage-service 0.0.1-next.32 → 0.0.1-next.34
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/docs/changelog.md +32 -0
- package/docs/open-api/spec.json +95 -237
- package/package.json +2 -2
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @twin.org/blob-storage-service - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.34](https://github.com/twinfoundation/blob-storage/compare/blob-storage-service-v0.0.1-next.33...blob-storage-service-v0.0.1-next.34) (2025-06-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update dependencies ([56f0094](https://github.com/twinfoundation/blob-storage/commit/56f0094b68d8bd22864cd899ac1b61d95540f719))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/blob-storage-models bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
16
|
+
* devDependencies
|
|
17
|
+
* @twin.org/blob-storage-connector-memory bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
18
|
+
|
|
19
|
+
## [0.0.1-next.33](https://github.com/twinfoundation/blob-storage/compare/blob-storage-service-v0.0.1-next.32...blob-storage-service-v0.0.1-next.33) (2025-06-03)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Miscellaneous Chores
|
|
23
|
+
|
|
24
|
+
* **blob-storage-service:** Synchronize repo versions
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Dependencies
|
|
28
|
+
|
|
29
|
+
* The following workspace dependencies were updated
|
|
30
|
+
* dependencies
|
|
31
|
+
* @twin.org/blob-storage-models bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
32
|
+
* devDependencies
|
|
33
|
+
* @twin.org/blob-storage-connector-memory bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
34
|
+
|
|
3
35
|
## [0.0.1-next.32](https://github.com/twinfoundation/blob-storage/compare/blob-storage-service-v0.0.1-next.31...blob-storage-service-v0.0.1-next.32) (2025-05-28)
|
|
4
36
|
|
|
5
37
|
|
package/docs/open-api/spec.json
CHANGED
|
@@ -1122,7 +1122,7 @@
|
|
|
1122
1122
|
"@graph",
|
|
1123
1123
|
"@type"
|
|
1124
1124
|
],
|
|
1125
|
-
"description": "
|
|
1125
|
+
"description": "JSON-LD container types."
|
|
1126
1126
|
},
|
|
1127
1127
|
"JsonLdContainerTypeArray": {
|
|
1128
1128
|
"anyOf": [
|
|
@@ -1299,7 +1299,7 @@
|
|
|
1299
1299
|
"maxItems": 2
|
|
1300
1300
|
}
|
|
1301
1301
|
],
|
|
1302
|
-
"description": "
|
|
1302
|
+
"description": "JSON-LD container type array."
|
|
1303
1303
|
},
|
|
1304
1304
|
"JsonLdContextDefinition": {
|
|
1305
1305
|
"type": "object",
|
|
@@ -1554,13 +1554,23 @@
|
|
|
1554
1554
|
]
|
|
1555
1555
|
},
|
|
1556
1556
|
"@index": {
|
|
1557
|
-
"
|
|
1557
|
+
"type": "string"
|
|
1558
1558
|
},
|
|
1559
1559
|
"@id": {
|
|
1560
|
-
"
|
|
1560
|
+
"anyOf": [
|
|
1561
|
+
{
|
|
1562
|
+
"type": "string"
|
|
1563
|
+
},
|
|
1564
|
+
{
|
|
1565
|
+
"type": "array",
|
|
1566
|
+
"items": {
|
|
1567
|
+
"type": "string"
|
|
1568
|
+
}
|
|
1569
|
+
}
|
|
1570
|
+
]
|
|
1561
1571
|
},
|
|
1562
1572
|
"@context": {
|
|
1563
|
-
"$ref": "#/components/schemas/
|
|
1573
|
+
"$ref": "#/components/schemas/JsonLdContextDefinitionRoot"
|
|
1564
1574
|
}
|
|
1565
1575
|
},
|
|
1566
1576
|
"required": [
|
|
@@ -1680,215 +1690,6 @@
|
|
|
1680
1690
|
],
|
|
1681
1691
|
"description": "JSON Value."
|
|
1682
1692
|
},
|
|
1683
|
-
"JsonLdKeyword": {
|
|
1684
|
-
"type": "object",
|
|
1685
|
-
"properties": {
|
|
1686
|
-
"@base": {
|
|
1687
|
-
"type": [
|
|
1688
|
-
"string",
|
|
1689
|
-
"null"
|
|
1690
|
-
]
|
|
1691
|
-
},
|
|
1692
|
-
"@container": {
|
|
1693
|
-
"anyOf": [
|
|
1694
|
-
{
|
|
1695
|
-
"type": "string",
|
|
1696
|
-
"const": "@list"
|
|
1697
|
-
},
|
|
1698
|
-
{
|
|
1699
|
-
"type": "string",
|
|
1700
|
-
"const": "@set"
|
|
1701
|
-
},
|
|
1702
|
-
{
|
|
1703
|
-
"$ref": "#/components/schemas/JsonLdContainerType"
|
|
1704
|
-
},
|
|
1705
|
-
{
|
|
1706
|
-
"type": "array",
|
|
1707
|
-
"items": {
|
|
1708
|
-
"anyOf": [
|
|
1709
|
-
{
|
|
1710
|
-
"type": "string",
|
|
1711
|
-
"const": "@list"
|
|
1712
|
-
},
|
|
1713
|
-
{
|
|
1714
|
-
"type": "string",
|
|
1715
|
-
"const": "@set"
|
|
1716
|
-
},
|
|
1717
|
-
{
|
|
1718
|
-
"$ref": "#/components/schemas/JsonLdContainerType"
|
|
1719
|
-
}
|
|
1720
|
-
]
|
|
1721
|
-
}
|
|
1722
|
-
},
|
|
1723
|
-
{
|
|
1724
|
-
"$ref": "#/components/schemas/JsonLdContainerTypeArray"
|
|
1725
|
-
},
|
|
1726
|
-
{
|
|
1727
|
-
"type": "null"
|
|
1728
|
-
}
|
|
1729
|
-
]
|
|
1730
|
-
},
|
|
1731
|
-
"@context": {
|
|
1732
|
-
"$ref": "#/components/schemas/JsonLdContextDefinitionRoot"
|
|
1733
|
-
},
|
|
1734
|
-
"@direction": {
|
|
1735
|
-
"type": [
|
|
1736
|
-
"string",
|
|
1737
|
-
"null"
|
|
1738
|
-
],
|
|
1739
|
-
"enum": [
|
|
1740
|
-
"ltr",
|
|
1741
|
-
"rtl",
|
|
1742
|
-
null
|
|
1743
|
-
]
|
|
1744
|
-
},
|
|
1745
|
-
"@graph": {
|
|
1746
|
-
"anyOf": [
|
|
1747
|
-
{
|
|
1748
|
-
"$ref": "#/components/schemas/JsonLdValueObject"
|
|
1749
|
-
},
|
|
1750
|
-
{
|
|
1751
|
-
"$ref": "#/components/schemas/JsonLdNodeObject"
|
|
1752
|
-
},
|
|
1753
|
-
{
|
|
1754
|
-
"type": "array",
|
|
1755
|
-
"items": {
|
|
1756
|
-
"anyOf": [
|
|
1757
|
-
{
|
|
1758
|
-
"$ref": "#/components/schemas/JsonLdValueObject"
|
|
1759
|
-
},
|
|
1760
|
-
{
|
|
1761
|
-
"$ref": "#/components/schemas/JsonLdNodeObject"
|
|
1762
|
-
}
|
|
1763
|
-
]
|
|
1764
|
-
}
|
|
1765
|
-
}
|
|
1766
|
-
]
|
|
1767
|
-
},
|
|
1768
|
-
"@id": {
|
|
1769
|
-
"anyOf": [
|
|
1770
|
-
{
|
|
1771
|
-
"type": "string"
|
|
1772
|
-
},
|
|
1773
|
-
{
|
|
1774
|
-
"type": "array",
|
|
1775
|
-
"items": {
|
|
1776
|
-
"type": "string"
|
|
1777
|
-
}
|
|
1778
|
-
}
|
|
1779
|
-
]
|
|
1780
|
-
},
|
|
1781
|
-
"@import": {
|
|
1782
|
-
"type": "string"
|
|
1783
|
-
},
|
|
1784
|
-
"@included": {
|
|
1785
|
-
"$ref": "#/components/schemas/JsonLdIncludedBlock"
|
|
1786
|
-
},
|
|
1787
|
-
"@index": {
|
|
1788
|
-
"type": "string"
|
|
1789
|
-
},
|
|
1790
|
-
"@json": {
|
|
1791
|
-
"type": "string",
|
|
1792
|
-
"const": "@json"
|
|
1793
|
-
},
|
|
1794
|
-
"@language": {
|
|
1795
|
-
"type": "string"
|
|
1796
|
-
},
|
|
1797
|
-
"@list": {
|
|
1798
|
-
"anyOf": [
|
|
1799
|
-
{
|
|
1800
|
-
"$ref": "#/components/schemas/JsonLdListOrSetItem"
|
|
1801
|
-
},
|
|
1802
|
-
{
|
|
1803
|
-
"type": "array",
|
|
1804
|
-
"items": {
|
|
1805
|
-
"$ref": "#/components/schemas/JsonLdListOrSetItem"
|
|
1806
|
-
}
|
|
1807
|
-
}
|
|
1808
|
-
]
|
|
1809
|
-
},
|
|
1810
|
-
"@nest": {
|
|
1811
|
-
"type": "object"
|
|
1812
|
-
},
|
|
1813
|
-
"@none": {
|
|
1814
|
-
"type": "string",
|
|
1815
|
-
"const": "@none"
|
|
1816
|
-
},
|
|
1817
|
-
"@prefix": {
|
|
1818
|
-
"type": "boolean"
|
|
1819
|
-
},
|
|
1820
|
-
"@propagate": {
|
|
1821
|
-
"type": "boolean"
|
|
1822
|
-
},
|
|
1823
|
-
"@protected": {
|
|
1824
|
-
"type": "boolean"
|
|
1825
|
-
},
|
|
1826
|
-
"@reverse": {
|
|
1827
|
-
"type": "string"
|
|
1828
|
-
},
|
|
1829
|
-
"@set": {
|
|
1830
|
-
"anyOf": [
|
|
1831
|
-
{
|
|
1832
|
-
"$ref": "#/components/schemas/JsonLdListOrSetItem"
|
|
1833
|
-
},
|
|
1834
|
-
{
|
|
1835
|
-
"type": "array",
|
|
1836
|
-
"items": {
|
|
1837
|
-
"$ref": "#/components/schemas/JsonLdListOrSetItem"
|
|
1838
|
-
}
|
|
1839
|
-
}
|
|
1840
|
-
]
|
|
1841
|
-
},
|
|
1842
|
-
"@type": {
|
|
1843
|
-
"type": "string"
|
|
1844
|
-
},
|
|
1845
|
-
"@value": {
|
|
1846
|
-
"type": [
|
|
1847
|
-
"null",
|
|
1848
|
-
"boolean",
|
|
1849
|
-
"number",
|
|
1850
|
-
"string"
|
|
1851
|
-
]
|
|
1852
|
-
},
|
|
1853
|
-
"@version": {
|
|
1854
|
-
"type": "string",
|
|
1855
|
-
"const": "1.1"
|
|
1856
|
-
},
|
|
1857
|
-
"@vocab": {
|
|
1858
|
-
"type": [
|
|
1859
|
-
"string",
|
|
1860
|
-
"null"
|
|
1861
|
-
]
|
|
1862
|
-
}
|
|
1863
|
-
},
|
|
1864
|
-
"required": [
|
|
1865
|
-
"@base",
|
|
1866
|
-
"@container",
|
|
1867
|
-
"@context",
|
|
1868
|
-
"@direction",
|
|
1869
|
-
"@graph",
|
|
1870
|
-
"@id",
|
|
1871
|
-
"@import",
|
|
1872
|
-
"@included",
|
|
1873
|
-
"@index",
|
|
1874
|
-
"@json",
|
|
1875
|
-
"@language",
|
|
1876
|
-
"@list",
|
|
1877
|
-
"@nest",
|
|
1878
|
-
"@none",
|
|
1879
|
-
"@prefix",
|
|
1880
|
-
"@propagate",
|
|
1881
|
-
"@protected",
|
|
1882
|
-
"@reverse",
|
|
1883
|
-
"@set",
|
|
1884
|
-
"@type",
|
|
1885
|
-
"@value",
|
|
1886
|
-
"@version",
|
|
1887
|
-
"@vocab"
|
|
1888
|
-
],
|
|
1889
|
-
"additionalProperties": false,
|
|
1890
|
-
"description": "A list of keywords and their types. Only used for internal reference; not an actual interface. Not for export."
|
|
1891
|
-
},
|
|
1892
1693
|
"JsonLdLanguageMap": {
|
|
1893
1694
|
"type": "object",
|
|
1894
1695
|
"additionalProperties": {
|
|
@@ -1913,10 +1714,20 @@
|
|
|
1913
1714
|
"type": "object",
|
|
1914
1715
|
"properties": {
|
|
1915
1716
|
"@list": {
|
|
1916
|
-
"
|
|
1717
|
+
"anyOf": [
|
|
1718
|
+
{
|
|
1719
|
+
"$ref": "#/components/schemas/JsonLdListOrSetItem"
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"type": "array",
|
|
1723
|
+
"items": {
|
|
1724
|
+
"$ref": "#/components/schemas/JsonLdListOrSetItem"
|
|
1725
|
+
}
|
|
1726
|
+
}
|
|
1727
|
+
]
|
|
1917
1728
|
},
|
|
1918
1729
|
"@index": {
|
|
1919
|
-
"
|
|
1730
|
+
"type": "string"
|
|
1920
1731
|
}
|
|
1921
1732
|
},
|
|
1922
1733
|
"required": [
|
|
@@ -1977,13 +1788,23 @@
|
|
|
1977
1788
|
},
|
|
1978
1789
|
"properties": {
|
|
1979
1790
|
"@context": {
|
|
1980
|
-
"$ref": "#/components/schemas/
|
|
1791
|
+
"$ref": "#/components/schemas/JsonLdContextDefinitionRoot"
|
|
1981
1792
|
},
|
|
1982
1793
|
"@id": {
|
|
1983
|
-
"
|
|
1794
|
+
"anyOf": [
|
|
1795
|
+
{
|
|
1796
|
+
"type": "string"
|
|
1797
|
+
},
|
|
1798
|
+
{
|
|
1799
|
+
"type": "array",
|
|
1800
|
+
"items": {
|
|
1801
|
+
"type": "string"
|
|
1802
|
+
}
|
|
1803
|
+
}
|
|
1804
|
+
]
|
|
1984
1805
|
},
|
|
1985
1806
|
"@included": {
|
|
1986
|
-
"$ref": "#/components/schemas/
|
|
1807
|
+
"$ref": "#/components/schemas/JsonLdIncludedBlock"
|
|
1987
1808
|
},
|
|
1988
1809
|
"@graph": {
|
|
1989
1810
|
"anyOf": [
|
|
@@ -2014,12 +1835,12 @@
|
|
|
2014
1835
|
"@type": {
|
|
2015
1836
|
"anyOf": [
|
|
2016
1837
|
{
|
|
2017
|
-
"
|
|
1838
|
+
"type": "string"
|
|
2018
1839
|
},
|
|
2019
1840
|
{
|
|
2020
1841
|
"type": "array",
|
|
2021
1842
|
"items": {
|
|
2022
|
-
"
|
|
1843
|
+
"type": "string"
|
|
2023
1844
|
}
|
|
2024
1845
|
}
|
|
2025
1846
|
]
|
|
@@ -2027,11 +1848,11 @@
|
|
|
2027
1848
|
"@reverse": {
|
|
2028
1849
|
"type": "object",
|
|
2029
1850
|
"additionalProperties": {
|
|
2030
|
-
"
|
|
1851
|
+
"type": "string"
|
|
2031
1852
|
}
|
|
2032
1853
|
},
|
|
2033
1854
|
"@index": {
|
|
2034
|
-
"
|
|
1855
|
+
"type": "string"
|
|
2035
1856
|
}
|
|
2036
1857
|
},
|
|
2037
1858
|
"description": "A node object represents zero or more properties of a node in the graph serialized by the JSON-LD document."
|
|
@@ -2072,10 +1893,20 @@
|
|
|
2072
1893
|
"type": "object",
|
|
2073
1894
|
"properties": {
|
|
2074
1895
|
"@set": {
|
|
2075
|
-
"
|
|
1896
|
+
"anyOf": [
|
|
1897
|
+
{
|
|
1898
|
+
"$ref": "#/components/schemas/JsonLdListOrSetItem"
|
|
1899
|
+
},
|
|
1900
|
+
{
|
|
1901
|
+
"type": "array",
|
|
1902
|
+
"items": {
|
|
1903
|
+
"$ref": "#/components/schemas/JsonLdListOrSetItem"
|
|
1904
|
+
}
|
|
1905
|
+
}
|
|
1906
|
+
]
|
|
2076
1907
|
},
|
|
2077
1908
|
"@index": {
|
|
2078
|
-
"
|
|
1909
|
+
"type": "string"
|
|
2079
1910
|
}
|
|
2080
1911
|
},
|
|
2081
1912
|
"required": [
|
|
@@ -2105,19 +1936,32 @@
|
|
|
2105
1936
|
"additionalProperties": false,
|
|
2106
1937
|
"properties": {
|
|
2107
1938
|
"@value": {
|
|
2108
|
-
"
|
|
1939
|
+
"type": [
|
|
1940
|
+
"null",
|
|
1941
|
+
"boolean",
|
|
1942
|
+
"number",
|
|
1943
|
+
"string"
|
|
1944
|
+
]
|
|
2109
1945
|
},
|
|
2110
1946
|
"@language": {
|
|
2111
|
-
"
|
|
1947
|
+
"type": "string"
|
|
2112
1948
|
},
|
|
2113
1949
|
"@direction": {
|
|
2114
|
-
"
|
|
1950
|
+
"type": [
|
|
1951
|
+
"string",
|
|
1952
|
+
"null"
|
|
1953
|
+
],
|
|
1954
|
+
"enum": [
|
|
1955
|
+
"ltr",
|
|
1956
|
+
"rtl",
|
|
1957
|
+
null
|
|
1958
|
+
]
|
|
2115
1959
|
},
|
|
2116
1960
|
"@index": {
|
|
2117
|
-
"
|
|
1961
|
+
"type": "string"
|
|
2118
1962
|
},
|
|
2119
1963
|
"@context": {
|
|
2120
|
-
"$ref": "#/components/schemas/
|
|
1964
|
+
"$ref": "#/components/schemas/JsonLdContextDefinitionRoot"
|
|
2121
1965
|
}
|
|
2122
1966
|
},
|
|
2123
1967
|
"required": [
|
|
@@ -2129,16 +1973,21 @@
|
|
|
2129
1973
|
"additionalProperties": false,
|
|
2130
1974
|
"properties": {
|
|
2131
1975
|
"@value": {
|
|
2132
|
-
"
|
|
1976
|
+
"type": [
|
|
1977
|
+
"null",
|
|
1978
|
+
"boolean",
|
|
1979
|
+
"number",
|
|
1980
|
+
"string"
|
|
1981
|
+
]
|
|
2133
1982
|
},
|
|
2134
1983
|
"@type": {
|
|
2135
|
-
"
|
|
1984
|
+
"type": "string"
|
|
2136
1985
|
},
|
|
2137
1986
|
"@index": {
|
|
2138
|
-
"
|
|
1987
|
+
"type": "string"
|
|
2139
1988
|
},
|
|
2140
1989
|
"@context": {
|
|
2141
|
-
"$ref": "#/components/schemas/
|
|
1990
|
+
"$ref": "#/components/schemas/JsonLdContextDefinitionRoot"
|
|
2142
1991
|
}
|
|
2143
1992
|
},
|
|
2144
1993
|
"required": [
|
|
@@ -2153,7 +2002,16 @@
|
|
|
2153
2002
|
"@value": {
|
|
2154
2003
|
"anyOf": [
|
|
2155
2004
|
{
|
|
2156
|
-
"
|
|
2005
|
+
"type": "null"
|
|
2006
|
+
},
|
|
2007
|
+
{
|
|
2008
|
+
"type": "boolean"
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
"type": "number"
|
|
2012
|
+
},
|
|
2013
|
+
{
|
|
2014
|
+
"type": "string"
|
|
2157
2015
|
},
|
|
2158
2016
|
{
|
|
2159
2017
|
"$ref": "#/components/schemas/JsonLdJsonObject"
|
|
@@ -2168,10 +2026,10 @@
|
|
|
2168
2026
|
"const": "@json"
|
|
2169
2027
|
},
|
|
2170
2028
|
"@index": {
|
|
2171
|
-
"
|
|
2029
|
+
"type": "string"
|
|
2172
2030
|
},
|
|
2173
2031
|
"@context": {
|
|
2174
|
-
"$ref": "#/components/schemas/
|
|
2032
|
+
"$ref": "#/components/schemas/JsonLdContextDefinitionRoot"
|
|
2175
2033
|
}
|
|
2176
2034
|
},
|
|
2177
2035
|
"required": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/blob-storage-service",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.34",
|
|
4
4
|
"description": "Blob storage contract implementation and REST endpoint definitions",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@twin.org/api-models": "next",
|
|
18
|
-
"@twin.org/blob-storage-models": "0.0.1-next.
|
|
18
|
+
"@twin.org/blob-storage-models": "0.0.1-next.34",
|
|
19
19
|
"@twin.org/core": "next",
|
|
20
20
|
"@twin.org/crypto": "next",
|
|
21
21
|
"@twin.org/data-json-ld": "next",
|