0.12.20 : add new voice and profil
All checks were successful
Build release Docker image / Build Docker Images (push) Successful in 8m24s

This commit is contained in:
2026-02-12 09:13:52 +01:00
parent e18a3fa092
commit 178e229258
5 changed files with 49477 additions and 8261 deletions

6381
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "harmony-back",
"version": "0.12.19",
"version": "0.12.20",
"private": true,
"description": "A Strapi application",
"scripts": {

View File

@@ -131,6 +131,7 @@
"choir_addict",
"choir_master",
"choir_singer",
"musician",
"none"
]
},
@@ -142,7 +143,10 @@
"alto",
"tenor",
"baryton",
"basse"
"basse",
"contralto",
"contretenor",
"unknown"
]
},
"dob": {

View File

@@ -2067,7 +2067,14 @@ export interface PluginUsersPermissionsUser
'api::group-membership.group-membership'
>;
job: Schema.Attribute.Enumeration<
['choir_director', 'choir_addict', 'choir_master', 'choir_singer', 'none']
[
'choir_director',
'choir_addict',
'choir_master',
'choir_singer',
'musician',
'none',
]
>;
languages: Schema.Attribute.JSON;
locale: Schema.Attribute.String & Schema.Attribute.Private;
@@ -2113,7 +2120,17 @@ export interface PluginUsersPermissionsUser
minLength: 3;
}>;
voice: Schema.Attribute.Enumeration<
['soprano', 'mezzo-soprano', 'alto', 'tenor', 'baryton', 'basse']
[
'soprano',
'mezzo-soprano',
'alto',
'tenor',
'baryton',
'basse',
'contralto',
'contretenor',
'unknown',
]
>;
};
}