0.12.20 : add new voice and profil
All checks were successful
Build release Docker image / Build Docker Images (push) Successful in 8m24s
All checks were successful
Build release Docker image / Build Docker Images (push) Successful in 8m24s
This commit is contained in:
6381
package-lock.json
generated
6381
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "harmony-back",
|
"name": "harmony-back",
|
||||||
"version": "0.12.19",
|
"version": "0.12.20",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "A Strapi application",
|
"description": "A Strapi application",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -131,6 +131,7 @@
|
|||||||
"choir_addict",
|
"choir_addict",
|
||||||
"choir_master",
|
"choir_master",
|
||||||
"choir_singer",
|
"choir_singer",
|
||||||
|
"musician",
|
||||||
"none"
|
"none"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -142,7 +143,10 @@
|
|||||||
"alto",
|
"alto",
|
||||||
"tenor",
|
"tenor",
|
||||||
"baryton",
|
"baryton",
|
||||||
"basse"
|
"basse",
|
||||||
|
"contralto",
|
||||||
|
"contretenor",
|
||||||
|
"unknown"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"dob": {
|
"dob": {
|
||||||
|
|||||||
21
types/generated/contentTypes.d.ts
vendored
21
types/generated/contentTypes.d.ts
vendored
@@ -2067,7 +2067,14 @@ export interface PluginUsersPermissionsUser
|
|||||||
'api::group-membership.group-membership'
|
'api::group-membership.group-membership'
|
||||||
>;
|
>;
|
||||||
job: Schema.Attribute.Enumeration<
|
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;
|
languages: Schema.Attribute.JSON;
|
||||||
locale: Schema.Attribute.String & Schema.Attribute.Private;
|
locale: Schema.Attribute.String & Schema.Attribute.Private;
|
||||||
@@ -2113,7 +2120,17 @@ export interface PluginUsersPermissionsUser
|
|||||||
minLength: 3;
|
minLength: 3;
|
||||||
}>;
|
}>;
|
||||||
voice: Schema.Attribute.Enumeration<
|
voice: Schema.Attribute.Enumeration<
|
||||||
['soprano', 'mezzo-soprano', 'alto', 'tenor', 'baryton', 'basse']
|
[
|
||||||
|
'soprano',
|
||||||
|
'mezzo-soprano',
|
||||||
|
'alto',
|
||||||
|
'tenor',
|
||||||
|
'baryton',
|
||||||
|
'basse',
|
||||||
|
'contralto',
|
||||||
|
'contretenor',
|
||||||
|
'unknown',
|
||||||
|
]
|
||||||
>;
|
>;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user