@earbug/db-models 0.0.15 → 0.0.17
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/.github/workflows/publish.yaml +54 -0
- package/.nvmrc +1 -1
- package/dist/AppUser.d.ts +24 -0
- package/dist/CanonArtist.d.ts +43 -1
- package/dist/CanonArtist.js +18 -2
- package/dist/GuestUser.d.ts +42 -0
- package/dist/GuestUser.js +91 -0
- package/dist/JukeboxQueueEntry.d.ts +19 -5
- package/dist/JukeboxQueueEntry.js +36 -18
- package/dist/JukeboxSession.d.ts +36 -0
- package/dist/MerchItem.d.ts +50 -0
- package/dist/MerchItem.js +120 -0
- package/dist/MerchOrchestration.d.ts +42 -0
- package/dist/MerchOrchestration.js +104 -0
- package/dist/MerchPlatform.d.ts +45 -0
- package/dist/MerchPlatform.js +75 -0
- package/dist/MerchType.d.ts +43 -0
- package/dist/MerchType.js +71 -0
- package/dist/NewsArticle.js +5 -5
- package/dist/NewsPlatform.js +2 -2
- package/dist/PlatformTrack.d.ts +12 -0
- package/dist/PlatformUserPlaylist.d.ts +24 -0
- package/dist/RadioShow.d.ts +24 -0
- package/dist/RadioShow.js +6 -0
- package/dist/RadioShowGenres.d.ts +3 -1
- package/dist/RadioShowGenres.js +24 -0
- package/dist/UserComments.d.ts +55 -0
- package/dist/UserComments.js +151 -0
- package/dist/UserLikes.d.ts +45 -0
- package/dist/UserLikes.js +151 -0
- package/dist/init-models.d.ts +23 -2
- package/dist/init-models.js +66 -2
- package/models/AppUser.ts +26 -0
- package/models/CanonArtist.ts +64 -3
- package/models/GuestUser.ts +108 -0
- package/models/JukeboxQueueEntry.ts +57 -23
- package/models/JukeboxSession.ts +39 -0
- package/models/MerchItem.ts +146 -0
- package/models/MerchOrchestration.ts +122 -0
- package/models/MerchPlatform.ts +95 -0
- package/models/MerchType.ts +89 -0
- package/models/NewsArticle.ts +5 -6
- package/models/NewsPlatform.ts +2 -3
- package/models/PlatformTrack.ts +13 -0
- package/models/PlatformUserPlaylist.ts +26 -0
- package/models/RadioShow.ts +32 -0
- package/models/RadioShowGenres.ts +27 -1
- package/models/UserComments.ts +184 -0
- package/models/UserLikes.ts +173 -0
- package/models/init-models.ts +85 -0
- package/package.json +1 -1
|
@@ -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.MerchItem = void 0;
|
|
27
|
+
const Sequelize = __importStar(require("sequelize"));
|
|
28
|
+
const sequelize_1 = require("sequelize");
|
|
29
|
+
class MerchItem extends sequelize_1.Model {
|
|
30
|
+
static initModel(sequelize) {
|
|
31
|
+
return MerchItem.init({
|
|
32
|
+
canonArtistId: {
|
|
33
|
+
type: sequelize_1.DataTypes.UUID,
|
|
34
|
+
allowNull: false,
|
|
35
|
+
references: {
|
|
36
|
+
model: 'canon_artist',
|
|
37
|
+
key: 'id'
|
|
38
|
+
},
|
|
39
|
+
field: 'canon_artist_id'
|
|
40
|
+
},
|
|
41
|
+
merchTypeId: {
|
|
42
|
+
type: sequelize_1.DataTypes.UUID,
|
|
43
|
+
allowNull: false,
|
|
44
|
+
references: {
|
|
45
|
+
model: 'merch_type',
|
|
46
|
+
key: 'id'
|
|
47
|
+
},
|
|
48
|
+
field: 'merch_type_id'
|
|
49
|
+
},
|
|
50
|
+
merchPlatformId: {
|
|
51
|
+
type: sequelize_1.DataTypes.UUID,
|
|
52
|
+
allowNull: false,
|
|
53
|
+
references: {
|
|
54
|
+
model: 'merch_platform',
|
|
55
|
+
key: 'id'
|
|
56
|
+
},
|
|
57
|
+
field: 'merch_platform_id'
|
|
58
|
+
},
|
|
59
|
+
merchItemPlatformId: {
|
|
60
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
61
|
+
allowNull: false,
|
|
62
|
+
field: 'merch_item_platform_id'
|
|
63
|
+
},
|
|
64
|
+
title: {
|
|
65
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
66
|
+
allowNull: false
|
|
67
|
+
},
|
|
68
|
+
description: {
|
|
69
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
70
|
+
allowNull: false
|
|
71
|
+
},
|
|
72
|
+
photo: {
|
|
73
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
74
|
+
allowNull: true
|
|
75
|
+
},
|
|
76
|
+
popularity: {
|
|
77
|
+
type: sequelize_1.DataTypes.SMALLINT,
|
|
78
|
+
allowNull: true
|
|
79
|
+
},
|
|
80
|
+
id: {
|
|
81
|
+
type: sequelize_1.DataTypes.UUID,
|
|
82
|
+
allowNull: false,
|
|
83
|
+
defaultValue: sequelize_1.DataTypes.UUIDV4,
|
|
84
|
+
primaryKey: true
|
|
85
|
+
},
|
|
86
|
+
inactive: {
|
|
87
|
+
type: sequelize_1.DataTypes.BOOLEAN,
|
|
88
|
+
allowNull: true,
|
|
89
|
+
defaultValue: false
|
|
90
|
+
},
|
|
91
|
+
createDate: {
|
|
92
|
+
type: sequelize_1.DataTypes.DATE,
|
|
93
|
+
allowNull: false,
|
|
94
|
+
defaultValue: Sequelize.Sequelize.literal('CURRENT_TIMESTAMP'),
|
|
95
|
+
field: 'create_date'
|
|
96
|
+
},
|
|
97
|
+
updateDate: {
|
|
98
|
+
type: sequelize_1.DataTypes.DATE,
|
|
99
|
+
allowNull: false,
|
|
100
|
+
defaultValue: Sequelize.Sequelize.literal('CURRENT_TIMESTAMP'),
|
|
101
|
+
field: 'update_date'
|
|
102
|
+
}
|
|
103
|
+
}, {
|
|
104
|
+
sequelize,
|
|
105
|
+
tableName: 'merch_item',
|
|
106
|
+
schema: 'eb',
|
|
107
|
+
timestamps: false,
|
|
108
|
+
indexes: [
|
|
109
|
+
{
|
|
110
|
+
name: "merch_item_pkey",
|
|
111
|
+
unique: true,
|
|
112
|
+
fields: [
|
|
113
|
+
{ name: "id" },
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
]
|
|
117
|
+
});
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
exports.MerchItem = MerchItem;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import * as Sequelize from 'sequelize';
|
|
2
|
+
import { Model, Optional } from 'sequelize';
|
|
3
|
+
import type { CanonArtist, CanonArtistId } from './CanonArtist';
|
|
4
|
+
import type { MerchPlatform, MerchPlatformId } from './MerchPlatform';
|
|
5
|
+
import type { MerchType, MerchTypeId } from './MerchType';
|
|
6
|
+
export interface MerchOrchestrationAttributes {
|
|
7
|
+
canonArtistId: string;
|
|
8
|
+
merchTypeId: string;
|
|
9
|
+
merchPlatformId: string;
|
|
10
|
+
errorMessage?: string;
|
|
11
|
+
lastHarvestDate?: Date;
|
|
12
|
+
id: string;
|
|
13
|
+
createDate: Date;
|
|
14
|
+
updateDate: Date;
|
|
15
|
+
}
|
|
16
|
+
export type MerchOrchestrationPk = "id";
|
|
17
|
+
export type MerchOrchestrationId = MerchOrchestration[MerchOrchestrationPk];
|
|
18
|
+
export type MerchOrchestrationOptionalAttributes = "errorMessage" | "lastHarvestDate" | "id" | "createDate" | "updateDate";
|
|
19
|
+
export type MerchOrchestrationCreationAttributes = Optional<MerchOrchestrationAttributes, MerchOrchestrationOptionalAttributes>;
|
|
20
|
+
export declare class MerchOrchestration extends Model<MerchOrchestrationAttributes, MerchOrchestrationCreationAttributes> implements MerchOrchestrationAttributes {
|
|
21
|
+
canonArtistId: string;
|
|
22
|
+
merchTypeId: string;
|
|
23
|
+
merchPlatformId: string;
|
|
24
|
+
errorMessage?: string;
|
|
25
|
+
lastHarvestDate?: Date;
|
|
26
|
+
id: string;
|
|
27
|
+
createDate: Date;
|
|
28
|
+
updateDate: Date;
|
|
29
|
+
canonArtist: CanonArtist;
|
|
30
|
+
getCanonArtist: Sequelize.BelongsToGetAssociationMixin<CanonArtist>;
|
|
31
|
+
setCanonArtist: Sequelize.BelongsToSetAssociationMixin<CanonArtist, CanonArtistId>;
|
|
32
|
+
createCanonArtist: Sequelize.BelongsToCreateAssociationMixin<CanonArtist>;
|
|
33
|
+
merchPlatform: MerchPlatform;
|
|
34
|
+
getMerchPlatform: Sequelize.BelongsToGetAssociationMixin<MerchPlatform>;
|
|
35
|
+
setMerchPlatform: Sequelize.BelongsToSetAssociationMixin<MerchPlatform, MerchPlatformId>;
|
|
36
|
+
createMerchPlatform: Sequelize.BelongsToCreateAssociationMixin<MerchPlatform>;
|
|
37
|
+
merchType: MerchType;
|
|
38
|
+
getMerchType: Sequelize.BelongsToGetAssociationMixin<MerchType>;
|
|
39
|
+
setMerchType: Sequelize.BelongsToSetAssociationMixin<MerchType, MerchTypeId>;
|
|
40
|
+
createMerchType: Sequelize.BelongsToCreateAssociationMixin<MerchType>;
|
|
41
|
+
static initModel(sequelize: Sequelize.Sequelize): typeof MerchOrchestration;
|
|
42
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
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.MerchOrchestration = void 0;
|
|
27
|
+
const Sequelize = __importStar(require("sequelize"));
|
|
28
|
+
const sequelize_1 = require("sequelize");
|
|
29
|
+
class MerchOrchestration extends sequelize_1.Model {
|
|
30
|
+
static initModel(sequelize) {
|
|
31
|
+
return MerchOrchestration.init({
|
|
32
|
+
canonArtistId: {
|
|
33
|
+
type: sequelize_1.DataTypes.UUID,
|
|
34
|
+
allowNull: false,
|
|
35
|
+
references: {
|
|
36
|
+
model: 'canon_artist',
|
|
37
|
+
key: 'id'
|
|
38
|
+
},
|
|
39
|
+
field: 'canon_artist_id'
|
|
40
|
+
},
|
|
41
|
+
merchTypeId: {
|
|
42
|
+
type: sequelize_1.DataTypes.UUID,
|
|
43
|
+
allowNull: false,
|
|
44
|
+
references: {
|
|
45
|
+
model: 'merch_type',
|
|
46
|
+
key: 'id'
|
|
47
|
+
},
|
|
48
|
+
field: 'merch_type_id'
|
|
49
|
+
},
|
|
50
|
+
merchPlatformId: {
|
|
51
|
+
type: sequelize_1.DataTypes.UUID,
|
|
52
|
+
allowNull: false,
|
|
53
|
+
references: {
|
|
54
|
+
model: 'merch_platform',
|
|
55
|
+
key: 'id'
|
|
56
|
+
},
|
|
57
|
+
field: 'merch_platform_id'
|
|
58
|
+
},
|
|
59
|
+
errorMessage: {
|
|
60
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
61
|
+
allowNull: true,
|
|
62
|
+
field: 'error_message'
|
|
63
|
+
},
|
|
64
|
+
lastHarvestDate: {
|
|
65
|
+
type: sequelize_1.DataTypes.DATE,
|
|
66
|
+
allowNull: true,
|
|
67
|
+
field: 'last_harvest_date'
|
|
68
|
+
},
|
|
69
|
+
id: {
|
|
70
|
+
type: sequelize_1.DataTypes.UUID,
|
|
71
|
+
allowNull: false,
|
|
72
|
+
defaultValue: sequelize_1.DataTypes.UUIDV4,
|
|
73
|
+
primaryKey: true
|
|
74
|
+
},
|
|
75
|
+
createDate: {
|
|
76
|
+
type: sequelize_1.DataTypes.DATE,
|
|
77
|
+
allowNull: false,
|
|
78
|
+
defaultValue: Sequelize.Sequelize.literal('CURRENT_TIMESTAMP'),
|
|
79
|
+
field: 'create_date'
|
|
80
|
+
},
|
|
81
|
+
updateDate: {
|
|
82
|
+
type: sequelize_1.DataTypes.DATE,
|
|
83
|
+
allowNull: false,
|
|
84
|
+
defaultValue: Sequelize.Sequelize.literal('CURRENT_TIMESTAMP'),
|
|
85
|
+
field: 'update_date'
|
|
86
|
+
}
|
|
87
|
+
}, {
|
|
88
|
+
sequelize,
|
|
89
|
+
tableName: 'merch_orchestration',
|
|
90
|
+
schema: 'eb',
|
|
91
|
+
timestamps: false,
|
|
92
|
+
indexes: [
|
|
93
|
+
{
|
|
94
|
+
name: "merch_orchestration_pkey",
|
|
95
|
+
unique: true,
|
|
96
|
+
fields: [
|
|
97
|
+
{ name: "id" },
|
|
98
|
+
]
|
|
99
|
+
},
|
|
100
|
+
]
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
exports.MerchOrchestration = MerchOrchestration;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import * as Sequelize from 'sequelize';
|
|
2
|
+
import { Model, Optional } from 'sequelize';
|
|
3
|
+
import type { MerchItem, MerchItemId } from './MerchItem';
|
|
4
|
+
import type { MerchOrchestration, MerchOrchestrationId } from './MerchOrchestration';
|
|
5
|
+
export interface MerchPlatformAttributes {
|
|
6
|
+
name: string;
|
|
7
|
+
host: string;
|
|
8
|
+
id: string;
|
|
9
|
+
createDate: Date;
|
|
10
|
+
updateDate: Date;
|
|
11
|
+
}
|
|
12
|
+
export type MerchPlatformPk = "id";
|
|
13
|
+
export type MerchPlatformId = MerchPlatform[MerchPlatformPk];
|
|
14
|
+
export type MerchPlatformOptionalAttributes = "id" | "createDate" | "updateDate";
|
|
15
|
+
export type MerchPlatformCreationAttributes = Optional<MerchPlatformAttributes, MerchPlatformOptionalAttributes>;
|
|
16
|
+
export declare class MerchPlatform extends Model<MerchPlatformAttributes, MerchPlatformCreationAttributes> implements MerchPlatformAttributes {
|
|
17
|
+
name: string;
|
|
18
|
+
host: string;
|
|
19
|
+
id: string;
|
|
20
|
+
createDate: Date;
|
|
21
|
+
updateDate: Date;
|
|
22
|
+
merchItems: MerchItem[];
|
|
23
|
+
getMerchItems: Sequelize.HasManyGetAssociationsMixin<MerchItem>;
|
|
24
|
+
setMerchItems: Sequelize.HasManySetAssociationsMixin<MerchItem, MerchItemId>;
|
|
25
|
+
addMerchItem: Sequelize.HasManyAddAssociationMixin<MerchItem, MerchItemId>;
|
|
26
|
+
addMerchItems: Sequelize.HasManyAddAssociationsMixin<MerchItem, MerchItemId>;
|
|
27
|
+
createMerchItem: Sequelize.HasManyCreateAssociationMixin<MerchItem>;
|
|
28
|
+
removeMerchItem: Sequelize.HasManyRemoveAssociationMixin<MerchItem, MerchItemId>;
|
|
29
|
+
removeMerchItems: Sequelize.HasManyRemoveAssociationsMixin<MerchItem, MerchItemId>;
|
|
30
|
+
hasMerchItem: Sequelize.HasManyHasAssociationMixin<MerchItem, MerchItemId>;
|
|
31
|
+
hasMerchItems: Sequelize.HasManyHasAssociationsMixin<MerchItem, MerchItemId>;
|
|
32
|
+
countMerchItems: Sequelize.HasManyCountAssociationsMixin;
|
|
33
|
+
merchOrchestrations: MerchOrchestration[];
|
|
34
|
+
getMerchOrchestrations: Sequelize.HasManyGetAssociationsMixin<MerchOrchestration>;
|
|
35
|
+
setMerchOrchestrations: Sequelize.HasManySetAssociationsMixin<MerchOrchestration, MerchOrchestrationId>;
|
|
36
|
+
addMerchOrchestration: Sequelize.HasManyAddAssociationMixin<MerchOrchestration, MerchOrchestrationId>;
|
|
37
|
+
addMerchOrchestrations: Sequelize.HasManyAddAssociationsMixin<MerchOrchestration, MerchOrchestrationId>;
|
|
38
|
+
createMerchOrchestration: Sequelize.HasManyCreateAssociationMixin<MerchOrchestration>;
|
|
39
|
+
removeMerchOrchestration: Sequelize.HasManyRemoveAssociationMixin<MerchOrchestration, MerchOrchestrationId>;
|
|
40
|
+
removeMerchOrchestrations: Sequelize.HasManyRemoveAssociationsMixin<MerchOrchestration, MerchOrchestrationId>;
|
|
41
|
+
hasMerchOrchestration: Sequelize.HasManyHasAssociationMixin<MerchOrchestration, MerchOrchestrationId>;
|
|
42
|
+
hasMerchOrchestrations: Sequelize.HasManyHasAssociationsMixin<MerchOrchestration, MerchOrchestrationId>;
|
|
43
|
+
countMerchOrchestrations: Sequelize.HasManyCountAssociationsMixin;
|
|
44
|
+
static initModel(sequelize: Sequelize.Sequelize): typeof MerchPlatform;
|
|
45
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
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.MerchPlatform = void 0;
|
|
27
|
+
const Sequelize = __importStar(require("sequelize"));
|
|
28
|
+
const sequelize_1 = require("sequelize");
|
|
29
|
+
class MerchPlatform extends sequelize_1.Model {
|
|
30
|
+
static initModel(sequelize) {
|
|
31
|
+
return MerchPlatform.init({
|
|
32
|
+
name: {
|
|
33
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
34
|
+
allowNull: false
|
|
35
|
+
},
|
|
36
|
+
host: {
|
|
37
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
38
|
+
allowNull: false
|
|
39
|
+
},
|
|
40
|
+
id: {
|
|
41
|
+
type: sequelize_1.DataTypes.UUID,
|
|
42
|
+
allowNull: false,
|
|
43
|
+
defaultValue: sequelize_1.DataTypes.UUIDV4,
|
|
44
|
+
primaryKey: true
|
|
45
|
+
},
|
|
46
|
+
createDate: {
|
|
47
|
+
type: sequelize_1.DataTypes.DATE,
|
|
48
|
+
allowNull: false,
|
|
49
|
+
defaultValue: Sequelize.Sequelize.literal('CURRENT_TIMESTAMP'),
|
|
50
|
+
field: 'create_date'
|
|
51
|
+
},
|
|
52
|
+
updateDate: {
|
|
53
|
+
type: sequelize_1.DataTypes.DATE,
|
|
54
|
+
allowNull: false,
|
|
55
|
+
defaultValue: Sequelize.Sequelize.literal('CURRENT_TIMESTAMP'),
|
|
56
|
+
field: 'update_date'
|
|
57
|
+
}
|
|
58
|
+
}, {
|
|
59
|
+
sequelize,
|
|
60
|
+
tableName: 'merch_platform',
|
|
61
|
+
schema: 'eb',
|
|
62
|
+
timestamps: false,
|
|
63
|
+
indexes: [
|
|
64
|
+
{
|
|
65
|
+
name: "merch_platform_pkey",
|
|
66
|
+
unique: true,
|
|
67
|
+
fields: [
|
|
68
|
+
{ name: "id" },
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
]
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
exports.MerchPlatform = MerchPlatform;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import * as Sequelize from 'sequelize';
|
|
2
|
+
import { Model, Optional } from 'sequelize';
|
|
3
|
+
import type { MerchItem, MerchItemId } from './MerchItem';
|
|
4
|
+
import type { MerchOrchestration, MerchOrchestrationId } from './MerchOrchestration';
|
|
5
|
+
export interface MerchTypeAttributes {
|
|
6
|
+
description: string;
|
|
7
|
+
id: string;
|
|
8
|
+
createDate: Date;
|
|
9
|
+
updateDate: Date;
|
|
10
|
+
}
|
|
11
|
+
export type MerchTypePk = "id";
|
|
12
|
+
export type MerchTypeId = MerchType[MerchTypePk];
|
|
13
|
+
export type MerchTypeOptionalAttributes = "id" | "createDate" | "updateDate";
|
|
14
|
+
export type MerchTypeCreationAttributes = Optional<MerchTypeAttributes, MerchTypeOptionalAttributes>;
|
|
15
|
+
export declare class MerchType extends Model<MerchTypeAttributes, MerchTypeCreationAttributes> implements MerchTypeAttributes {
|
|
16
|
+
description: string;
|
|
17
|
+
id: string;
|
|
18
|
+
createDate: Date;
|
|
19
|
+
updateDate: Date;
|
|
20
|
+
merchItems: MerchItem[];
|
|
21
|
+
getMerchItems: Sequelize.HasManyGetAssociationsMixin<MerchItem>;
|
|
22
|
+
setMerchItems: Sequelize.HasManySetAssociationsMixin<MerchItem, MerchItemId>;
|
|
23
|
+
addMerchItem: Sequelize.HasManyAddAssociationMixin<MerchItem, MerchItemId>;
|
|
24
|
+
addMerchItems: Sequelize.HasManyAddAssociationsMixin<MerchItem, MerchItemId>;
|
|
25
|
+
createMerchItem: Sequelize.HasManyCreateAssociationMixin<MerchItem>;
|
|
26
|
+
removeMerchItem: Sequelize.HasManyRemoveAssociationMixin<MerchItem, MerchItemId>;
|
|
27
|
+
removeMerchItems: Sequelize.HasManyRemoveAssociationsMixin<MerchItem, MerchItemId>;
|
|
28
|
+
hasMerchItem: Sequelize.HasManyHasAssociationMixin<MerchItem, MerchItemId>;
|
|
29
|
+
hasMerchItems: Sequelize.HasManyHasAssociationsMixin<MerchItem, MerchItemId>;
|
|
30
|
+
countMerchItems: Sequelize.HasManyCountAssociationsMixin;
|
|
31
|
+
merchOrchestrations: MerchOrchestration[];
|
|
32
|
+
getMerchOrchestrations: Sequelize.HasManyGetAssociationsMixin<MerchOrchestration>;
|
|
33
|
+
setMerchOrchestrations: Sequelize.HasManySetAssociationsMixin<MerchOrchestration, MerchOrchestrationId>;
|
|
34
|
+
addMerchOrchestration: Sequelize.HasManyAddAssociationMixin<MerchOrchestration, MerchOrchestrationId>;
|
|
35
|
+
addMerchOrchestrations: Sequelize.HasManyAddAssociationsMixin<MerchOrchestration, MerchOrchestrationId>;
|
|
36
|
+
createMerchOrchestration: Sequelize.HasManyCreateAssociationMixin<MerchOrchestration>;
|
|
37
|
+
removeMerchOrchestration: Sequelize.HasManyRemoveAssociationMixin<MerchOrchestration, MerchOrchestrationId>;
|
|
38
|
+
removeMerchOrchestrations: Sequelize.HasManyRemoveAssociationsMixin<MerchOrchestration, MerchOrchestrationId>;
|
|
39
|
+
hasMerchOrchestration: Sequelize.HasManyHasAssociationMixin<MerchOrchestration, MerchOrchestrationId>;
|
|
40
|
+
hasMerchOrchestrations: Sequelize.HasManyHasAssociationsMixin<MerchOrchestration, MerchOrchestrationId>;
|
|
41
|
+
countMerchOrchestrations: Sequelize.HasManyCountAssociationsMixin;
|
|
42
|
+
static initModel(sequelize: Sequelize.Sequelize): typeof MerchType;
|
|
43
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
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.MerchType = void 0;
|
|
27
|
+
const Sequelize = __importStar(require("sequelize"));
|
|
28
|
+
const sequelize_1 = require("sequelize");
|
|
29
|
+
class MerchType extends sequelize_1.Model {
|
|
30
|
+
static initModel(sequelize) {
|
|
31
|
+
return MerchType.init({
|
|
32
|
+
description: {
|
|
33
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
34
|
+
allowNull: false
|
|
35
|
+
},
|
|
36
|
+
id: {
|
|
37
|
+
type: sequelize_1.DataTypes.UUID,
|
|
38
|
+
allowNull: false,
|
|
39
|
+
defaultValue: sequelize_1.DataTypes.UUIDV4,
|
|
40
|
+
primaryKey: true
|
|
41
|
+
},
|
|
42
|
+
createDate: {
|
|
43
|
+
type: sequelize_1.DataTypes.DATE,
|
|
44
|
+
allowNull: false,
|
|
45
|
+
defaultValue: Sequelize.Sequelize.literal('CURRENT_TIMESTAMP'),
|
|
46
|
+
field: 'create_date'
|
|
47
|
+
},
|
|
48
|
+
updateDate: {
|
|
49
|
+
type: sequelize_1.DataTypes.DATE,
|
|
50
|
+
allowNull: false,
|
|
51
|
+
defaultValue: Sequelize.Sequelize.literal('CURRENT_TIMESTAMP'),
|
|
52
|
+
field: 'update_date'
|
|
53
|
+
}
|
|
54
|
+
}, {
|
|
55
|
+
sequelize,
|
|
56
|
+
tableName: 'merch_type',
|
|
57
|
+
schema: 'eb',
|
|
58
|
+
timestamps: false,
|
|
59
|
+
indexes: [
|
|
60
|
+
{
|
|
61
|
+
name: "merch_type_pkey",
|
|
62
|
+
unique: true,
|
|
63
|
+
fields: [
|
|
64
|
+
{ name: "id" },
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
]
|
|
68
|
+
});
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
exports.MerchType = MerchType;
|
package/dist/NewsArticle.js
CHANGED
|
@@ -32,7 +32,7 @@ class NewsArticle extends sequelize_1.Model {
|
|
|
32
32
|
id: {
|
|
33
33
|
type: sequelize_1.DataTypes.UUID,
|
|
34
34
|
allowNull: false,
|
|
35
|
-
defaultValue:
|
|
35
|
+
defaultValue: sequelize_1.DataTypes.UUIDV4,
|
|
36
36
|
primaryKey: true
|
|
37
37
|
},
|
|
38
38
|
canonArtistId: {
|
|
@@ -54,20 +54,20 @@ class NewsArticle extends sequelize_1.Model {
|
|
|
54
54
|
field: 'news_platform_id'
|
|
55
55
|
},
|
|
56
56
|
title: {
|
|
57
|
-
type: sequelize_1.DataTypes.
|
|
57
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
58
58
|
allowNull: false
|
|
59
59
|
},
|
|
60
60
|
description: {
|
|
61
|
-
type: sequelize_1.DataTypes.
|
|
61
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
62
62
|
allowNull: false
|
|
63
63
|
},
|
|
64
64
|
articleUrl: {
|
|
65
|
-
type: sequelize_1.DataTypes.
|
|
65
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
66
66
|
allowNull: false,
|
|
67
67
|
field: 'article_url'
|
|
68
68
|
},
|
|
69
69
|
photoUrl: {
|
|
70
|
-
type: sequelize_1.DataTypes.
|
|
70
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
71
71
|
allowNull: false,
|
|
72
72
|
field: 'photo_url'
|
|
73
73
|
},
|
package/dist/NewsPlatform.js
CHANGED
|
@@ -32,11 +32,11 @@ class NewsPlatform extends sequelize_1.Model {
|
|
|
32
32
|
id: {
|
|
33
33
|
type: sequelize_1.DataTypes.UUID,
|
|
34
34
|
allowNull: false,
|
|
35
|
-
defaultValue:
|
|
35
|
+
defaultValue: sequelize_1.DataTypes.UUIDV4,
|
|
36
36
|
primaryKey: true
|
|
37
37
|
},
|
|
38
38
|
name: {
|
|
39
|
-
type: sequelize_1.DataTypes.
|
|
39
|
+
type: sequelize_1.DataTypes.TEXT,
|
|
40
40
|
allowNull: false
|
|
41
41
|
},
|
|
42
42
|
createDate: {
|
package/dist/PlatformTrack.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import * as Sequelize from 'sequelize';
|
|
|
2
2
|
import { Model, Optional } from 'sequelize';
|
|
3
3
|
import type { CanonToPlatformTrackRelation, CanonToPlatformTrackRelationId } from './CanonToPlatformTrackRelation';
|
|
4
4
|
import type { CanonTrack, CanonTrackId } from './CanonTrack';
|
|
5
|
+
import type { JukeboxQueueEntry, JukeboxQueueEntryId } from './JukeboxQueueEntry';
|
|
5
6
|
import type { Platform, PlatformId } from './Platform';
|
|
6
7
|
import type { PlatformAlbum, PlatformAlbumId } from './PlatformAlbum';
|
|
7
8
|
import type { PlatformAlbumTrackRelation, PlatformAlbumTrackRelationId } from './PlatformAlbumTrackRelation';
|
|
@@ -72,6 +73,17 @@ export declare class PlatformTrack extends Model<PlatformTrackAttributes, Platfo
|
|
|
72
73
|
hasCanonTrackIdCanonTrackCanonToPlatformTrackRelation: Sequelize.BelongsToManyHasAssociationMixin<CanonTrack, CanonTrackId>;
|
|
73
74
|
hasCanonTrackIdCanonTrackCanonToPlatformTrackRelations: Sequelize.BelongsToManyHasAssociationsMixin<CanonTrack, CanonTrackId>;
|
|
74
75
|
countCanonTrackIdCanonTrackCanonToPlatformTrackRelations: Sequelize.BelongsToManyCountAssociationsMixin;
|
|
76
|
+
jukeboxQueueEntries: JukeboxQueueEntry[];
|
|
77
|
+
getJukeboxQueueEntries: Sequelize.HasManyGetAssociationsMixin<JukeboxQueueEntry>;
|
|
78
|
+
setJukeboxQueueEntries: Sequelize.HasManySetAssociationsMixin<JukeboxQueueEntry, JukeboxQueueEntryId>;
|
|
79
|
+
addJukeboxQueueEntry: Sequelize.HasManyAddAssociationMixin<JukeboxQueueEntry, JukeboxQueueEntryId>;
|
|
80
|
+
addJukeboxQueueEntries: Sequelize.HasManyAddAssociationsMixin<JukeboxQueueEntry, JukeboxQueueEntryId>;
|
|
81
|
+
createJukeboxQueueEntry: Sequelize.HasManyCreateAssociationMixin<JukeboxQueueEntry>;
|
|
82
|
+
removeJukeboxQueueEntry: Sequelize.HasManyRemoveAssociationMixin<JukeboxQueueEntry, JukeboxQueueEntryId>;
|
|
83
|
+
removeJukeboxQueueEntries: Sequelize.HasManyRemoveAssociationsMixin<JukeboxQueueEntry, JukeboxQueueEntryId>;
|
|
84
|
+
hasJukeboxQueueEntry: Sequelize.HasManyHasAssociationMixin<JukeboxQueueEntry, JukeboxQueueEntryId>;
|
|
85
|
+
hasJukeboxQueueEntries: Sequelize.HasManyHasAssociationsMixin<JukeboxQueueEntry, JukeboxQueueEntryId>;
|
|
86
|
+
countJukeboxQueueEntries: Sequelize.HasManyCountAssociationsMixin;
|
|
75
87
|
platformAlbumIdPlatformAlbumPlatformAlbumTrackRelations: PlatformAlbum[];
|
|
76
88
|
getPlatformAlbumIdPlatformAlbumPlatformAlbumTrackRelations: Sequelize.BelongsToManyGetAssociationsMixin<PlatformAlbum>;
|
|
77
89
|
setPlatformAlbumIdPlatformAlbumPlatformAlbumTrackRelations: Sequelize.BelongsToManySetAssociationsMixin<PlatformAlbum, PlatformAlbumId>;
|
|
@@ -4,6 +4,8 @@ import type { AppUser, AppUserId } from './AppUser';
|
|
|
4
4
|
import type { Platform, PlatformId } from './Platform';
|
|
5
5
|
import type { PlatformUserPlaylistTrack, PlatformUserPlaylistTrackId } from './PlatformUserPlaylistTrack';
|
|
6
6
|
import type { State, StateId } from './State';
|
|
7
|
+
import type { UserComments, UserCommentsId } from './UserComments';
|
|
8
|
+
import type { UserLikes, UserLikesId } from './UserLikes';
|
|
7
9
|
export interface PlatformUserPlaylistAttributes {
|
|
8
10
|
appUserId: string;
|
|
9
11
|
platformId: number;
|
|
@@ -56,6 +58,28 @@ export declare class PlatformUserPlaylist extends Model<PlatformUserPlaylistAttr
|
|
|
56
58
|
hasPlatformUserPlaylistTrack: Sequelize.HasManyHasAssociationMixin<PlatformUserPlaylistTrack, PlatformUserPlaylistTrackId>;
|
|
57
59
|
hasPlatformUserPlaylistTracks: Sequelize.HasManyHasAssociationsMixin<PlatformUserPlaylistTrack, PlatformUserPlaylistTrackId>;
|
|
58
60
|
countPlatformUserPlaylistTracks: Sequelize.HasManyCountAssociationsMixin;
|
|
61
|
+
userComments: UserComments[];
|
|
62
|
+
getUserComments: Sequelize.HasManyGetAssociationsMixin<UserComments>;
|
|
63
|
+
setUserComments: Sequelize.HasManySetAssociationsMixin<UserComments, UserCommentsId>;
|
|
64
|
+
addUserComment: Sequelize.HasManyAddAssociationMixin<UserComments, UserCommentsId>;
|
|
65
|
+
addUserComments: Sequelize.HasManyAddAssociationsMixin<UserComments, UserCommentsId>;
|
|
66
|
+
createUserComment: Sequelize.HasManyCreateAssociationMixin<UserComments>;
|
|
67
|
+
removeUserComment: Sequelize.HasManyRemoveAssociationMixin<UserComments, UserCommentsId>;
|
|
68
|
+
removeUserComments: Sequelize.HasManyRemoveAssociationsMixin<UserComments, UserCommentsId>;
|
|
69
|
+
hasUserComment: Sequelize.HasManyHasAssociationMixin<UserComments, UserCommentsId>;
|
|
70
|
+
hasUserComments: Sequelize.HasManyHasAssociationsMixin<UserComments, UserCommentsId>;
|
|
71
|
+
countUserComments: Sequelize.HasManyCountAssociationsMixin;
|
|
72
|
+
userLikes: UserLikes[];
|
|
73
|
+
getUserLikes: Sequelize.HasManyGetAssociationsMixin<UserLikes>;
|
|
74
|
+
setUserLikes: Sequelize.HasManySetAssociationsMixin<UserLikes, UserLikesId>;
|
|
75
|
+
addUserLike: Sequelize.HasManyAddAssociationMixin<UserLikes, UserLikesId>;
|
|
76
|
+
addUserLikes: Sequelize.HasManyAddAssociationsMixin<UserLikes, UserLikesId>;
|
|
77
|
+
createUserLike: Sequelize.HasManyCreateAssociationMixin<UserLikes>;
|
|
78
|
+
removeUserLike: Sequelize.HasManyRemoveAssociationMixin<UserLikes, UserLikesId>;
|
|
79
|
+
removeUserLikes: Sequelize.HasManyRemoveAssociationsMixin<UserLikes, UserLikesId>;
|
|
80
|
+
hasUserLike: Sequelize.HasManyHasAssociationMixin<UserLikes, UserLikesId>;
|
|
81
|
+
hasUserLikes: Sequelize.HasManyHasAssociationsMixin<UserLikes, UserLikesId>;
|
|
82
|
+
countUserLikes: Sequelize.HasManyCountAssociationsMixin;
|
|
59
83
|
state: State;
|
|
60
84
|
getState: Sequelize.BelongsToGetAssociationMixin<State>;
|
|
61
85
|
setState: Sequelize.BelongsToSetAssociationMixin<State, StateId>;
|
package/dist/RadioShow.d.ts
CHANGED
|
@@ -5,6 +5,8 @@ import type { RadioShowGenres, RadioShowGenresId } from './RadioShowGenres';
|
|
|
5
5
|
import type { RadioShowMedia, RadioShowMediaId } from './RadioShowMedia';
|
|
6
6
|
import type { RadioShowPlacement, RadioShowPlacementId } from './RadioShowPlacement';
|
|
7
7
|
import type { RadioShowPublishRequests, RadioShowPublishRequestsId } from './RadioShowPublishRequests';
|
|
8
|
+
import type { UserComments, UserCommentsId } from './UserComments';
|
|
9
|
+
import type { UserLikes, UserLikesId } from './UserLikes';
|
|
8
10
|
export interface RadioShowAttributes {
|
|
9
11
|
creatorUserId: string;
|
|
10
12
|
scheduledRelease?: Date;
|
|
@@ -76,5 +78,27 @@ export declare class RadioShow extends Model<RadioShowAttributes, RadioShowCreat
|
|
|
76
78
|
hasRadioShowPublishRequest: Sequelize.HasManyHasAssociationMixin<RadioShowPublishRequests, RadioShowPublishRequestsId>;
|
|
77
79
|
hasRadioShowPublishRequests: Sequelize.HasManyHasAssociationsMixin<RadioShowPublishRequests, RadioShowPublishRequestsId>;
|
|
78
80
|
countRadioShowPublishRequests: Sequelize.HasManyCountAssociationsMixin;
|
|
81
|
+
userComments: UserComments[];
|
|
82
|
+
getUserComments: Sequelize.HasManyGetAssociationsMixin<UserComments>;
|
|
83
|
+
setUserComments: Sequelize.HasManySetAssociationsMixin<UserComments, UserCommentsId>;
|
|
84
|
+
addUserComment: Sequelize.HasManyAddAssociationMixin<UserComments, UserCommentsId>;
|
|
85
|
+
addUserComments: Sequelize.HasManyAddAssociationsMixin<UserComments, UserCommentsId>;
|
|
86
|
+
createUserComment: Sequelize.HasManyCreateAssociationMixin<UserComments>;
|
|
87
|
+
removeUserComment: Sequelize.HasManyRemoveAssociationMixin<UserComments, UserCommentsId>;
|
|
88
|
+
removeUserComments: Sequelize.HasManyRemoveAssociationsMixin<UserComments, UserCommentsId>;
|
|
89
|
+
hasUserComment: Sequelize.HasManyHasAssociationMixin<UserComments, UserCommentsId>;
|
|
90
|
+
hasUserComments: Sequelize.HasManyHasAssociationsMixin<UserComments, UserCommentsId>;
|
|
91
|
+
countUserComments: Sequelize.HasManyCountAssociationsMixin;
|
|
92
|
+
userLikes: UserLikes[];
|
|
93
|
+
getUserLikes: Sequelize.HasManyGetAssociationsMixin<UserLikes>;
|
|
94
|
+
setUserLikes: Sequelize.HasManySetAssociationsMixin<UserLikes, UserLikesId>;
|
|
95
|
+
addUserLike: Sequelize.HasManyAddAssociationMixin<UserLikes, UserLikesId>;
|
|
96
|
+
addUserLikes: Sequelize.HasManyAddAssociationsMixin<UserLikes, UserLikesId>;
|
|
97
|
+
createUserLike: Sequelize.HasManyCreateAssociationMixin<UserLikes>;
|
|
98
|
+
removeUserLike: Sequelize.HasManyRemoveAssociationMixin<UserLikes, UserLikesId>;
|
|
99
|
+
removeUserLikes: Sequelize.HasManyRemoveAssociationsMixin<UserLikes, UserLikesId>;
|
|
100
|
+
hasUserLike: Sequelize.HasManyHasAssociationMixin<UserLikes, UserLikesId>;
|
|
101
|
+
hasUserLikes: Sequelize.HasManyHasAssociationsMixin<UserLikes, UserLikesId>;
|
|
102
|
+
countUserLikes: Sequelize.HasManyCountAssociationsMixin;
|
|
79
103
|
static initModel(sequelize: Sequelize.Sequelize): typeof RadioShow;
|
|
80
104
|
}
|