add generated files

This commit is contained in:
Georges-Antoine Assi
2026-05-28 09:43:47 -04:00
parent 207d0dc4c6
commit 0ee32ef4b3
4 changed files with 12 additions and 0 deletions

View File

@@ -40,6 +40,7 @@ export type { ClientTokenCreateSchema } from './models/ClientTokenCreateSchema';
export type { ClientTokenExchangePayload } from './models/ClientTokenExchangePayload';
export type { ClientTokenPairSchema } from './models/ClientTokenPairSchema';
export type { ClientTokenSchema } from './models/ClientTokenSchema';
export type { CollectionRomsPayload } from './models/CollectionRomsPayload';
export type { CollectionSchema } from './models/CollectionSchema';
export type { ConfigResponse } from './models/ConfigResponse';
export type { ConversionStats } from './models/ConversionStats';

View File

@@ -0,0 +1,8 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type CollectionRomsPayload = {
rom_ids: Array<number>;
};

View File

@@ -18,6 +18,7 @@ export type RomFileSchema = {
sha1_hash: (string | null);
ra_hash: (string | null);
chd_sha1_hash: (string | null);
archive_members: null;
category: (RomFileCategory | null);
};

View File

@@ -16,5 +16,7 @@ export type RomLaunchboxMetadata = {
genres?: Array<string>;
companies?: Array<string>;
images?: Array<LaunchboxImage>;
video_url?: string;
video_path?: string;
};