@earbug/db-models 0.0.31 → 0.0.33
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/AffinityTier.d.ts +24 -0
- package/dist/CanonArtist.d.ts +12 -0
- package/dist/CanonGenre.d.ts +12 -0
- package/dist/PlatformUserPlaylist.d.ts +24 -0
- package/dist/PlatformUserPlaylistArtistAffinity.d.ts +40 -0
- package/dist/PlatformUserPlaylistArtistAffinity.js +120 -0
- package/dist/PlatformUserPlaylistGenreAffinity.d.ts +40 -0
- package/dist/PlatformUserPlaylistGenreAffinity.js +120 -0
- package/dist/RadioShowMedia.d.ts +11 -1
- package/dist/RadioShowMedia.js +23 -0
- package/dist/RadioShowPlacement.d.ts +3 -1
- package/dist/RadioShowPlacement.js +4 -0
- package/dist/init-models.d.ts +8 -2
- package/dist/init-models.js +21 -1
- package/models/AffinityTier.ts +26 -0
- package/models/CanonArtist.ts +13 -0
- package/models/CanonGenre.ts +13 -0
- package/models/PlatformUserPlaylist.ts +26 -0
- package/models/PlatformUserPlaylistArtistAffinity.ts +136 -0
- package/models/PlatformUserPlaylistGenreAffinity.ts +136 -0
- package/models/RadioShowMedia.ts +34 -1
- package/models/RadioShowPlacement.ts +7 -1
- package/models/init-models.ts +26 -0
- package/package.json +1 -1
package/dist/AffinityTier.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ import * as Sequelize from 'sequelize';
|
|
|
2
2
|
import { Model } from 'sequelize';
|
|
3
3
|
import type { JukeboxSessionArtistAffinity, JukeboxSessionArtistAffinityId } from './JukeboxSessionArtistAffinity';
|
|
4
4
|
import type { JukeboxSessionGenreAffinity, JukeboxSessionGenreAffinityId } from './JukeboxSessionGenreAffinity';
|
|
5
|
+
import type { PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId } from './PlatformUserPlaylistArtistAffinity';
|
|
6
|
+
import type { PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId } from './PlatformUserPlaylistGenreAffinity';
|
|
5
7
|
import type { UserArtistAffinity, UserArtistAffinityId } from './UserArtistAffinity';
|
|
6
8
|
import type { UserGenreAffinity, UserGenreAffinityId } from './UserGenreAffinity';
|
|
7
9
|
export interface AffinityTierAttributes {
|
|
@@ -36,6 +38,28 @@ export declare class AffinityTier extends Model<AffinityTierAttributes, Affinity
|
|
|
36
38
|
hasJukeboxSessionGenreAffinity: Sequelize.HasManyHasAssociationMixin<JukeboxSessionGenreAffinity, JukeboxSessionGenreAffinityId>;
|
|
37
39
|
hasJukeboxSessionGenreAffinities: Sequelize.HasManyHasAssociationsMixin<JukeboxSessionGenreAffinity, JukeboxSessionGenreAffinityId>;
|
|
38
40
|
countJukeboxSessionGenreAffinities: Sequelize.HasManyCountAssociationsMixin;
|
|
41
|
+
platformUserPlaylistArtistAffinities: PlatformUserPlaylistArtistAffinity[];
|
|
42
|
+
getPlatformUserPlaylistArtistAffinities: Sequelize.HasManyGetAssociationsMixin<PlatformUserPlaylistArtistAffinity>;
|
|
43
|
+
setPlatformUserPlaylistArtistAffinities: Sequelize.HasManySetAssociationsMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
44
|
+
addPlatformUserPlaylistArtistAffinity: Sequelize.HasManyAddAssociationMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
45
|
+
addPlatformUserPlaylistArtistAffinities: Sequelize.HasManyAddAssociationsMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
46
|
+
createPlatformUserPlaylistArtistAffinity: Sequelize.HasManyCreateAssociationMixin<PlatformUserPlaylistArtistAffinity>;
|
|
47
|
+
removePlatformUserPlaylistArtistAffinity: Sequelize.HasManyRemoveAssociationMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
48
|
+
removePlatformUserPlaylistArtistAffinities: Sequelize.HasManyRemoveAssociationsMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
49
|
+
hasPlatformUserPlaylistArtistAffinity: Sequelize.HasManyHasAssociationMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
50
|
+
hasPlatformUserPlaylistArtistAffinities: Sequelize.HasManyHasAssociationsMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
51
|
+
countPlatformUserPlaylistArtistAffinities: Sequelize.HasManyCountAssociationsMixin;
|
|
52
|
+
platformUserPlaylistGenreAffinities: PlatformUserPlaylistGenreAffinity[];
|
|
53
|
+
getPlatformUserPlaylistGenreAffinities: Sequelize.HasManyGetAssociationsMixin<PlatformUserPlaylistGenreAffinity>;
|
|
54
|
+
setPlatformUserPlaylistGenreAffinities: Sequelize.HasManySetAssociationsMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
55
|
+
addPlatformUserPlaylistGenreAffinity: Sequelize.HasManyAddAssociationMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
56
|
+
addPlatformUserPlaylistGenreAffinities: Sequelize.HasManyAddAssociationsMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
57
|
+
createPlatformUserPlaylistGenreAffinity: Sequelize.HasManyCreateAssociationMixin<PlatformUserPlaylistGenreAffinity>;
|
|
58
|
+
removePlatformUserPlaylistGenreAffinity: Sequelize.HasManyRemoveAssociationMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
59
|
+
removePlatformUserPlaylistGenreAffinities: Sequelize.HasManyRemoveAssociationsMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
60
|
+
hasPlatformUserPlaylistGenreAffinity: Sequelize.HasManyHasAssociationMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
61
|
+
hasPlatformUserPlaylistGenreAffinities: Sequelize.HasManyHasAssociationsMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
62
|
+
countPlatformUserPlaylistGenreAffinities: Sequelize.HasManyCountAssociationsMixin;
|
|
39
63
|
userArtistAffinities: UserArtistAffinity[];
|
|
40
64
|
getUserArtistAffinities: Sequelize.HasManyGetAssociationsMixin<UserArtistAffinity>;
|
|
41
65
|
setUserArtistAffinities: Sequelize.HasManySetAssociationsMixin<UserArtistAffinity, UserArtistAffinityId>;
|
package/dist/CanonArtist.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import type { MerchOrchestration, MerchOrchestrationId } from './MerchOrchestrat
|
|
|
11
11
|
import type { NewsArticle, NewsArticleId } from './NewsArticle';
|
|
12
12
|
import type { PlatformAlbum, PlatformAlbumId } from './PlatformAlbum';
|
|
13
13
|
import type { PlatformArtist, PlatformArtistId } from './PlatformArtist';
|
|
14
|
+
import type { PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId } from './PlatformUserPlaylistArtistAffinity';
|
|
14
15
|
import type { UserArtistAffinity, UserArtistAffinityId } from './UserArtistAffinity';
|
|
15
16
|
export interface CanonArtistAttributes {
|
|
16
17
|
name: string;
|
|
@@ -170,6 +171,17 @@ export declare class CanonArtist extends Model<CanonArtistAttributes, CanonArtis
|
|
|
170
171
|
hasPlatformArtistIdPlatformArtist: Sequelize.BelongsToManyHasAssociationMixin<PlatformArtist, PlatformArtistId>;
|
|
171
172
|
hasPlatformArtistIdPlatformArtists: Sequelize.BelongsToManyHasAssociationsMixin<PlatformArtist, PlatformArtistId>;
|
|
172
173
|
countPlatformArtistIdPlatformArtists: Sequelize.BelongsToManyCountAssociationsMixin;
|
|
174
|
+
platformUserPlaylistArtistAffinities: PlatformUserPlaylistArtistAffinity[];
|
|
175
|
+
getPlatformUserPlaylistArtistAffinities: Sequelize.HasManyGetAssociationsMixin<PlatformUserPlaylistArtistAffinity>;
|
|
176
|
+
setPlatformUserPlaylistArtistAffinities: Sequelize.HasManySetAssociationsMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
177
|
+
addPlatformUserPlaylistArtistAffinity: Sequelize.HasManyAddAssociationMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
178
|
+
addPlatformUserPlaylistArtistAffinities: Sequelize.HasManyAddAssociationsMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
179
|
+
createPlatformUserPlaylistArtistAffinity: Sequelize.HasManyCreateAssociationMixin<PlatformUserPlaylistArtistAffinity>;
|
|
180
|
+
removePlatformUserPlaylistArtistAffinity: Sequelize.HasManyRemoveAssociationMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
181
|
+
removePlatformUserPlaylistArtistAffinities: Sequelize.HasManyRemoveAssociationsMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
182
|
+
hasPlatformUserPlaylistArtistAffinity: Sequelize.HasManyHasAssociationMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
183
|
+
hasPlatformUserPlaylistArtistAffinities: Sequelize.HasManyHasAssociationsMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
184
|
+
countPlatformUserPlaylistArtistAffinities: Sequelize.HasManyCountAssociationsMixin;
|
|
173
185
|
userArtistAffinities: UserArtistAffinity[];
|
|
174
186
|
getUserArtistAffinities: Sequelize.HasManyGetAssociationsMixin<UserArtistAffinity>;
|
|
175
187
|
setUserArtistAffinities: Sequelize.HasManySetAssociationsMixin<UserArtistAffinity, UserArtistAffinityId>;
|
package/dist/CanonGenre.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import type { JukeboxSessionGenreAffinity, JukeboxSessionGenreAffinityId } from
|
|
|
10
10
|
import type { PlatformAlbum, PlatformAlbumId } from './PlatformAlbum';
|
|
11
11
|
import type { PlatformArtist, PlatformArtistId } from './PlatformArtist';
|
|
12
12
|
import type { PlatformGenre, PlatformGenreId } from './PlatformGenre';
|
|
13
|
+
import type { PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId } from './PlatformUserPlaylistGenreAffinity';
|
|
13
14
|
import type { RadioShowGenres, RadioShowGenresId } from './RadioShowGenres';
|
|
14
15
|
import type { UserGenreAffinity, UserGenreAffinityId } from './UserGenreAffinity';
|
|
15
16
|
export interface CanonGenreAttributes {
|
|
@@ -143,6 +144,17 @@ export declare class CanonGenre extends Model<CanonGenreAttributes, CanonGenreCr
|
|
|
143
144
|
hasPlatformGenreIdPlatformGenre: Sequelize.BelongsToManyHasAssociationMixin<PlatformGenre, PlatformGenreId>;
|
|
144
145
|
hasPlatformGenreIdPlatformGenres: Sequelize.BelongsToManyHasAssociationsMixin<PlatformGenre, PlatformGenreId>;
|
|
145
146
|
countPlatformGenreIdPlatformGenres: Sequelize.BelongsToManyCountAssociationsMixin;
|
|
147
|
+
platformUserPlaylistGenreAffinities: PlatformUserPlaylistGenreAffinity[];
|
|
148
|
+
getPlatformUserPlaylistGenreAffinities: Sequelize.HasManyGetAssociationsMixin<PlatformUserPlaylistGenreAffinity>;
|
|
149
|
+
setPlatformUserPlaylistGenreAffinities: Sequelize.HasManySetAssociationsMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
150
|
+
addPlatformUserPlaylistGenreAffinity: Sequelize.HasManyAddAssociationMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
151
|
+
addPlatformUserPlaylistGenreAffinities: Sequelize.HasManyAddAssociationsMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
152
|
+
createPlatformUserPlaylistGenreAffinity: Sequelize.HasManyCreateAssociationMixin<PlatformUserPlaylistGenreAffinity>;
|
|
153
|
+
removePlatformUserPlaylistGenreAffinity: Sequelize.HasManyRemoveAssociationMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
154
|
+
removePlatformUserPlaylistGenreAffinities: Sequelize.HasManyRemoveAssociationsMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
155
|
+
hasPlatformUserPlaylistGenreAffinity: Sequelize.HasManyHasAssociationMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
156
|
+
hasPlatformUserPlaylistGenreAffinities: Sequelize.HasManyHasAssociationsMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
157
|
+
countPlatformUserPlaylistGenreAffinities: Sequelize.HasManyCountAssociationsMixin;
|
|
146
158
|
radioShowGenres: RadioShowGenres[];
|
|
147
159
|
getRadioShowGenres: Sequelize.HasManyGetAssociationsMixin<RadioShowGenres>;
|
|
148
160
|
setRadioShowGenres: Sequelize.HasManySetAssociationsMixin<RadioShowGenres, RadioShowGenresId>;
|
|
@@ -2,6 +2,8 @@ import * as Sequelize from 'sequelize';
|
|
|
2
2
|
import { Model, Optional } from 'sequelize';
|
|
3
3
|
import type { AppUser, AppUserId } from './AppUser';
|
|
4
4
|
import type { Platform, PlatformId } from './Platform';
|
|
5
|
+
import type { PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId } from './PlatformUserPlaylistArtistAffinity';
|
|
6
|
+
import type { PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId } from './PlatformUserPlaylistGenreAffinity';
|
|
5
7
|
import type { PlatformUserPlaylistTrack, PlatformUserPlaylistTrackId } from './PlatformUserPlaylistTrack';
|
|
6
8
|
import type { State, StateId } from './State';
|
|
7
9
|
import type { UserComments, UserCommentsId } from './UserComments';
|
|
@@ -47,6 +49,28 @@ export declare class PlatformUserPlaylist extends Model<PlatformUserPlaylistAttr
|
|
|
47
49
|
getPlatform: Sequelize.BelongsToGetAssociationMixin<Platform>;
|
|
48
50
|
setPlatform: Sequelize.BelongsToSetAssociationMixin<Platform, PlatformId>;
|
|
49
51
|
createPlatform: Sequelize.BelongsToCreateAssociationMixin<Platform>;
|
|
52
|
+
platformUserPlaylistArtistAffinities: PlatformUserPlaylistArtistAffinity[];
|
|
53
|
+
getPlatformUserPlaylistArtistAffinities: Sequelize.HasManyGetAssociationsMixin<PlatformUserPlaylistArtistAffinity>;
|
|
54
|
+
setPlatformUserPlaylistArtistAffinities: Sequelize.HasManySetAssociationsMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
55
|
+
addPlatformUserPlaylistArtistAffinity: Sequelize.HasManyAddAssociationMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
56
|
+
addPlatformUserPlaylistArtistAffinities: Sequelize.HasManyAddAssociationsMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
57
|
+
createPlatformUserPlaylistArtistAffinity: Sequelize.HasManyCreateAssociationMixin<PlatformUserPlaylistArtistAffinity>;
|
|
58
|
+
removePlatformUserPlaylistArtistAffinity: Sequelize.HasManyRemoveAssociationMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
59
|
+
removePlatformUserPlaylistArtistAffinities: Sequelize.HasManyRemoveAssociationsMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
60
|
+
hasPlatformUserPlaylistArtistAffinity: Sequelize.HasManyHasAssociationMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
61
|
+
hasPlatformUserPlaylistArtistAffinities: Sequelize.HasManyHasAssociationsMixin<PlatformUserPlaylistArtistAffinity, PlatformUserPlaylistArtistAffinityId>;
|
|
62
|
+
countPlatformUserPlaylistArtistAffinities: Sequelize.HasManyCountAssociationsMixin;
|
|
63
|
+
platformUserPlaylistGenreAffinities: PlatformUserPlaylistGenreAffinity[];
|
|
64
|
+
getPlatformUserPlaylistGenreAffinities: Sequelize.HasManyGetAssociationsMixin<PlatformUserPlaylistGenreAffinity>;
|
|
65
|
+
setPlatformUserPlaylistGenreAffinities: Sequelize.HasManySetAssociationsMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
66
|
+
addPlatformUserPlaylistGenreAffinity: Sequelize.HasManyAddAssociationMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
67
|
+
addPlatformUserPlaylistGenreAffinities: Sequelize.HasManyAddAssociationsMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
68
|
+
createPlatformUserPlaylistGenreAffinity: Sequelize.HasManyCreateAssociationMixin<PlatformUserPlaylistGenreAffinity>;
|
|
69
|
+
removePlatformUserPlaylistGenreAffinity: Sequelize.HasManyRemoveAssociationMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
70
|
+
removePlatformUserPlaylistGenreAffinities: Sequelize.HasManyRemoveAssociationsMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
71
|
+
hasPlatformUserPlaylistGenreAffinity: Sequelize.HasManyHasAssociationMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
72
|
+
hasPlatformUserPlaylistGenreAffinities: Sequelize.HasManyHasAssociationsMixin<PlatformUserPlaylistGenreAffinity, PlatformUserPlaylistGenreAffinityId>;
|
|
73
|
+
countPlatformUserPlaylistGenreAffinities: Sequelize.HasManyCountAssociationsMixin;
|
|
50
74
|
platformUserPlaylistTracks: PlatformUserPlaylistTrack[];
|
|
51
75
|
getPlatformUserPlaylistTracks: Sequelize.HasManyGetAssociationsMixin<PlatformUserPlaylistTrack>;
|
|
52
76
|
setPlatformUserPlaylistTracks: Sequelize.HasManySetAssociationsMixin<PlatformUserPlaylistTrack, PlatformUserPlaylistTrackId>;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as Sequelize from 'sequelize';
|
|
2
|
+
import { Model, Optional } from 'sequelize';
|
|
3
|
+
import type { AffinityTier, AffinityTierId } from './AffinityTier';
|
|
4
|
+
import type { CanonArtist, CanonArtistId } from './CanonArtist';
|
|
5
|
+
import type { PlatformUserPlaylist, PlatformUserPlaylistId } from './PlatformUserPlaylist';
|
|
6
|
+
export interface PlatformUserPlaylistArtistAffinityAttributes {
|
|
7
|
+
id: string;
|
|
8
|
+
createdAt: Date;
|
|
9
|
+
updatedAt: Date;
|
|
10
|
+
platformUserPlaylistId: string;
|
|
11
|
+
canonArtistId: string;
|
|
12
|
+
affinityTierId: number;
|
|
13
|
+
rank: number;
|
|
14
|
+
}
|
|
15
|
+
export type PlatformUserPlaylistArtistAffinityPk = "id";
|
|
16
|
+
export type PlatformUserPlaylistArtistAffinityId = PlatformUserPlaylistArtistAffinity[PlatformUserPlaylistArtistAffinityPk];
|
|
17
|
+
export type PlatformUserPlaylistArtistAffinityOptionalAttributes = "id" | "createdAt" | "updatedAt";
|
|
18
|
+
export type PlatformUserPlaylistArtistAffinityCreationAttributes = Optional<PlatformUserPlaylistArtistAffinityAttributes, PlatformUserPlaylistArtistAffinityOptionalAttributes>;
|
|
19
|
+
export declare class PlatformUserPlaylistArtistAffinity extends Model<PlatformUserPlaylistArtistAffinityAttributes, PlatformUserPlaylistArtistAffinityCreationAttributes> implements PlatformUserPlaylistArtistAffinityAttributes {
|
|
20
|
+
id: string;
|
|
21
|
+
createdAt: Date;
|
|
22
|
+
updatedAt: Date;
|
|
23
|
+
platformUserPlaylistId: string;
|
|
24
|
+
canonArtistId: string;
|
|
25
|
+
affinityTierId: number;
|
|
26
|
+
rank: number;
|
|
27
|
+
affinityTier: AffinityTier;
|
|
28
|
+
getAffinityTier: Sequelize.BelongsToGetAssociationMixin<AffinityTier>;
|
|
29
|
+
setAffinityTier: Sequelize.BelongsToSetAssociationMixin<AffinityTier, AffinityTierId>;
|
|
30
|
+
createAffinityTier: Sequelize.BelongsToCreateAssociationMixin<AffinityTier>;
|
|
31
|
+
canonArtist: CanonArtist;
|
|
32
|
+
getCanonArtist: Sequelize.BelongsToGetAssociationMixin<CanonArtist>;
|
|
33
|
+
setCanonArtist: Sequelize.BelongsToSetAssociationMixin<CanonArtist, CanonArtistId>;
|
|
34
|
+
createCanonArtist: Sequelize.BelongsToCreateAssociationMixin<CanonArtist>;
|
|
35
|
+
platformUserPlaylist: PlatformUserPlaylist;
|
|
36
|
+
getPlatformUserPlaylist: Sequelize.BelongsToGetAssociationMixin<PlatformUserPlaylist>;
|
|
37
|
+
setPlatformUserPlaylist: Sequelize.BelongsToSetAssociationMixin<PlatformUserPlaylist, PlatformUserPlaylistId>;
|
|
38
|
+
createPlatformUserPlaylist: Sequelize.BelongsToCreateAssociationMixin<PlatformUserPlaylist>;
|
|
39
|
+
static initModel(sequelize: Sequelize.Sequelize): typeof PlatformUserPlaylistArtistAffinity;
|
|
40
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.PlatformUserPlaylistArtistAffinity = void 0;
|
|
27
|
+
const Sequelize = __importStar(require("sequelize"));
|
|
28
|
+
const sequelize_1 = require("sequelize");
|
|
29
|
+
class PlatformUserPlaylistArtistAffinity extends sequelize_1.Model {
|
|
30
|
+
static initModel(sequelize) {
|
|
31
|
+
return PlatformUserPlaylistArtistAffinity.init({
|
|
32
|
+
id: {
|
|
33
|
+
type: sequelize_1.DataTypes.UUID,
|
|
34
|
+
allowNull: false,
|
|
35
|
+
defaultValue: sequelize_1.DataTypes.UUIDV4,
|
|
36
|
+
primaryKey: true
|
|
37
|
+
},
|
|
38
|
+
createdAt: {
|
|
39
|
+
type: sequelize_1.DataTypes.DATE,
|
|
40
|
+
allowNull: false,
|
|
41
|
+
defaultValue: Sequelize.Sequelize.literal('CURRENT_TIMESTAMP'),
|
|
42
|
+
field: 'created_at'
|
|
43
|
+
},
|
|
44
|
+
updatedAt: {
|
|
45
|
+
type: sequelize_1.DataTypes.DATE,
|
|
46
|
+
allowNull: false,
|
|
47
|
+
defaultValue: Sequelize.Sequelize.literal('CURRENT_TIMESTAMP'),
|
|
48
|
+
field: 'updated_at'
|
|
49
|
+
},
|
|
50
|
+
platformUserPlaylistId: {
|
|
51
|
+
type: sequelize_1.DataTypes.UUID,
|
|
52
|
+
allowNull: false,
|
|
53
|
+
references: {
|
|
54
|
+
model: 'platform_user_playlist',
|
|
55
|
+
key: 'id'
|
|
56
|
+
},
|
|
57
|
+
unique: "unique_pupaa_canon_artist",
|
|
58
|
+
field: 'platform_user_playlist_id'
|
|
59
|
+
},
|
|
60
|
+
canonArtistId: {
|
|
61
|
+
type: sequelize_1.DataTypes.UUID,
|
|
62
|
+
allowNull: false,
|
|
63
|
+
references: {
|
|
64
|
+
model: 'canon_artist',
|
|
65
|
+
key: 'id'
|
|
66
|
+
},
|
|
67
|
+
unique: "unique_pupaa_canon_artist",
|
|
68
|
+
field: 'canon_artist_id'
|
|
69
|
+
},
|
|
70
|
+
affinityTierId: {
|
|
71
|
+
type: sequelize_1.DataTypes.SMALLINT,
|
|
72
|
+
allowNull: false,
|
|
73
|
+
references: {
|
|
74
|
+
model: 'affinity_tier',
|
|
75
|
+
key: 'id'
|
|
76
|
+
},
|
|
77
|
+
field: 'affinity_tier_id'
|
|
78
|
+
},
|
|
79
|
+
rank: {
|
|
80
|
+
type: sequelize_1.DataTypes.INTEGER,
|
|
81
|
+
allowNull: false
|
|
82
|
+
}
|
|
83
|
+
}, {
|
|
84
|
+
sequelize,
|
|
85
|
+
tableName: 'platform_user_playlist_artist_affinity',
|
|
86
|
+
schema: 'eb',
|
|
87
|
+
timestamps: false,
|
|
88
|
+
indexes: [
|
|
89
|
+
{
|
|
90
|
+
name: "idx_platform_user_playlist_artist_affinity",
|
|
91
|
+
fields: [
|
|
92
|
+
{ name: "platform_user_playlist_id" },
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
name: "idx_platform_user_playlist_artist_affinity_artist",
|
|
97
|
+
fields: [
|
|
98
|
+
{ name: "canon_artist_id" },
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
name: "platform_user_playlist_artist_affinity_pkey",
|
|
103
|
+
unique: true,
|
|
104
|
+
fields: [
|
|
105
|
+
{ name: "id" },
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
name: "unique_pupaa_canon_artist",
|
|
110
|
+
unique: true,
|
|
111
|
+
fields: [
|
|
112
|
+
{ name: "platform_user_playlist_id" },
|
|
113
|
+
{ name: "canon_artist_id" },
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
]
|
|
117
|
+
});
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
exports.PlatformUserPlaylistArtistAffinity = PlatformUserPlaylistArtistAffinity;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as Sequelize from 'sequelize';
|
|
2
|
+
import { Model, Optional } from 'sequelize';
|
|
3
|
+
import type { AffinityTier, AffinityTierId } from './AffinityTier';
|
|
4
|
+
import type { CanonGenre, CanonGenreId } from './CanonGenre';
|
|
5
|
+
import type { PlatformUserPlaylist, PlatformUserPlaylistId } from './PlatformUserPlaylist';
|
|
6
|
+
export interface PlatformUserPlaylistGenreAffinityAttributes {
|
|
7
|
+
platformUserPlaylistId: string;
|
|
8
|
+
canonGenreId: string;
|
|
9
|
+
affinityTierId: number;
|
|
10
|
+
rank: number;
|
|
11
|
+
id: string;
|
|
12
|
+
createdAt: Date;
|
|
13
|
+
updatedAt: Date;
|
|
14
|
+
}
|
|
15
|
+
export type PlatformUserPlaylistGenreAffinityPk = "id";
|
|
16
|
+
export type PlatformUserPlaylistGenreAffinityId = PlatformUserPlaylistGenreAffinity[PlatformUserPlaylistGenreAffinityPk];
|
|
17
|
+
export type PlatformUserPlaylistGenreAffinityOptionalAttributes = "id" | "createdAt" | "updatedAt";
|
|
18
|
+
export type PlatformUserPlaylistGenreAffinityCreationAttributes = Optional<PlatformUserPlaylistGenreAffinityAttributes, PlatformUserPlaylistGenreAffinityOptionalAttributes>;
|
|
19
|
+
export declare class PlatformUserPlaylistGenreAffinity extends Model<PlatformUserPlaylistGenreAffinityAttributes, PlatformUserPlaylistGenreAffinityCreationAttributes> implements PlatformUserPlaylistGenreAffinityAttributes {
|
|
20
|
+
platformUserPlaylistId: string;
|
|
21
|
+
canonGenreId: string;
|
|
22
|
+
affinityTierId: number;
|
|
23
|
+
rank: number;
|
|
24
|
+
id: string;
|
|
25
|
+
createdAt: Date;
|
|
26
|
+
updatedAt: Date;
|
|
27
|
+
affinityTier: AffinityTier;
|
|
28
|
+
getAffinityTier: Sequelize.BelongsToGetAssociationMixin<AffinityTier>;
|
|
29
|
+
setAffinityTier: Sequelize.BelongsToSetAssociationMixin<AffinityTier, AffinityTierId>;
|
|
30
|
+
createAffinityTier: Sequelize.BelongsToCreateAssociationMixin<AffinityTier>;
|
|
31
|
+
canonGenre: CanonGenre;
|
|
32
|
+
getCanonGenre: Sequelize.BelongsToGetAssociationMixin<CanonGenre>;
|
|
33
|
+
setCanonGenre: Sequelize.BelongsToSetAssociationMixin<CanonGenre, CanonGenreId>;
|
|
34
|
+
createCanonGenre: Sequelize.BelongsToCreateAssociationMixin<CanonGenre>;
|
|
35
|
+
platformUserPlaylist: PlatformUserPlaylist;
|
|
36
|
+
getPlatformUserPlaylist: Sequelize.BelongsToGetAssociationMixin<PlatformUserPlaylist>;
|
|
37
|
+
setPlatformUserPlaylist: Sequelize.BelongsToSetAssociationMixin<PlatformUserPlaylist, PlatformUserPlaylistId>;
|
|
38
|
+
createPlatformUserPlaylist: Sequelize.BelongsToCreateAssociationMixin<PlatformUserPlaylist>;
|
|
39
|
+
static initModel(sequelize: Sequelize.Sequelize): typeof PlatformUserPlaylistGenreAffinity;
|
|
40
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.PlatformUserPlaylistGenreAffinity = void 0;
|
|
27
|
+
const Sequelize = __importStar(require("sequelize"));
|
|
28
|
+
const sequelize_1 = require("sequelize");
|
|
29
|
+
class PlatformUserPlaylistGenreAffinity extends sequelize_1.Model {
|
|
30
|
+
static initModel(sequelize) {
|
|
31
|
+
return PlatformUserPlaylistGenreAffinity.init({
|
|
32
|
+
platformUserPlaylistId: {
|
|
33
|
+
type: sequelize_1.DataTypes.UUID,
|
|
34
|
+
allowNull: false,
|
|
35
|
+
references: {
|
|
36
|
+
model: 'platform_user_playlist',
|
|
37
|
+
key: 'id'
|
|
38
|
+
},
|
|
39
|
+
unique: "unique_pupga_canon_genre",
|
|
40
|
+
field: 'platform_user_playlist_id'
|
|
41
|
+
},
|
|
42
|
+
canonGenreId: {
|
|
43
|
+
type: sequelize_1.DataTypes.UUID,
|
|
44
|
+
allowNull: false,
|
|
45
|
+
references: {
|
|
46
|
+
model: 'canon_genre',
|
|
47
|
+
key: 'id'
|
|
48
|
+
},
|
|
49
|
+
unique: "unique_pupga_canon_genre",
|
|
50
|
+
field: 'canon_genre_id'
|
|
51
|
+
},
|
|
52
|
+
affinityTierId: {
|
|
53
|
+
type: sequelize_1.DataTypes.SMALLINT,
|
|
54
|
+
allowNull: false,
|
|
55
|
+
references: {
|
|
56
|
+
model: 'affinity_tier',
|
|
57
|
+
key: 'id'
|
|
58
|
+
},
|
|
59
|
+
field: 'affinity_tier_id'
|
|
60
|
+
},
|
|
61
|
+
rank: {
|
|
62
|
+
type: sequelize_1.DataTypes.INTEGER,
|
|
63
|
+
allowNull: false
|
|
64
|
+
},
|
|
65
|
+
id: {
|
|
66
|
+
type: sequelize_1.DataTypes.UUID,
|
|
67
|
+
allowNull: false,
|
|
68
|
+
defaultValue: sequelize_1.DataTypes.UUIDV4,
|
|
69
|
+
primaryKey: true
|
|
70
|
+
},
|
|
71
|
+
createdAt: {
|
|
72
|
+
type: sequelize_1.DataTypes.DATE,
|
|
73
|
+
allowNull: false,
|
|
74
|
+
defaultValue: Sequelize.Sequelize.literal('CURRENT_TIMESTAMP'),
|
|
75
|
+
field: 'created_at'
|
|
76
|
+
},
|
|
77
|
+
updatedAt: {
|
|
78
|
+
type: sequelize_1.DataTypes.DATE,
|
|
79
|
+
allowNull: false,
|
|
80
|
+
defaultValue: Sequelize.Sequelize.literal('CURRENT_TIMESTAMP'),
|
|
81
|
+
field: 'updated_at'
|
|
82
|
+
}
|
|
83
|
+
}, {
|
|
84
|
+
sequelize,
|
|
85
|
+
tableName: 'platform_user_playlist_genre_affinity',
|
|
86
|
+
schema: 'eb',
|
|
87
|
+
timestamps: false,
|
|
88
|
+
indexes: [
|
|
89
|
+
{
|
|
90
|
+
name: "idx_platform_user_playlist_genre_affinity",
|
|
91
|
+
fields: [
|
|
92
|
+
{ name: "platform_user_playlist_id" },
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
name: "idx_platform_user_playlist_genre_affinity_genre",
|
|
97
|
+
fields: [
|
|
98
|
+
{ name: "canon_genre_id" },
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
name: "platform_user_playlist_genre_affinity_pkey",
|
|
103
|
+
unique: true,
|
|
104
|
+
fields: [
|
|
105
|
+
{ name: "id" },
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
name: "unique_pupga_canon_genre",
|
|
110
|
+
unique: true,
|
|
111
|
+
fields: [
|
|
112
|
+
{ name: "platform_user_playlist_id" },
|
|
113
|
+
{ name: "canon_genre_id" },
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
]
|
|
117
|
+
});
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
exports.PlatformUserPlaylistGenreAffinity = PlatformUserPlaylistGenreAffinity;
|
package/dist/RadioShowMedia.d.ts
CHANGED
|
@@ -9,10 +9,15 @@ export interface RadioShowMediaAttributes {
|
|
|
9
9
|
approved?: boolean;
|
|
10
10
|
id: string;
|
|
11
11
|
createDate: Date;
|
|
12
|
+
description?: string;
|
|
13
|
+
cropInstructions?: string;
|
|
14
|
+
deleted?: boolean;
|
|
15
|
+
sourceS3Key?: string;
|
|
16
|
+
isAppRecorded?: boolean;
|
|
12
17
|
}
|
|
13
18
|
export type RadioShowMediaPk = "id";
|
|
14
19
|
export type RadioShowMediaId = RadioShowMedia[RadioShowMediaPk];
|
|
15
|
-
export type RadioShowMediaOptionalAttributes = "originalMediaType" | "s3VideoUrl" | "approved" | "id" | "createDate";
|
|
20
|
+
export type RadioShowMediaOptionalAttributes = "originalMediaType" | "s3VideoUrl" | "approved" | "id" | "createDate" | "description" | "cropInstructions" | "deleted" | "sourceS3Key" | "isAppRecorded";
|
|
16
21
|
export type RadioShowMediaCreationAttributes = Optional<RadioShowMediaAttributes, RadioShowMediaOptionalAttributes>;
|
|
17
22
|
export declare class RadioShowMedia extends Model<RadioShowMediaAttributes, RadioShowMediaCreationAttributes> implements RadioShowMediaAttributes {
|
|
18
23
|
radioShowId: string;
|
|
@@ -22,6 +27,11 @@ export declare class RadioShowMedia extends Model<RadioShowMediaAttributes, Radi
|
|
|
22
27
|
approved?: boolean;
|
|
23
28
|
id: string;
|
|
24
29
|
createDate: Date;
|
|
30
|
+
description?: string;
|
|
31
|
+
cropInstructions?: string;
|
|
32
|
+
deleted?: boolean;
|
|
33
|
+
sourceS3Key?: string;
|
|
34
|
+
isAppRecorded?: boolean;
|
|
25
35
|
radioShow: RadioShow;
|
|
26
36
|
getRadioShow: Sequelize.BelongsToGetAssociationMixin<RadioShow>;
|
|
27
37
|
setRadioShow: Sequelize.BelongsToSetAssociationMixin<RadioShow, RadioShowId>;
|
package/dist/RadioShowMedia.js
CHANGED
|
@@ -68,6 +68,29 @@ class RadioShowMedia extends sequelize_1.Model {
|
|
|
68
68
|
allowNull: false,
|
|
69
69
|
defaultValue: Sequelize.Sequelize.literal('CURRENT_TIMESTAMP'),
|
|
70
70
|
field: 'create_date'
|
|
71
|
+
},
|
|
72
|
+
description: {
|
|
73
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
74
|
+
allowNull: true
|
|
75
|
+
},
|
|
76
|
+
cropInstructions: {
|
|
77
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
78
|
+
allowNull: true,
|
|
79
|
+
field: 'crop_instructions'
|
|
80
|
+
},
|
|
81
|
+
deleted: {
|
|
82
|
+
type: sequelize_1.DataTypes.BOOLEAN,
|
|
83
|
+
allowNull: true
|
|
84
|
+
},
|
|
85
|
+
sourceS3Key: {
|
|
86
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
87
|
+
allowNull: true,
|
|
88
|
+
field: 'source_s3_key'
|
|
89
|
+
},
|
|
90
|
+
isAppRecorded: {
|
|
91
|
+
type: sequelize_1.DataTypes.BOOLEAN,
|
|
92
|
+
allowNull: true,
|
|
93
|
+
field: 'is_app_recorded'
|
|
71
94
|
}
|
|
72
95
|
}, {
|
|
73
96
|
sequelize,
|
|
@@ -10,10 +10,11 @@ export interface RadioShowPlacementAttributes {
|
|
|
10
10
|
startTime?: string;
|
|
11
11
|
endTime?: string;
|
|
12
12
|
id: string;
|
|
13
|
+
deleted?: boolean;
|
|
13
14
|
}
|
|
14
15
|
export type RadioShowPlacementPk = "id";
|
|
15
16
|
export type RadioShowPlacementId = RadioShowPlacement[RadioShowPlacementPk];
|
|
16
|
-
export type RadioShowPlacementOptionalAttributes = "canonTrackId" | "radioShowMediaId" | "startTime" | "endTime" | "id";
|
|
17
|
+
export type RadioShowPlacementOptionalAttributes = "canonTrackId" | "radioShowMediaId" | "startTime" | "endTime" | "id" | "deleted";
|
|
17
18
|
export type RadioShowPlacementCreationAttributes = Optional<RadioShowPlacementAttributes, RadioShowPlacementOptionalAttributes>;
|
|
18
19
|
export declare class RadioShowPlacement extends Model<RadioShowPlacementAttributes, RadioShowPlacementCreationAttributes> implements RadioShowPlacementAttributes {
|
|
19
20
|
radioShowId: string;
|
|
@@ -23,6 +24,7 @@ export declare class RadioShowPlacement extends Model<RadioShowPlacementAttribut
|
|
|
23
24
|
startTime?: string;
|
|
24
25
|
endTime?: string;
|
|
25
26
|
id: string;
|
|
27
|
+
deleted?: boolean;
|
|
26
28
|
canonTrack: CanonTrack;
|
|
27
29
|
getCanonTrack: Sequelize.BelongsToGetAssociationMixin<CanonTrack>;
|
|
28
30
|
setCanonTrack: Sequelize.BelongsToSetAssociationMixin<CanonTrack, CanonTrackId>;
|
package/dist/init-models.d.ts
CHANGED
|
@@ -153,6 +153,10 @@ import { PlatformUserAlbumTrack as _PlatformUserAlbumTrack } from "./PlatformUse
|
|
|
153
153
|
import type { PlatformUserAlbumTrackAttributes, PlatformUserAlbumTrackCreationAttributes } from "./PlatformUserAlbumTrack";
|
|
154
154
|
import { PlatformUserPlaylist as _PlatformUserPlaylist } from "./PlatformUserPlaylist";
|
|
155
155
|
import type { PlatformUserPlaylistAttributes, PlatformUserPlaylistCreationAttributes } from "./PlatformUserPlaylist";
|
|
156
|
+
import { PlatformUserPlaylistArtistAffinity as _PlatformUserPlaylistArtistAffinity } from "./PlatformUserPlaylistArtistAffinity";
|
|
157
|
+
import type { PlatformUserPlaylistArtistAffinityAttributes, PlatformUserPlaylistArtistAffinityCreationAttributes } from "./PlatformUserPlaylistArtistAffinity";
|
|
158
|
+
import { PlatformUserPlaylistGenreAffinity as _PlatformUserPlaylistGenreAffinity } from "./PlatformUserPlaylistGenreAffinity";
|
|
159
|
+
import type { PlatformUserPlaylistGenreAffinityAttributes, PlatformUserPlaylistGenreAffinityCreationAttributes } from "./PlatformUserPlaylistGenreAffinity";
|
|
156
160
|
import { PlatformUserPlaylistTrack as _PlatformUserPlaylistTrack } from "./PlatformUserPlaylistTrack";
|
|
157
161
|
import type { PlatformUserPlaylistTrackAttributes, PlatformUserPlaylistTrackCreationAttributes } from "./PlatformUserPlaylistTrack";
|
|
158
162
|
import { PlaybackStatus as _PlaybackStatus } from "./PlaybackStatus";
|
|
@@ -191,8 +195,8 @@ import { UserGenreAffinity as _UserGenreAffinity } from "./UserGenreAffinity";
|
|
|
191
195
|
import type { UserGenreAffinityAttributes, UserGenreAffinityCreationAttributes } from "./UserGenreAffinity";
|
|
192
196
|
import { UserLikes as _UserLikes } from "./UserLikes";
|
|
193
197
|
import type { UserLikesAttributes, UserLikesCreationAttributes } from "./UserLikes";
|
|
194
|
-
export { _AccessControlPreference as AccessControlPreference, _AffinityRelationshipType as AffinityRelationshipType, _AffinityTier as AffinityTier, _AppUser as AppUser, _AppUserDevice as AppUserDevice, _AppUserFollowRelation as AppUserFollowRelation, _AppUserPlatformRelation as AppUserPlatformRelation, _CanonAlbum as CanonAlbum, _CanonAlbumExternalReferenceRelation as CanonAlbumExternalReferenceRelation, _CanonAlbumGenreRelation as CanonAlbumGenreRelation, _CanonAlbumImageHarvested as CanonAlbumImageHarvested, _CanonAlbumLabelRelation as CanonAlbumLabelRelation, _CanonAlbumTrackRelation as CanonAlbumTrackRelation, _CanonArtist as CanonArtist, _CanonArtistAlbumRelation as CanonArtistAlbumRelation, _CanonArtistExternalReferenceRelation as CanonArtistExternalReferenceRelation, _CanonArtistGenreRelation as CanonArtistGenreRelation, _CanonArtistImageHarvested as CanonArtistImageHarvested, _CanonArtistMemberRelation as CanonArtistMemberRelation, _CanonArtistTrackRelation as CanonArtistTrackRelation, _CanonGenre as CanonGenre, _CanonGenreExternalReferenceRelation as CanonGenreExternalReferenceRelation, _CanonLabel as CanonLabel, _CanonLabelExternalReferenceRelation as CanonLabelExternalReferenceRelation, _CanonMember as CanonMember, _CanonMemberExternalReferenceRelation as CanonMemberExternalReferenceRelation, _CanonToPlatformAlbumRelation as CanonToPlatformAlbumRelation, _CanonToPlatformArtistRelation as CanonToPlatformArtistRelation, _CanonToPlatformGenreRelation as CanonToPlatformGenreRelation, _CanonToPlatformTrackRelation as CanonToPlatformTrackRelation, _CanonTrack as CanonTrack, _ConfigParam as ConfigParam, _ExternalReference as ExternalReference, _FeedConfig as FeedConfig, _FeedContentType as FeedContentType, _GuestUser as GuestUser, _JukeboxAccessType as JukeboxAccessType, _JukeboxCanonGenreRelation as JukeboxCanonGenreRelation, _JukeboxInvite as JukeboxInvite, _JukeboxQueueEntry as JukeboxQueueEntry, _JukeboxQueueMode as JukeboxQueueMode, _JukeboxSession as JukeboxSession, _JukeboxSessionArtistAffinity as JukeboxSessionArtistAffinity, _JukeboxSessionGenreAffinity as JukeboxSessionGenreAffinity, _JukeboxStatus as JukeboxStatus, _JukeboxTerminationCondition as JukeboxTerminationCondition, _JukeboxType as JukeboxType, _JukeboxUser as JukeboxUser, _JukeboxUserType as JukeboxUserType, _KnexMigrations as KnexMigrations, _KnexMigrationsLock as KnexMigrationsLock, _MerchItem as MerchItem, _MerchOrchestration as MerchOrchestration, _MerchPlatform as MerchPlatform, _MerchType as MerchType, _MetricsDaily as MetricsDaily, _MetricsEvent as MetricsEvent, _NewsArticle as NewsArticle, _NewsPlatform as NewsPlatform, _NewsSite as NewsSite, _Notification as Notification, _NotificationType as NotificationType, _PauseStatusType as PauseStatusType, _Platform as Platform, _PlatformAlbum as PlatformAlbum, _PlatformAlbumGenreRelation as PlatformAlbumGenreRelation, _PlatformAlbumTrackRelation as PlatformAlbumTrackRelation, _PlatformArtist as PlatformArtist, _PlatformArtistAlbumRelation as PlatformArtistAlbumRelation, _PlatformArtistGenreRelation as PlatformArtistGenreRelation, _PlatformArtistTrackRelation as PlatformArtistTrackRelation, _PlatformGenre as PlatformGenre, _PlatformTrack as PlatformTrack, _PlatformTrackGenreRelation as PlatformTrackGenreRelation, _PlatformUserAlbum as PlatformUserAlbum, _PlatformUserAlbumTrack as PlatformUserAlbumTrack, _PlatformUserPlaylist as PlatformUserPlaylist, _PlatformUserPlaylistTrack as PlatformUserPlaylistTrack, _PlaybackStatus as PlaybackStatus, _PlaybackStatusType as PlaybackStatusType, _RadioShow as RadioShow, _RadioShowGenres as RadioShowGenres, _RadioShowMedia as RadioShowMedia, _RadioShowPlacement as RadioShowPlacement, _RadioShowPublishRequests as RadioShowPublishRequests, _State as State, _TrackDeletionReason as TrackDeletionReason, _UnmatchedAlbum as UnmatchedAlbum, _UnmatchedArtist as UnmatchedArtist, _UserAffinity as UserAffinity, _UserArtistAffinity as UserArtistAffinity, _UserComments as UserComments, _UserContacts as UserContacts, _UserEngagementFactor as UserEngagementFactor, _UserGenreAffinity as UserGenreAffinity, _UserLikes as UserLikes, };
|
|
195
|
-
export type { AccessControlPreferenceAttributes, AccessControlPreferenceCreationAttributes, AffinityRelationshipTypeAttributes, AffinityRelationshipTypeCreationAttributes, AffinityTierAttributes, AffinityTierCreationAttributes, AppUserAttributes, AppUserCreationAttributes, AppUserDeviceAttributes, AppUserDeviceCreationAttributes, AppUserFollowRelationAttributes, AppUserFollowRelationCreationAttributes, AppUserPlatformRelationAttributes, AppUserPlatformRelationCreationAttributes, CanonAlbumAttributes, CanonAlbumCreationAttributes, CanonAlbumExternalReferenceRelationAttributes, CanonAlbumExternalReferenceRelationCreationAttributes, CanonAlbumGenreRelationAttributes, CanonAlbumGenreRelationCreationAttributes, CanonAlbumImageHarvestedAttributes, CanonAlbumImageHarvestedCreationAttributes, CanonAlbumLabelRelationAttributes, CanonAlbumLabelRelationCreationAttributes, CanonAlbumTrackRelationAttributes, CanonAlbumTrackRelationCreationAttributes, CanonArtistAttributes, CanonArtistCreationAttributes, CanonArtistAlbumRelationAttributes, CanonArtistAlbumRelationCreationAttributes, CanonArtistExternalReferenceRelationAttributes, CanonArtistExternalReferenceRelationCreationAttributes, CanonArtistGenreRelationAttributes, CanonArtistGenreRelationCreationAttributes, CanonArtistImageHarvestedAttributes, CanonArtistImageHarvestedCreationAttributes, CanonArtistMemberRelationAttributes, CanonArtistMemberRelationCreationAttributes, CanonArtistTrackRelationAttributes, CanonArtistTrackRelationCreationAttributes, CanonGenreAttributes, CanonGenreCreationAttributes, CanonGenreExternalReferenceRelationAttributes, CanonGenreExternalReferenceRelationCreationAttributes, CanonLabelAttributes, CanonLabelCreationAttributes, CanonLabelExternalReferenceRelationAttributes, CanonLabelExternalReferenceRelationCreationAttributes, CanonMemberAttributes, CanonMemberCreationAttributes, CanonMemberExternalReferenceRelationAttributes, CanonMemberExternalReferenceRelationCreationAttributes, CanonToPlatformAlbumRelationAttributes, CanonToPlatformAlbumRelationCreationAttributes, CanonToPlatformArtistRelationAttributes, CanonToPlatformArtistRelationCreationAttributes, CanonToPlatformGenreRelationAttributes, CanonToPlatformGenreRelationCreationAttributes, CanonToPlatformTrackRelationAttributes, CanonToPlatformTrackRelationCreationAttributes, CanonTrackAttributes, CanonTrackCreationAttributes, ConfigParamAttributes, ConfigParamCreationAttributes, ExternalReferenceAttributes, ExternalReferenceCreationAttributes, FeedConfigAttributes, FeedConfigCreationAttributes, FeedContentTypeAttributes, FeedContentTypeCreationAttributes, GuestUserAttributes, GuestUserCreationAttributes, JukeboxAccessTypeAttributes, JukeboxAccessTypeCreationAttributes, JukeboxCanonGenreRelationAttributes, JukeboxCanonGenreRelationCreationAttributes, JukeboxInviteAttributes, JukeboxInviteCreationAttributes, JukeboxQueueEntryAttributes, JukeboxQueueEntryCreationAttributes, JukeboxQueueModeAttributes, JukeboxQueueModeCreationAttributes, JukeboxSessionAttributes, JukeboxSessionCreationAttributes, JukeboxSessionArtistAffinityAttributes, JukeboxSessionArtistAffinityCreationAttributes, JukeboxSessionGenreAffinityAttributes, JukeboxSessionGenreAffinityCreationAttributes, JukeboxStatusAttributes, JukeboxStatusCreationAttributes, JukeboxTerminationConditionAttributes, JukeboxTerminationConditionCreationAttributes, JukeboxTypeAttributes, JukeboxTypeCreationAttributes, JukeboxUserAttributes, JukeboxUserCreationAttributes, JukeboxUserTypeAttributes, JukeboxUserTypeCreationAttributes, KnexMigrationsAttributes, KnexMigrationsCreationAttributes, KnexMigrationsLockAttributes, KnexMigrationsLockCreationAttributes, MerchItemAttributes, MerchItemCreationAttributes, MerchOrchestrationAttributes, MerchOrchestrationCreationAttributes, MerchPlatformAttributes, MerchPlatformCreationAttributes, MerchTypeAttributes, MerchTypeCreationAttributes, MetricsDailyAttributes, MetricsDailyCreationAttributes, MetricsEventAttributes, MetricsEventCreationAttributes, NewsArticleAttributes, NewsArticleCreationAttributes, NewsPlatformAttributes, NewsPlatformCreationAttributes, NewsSiteAttributes, NewsSiteCreationAttributes, NotificationAttributes, NotificationCreationAttributes, NotificationTypeAttributes, NotificationTypeCreationAttributes, PauseStatusTypeAttributes, PauseStatusTypeCreationAttributes, PlatformAttributes, PlatformCreationAttributes, PlatformAlbumAttributes, PlatformAlbumCreationAttributes, PlatformAlbumGenreRelationAttributes, PlatformAlbumGenreRelationCreationAttributes, PlatformAlbumTrackRelationAttributes, PlatformAlbumTrackRelationCreationAttributes, PlatformArtistAttributes, PlatformArtistCreationAttributes, PlatformArtistAlbumRelationAttributes, PlatformArtistAlbumRelationCreationAttributes, PlatformArtistGenreRelationAttributes, PlatformArtistGenreRelationCreationAttributes, PlatformArtistTrackRelationAttributes, PlatformArtistTrackRelationCreationAttributes, PlatformGenreAttributes, PlatformGenreCreationAttributes, PlatformTrackAttributes, PlatformTrackCreationAttributes, PlatformTrackGenreRelationAttributes, PlatformTrackGenreRelationCreationAttributes, PlatformUserAlbumAttributes, PlatformUserAlbumCreationAttributes, PlatformUserAlbumTrackAttributes, PlatformUserAlbumTrackCreationAttributes, PlatformUserPlaylistAttributes, PlatformUserPlaylistCreationAttributes, PlatformUserPlaylistTrackAttributes, PlatformUserPlaylistTrackCreationAttributes, PlaybackStatusAttributes, PlaybackStatusCreationAttributes, PlaybackStatusTypeAttributes, PlaybackStatusTypeCreationAttributes, RadioShowAttributes, RadioShowCreationAttributes, RadioShowGenresAttributes, RadioShowGenresCreationAttributes, RadioShowMediaAttributes, RadioShowMediaCreationAttributes, RadioShowPlacementAttributes, RadioShowPlacementCreationAttributes, RadioShowPublishRequestsAttributes, RadioShowPublishRequestsCreationAttributes, StateAttributes, StateCreationAttributes, TrackDeletionReasonAttributes, TrackDeletionReasonCreationAttributes, UnmatchedAlbumAttributes, UnmatchedAlbumCreationAttributes, UnmatchedArtistAttributes, UnmatchedArtistCreationAttributes, UserAffinityAttributes, UserAffinityCreationAttributes, UserArtistAffinityAttributes, UserArtistAffinityCreationAttributes, UserCommentsAttributes, UserCommentsCreationAttributes, UserContactsAttributes, UserContactsCreationAttributes, UserEngagementFactorAttributes, UserEngagementFactorCreationAttributes, UserGenreAffinityAttributes, UserGenreAffinityCreationAttributes, UserLikesAttributes, UserLikesCreationAttributes, };
|
|
198
|
+
export { _AccessControlPreference as AccessControlPreference, _AffinityRelationshipType as AffinityRelationshipType, _AffinityTier as AffinityTier, _AppUser as AppUser, _AppUserDevice as AppUserDevice, _AppUserFollowRelation as AppUserFollowRelation, _AppUserPlatformRelation as AppUserPlatformRelation, _CanonAlbum as CanonAlbum, _CanonAlbumExternalReferenceRelation as CanonAlbumExternalReferenceRelation, _CanonAlbumGenreRelation as CanonAlbumGenreRelation, _CanonAlbumImageHarvested as CanonAlbumImageHarvested, _CanonAlbumLabelRelation as CanonAlbumLabelRelation, _CanonAlbumTrackRelation as CanonAlbumTrackRelation, _CanonArtist as CanonArtist, _CanonArtistAlbumRelation as CanonArtistAlbumRelation, _CanonArtistExternalReferenceRelation as CanonArtistExternalReferenceRelation, _CanonArtistGenreRelation as CanonArtistGenreRelation, _CanonArtistImageHarvested as CanonArtistImageHarvested, _CanonArtistMemberRelation as CanonArtistMemberRelation, _CanonArtistTrackRelation as CanonArtistTrackRelation, _CanonGenre as CanonGenre, _CanonGenreExternalReferenceRelation as CanonGenreExternalReferenceRelation, _CanonLabel as CanonLabel, _CanonLabelExternalReferenceRelation as CanonLabelExternalReferenceRelation, _CanonMember as CanonMember, _CanonMemberExternalReferenceRelation as CanonMemberExternalReferenceRelation, _CanonToPlatformAlbumRelation as CanonToPlatformAlbumRelation, _CanonToPlatformArtistRelation as CanonToPlatformArtistRelation, _CanonToPlatformGenreRelation as CanonToPlatformGenreRelation, _CanonToPlatformTrackRelation as CanonToPlatformTrackRelation, _CanonTrack as CanonTrack, _ConfigParam as ConfigParam, _ExternalReference as ExternalReference, _FeedConfig as FeedConfig, _FeedContentType as FeedContentType, _GuestUser as GuestUser, _JukeboxAccessType as JukeboxAccessType, _JukeboxCanonGenreRelation as JukeboxCanonGenreRelation, _JukeboxInvite as JukeboxInvite, _JukeboxQueueEntry as JukeboxQueueEntry, _JukeboxQueueMode as JukeboxQueueMode, _JukeboxSession as JukeboxSession, _JukeboxSessionArtistAffinity as JukeboxSessionArtistAffinity, _JukeboxSessionGenreAffinity as JukeboxSessionGenreAffinity, _JukeboxStatus as JukeboxStatus, _JukeboxTerminationCondition as JukeboxTerminationCondition, _JukeboxType as JukeboxType, _JukeboxUser as JukeboxUser, _JukeboxUserType as JukeboxUserType, _KnexMigrations as KnexMigrations, _KnexMigrationsLock as KnexMigrationsLock, _MerchItem as MerchItem, _MerchOrchestration as MerchOrchestration, _MerchPlatform as MerchPlatform, _MerchType as MerchType, _MetricsDaily as MetricsDaily, _MetricsEvent as MetricsEvent, _NewsArticle as NewsArticle, _NewsPlatform as NewsPlatform, _NewsSite as NewsSite, _Notification as Notification, _NotificationType as NotificationType, _PauseStatusType as PauseStatusType, _Platform as Platform, _PlatformAlbum as PlatformAlbum, _PlatformAlbumGenreRelation as PlatformAlbumGenreRelation, _PlatformAlbumTrackRelation as PlatformAlbumTrackRelation, _PlatformArtist as PlatformArtist, _PlatformArtistAlbumRelation as PlatformArtistAlbumRelation, _PlatformArtistGenreRelation as PlatformArtistGenreRelation, _PlatformArtistTrackRelation as PlatformArtistTrackRelation, _PlatformGenre as PlatformGenre, _PlatformTrack as PlatformTrack, _PlatformTrackGenreRelation as PlatformTrackGenreRelation, _PlatformUserAlbum as PlatformUserAlbum, _PlatformUserAlbumTrack as PlatformUserAlbumTrack, _PlatformUserPlaylist as PlatformUserPlaylist, _PlatformUserPlaylistArtistAffinity as PlatformUserPlaylistArtistAffinity, _PlatformUserPlaylistGenreAffinity as PlatformUserPlaylistGenreAffinity, _PlatformUserPlaylistTrack as PlatformUserPlaylistTrack, _PlaybackStatus as PlaybackStatus, _PlaybackStatusType as PlaybackStatusType, _RadioShow as RadioShow, _RadioShowGenres as RadioShowGenres, _RadioShowMedia as RadioShowMedia, _RadioShowPlacement as RadioShowPlacement, _RadioShowPublishRequests as RadioShowPublishRequests, _State as State, _TrackDeletionReason as TrackDeletionReason, _UnmatchedAlbum as UnmatchedAlbum, _UnmatchedArtist as UnmatchedArtist, _UserAffinity as UserAffinity, _UserArtistAffinity as UserArtistAffinity, _UserComments as UserComments, _UserContacts as UserContacts, _UserEngagementFactor as UserEngagementFactor, _UserGenreAffinity as UserGenreAffinity, _UserLikes as UserLikes, };
|
|
199
|
+
export type { AccessControlPreferenceAttributes, AccessControlPreferenceCreationAttributes, AffinityRelationshipTypeAttributes, AffinityRelationshipTypeCreationAttributes, AffinityTierAttributes, AffinityTierCreationAttributes, AppUserAttributes, AppUserCreationAttributes, AppUserDeviceAttributes, AppUserDeviceCreationAttributes, AppUserFollowRelationAttributes, AppUserFollowRelationCreationAttributes, AppUserPlatformRelationAttributes, AppUserPlatformRelationCreationAttributes, CanonAlbumAttributes, CanonAlbumCreationAttributes, CanonAlbumExternalReferenceRelationAttributes, CanonAlbumExternalReferenceRelationCreationAttributes, CanonAlbumGenreRelationAttributes, CanonAlbumGenreRelationCreationAttributes, CanonAlbumImageHarvestedAttributes, CanonAlbumImageHarvestedCreationAttributes, CanonAlbumLabelRelationAttributes, CanonAlbumLabelRelationCreationAttributes, CanonAlbumTrackRelationAttributes, CanonAlbumTrackRelationCreationAttributes, CanonArtistAttributes, CanonArtistCreationAttributes, CanonArtistAlbumRelationAttributes, CanonArtistAlbumRelationCreationAttributes, CanonArtistExternalReferenceRelationAttributes, CanonArtistExternalReferenceRelationCreationAttributes, CanonArtistGenreRelationAttributes, CanonArtistGenreRelationCreationAttributes, CanonArtistImageHarvestedAttributes, CanonArtistImageHarvestedCreationAttributes, CanonArtistMemberRelationAttributes, CanonArtistMemberRelationCreationAttributes, CanonArtistTrackRelationAttributes, CanonArtistTrackRelationCreationAttributes, CanonGenreAttributes, CanonGenreCreationAttributes, CanonGenreExternalReferenceRelationAttributes, CanonGenreExternalReferenceRelationCreationAttributes, CanonLabelAttributes, CanonLabelCreationAttributes, CanonLabelExternalReferenceRelationAttributes, CanonLabelExternalReferenceRelationCreationAttributes, CanonMemberAttributes, CanonMemberCreationAttributes, CanonMemberExternalReferenceRelationAttributes, CanonMemberExternalReferenceRelationCreationAttributes, CanonToPlatformAlbumRelationAttributes, CanonToPlatformAlbumRelationCreationAttributes, CanonToPlatformArtistRelationAttributes, CanonToPlatformArtistRelationCreationAttributes, CanonToPlatformGenreRelationAttributes, CanonToPlatformGenreRelationCreationAttributes, CanonToPlatformTrackRelationAttributes, CanonToPlatformTrackRelationCreationAttributes, CanonTrackAttributes, CanonTrackCreationAttributes, ConfigParamAttributes, ConfigParamCreationAttributes, ExternalReferenceAttributes, ExternalReferenceCreationAttributes, FeedConfigAttributes, FeedConfigCreationAttributes, FeedContentTypeAttributes, FeedContentTypeCreationAttributes, GuestUserAttributes, GuestUserCreationAttributes, JukeboxAccessTypeAttributes, JukeboxAccessTypeCreationAttributes, JukeboxCanonGenreRelationAttributes, JukeboxCanonGenreRelationCreationAttributes, JukeboxInviteAttributes, JukeboxInviteCreationAttributes, JukeboxQueueEntryAttributes, JukeboxQueueEntryCreationAttributes, JukeboxQueueModeAttributes, JukeboxQueueModeCreationAttributes, JukeboxSessionAttributes, JukeboxSessionCreationAttributes, JukeboxSessionArtistAffinityAttributes, JukeboxSessionArtistAffinityCreationAttributes, JukeboxSessionGenreAffinityAttributes, JukeboxSessionGenreAffinityCreationAttributes, JukeboxStatusAttributes, JukeboxStatusCreationAttributes, JukeboxTerminationConditionAttributes, JukeboxTerminationConditionCreationAttributes, JukeboxTypeAttributes, JukeboxTypeCreationAttributes, JukeboxUserAttributes, JukeboxUserCreationAttributes, JukeboxUserTypeAttributes, JukeboxUserTypeCreationAttributes, KnexMigrationsAttributes, KnexMigrationsCreationAttributes, KnexMigrationsLockAttributes, KnexMigrationsLockCreationAttributes, MerchItemAttributes, MerchItemCreationAttributes, MerchOrchestrationAttributes, MerchOrchestrationCreationAttributes, MerchPlatformAttributes, MerchPlatformCreationAttributes, MerchTypeAttributes, MerchTypeCreationAttributes, MetricsDailyAttributes, MetricsDailyCreationAttributes, MetricsEventAttributes, MetricsEventCreationAttributes, NewsArticleAttributes, NewsArticleCreationAttributes, NewsPlatformAttributes, NewsPlatformCreationAttributes, NewsSiteAttributes, NewsSiteCreationAttributes, NotificationAttributes, NotificationCreationAttributes, NotificationTypeAttributes, NotificationTypeCreationAttributes, PauseStatusTypeAttributes, PauseStatusTypeCreationAttributes, PlatformAttributes, PlatformCreationAttributes, PlatformAlbumAttributes, PlatformAlbumCreationAttributes, PlatformAlbumGenreRelationAttributes, PlatformAlbumGenreRelationCreationAttributes, PlatformAlbumTrackRelationAttributes, PlatformAlbumTrackRelationCreationAttributes, PlatformArtistAttributes, PlatformArtistCreationAttributes, PlatformArtistAlbumRelationAttributes, PlatformArtistAlbumRelationCreationAttributes, PlatformArtistGenreRelationAttributes, PlatformArtistGenreRelationCreationAttributes, PlatformArtistTrackRelationAttributes, PlatformArtistTrackRelationCreationAttributes, PlatformGenreAttributes, PlatformGenreCreationAttributes, PlatformTrackAttributes, PlatformTrackCreationAttributes, PlatformTrackGenreRelationAttributes, PlatformTrackGenreRelationCreationAttributes, PlatformUserAlbumAttributes, PlatformUserAlbumCreationAttributes, PlatformUserAlbumTrackAttributes, PlatformUserAlbumTrackCreationAttributes, PlatformUserPlaylistAttributes, PlatformUserPlaylistCreationAttributes, PlatformUserPlaylistArtistAffinityAttributes, PlatformUserPlaylistArtistAffinityCreationAttributes, PlatformUserPlaylistGenreAffinityAttributes, PlatformUserPlaylistGenreAffinityCreationAttributes, PlatformUserPlaylistTrackAttributes, PlatformUserPlaylistTrackCreationAttributes, PlaybackStatusAttributes, PlaybackStatusCreationAttributes, PlaybackStatusTypeAttributes, PlaybackStatusTypeCreationAttributes, RadioShowAttributes, RadioShowCreationAttributes, RadioShowGenresAttributes, RadioShowGenresCreationAttributes, RadioShowMediaAttributes, RadioShowMediaCreationAttributes, RadioShowPlacementAttributes, RadioShowPlacementCreationAttributes, RadioShowPublishRequestsAttributes, RadioShowPublishRequestsCreationAttributes, StateAttributes, StateCreationAttributes, TrackDeletionReasonAttributes, TrackDeletionReasonCreationAttributes, UnmatchedAlbumAttributes, UnmatchedAlbumCreationAttributes, UnmatchedArtistAttributes, UnmatchedArtistCreationAttributes, UserAffinityAttributes, UserAffinityCreationAttributes, UserArtistAffinityAttributes, UserArtistAffinityCreationAttributes, UserCommentsAttributes, UserCommentsCreationAttributes, UserContactsAttributes, UserContactsCreationAttributes, UserEngagementFactorAttributes, UserEngagementFactorCreationAttributes, UserGenreAffinityAttributes, UserGenreAffinityCreationAttributes, UserLikesAttributes, UserLikesCreationAttributes, };
|
|
196
200
|
export declare function initModels(sequelize: Sequelize): {
|
|
197
201
|
AccessControlPreference: typeof _AccessControlPreference;
|
|
198
202
|
AffinityRelationshipType: typeof _AffinityRelationshipType;
|
|
@@ -271,6 +275,8 @@ export declare function initModels(sequelize: Sequelize): {
|
|
|
271
275
|
PlatformUserAlbum: typeof _PlatformUserAlbum;
|
|
272
276
|
PlatformUserAlbumTrack: typeof _PlatformUserAlbumTrack;
|
|
273
277
|
PlatformUserPlaylist: typeof _PlatformUserPlaylist;
|
|
278
|
+
PlatformUserPlaylistArtistAffinity: typeof _PlatformUserPlaylistArtistAffinity;
|
|
279
|
+
PlatformUserPlaylistGenreAffinity: typeof _PlatformUserPlaylistGenreAffinity;
|
|
274
280
|
PlatformUserPlaylistTrack: typeof _PlatformUserPlaylistTrack;
|
|
275
281
|
PlaybackStatus: typeof _PlaybackStatus;
|
|
276
282
|
PlaybackStatusType: typeof _PlaybackStatusType;
|