ldco-contract 0.1.32 → 0.1.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.
@@ -8,6 +8,6 @@ export interface CollectionDTO {
8
8
  isPrivate: boolean;
9
9
  isCopyable: boolean;
10
10
  isArchived: boolean;
11
- archivedAt: Date;
11
+ archivedAt: Date | null;
12
12
  isVerified: boolean;
13
13
  }
@@ -8,5 +8,5 @@ export interface UserCollectionEntity {
8
8
  isPrivate: boolean;
9
9
  isCopyable: boolean;
10
10
  isArchived: boolean;
11
- archivedAt: Date;
11
+ archivedAt: Date | null;
12
12
  }
@@ -9,5 +9,5 @@ export interface CollectionModel {
9
9
  isCopyable: boolean;
10
10
  isVerified: boolean;
11
11
  isArchived: boolean;
12
- archivedAt?: Date;
12
+ archivedAt: Date | null;
13
13
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.32",
2
+ "version": "0.1.34",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -8,7 +8,7 @@ export interface CollectionDTO {
8
8
  isPrivate: boolean; // TODO: Private collections should not be returned in public APIs
9
9
  isCopyable: boolean;
10
10
  isArchived: boolean;
11
- archivedAt: Date;
11
+ archivedAt: Date | null;
12
12
 
13
13
  // Added Data
14
14
  isVerified: boolean;
@@ -8,5 +8,5 @@ export interface UserCollectionEntity {
8
8
  isPrivate: boolean;
9
9
  isCopyable: boolean;
10
10
  isArchived: boolean;
11
- archivedAt: Date;
11
+ archivedAt: Date | null;
12
12
  }
@@ -10,5 +10,5 @@ export interface CollectionModel {
10
10
  isCopyable: boolean;
11
11
  isVerified: boolean;
12
12
  isArchived: boolean;
13
- archivedAt?: Date;
13
+ archivedAt: Date | null;
14
14
  }