@twin.org/blob-storage-service 0.0.1-next.26 → 0.0.1-next.27

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.
@@ -994,7 +994,12 @@ __decorate([
994
994
  __metadata("design:type", String)
995
995
  ], exports.BlobStorageEntry.prototype, "dateCreated", void 0);
996
996
  __decorate([
997
- entity.property({ type: "string", format: "date-time", sortDirection: entity.SortDirection.Descending }),
997
+ entity.property({
998
+ type: "string",
999
+ format: "date-time",
1000
+ sortDirection: entity.SortDirection.Descending,
1001
+ optional: true
1002
+ }),
998
1003
  __metadata("design:type", String)
999
1004
  ], exports.BlobStorageEntry.prototype, "dateModified", void 0);
1000
1005
  __decorate([
@@ -1006,23 +1011,23 @@ __decorate([
1006
1011
  __metadata("design:type", String)
1007
1012
  ], exports.BlobStorageEntry.prototype, "blobHash", void 0);
1008
1013
  __decorate([
1009
- entity.property({ type: "string" }),
1014
+ entity.property({ type: "string", optional: true }),
1010
1015
  __metadata("design:type", String)
1011
1016
  ], exports.BlobStorageEntry.prototype, "encodingFormat", void 0);
1012
1017
  __decorate([
1013
- entity.property({ type: "string" }),
1018
+ entity.property({ type: "string", optional: true }),
1014
1019
  __metadata("design:type", String)
1015
1020
  ], exports.BlobStorageEntry.prototype, "fileExtension", void 0);
1016
1021
  __decorate([
1017
- entity.property({ type: "object", itemTypeRef: "IJsonLdNodeObject" }),
1022
+ entity.property({ type: "object", itemTypeRef: "IJsonLdNodeObject", optional: true }),
1018
1023
  __metadata("design:type", Object)
1019
1024
  ], exports.BlobStorageEntry.prototype, "metadata", void 0);
1020
1025
  __decorate([
1021
- entity.property({ type: "string" }),
1026
+ entity.property({ type: "string", optional: true }),
1022
1027
  __metadata("design:type", String)
1023
1028
  ], exports.BlobStorageEntry.prototype, "userIdentity", void 0);
1024
1029
  __decorate([
1025
- entity.property({ type: "string" }),
1030
+ entity.property({ type: "string", optional: true }),
1026
1031
  __metadata("design:type", String)
1027
1032
  ], exports.BlobStorageEntry.prototype, "nodeIdentity", void 0);
1028
1033
  exports.BlobStorageEntry = __decorate([
@@ -992,7 +992,12 @@ __decorate([
992
992
  __metadata("design:type", String)
993
993
  ], BlobStorageEntry.prototype, "dateCreated", void 0);
994
994
  __decorate([
995
- property({ type: "string", format: "date-time", sortDirection: SortDirection.Descending }),
995
+ property({
996
+ type: "string",
997
+ format: "date-time",
998
+ sortDirection: SortDirection.Descending,
999
+ optional: true
1000
+ }),
996
1001
  __metadata("design:type", String)
997
1002
  ], BlobStorageEntry.prototype, "dateModified", void 0);
998
1003
  __decorate([
@@ -1004,23 +1009,23 @@ __decorate([
1004
1009
  __metadata("design:type", String)
1005
1010
  ], BlobStorageEntry.prototype, "blobHash", void 0);
1006
1011
  __decorate([
1007
- property({ type: "string" }),
1012
+ property({ type: "string", optional: true }),
1008
1013
  __metadata("design:type", String)
1009
1014
  ], BlobStorageEntry.prototype, "encodingFormat", void 0);
1010
1015
  __decorate([
1011
- property({ type: "string" }),
1016
+ property({ type: "string", optional: true }),
1012
1017
  __metadata("design:type", String)
1013
1018
  ], BlobStorageEntry.prototype, "fileExtension", void 0);
1014
1019
  __decorate([
1015
- property({ type: "object", itemTypeRef: "IJsonLdNodeObject" }),
1020
+ property({ type: "object", itemTypeRef: "IJsonLdNodeObject", optional: true }),
1016
1021
  __metadata("design:type", Object)
1017
1022
  ], BlobStorageEntry.prototype, "metadata", void 0);
1018
1023
  __decorate([
1019
- property({ type: "string" }),
1024
+ property({ type: "string", optional: true }),
1020
1025
  __metadata("design:type", String)
1021
1026
  ], BlobStorageEntry.prototype, "userIdentity", void 0);
1022
1027
  __decorate([
1023
- property({ type: "string" }),
1028
+ property({ type: "string", optional: true }),
1024
1029
  __metadata("design:type", String)
1025
1030
  ], BlobStorageEntry.prototype, "nodeIdentity", void 0);
1026
1031
  BlobStorageEntry = __decorate([
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/blob-storage-service - Changelog
2
2
 
3
- ## v0.0.1-next.26
3
+ ## v0.0.1-next.27
4
4
 
5
5
  - Initial Release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/blob-storage-service",
3
- "version": "0.0.1-next.26",
3
+ "version": "0.0.1-next.27",
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.26",
18
+ "@twin.org/blob-storage-models": "0.0.1-next.27",
19
19
  "@twin.org/core": "next",
20
20
  "@twin.org/crypto": "next",
21
21
  "@twin.org/data-json-ld": "next",