@targoninc/lyda-shared 0.0.59 → 0.0.61
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.
|
@@ -4,6 +4,7 @@ export declare enum UserSettings {
|
|
|
4
4
|
notificationFollow = "notification_follow",
|
|
5
5
|
notificationLike = "notification_like",
|
|
6
6
|
notificationRepost = "notification_repost",
|
|
7
|
+
notificationSale = "notification_sale",
|
|
7
8
|
paypalMail = "paypalMail",
|
|
8
9
|
publicLikes = "publicLikes",
|
|
9
10
|
theme = "theme",
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Album } from "./db/lyda/Album.ts";
|
|
2
2
|
import { Playlist } from "./db/lyda/Playlist.ts";
|
|
3
|
+
import { FeedType } from "../Enums/FeedType.ts";
|
|
3
4
|
/**
|
|
4
5
|
* Represents the source from where media is currently being played.
|
|
5
6
|
*/
|
|
@@ -8,4 +9,5 @@ export interface PlayingFrom {
|
|
|
8
9
|
name: string;
|
|
9
10
|
id?: number;
|
|
10
11
|
entity?: Album | Playlist;
|
|
12
|
+
feedType?: FeedType;
|
|
11
13
|
}
|
package/package.json
CHANGED
|
@@ -4,6 +4,7 @@ export enum UserSettings {
|
|
|
4
4
|
notificationFollow = "notification_follow",
|
|
5
5
|
notificationLike = "notification_like",
|
|
6
6
|
notificationRepost = "notification_repost",
|
|
7
|
+
notificationSale = "notification_sale",
|
|
7
8
|
paypalMail = "paypalMail",
|
|
8
9
|
publicLikes = "publicLikes",
|
|
9
10
|
theme = "theme",
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import {Album} from "./db/lyda/Album.ts";
|
|
2
2
|
import {Playlist} from "./db/lyda/Playlist.ts";
|
|
3
|
+
import {FeedType} from "../Enums/FeedType.ts";
|
|
3
4
|
|
|
4
5
|
/**
|
|
5
6
|
* Represents the source from where media is currently being played.
|
|
@@ -9,4 +10,5 @@ export interface PlayingFrom {
|
|
|
9
10
|
name: string;
|
|
10
11
|
id?: number;
|
|
11
12
|
entity?: Album | Playlist;
|
|
13
|
+
feedType?: FeedType;
|
|
12
14
|
}
|