diff --git a/frontend/src/__generated__/index.ts b/frontend/src/__generated__/index.ts index 352bc0682..01ee3b9b3 100644 --- a/frontend/src/__generated__/index.ts +++ b/frontend/src/__generated__/index.ts @@ -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'; diff --git a/frontend/src/__generated__/models/CollectionRomsPayload.ts b/frontend/src/__generated__/models/CollectionRomsPayload.ts new file mode 100644 index 000000000..7c6fa4f72 --- /dev/null +++ b/frontend/src/__generated__/models/CollectionRomsPayload.ts @@ -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; +}; + diff --git a/frontend/src/__generated__/models/RomFileSchema.ts b/frontend/src/__generated__/models/RomFileSchema.ts index 6caa08981..f04403f5a 100644 --- a/frontend/src/__generated__/models/RomFileSchema.ts +++ b/frontend/src/__generated__/models/RomFileSchema.ts @@ -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); }; diff --git a/frontend/src/__generated__/models/RomLaunchboxMetadata.ts b/frontend/src/__generated__/models/RomLaunchboxMetadata.ts index 7551d582a..b650b0184 100644 --- a/frontend/src/__generated__/models/RomLaunchboxMetadata.ts +++ b/frontend/src/__generated__/models/RomLaunchboxMetadata.ts @@ -16,5 +16,7 @@ export type RomLaunchboxMetadata = { genres?: Array; companies?: Array; images?: Array; + video_url?: string; + video_path?: string; };