@twin.org/blob-storage-service 0.0.1-next.9 → 0.0.1
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/cjs/index.cjs +472 -97
- package/dist/esm/index.mjs +475 -101
- package/dist/types/blobStorageRoutes.d.ts +10 -2
- package/dist/types/blobStorageService.d.ts +46 -28
- package/dist/types/entities/blobStorageEntry.d.ts +55 -0
- package/dist/types/index.d.ts +2 -1
- package/dist/types/models/IBlobStorageServiceConfig.d.ts +1 -2
- package/dist/types/models/IBlobStorageServiceConstructorOptions.d.ts +19 -0
- package/docs/changelog.md +161 -1
- package/docs/open-api/spec.json +1230 -1853
- package/docs/reference/classes/BlobStorageEntry.md +109 -0
- package/docs/reference/classes/BlobStorageService.md +170 -55
- package/docs/reference/functions/blobStorageCreate.md +9 -3
- package/docs/reference/functions/blobStorageGet.md +9 -3
- package/docs/reference/functions/blobStorageGetContent.md +9 -3
- package/docs/reference/functions/blobStorageList.md +31 -0
- package/docs/reference/functions/blobStorageRemove.md +9 -3
- package/docs/reference/functions/blobStorageUpdate.md +9 -3
- package/docs/reference/functions/generateRestRoutesBlobStorage.md +15 -7
- package/docs/reference/index.md +3 -1
- package/docs/reference/interfaces/IBlobStorageServiceConfig.md +1 -7
- package/docs/reference/interfaces/IBlobStorageServiceConstructorOptions.md +33 -0
- package/locales/en.json +2 -1
- package/package.json +15 -13
- package/dist/types/entities/blobMetadata.d.ts +0 -30
- package/docs/reference/classes/BlobMetadata.md +0 -61
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type
|
|
2
|
-
import type
|
|
1
|
+
import { type ICreatedResponse, type IHttpRequestContext, type INoContentResponse, type IRestRoute, type IRestRouteResponseOptions, type ITag } from "@twin.org/api-models";
|
|
2
|
+
import { type IBlobStorageCreateRequest, type IBlobStorageGetContentRequest, type IBlobStorageGetContentResponse, type IBlobStorageGetRequest, type IBlobStorageGetResponse, type IBlobStorageListRequest, type IBlobStorageListResponse, type IBlobStorageRemoveRequest, type IBlobStorageUpdateRequest } from "@twin.org/blob-storage-models";
|
|
3
3
|
/**
|
|
4
4
|
* The tag to associate with the routes.
|
|
5
5
|
*/
|
|
@@ -57,3 +57,11 @@ export declare function blobStorageUpdate(httpRequestContext: IHttpRequestContex
|
|
|
57
57
|
* @returns The response object with additional http response properties.
|
|
58
58
|
*/
|
|
59
59
|
export declare function blobStorageRemove(httpRequestContext: IHttpRequestContext, componentName: string, request: IBlobStorageRemoveRequest): Promise<INoContentResponse>;
|
|
60
|
+
/**
|
|
61
|
+
* List the entries from blob storage.
|
|
62
|
+
* @param httpRequestContext The request context for the API.
|
|
63
|
+
* @param componentName The name of the component to use in the routes.
|
|
64
|
+
* @param request The request.
|
|
65
|
+
* @returns The response object with additional http response properties.
|
|
66
|
+
*/
|
|
67
|
+
export declare function blobStorageList(httpRequestContext: IHttpRequestContext, componentName: string, request: IBlobStorageListRequest): Promise<IBlobStorageListResponse>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { type IBlobStorageComponent } from "@twin.org/blob-storage-models";
|
|
1
|
+
import { type BlobStorageCompressionType, type IBlobStorageComponent, type IBlobStorageEntry, type IBlobStorageEntryList } from "@twin.org/blob-storage-models";
|
|
2
2
|
import { type IJsonLdNodeObject } from "@twin.org/data-json-ld";
|
|
3
|
-
import type
|
|
3
|
+
import { SortDirection, type EntityCondition } from "@twin.org/entity";
|
|
4
|
+
import type { IBlobStorageServiceConstructorOptions } from "./models/IBlobStorageServiceConstructorOptions";
|
|
4
5
|
/**
|
|
5
6
|
* Service for performing blob storage operations to a connector.
|
|
6
7
|
*/
|
|
@@ -15,55 +16,59 @@ export declare class BlobStorageService implements IBlobStorageComponent {
|
|
|
15
16
|
readonly CLASS_NAME: string;
|
|
16
17
|
/**
|
|
17
18
|
* Create a new instance of BlobStorageService.
|
|
18
|
-
* @param options The
|
|
19
|
-
* @param options.metadataEntityStorageType The type of the storage connector for the metadata, defaults to "blob-metadata".
|
|
20
|
-
* @param options.vaultConnectorType The type of the vault connector for encryption, if undefined no encryption will be performed.
|
|
21
|
-
* @param options.config The configuration for the service.
|
|
19
|
+
* @param options The options for the service.
|
|
22
20
|
*/
|
|
23
|
-
constructor(options?:
|
|
24
|
-
metadataEntityStorageType?: string;
|
|
25
|
-
vaultConnectorType?: string;
|
|
26
|
-
config?: IBlobStorageServiceConfig;
|
|
27
|
-
});
|
|
21
|
+
constructor(options?: IBlobStorageServiceConstructorOptions);
|
|
28
22
|
/**
|
|
29
23
|
* Create the blob with some metadata.
|
|
30
24
|
* @param blob The data for the blob in base64 format.
|
|
31
|
-
* @param
|
|
32
|
-
* @param
|
|
25
|
+
* @param encodingFormat Mime type for the blob, will be detected if left undefined.
|
|
26
|
+
* @param fileExtension Extension for the blob, will be detected if left undefined.
|
|
33
27
|
* @param metadata Data for the custom metadata as JSON-LD.
|
|
34
|
-
* @param
|
|
28
|
+
* @param options Optional options for the creation of the blob.
|
|
29
|
+
* @param options.disableEncryption Disables encryption if enabled by default.
|
|
30
|
+
* @param options.overrideVaultKeyId Use a different vault key id for encryption, if not provided the default vault key id will be used.
|
|
31
|
+
* @param options.compress Optional compression type to use for the blob, defaults to no compression.*
|
|
32
|
+
* @param options.namespace The namespace to use for storing, defaults to component configured namespace.
|
|
35
33
|
* @param userIdentity The user identity to use with storage operations.
|
|
36
34
|
* @param nodeIdentity The node identity to use with storage operations.
|
|
37
35
|
* @returns The id of the stored blob in urn format.
|
|
38
36
|
*/
|
|
39
|
-
create(blob: string,
|
|
37
|
+
create(blob: string, encodingFormat?: string, fileExtension?: string, metadata?: IJsonLdNodeObject, options?: {
|
|
38
|
+
disableEncryption?: boolean;
|
|
39
|
+
overrideVaultKeyId?: string;
|
|
40
|
+
compress?: BlobStorageCompressionType;
|
|
41
|
+
namespace?: string;
|
|
42
|
+
}, userIdentity?: string, nodeIdentity?: string): Promise<string>;
|
|
40
43
|
/**
|
|
41
|
-
* Get the blob
|
|
44
|
+
* Get the blob entry.
|
|
42
45
|
* @param id The id of the blob to get in urn format.
|
|
43
|
-
* @param
|
|
46
|
+
* @param options Optional options for the retrieval of the blob.
|
|
47
|
+
* @param options.includeContent Include the content, or just get the metadata.
|
|
48
|
+
* @param options.overrideVaultKeyId Use a different vault key id for decryption, if not provided the default vault key id will be used.
|
|
49
|
+
* @param options.decompress If the content should be decompressed, if it was compressed when stored, defaults to true.
|
|
44
50
|
* @param userIdentity The user identity to use with storage operations.
|
|
45
51
|
* @param nodeIdentity The node identity to use with storage operations.
|
|
46
|
-
* @returns The
|
|
52
|
+
* @returns The entry and data for the blob if it can be found.
|
|
47
53
|
* @throws Not found error if the blob cannot be found.
|
|
48
54
|
*/
|
|
49
|
-
get(id: string,
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}>;
|
|
55
|
+
get(id: string, options?: {
|
|
56
|
+
includeContent?: boolean;
|
|
57
|
+
decompress?: boolean;
|
|
58
|
+
overrideVaultKeyId?: string;
|
|
59
|
+
}, userIdentity?: string, nodeIdentity?: string): Promise<IBlobStorageEntry>;
|
|
55
60
|
/**
|
|
56
61
|
* Update the blob with metadata.
|
|
57
|
-
* @param id The id of the blob
|
|
58
|
-
* @param
|
|
59
|
-
* @param
|
|
62
|
+
* @param id The id of the blob entry to update.
|
|
63
|
+
* @param encodingFormat Mime type for the blob, will be detected if left undefined.
|
|
64
|
+
* @param fileExtension Extension for the blob, will be detected if left undefined.
|
|
60
65
|
* @param metadata Data for the custom metadata as JSON-LD.
|
|
61
66
|
* @param userIdentity The user identity to use with storage operations.
|
|
62
67
|
* @param nodeIdentity The node identity to use with storage operations.
|
|
63
68
|
* @returns Nothing.
|
|
64
69
|
* @throws Not found error if the blob cannot be found.
|
|
65
70
|
*/
|
|
66
|
-
update(id: string,
|
|
71
|
+
update(id: string, encodingFormat?: string, fileExtension?: string, metadata?: IJsonLdNodeObject, userIdentity?: string, nodeIdentity?: string): Promise<void>;
|
|
67
72
|
/**
|
|
68
73
|
* Remove the blob.
|
|
69
74
|
* @param id The id of the blob to remove in urn format.
|
|
@@ -72,4 +77,17 @@ export declare class BlobStorageService implements IBlobStorageComponent {
|
|
|
72
77
|
* @returns Nothing.
|
|
73
78
|
*/
|
|
74
79
|
remove(id: string, userIdentity?: string, nodeIdentity?: string): Promise<void>;
|
|
80
|
+
/**
|
|
81
|
+
* Query all the blob storage entries which match the conditions.
|
|
82
|
+
* @param conditions The conditions to match for the entries.
|
|
83
|
+
* @param orderBy The order for the results, defaults to created.
|
|
84
|
+
* @param orderByDirection The direction for the order, defaults to descending.
|
|
85
|
+
* @param cursor The cursor to request the next page of entries.
|
|
86
|
+
* @param pageSize The suggested number of entries to return in each chunk, in some scenarios can return a different amount.
|
|
87
|
+
* @param userIdentity The user identity to use with storage operations.
|
|
88
|
+
* @param nodeIdentity The node identity to use with storage operations.
|
|
89
|
+
* @returns All the entries for the storage matching the conditions,
|
|
90
|
+
* and a cursor which can be used to request more entities.
|
|
91
|
+
*/
|
|
92
|
+
query(conditions?: EntityCondition<IBlobStorageEntry>, orderBy?: keyof Pick<IBlobStorageEntry, "dateCreated" | "dateModified">, orderByDirection?: SortDirection, cursor?: string, pageSize?: number, userIdentity?: string, nodeIdentity?: string): Promise<IBlobStorageEntryList>;
|
|
75
93
|
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import type { BlobStorageCompressionType } from "@twin.org/blob-storage-models";
|
|
2
|
+
import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
|
|
3
|
+
/**
|
|
4
|
+
* Class representing entry for the blob storage.
|
|
5
|
+
*/
|
|
6
|
+
export declare class BlobStorageEntry {
|
|
7
|
+
/**
|
|
8
|
+
* The id for the blob.
|
|
9
|
+
*/
|
|
10
|
+
id: string;
|
|
11
|
+
/**
|
|
12
|
+
* The date/time when the entry was created.
|
|
13
|
+
*/
|
|
14
|
+
dateCreated: string;
|
|
15
|
+
/**
|
|
16
|
+
* The date/time when the entry was modified.
|
|
17
|
+
*/
|
|
18
|
+
dateModified?: string;
|
|
19
|
+
/**
|
|
20
|
+
* The length of the data in the blob.
|
|
21
|
+
*/
|
|
22
|
+
blobSize: number;
|
|
23
|
+
/**
|
|
24
|
+
* The hash of the data in the blob.
|
|
25
|
+
*/
|
|
26
|
+
blobHash: string;
|
|
27
|
+
/**
|
|
28
|
+
* The mime type for the blob.
|
|
29
|
+
*/
|
|
30
|
+
encodingFormat?: string;
|
|
31
|
+
/**
|
|
32
|
+
* The extension.
|
|
33
|
+
*/
|
|
34
|
+
fileExtension?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The metadata for the blob as JSON-LD.
|
|
37
|
+
*/
|
|
38
|
+
metadata?: IJsonLdNodeObject;
|
|
39
|
+
/**
|
|
40
|
+
* Is the entry encrypted.
|
|
41
|
+
*/
|
|
42
|
+
isEncrypted: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* Is the entry compressed.
|
|
45
|
+
*/
|
|
46
|
+
compression?: BlobStorageCompressionType;
|
|
47
|
+
/**
|
|
48
|
+
* The user identity that created the blob.
|
|
49
|
+
*/
|
|
50
|
+
userIdentity?: string;
|
|
51
|
+
/**
|
|
52
|
+
* The node identity that created the blob.
|
|
53
|
+
*/
|
|
54
|
+
nodeIdentity?: string;
|
|
55
|
+
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./blobStorageRoutes";
|
|
2
2
|
export * from "./blobStorageService";
|
|
3
|
-
export * from "./entities/
|
|
3
|
+
export * from "./entities/blobStorageEntry";
|
|
4
4
|
export * from "./models/IBlobStorageServiceConfig";
|
|
5
|
+
export * from "./models/IBlobStorageServiceConstructorOptions";
|
|
5
6
|
export * from "./restEntryPoints";
|
|
6
7
|
export * from "./schema";
|
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export interface IBlobStorageServiceConfig {
|
|
5
5
|
/**
|
|
6
|
-
* The name of the vault key to use for encryption if
|
|
7
|
-
* @default blob-storage.
|
|
6
|
+
* The name of the vault key to use for encryption, if not configured no encryption will happen.
|
|
8
7
|
*/
|
|
9
8
|
vaultKeyId?: string;
|
|
10
9
|
/**
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { IBlobStorageServiceConfig } from "./IBlobStorageServiceConfig";
|
|
2
|
+
/**
|
|
3
|
+
* Options for the Blob Storage Service constructor.
|
|
4
|
+
*/
|
|
5
|
+
export interface IBlobStorageServiceConstructorOptions {
|
|
6
|
+
/**
|
|
7
|
+
* The type of the storage connector for the metadata.
|
|
8
|
+
* @default blob-storage-entry
|
|
9
|
+
*/
|
|
10
|
+
entryEntityStorageType?: string;
|
|
11
|
+
/**
|
|
12
|
+
* The type of the vault connector for encryption.
|
|
13
|
+
*/
|
|
14
|
+
vaultConnectorType?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The configuration for the service.
|
|
17
|
+
*/
|
|
18
|
+
config?: IBlobStorageServiceConfig;
|
|
19
|
+
}
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,165 @@
|
|
|
1
1
|
# @twin.org/blob-storage-service - Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 0.0.1 (2025-07-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* release to production ([eacfe75](https://github.com/twinfoundation/blob-storage/commit/eacfe754a0dcd9243d9e13d86422327d0a605164))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/blob-storage-models bumped from ^0.0.0 to ^0.0.1
|
|
16
|
+
* devDependencies
|
|
17
|
+
* @twin.org/blob-storage-connector-memory bumped from ^0.0.0 to ^0.0.1
|
|
18
|
+
|
|
19
|
+
## [0.0.1-next.37](https://github.com/twinfoundation/blob-storage/compare/blob-storage-service-v0.0.1-next.36...blob-storage-service-v0.0.1-next.37) (2025-06-20)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* query params force coercion ([a5e547a](https://github.com/twinfoundation/blob-storage/commit/a5e547a775f8997cb04780938c7a9561ddb048d1))
|
|
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.36 to 0.0.1-next.37
|
|
32
|
+
* devDependencies
|
|
33
|
+
* @twin.org/blob-storage-connector-memory bumped from 0.0.1-next.36 to 0.0.1-next.37
|
|
34
|
+
|
|
35
|
+
## [0.0.1-next.36](https://github.com/twinfoundation/blob-storage/compare/blob-storage-service-v0.0.1-next.35...blob-storage-service-v0.0.1-next.36) (2025-06-19)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Features
|
|
39
|
+
|
|
40
|
+
* add compression support ([67d239b](https://github.com/twinfoundation/blob-storage/commit/67d239bca8321bd90bf4ff93167c564130309730))
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
### Dependencies
|
|
44
|
+
|
|
45
|
+
* The following workspace dependencies were updated
|
|
46
|
+
* dependencies
|
|
47
|
+
* @twin.org/blob-storage-models bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
48
|
+
* devDependencies
|
|
49
|
+
* @twin.org/blob-storage-connector-memory bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
50
|
+
|
|
51
|
+
## [0.0.1-next.35](https://github.com/twinfoundation/blob-storage/compare/blob-storage-service-v0.0.1-next.34...blob-storage-service-v0.0.1-next.35) (2025-06-17)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
### Features
|
|
55
|
+
|
|
56
|
+
* additional encryption options on per item basis ([4b95a65](https://github.com/twinfoundation/blob-storage/commit/4b95a656d19e3b571cea905e36f29b679b13e1e8))
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
### Dependencies
|
|
60
|
+
|
|
61
|
+
* The following workspace dependencies were updated
|
|
62
|
+
* dependencies
|
|
63
|
+
* @twin.org/blob-storage-models bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
64
|
+
* devDependencies
|
|
65
|
+
* @twin.org/blob-storage-connector-memory bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
66
|
+
|
|
67
|
+
## [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)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
### Features
|
|
71
|
+
|
|
72
|
+
* update dependencies ([56f0094](https://github.com/twinfoundation/blob-storage/commit/56f0094b68d8bd22864cd899ac1b61d95540f719))
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
### Dependencies
|
|
76
|
+
|
|
77
|
+
* The following workspace dependencies were updated
|
|
78
|
+
* dependencies
|
|
79
|
+
* @twin.org/blob-storage-models bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
80
|
+
* devDependencies
|
|
81
|
+
* @twin.org/blob-storage-connector-memory bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
82
|
+
|
|
83
|
+
## [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)
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
### Miscellaneous Chores
|
|
87
|
+
|
|
88
|
+
* **blob-storage-service:** Synchronize repo versions
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
### Dependencies
|
|
92
|
+
|
|
93
|
+
* The following workspace dependencies were updated
|
|
94
|
+
* dependencies
|
|
95
|
+
* @twin.org/blob-storage-models bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
96
|
+
* devDependencies
|
|
97
|
+
* @twin.org/blob-storage-connector-memory bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
98
|
+
|
|
99
|
+
## [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)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
### Features
|
|
103
|
+
|
|
104
|
+
* update to support fully qualified data type names ([3297d69](https://github.com/twinfoundation/blob-storage/commit/3297d69d332058b0f0141002087f56ba230620e1))
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
### Dependencies
|
|
108
|
+
|
|
109
|
+
* The following workspace dependencies were updated
|
|
110
|
+
* dependencies
|
|
111
|
+
* @twin.org/blob-storage-models bumped from 0.0.1-next.31 to 0.0.1-next.32
|
|
112
|
+
* devDependencies
|
|
113
|
+
* @twin.org/blob-storage-connector-memory bumped from 0.0.1-next.31 to 0.0.1-next.32
|
|
114
|
+
|
|
115
|
+
## [0.0.1-next.31](https://github.com/twinfoundation/blob-storage/compare/blob-storage-service-v0.0.1-next.30...blob-storage-service-v0.0.1-next.31) (2025-05-08)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Features
|
|
119
|
+
|
|
120
|
+
* use standard list json ld types ([d6bdfd6](https://github.com/twinfoundation/blob-storage/commit/d6bdfd68af47f70f3cc53658b4a12543497e1f48))
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
### Dependencies
|
|
124
|
+
|
|
125
|
+
* The following workspace dependencies were updated
|
|
126
|
+
* dependencies
|
|
127
|
+
* @twin.org/blob-storage-models bumped from 0.0.1-next.30 to 0.0.1-next.31
|
|
128
|
+
* devDependencies
|
|
129
|
+
* @twin.org/blob-storage-connector-memory bumped from 0.0.1-next.30 to 0.0.1-next.31
|
|
130
|
+
|
|
131
|
+
## [0.0.1-next.30](https://github.com/twinfoundation/blob-storage/compare/blob-storage-service-v0.0.1-next.29...blob-storage-service-v0.0.1-next.30) (2025-04-17)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
### Features
|
|
135
|
+
|
|
136
|
+
* use shared store mechanism ([#12](https://github.com/twinfoundation/blob-storage/issues/12)) ([cae8110](https://github.com/twinfoundation/blob-storage/commit/cae8110681847a1ac4fcac968b8196694e49c320))
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Dependencies
|
|
140
|
+
|
|
141
|
+
* The following workspace dependencies were updated
|
|
142
|
+
* dependencies
|
|
143
|
+
* @twin.org/blob-storage-models bumped from 0.0.1-next.29 to 0.0.1-next.30
|
|
144
|
+
* devDependencies
|
|
145
|
+
* @twin.org/blob-storage-connector-memory bumped from 0.0.1-next.29 to 0.0.1-next.30
|
|
146
|
+
|
|
147
|
+
## [0.0.1-next.29](https://github.com/twinfoundation/blob-storage/compare/blob-storage-service-v0.0.1-next.28...blob-storage-service-v0.0.1-next.29) (2025-03-28)
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
### Bug Fixes
|
|
151
|
+
|
|
152
|
+
* Adding the optional flag to the entity ([#10](https://github.com/twinfoundation/blob-storage/issues/10)) ([626677e](https://github.com/twinfoundation/blob-storage/commit/626677e5730d23535a0eb1f36f8394d941ff2447))
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
### Dependencies
|
|
156
|
+
|
|
157
|
+
* The following workspace dependencies were updated
|
|
158
|
+
* dependencies
|
|
159
|
+
* @twin.org/blob-storage-models bumped from 0.0.1-next.28 to 0.0.1-next.29
|
|
160
|
+
* devDependencies
|
|
161
|
+
* @twin.org/blob-storage-connector-memory bumped from 0.0.1-next.28 to 0.0.1-next.29
|
|
162
|
+
|
|
163
|
+
## v0.0.1-next.28
|
|
4
164
|
|
|
5
165
|
- Initial Release
|