-
-
Notifications
You must be signed in to change notification settings - Fork 425
Expand file tree
/
Copy pathSimpleRomSchema.ts
More file actions
88 lines (88 loc) · 3.13 KB
/
SimpleRomSchema.ts
File metadata and controls
88 lines (88 loc) · 3.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { ManualMetadata } from './ManualMetadata';
import type { RomFlashpointMetadata } from './RomFlashpointMetadata';
import type { RomGamelistMetadata } from './RomGamelistMetadata';
import type { RomHasheousMetadata } from './RomHasheousMetadata';
import type { RomHLTBMetadata } from './RomHLTBMetadata';
import type { RomIGDBMetadata } from './RomIGDBMetadata';
import type { RomLaunchboxMetadata } from './RomLaunchboxMetadata';
import type { RomMetadataSchema } from './RomMetadataSchema';
import type { RomMobyMetadata } from './RomMobyMetadata';
import type { RomRAMetadata } from './RomRAMetadata';
import type { RomSSMetadata } from './RomSSMetadata';
import type { RomUserSchema } from './RomUserSchema';
export type SimpleRomSchema = {
id: number;
igdb_id: (number | null);
sgdb_id: (number | null);
moby_id: (number | null);
ss_id: (number | null);
ra_id: (number | null);
launchbox_id: (number | null);
hasheous_id: (number | null);
tgdb_id: (number | null);
flashpoint_id: (string | null);
hltb_id: (number | null);
gamelist_id: (string | null);
libretro_id: (string | null);
platform_id: number;
platform_slug: string;
platform_fs_slug: string;
platform_custom_name: (string | null);
platform_display_name: string;
fs_name: string;
fs_name_no_tags: string;
fs_name_no_ext: string;
fs_extension: string;
fs_path: string;
fs_size_bytes: number;
name: (string | null);
sort_name: (string | null);
slug: (string | null);
summary: (string | null);
alternative_names: Array<string>;
youtube_video_id: (string | null);
metadatum: RomMetadataSchema;
igdb_metadata: (RomIGDBMetadata | null);
moby_metadata: (RomMobyMetadata | null);
ss_metadata: (RomSSMetadata | null);
launchbox_metadata: (RomLaunchboxMetadata | null);
hasheous_metadata: (RomHasheousMetadata | null);
flashpoint_metadata: (RomFlashpointMetadata | null);
hltb_metadata: (RomHLTBMetadata | null);
gamelist_metadata: (RomGamelistMetadata | null);
manual_metadata: (ManualMetadata | null);
path_cover_small: (string | null);
path_cover_large: (string | null);
url_cover: (string | null);
has_manual: boolean;
path_manual: (string | null);
url_manual: (string | null);
path_video: (string | null);
is_identifying?: boolean;
is_unidentified: boolean;
is_identified: boolean;
revision: (string | null);
regions: Array<string>;
languages: Array<string>;
tags: Array<string>;
crc_hash: (string | null);
md5_hash: (string | null);
sha1_hash: (string | null);
ra_hash: (string | null);
has_simple_single_file: boolean;
has_nested_single_file: boolean;
has_multiple_files: boolean;
full_path: string;
created_at: string;
updated_at: string;
missing_from_fs: boolean;
has_notes: boolean;
rom_user: RomUserSchema;
merged_screenshots: Array<string>;
merged_ra_metadata: (RomRAMetadata | null);
sibling_ids: Array<number>;
};