mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-18 13:44:12 +00:00
refactor!: rename eventData > project
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { Alias } from './core/Alias.type.js';
|
||||
import { EventData } from './core/EventData.type.js';
|
||||
import { ProjectData } from './core/ProjectData.type.js';
|
||||
import { OntimeRundown } from './core/Rundown.type.js';
|
||||
import { OSCSettings } from './core/OscSettings.type.js';
|
||||
import { Settings } from './core/Settings.type.js';
|
||||
@@ -8,7 +8,7 @@ import { ViewSettings } from './core/Views.type.js';
|
||||
|
||||
export type DatabaseModel = {
|
||||
rundown: OntimeRundown;
|
||||
eventData: EventData;
|
||||
project: ProjectData;
|
||||
settings: Settings;
|
||||
viewSettings: ViewSettings;
|
||||
aliases: Alias[];
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
export type EventData = {
|
||||
export type ProjectData = {
|
||||
title: string;
|
||||
description: string;
|
||||
publicUrl: string;
|
||||
@@ -13,8 +13,8 @@ export {
|
||||
export type { OntimeEntryCommonKeys, OntimeRundown, OntimeRundownEntry } from './definitions/core/Rundown.type.js';
|
||||
export { TimerType } from './definitions/TimerType.type.js';
|
||||
|
||||
// ---> Event Data
|
||||
export type { EventData } from './definitions/core/EventData.type.js';
|
||||
// ---> Project Data
|
||||
export type { ProjectData } from './definitions/core/ProjectData.type.js';
|
||||
|
||||
// ---> Settings
|
||||
export type { Settings } from './definitions/core/Settings.type.js';
|
||||
|
||||
Reference in New Issue
Block a user