ldco-contract 0.1.11 → 0.1.13

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.
@@ -6,7 +6,5 @@ export interface TrackDTO {
6
6
  uri: string;
7
7
  duration_ms: number;
8
8
  explicit: boolean;
9
- is_playable: boolean;
10
- preview_url: string;
11
9
  isVerified: boolean;
12
10
  }
@@ -8,6 +8,9 @@ export interface VenueDTO {
8
8
  contactEmail: string;
9
9
  contactName: string;
10
10
  contactPhone: string;
11
+ isDeleted: boolean;
12
+ deletedAt: Date | null;
13
+ createdAt: Date | null;
11
14
  lessonsIds: string[];
12
15
  isVerified: boolean;
13
16
  }
@@ -6,7 +6,5 @@ export interface TrackModel {
6
6
  uri: string;
7
7
  duration_ms: number;
8
8
  explicit: boolean;
9
- is_playable: boolean;
10
- preview_url: string;
11
9
  isVerified: boolean;
12
10
  }
@@ -10,4 +10,7 @@ export interface VenueModel {
10
10
  contactPhone: string;
11
11
  lessons: LessonModel[];
12
12
  isVerified: boolean;
13
+ isDeleted: boolean;
14
+ deletedAt: Date | null;
15
+ createdAt: Date | null;
13
16
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.11",
2
+ "version": "0.1.13",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -6,7 +6,5 @@ export interface TrackDTO {
6
6
  uri: string;
7
7
  duration_ms: number;
8
8
  explicit: boolean;
9
- is_playable: boolean;
10
- preview_url: string;
11
9
  isVerified: boolean;
12
10
  }
@@ -8,6 +8,9 @@ export interface VenueDTO {
8
8
  contactEmail: string;
9
9
  contactName: string;
10
10
  contactPhone: string;
11
+ isDeleted: boolean;
12
+ deletedAt: Date | null;
13
+ createdAt: Date | null;
11
14
 
12
15
  // Added Data
13
16
  lessonsIds: string[];
@@ -6,7 +6,5 @@ export interface TrackModel {
6
6
  uri: string;
7
7
  duration_ms: number;
8
8
  explicit: boolean;
9
- is_playable: boolean;
10
- preview_url: string;
11
9
  isVerified: boolean;
12
10
  }
@@ -11,4 +11,7 @@ export interface VenueModel {
11
11
  contactPhone: string;
12
12
  lessons: LessonModel[];
13
13
  isVerified: boolean;
14
+ isDeleted: boolean;
15
+ deletedAt: Date | null;
16
+ createdAt: Date | null;
14
17
  }