From 6db371d513e67a3632e4df4ed884f622e6415b2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20FAMIBELLE-PRONZOLA?= Date: Wed, 17 Jun 2026 23:46:56 +0400 Subject: [PATCH] feat: add karaokeUrl --- src/api/parole/content-types/parole/schema.json | 3 +++ types/generated/contentTypes.d.ts | 1 + 2 files changed, 4 insertions(+) diff --git a/src/api/parole/content-types/parole/schema.json b/src/api/parole/content-types/parole/schema.json index ccfc181..28189e0 100644 --- a/src/api/parole/content-types/parole/schema.json +++ b/src/api/parole/content-types/parole/schema.json @@ -146,6 +146,9 @@ "isNewRelease": { "type": "boolean", "default": false + }, + "karaokeUrl": { + "type": "string" } } } diff --git a/types/generated/contentTypes.d.ts b/types/generated/contentTypes.d.ts index 4d2e4aa..33378c8 100644 --- a/types/generated/contentTypes.d.ts +++ b/types/generated/contentTypes.d.ts @@ -541,6 +541,7 @@ export interface ApiParoleParole extends Struct.CollectionTypeSchema { forceSlug: Schema.Attribute.Boolean; gadeEmbed: Schema.Attribute.String; isNewRelease: Schema.Attribute.Boolean & Schema.Attribute.DefaultTo; + karaokeUrl: Schema.Attribute.String; langueSource: Schema.Attribute.Enumeration< ['ka', 'fr', 'en', 'es', 'de', 'it'] > &