@glissandoo/lib 1.112.0 → 1.114.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/functions/eventRepertory.d.ts +11 -0
- package/functions/eventRepertory.js +14 -0
- package/functions/groupRepertory.d.ts +4 -0
- package/helpers/collections.d.ts +5 -1
- package/helpers/collections.js +6 -1
- package/helpers/instruments/index.d.ts +55 -1
- package/helpers/instruments/index.js +157 -1
- package/helpers/musicStyles/index.js +0 -10
- package/helpers/musicStyles/orders.js +29 -38
- package/lang/ca.json +51 -0
- package/lang/de.json +51 -0
- package/lang/en.json +51 -0
- package/lang/es.json +51 -0
- package/lang/eu.json +51 -0
- package/lang/fr.json +51 -0
- package/lang/gl.json +51 -0
- package/lang/it.json +51 -0
- package/lang/nl.json +51 -0
- package/lang/pt.json +51 -0
- package/models/User/index.d.ts +5 -0
- package/models/User/index.js +8 -0
- package/models/User/types.d.ts +6 -0
- package/package.json +1 -1
- package/types/minVersion.d.ts +4 -0
- package/types/minVersion.js +2 -0
- package/types/minVersion.ts +4 -0
|
@@ -8,13 +8,24 @@ export declare namespace EventoRepertoryFbFunctionsTypes {
|
|
|
8
8
|
notify: boolean;
|
|
9
9
|
}
|
|
10
10
|
type EditResult = void;
|
|
11
|
+
enum DownloadFileType {
|
|
12
|
+
Sheet = "sheet",
|
|
13
|
+
Audio = "audio"
|
|
14
|
+
}
|
|
15
|
+
enum DownloadSheetMode {
|
|
16
|
+
Merged = "merged",
|
|
17
|
+
Separated = "separated"
|
|
18
|
+
}
|
|
11
19
|
interface DownloadPDFParams {
|
|
12
20
|
eventId: string;
|
|
13
21
|
instrumentId: InstrumentId;
|
|
22
|
+
fileType?: DownloadFileType;
|
|
23
|
+
sheetMode?: DownloadSheetMode;
|
|
14
24
|
}
|
|
15
25
|
interface DownloadPDFResult {
|
|
16
26
|
filename: string;
|
|
17
27
|
path: string;
|
|
28
|
+
mimeType: string;
|
|
18
29
|
}
|
|
19
30
|
interface DownloadParams {
|
|
20
31
|
eventId: string;
|
|
@@ -1,2 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EventoRepertoryFbFunctionsTypes = void 0;
|
|
4
|
+
var EventoRepertoryFbFunctionsTypes;
|
|
5
|
+
(function (EventoRepertoryFbFunctionsTypes) {
|
|
6
|
+
let DownloadFileType;
|
|
7
|
+
(function (DownloadFileType) {
|
|
8
|
+
DownloadFileType["Sheet"] = "sheet";
|
|
9
|
+
DownloadFileType["Audio"] = "audio";
|
|
10
|
+
})(DownloadFileType = EventoRepertoryFbFunctionsTypes.DownloadFileType || (EventoRepertoryFbFunctionsTypes.DownloadFileType = {}));
|
|
11
|
+
let DownloadSheetMode;
|
|
12
|
+
(function (DownloadSheetMode) {
|
|
13
|
+
DownloadSheetMode["Merged"] = "merged";
|
|
14
|
+
DownloadSheetMode["Separated"] = "separated";
|
|
15
|
+
})(DownloadSheetMode = EventoRepertoryFbFunctionsTypes.DownloadSheetMode || (EventoRepertoryFbFunctionsTypes.DownloadSheetMode = {}));
|
|
16
|
+
})(EventoRepertoryFbFunctionsTypes = exports.EventoRepertoryFbFunctionsTypes || (exports.EventoRepertoryFbFunctionsTypes = {}));
|
|
@@ -2,6 +2,7 @@ import { InstrumentId } from '../helpers/instruments';
|
|
|
2
2
|
import { FileSectionId } from '../models/Group/Repertory/File/Section/types';
|
|
3
3
|
import { GroupRepertoireFile, GroupRepertoireVisibility, GroupRepertoryTagAlgoliaData } from '../models/Group/Repertory/types';
|
|
4
4
|
import { ThemeMediaType } from '../models/Repertory/types';
|
|
5
|
+
import { EventoRepertoryFbFunctionsTypes } from './eventRepertory';
|
|
5
6
|
export declare namespace GroupRepertoryFbFunctionsTypes {
|
|
6
7
|
interface GroupRepertoryPublishEditParams {
|
|
7
8
|
themeId: string;
|
|
@@ -48,10 +49,13 @@ export declare namespace GroupRepertoryFbFunctionsTypes {
|
|
|
48
49
|
groupId: string;
|
|
49
50
|
themeId: string;
|
|
50
51
|
sectionIds: FileSectionId[];
|
|
52
|
+
fileType?: EventoRepertoryFbFunctionsTypes.DownloadFileType;
|
|
53
|
+
sheetMode?: EventoRepertoryFbFunctionsTypes.DownloadSheetMode;
|
|
51
54
|
}
|
|
52
55
|
export interface DownloadThemeBySectionsResult {
|
|
53
56
|
path: string;
|
|
54
57
|
filename: string;
|
|
58
|
+
mimeType?: string;
|
|
55
59
|
}
|
|
56
60
|
export interface DownloadFileType {
|
|
57
61
|
id: string;
|
package/helpers/collections.d.ts
CHANGED
|
@@ -36,5 +36,9 @@ export declare enum CollectionNames {
|
|
|
36
36
|
OfferApplicants = "applicants",
|
|
37
37
|
WebhookEvent = "webhookEvent",
|
|
38
38
|
Inventory = "inventory",
|
|
39
|
-
InventoryItems = "inventoryItems"
|
|
39
|
+
InventoryItems = "inventoryItems",
|
|
40
|
+
Helpers = "helpers"
|
|
41
|
+
}
|
|
42
|
+
export declare enum HelpersDocNames {
|
|
43
|
+
MinVersion = "minVersion"
|
|
40
44
|
}
|
package/helpers/collections.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CollectionNames = void 0;
|
|
3
|
+
exports.HelpersDocNames = exports.CollectionNames = void 0;
|
|
4
4
|
var CollectionNames;
|
|
5
5
|
(function (CollectionNames) {
|
|
6
6
|
CollectionNames["Communication"] = "communication";
|
|
@@ -41,4 +41,9 @@ var CollectionNames;
|
|
|
41
41
|
CollectionNames["WebhookEvent"] = "webhookEvent";
|
|
42
42
|
CollectionNames["Inventory"] = "inventory";
|
|
43
43
|
CollectionNames["InventoryItems"] = "inventoryItems";
|
|
44
|
+
CollectionNames["Helpers"] = "helpers";
|
|
44
45
|
})(CollectionNames = exports.CollectionNames || (exports.CollectionNames = {}));
|
|
46
|
+
var HelpersDocNames;
|
|
47
|
+
(function (HelpersDocNames) {
|
|
48
|
+
HelpersDocNames["MinVersion"] = "minVersion";
|
|
49
|
+
})(HelpersDocNames = exports.HelpersDocNames || (exports.HelpersDocNames = {}));
|
|
@@ -10,36 +10,60 @@ export declare enum DefaultInstrumentId {
|
|
|
10
10
|
BassChoir = "bass-choir",
|
|
11
11
|
BassDrum = "bass-drum",
|
|
12
12
|
Bassoon = "bassoon",
|
|
13
|
+
Bassoon1 = "bassoon-1",
|
|
14
|
+
Bassoon2 = "bassoon-2",
|
|
13
15
|
BassoonContra = "contraBass",
|
|
14
16
|
Cajon = "cajon",
|
|
15
17
|
Castanets = "castanets",
|
|
16
18
|
Cello = "cello",
|
|
19
|
+
Cello1 = "cello-1",
|
|
20
|
+
Cello2 = "cello-2",
|
|
17
21
|
Choir = "choir",
|
|
18
22
|
Chocalho = "chocalho",
|
|
19
23
|
Clarinet = "clarinet",
|
|
24
|
+
Clarinet1 = "clarinet-1",
|
|
25
|
+
Clarinet2 = "clarinet-2",
|
|
26
|
+
Clarinet3 = "clarinet-3",
|
|
20
27
|
ClarinetAlto = "altoClarinet",
|
|
21
28
|
ClarinetBass = "bassClarinet",
|
|
22
29
|
ClarinetContrabass = "contrabassClarinet",
|
|
23
30
|
ClarinetLittle = "littleClarinet",
|
|
31
|
+
ClarinetPrincipal = "principalClarinet",
|
|
32
|
+
Concertino = "concertino",
|
|
24
33
|
ContraAlto = "contraAlto",
|
|
34
|
+
ContrabassBugle = "contrabass-bugle",
|
|
25
35
|
Cornet = "cornet",
|
|
36
|
+
CornetHigh = "highCornet",
|
|
37
|
+
CornetLow = "lowCornet",
|
|
26
38
|
CounterTenor = "counterTenor",
|
|
27
39
|
Cymbals = "cymbals",
|
|
28
40
|
DJ = "dj",
|
|
29
41
|
DoubleBass = "doubleBass",
|
|
42
|
+
DoubleBass1 = "doubleBass-1",
|
|
43
|
+
DoubleBass2 = "doubleBass-2",
|
|
30
44
|
DrumSet = "drumSet",
|
|
31
45
|
Dulzaina = "dulzaina",
|
|
32
46
|
DulzainaFa = "dulzaina-fa",
|
|
33
47
|
ElectricGuitar = "electricGuitar",
|
|
34
48
|
EnglishHorn = "englishHorn",
|
|
49
|
+
Escort = "escort",
|
|
35
50
|
Euphonium = "euphonium",
|
|
51
|
+
Euphonium1 = "euphonium-1",
|
|
52
|
+
Euphonium2 = "euphonium-2",
|
|
36
53
|
Flabiol = "flabiol",
|
|
37
54
|
FlagBearer = "flagBearer",
|
|
38
55
|
FlugeHorn = "flugelhorn",
|
|
39
56
|
Flute = "flute",
|
|
57
|
+
Flute1 = "flute-1",
|
|
58
|
+
Flute2 = "flute-2",
|
|
40
59
|
FluteLow = "low-flute",
|
|
41
60
|
FlutePeak = "peak-flute",
|
|
42
61
|
FrenchHorn = "frenchHorn",
|
|
62
|
+
FrenchHorn1 = "frenchHorn-1",
|
|
63
|
+
FrenchHorn2 = "frenchHorn-2",
|
|
64
|
+
FrenchHorn3 = "frenchHorn-3",
|
|
65
|
+
FrenchHorn4 = "frenchHorn-4",
|
|
66
|
+
Glockenspiel = "glockenspiel",
|
|
43
67
|
Guitar = "guitar",
|
|
44
68
|
Harmonica = "harmonica",
|
|
45
69
|
Harpsichord = "harpsichord",
|
|
@@ -50,23 +74,36 @@ export declare enum DefaultInstrumentId {
|
|
|
50
74
|
MarchingToms = "marchingToms",
|
|
51
75
|
Mallets = "mallets",
|
|
52
76
|
Mandoline = "mandoline",
|
|
77
|
+
MarchingBaritone = "marching-baritone",
|
|
78
|
+
Marimba = "marimba",
|
|
53
79
|
Melodica = "melodica",
|
|
80
|
+
Mellophone = "mellophone",
|
|
81
|
+
Mellophone1 = "mellophone-1",
|
|
82
|
+
Mellophone2 = "mellophone-2",
|
|
54
83
|
MezzoSoprano = "mezzosoproano",
|
|
84
|
+
Multipercussion = "multipercussion",
|
|
55
85
|
MusicConductor = "musicConductor",
|
|
56
86
|
Oboe = "oboe",
|
|
87
|
+
Oboe1 = "oboe-1",
|
|
88
|
+
Oboe2 = "oboe-2",
|
|
57
89
|
Percussion = "percussion",
|
|
58
90
|
Piano = "piano",
|
|
59
91
|
Piccolo = "piccolo",
|
|
60
92
|
Repique = "repique",
|
|
61
93
|
SaxAlto = "altoSaxophone",
|
|
94
|
+
SaxAlto1 = "altoSaxophone-1",
|
|
95
|
+
SaxAlto2 = "altoSaxophone-2",
|
|
62
96
|
SaxBaritone = "baritoneSax",
|
|
63
97
|
SaxLow = "lowSaxophone",
|
|
64
98
|
SaxSoprano = "sopranoSaxophone",
|
|
65
99
|
SaxTenor = "tenorSax",
|
|
100
|
+
SaxTenor1 = "tenorSax-1",
|
|
101
|
+
SaxTenor2 = "tenorSax-2",
|
|
66
102
|
Silbote = "silbote",
|
|
67
103
|
Singer = "singer",
|
|
68
104
|
SnareDrum = "snareDrum",
|
|
69
105
|
Soprano = "soprano",
|
|
106
|
+
Sousaphone = "sousaphone",
|
|
70
107
|
Surdo = "surdo",
|
|
71
108
|
Tabal = "tabal",
|
|
72
109
|
Tambourine = "tambourine",
|
|
@@ -75,19 +112,36 @@ export declare enum DefaultInstrumentId {
|
|
|
75
112
|
Tenor = "tenor",
|
|
76
113
|
TimbalBrazilian = "timbalBrazilian",
|
|
77
114
|
Timpani = "timpani",
|
|
115
|
+
Timbal = "timbal",
|
|
78
116
|
Trombone = "trombone",
|
|
117
|
+
Trombone1 = "trombone-1",
|
|
118
|
+
Trombone2 = "trombone-2",
|
|
119
|
+
Trombone3 = "trombone-3",
|
|
79
120
|
TromboneHigh = "highTrombone",
|
|
80
121
|
TromboneLow = "lowTrombone",
|
|
81
122
|
Trumpet = "trumpet",
|
|
123
|
+
Trumpet1 = "trumpet-1",
|
|
124
|
+
Trumpet2 = "trumpet-2",
|
|
125
|
+
Trumpet3 = "trumpet-3",
|
|
82
126
|
TrumpetLow = "lowTrumpet",
|
|
83
127
|
TrumpetPiccolo = "piccoloTrumpet",
|
|
84
128
|
Tuba = "tuba",
|
|
129
|
+
Tuba1 = "tuba-1",
|
|
130
|
+
Tuba2 = "tuba-2",
|
|
85
131
|
TubaWagnerian = "tuba-wagnerian",
|
|
86
132
|
Txistu = "txistu",
|
|
87
133
|
Ukelele = "ukelele",
|
|
134
|
+
Vibraphone = "vibraphone",
|
|
88
135
|
Viola = "viola",
|
|
89
|
-
|
|
136
|
+
Viola1 = "viola-1",
|
|
137
|
+
Viola2 = "viola-2",
|
|
138
|
+
Violin = "violin",
|
|
139
|
+
Violin1 = "violin-1",
|
|
140
|
+
Violin2 = "violin-2",
|
|
141
|
+
Xylophone = "xylophone"
|
|
90
142
|
}
|
|
143
|
+
export declare const voicesByInstrument: Partial<Record<DefaultInstrumentId, DefaultInstrumentId[]>>;
|
|
144
|
+
export declare const getVoicesOf: (id: DefaultInstrumentId) => DefaultInstrumentId[];
|
|
91
145
|
export declare const InstrumentIcons: Record<DefaultInstrumentId, string>;
|
|
92
146
|
export type CustomInstrumentId = `customInstrument-${string}`;
|
|
93
147
|
export type InstrumentId = CustomInstrumentId | DefaultInstrumentId;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.InstrumentIcons = exports.DefaultInstrumentId = void 0;
|
|
3
|
+
exports.InstrumentIcons = exports.getVoicesOf = exports.voicesByInstrument = exports.DefaultInstrumentId = void 0;
|
|
4
4
|
var DefaultInstrumentId;
|
|
5
5
|
(function (DefaultInstrumentId) {
|
|
6
6
|
DefaultInstrumentId["Accordion"] = "accordion";
|
|
@@ -14,36 +14,60 @@ var DefaultInstrumentId;
|
|
|
14
14
|
DefaultInstrumentId["BassChoir"] = "bass-choir";
|
|
15
15
|
DefaultInstrumentId["BassDrum"] = "bass-drum";
|
|
16
16
|
DefaultInstrumentId["Bassoon"] = "bassoon";
|
|
17
|
+
DefaultInstrumentId["Bassoon1"] = "bassoon-1";
|
|
18
|
+
DefaultInstrumentId["Bassoon2"] = "bassoon-2";
|
|
17
19
|
DefaultInstrumentId["BassoonContra"] = "contraBass";
|
|
18
20
|
DefaultInstrumentId["Cajon"] = "cajon";
|
|
19
21
|
DefaultInstrumentId["Castanets"] = "castanets";
|
|
20
22
|
DefaultInstrumentId["Cello"] = "cello";
|
|
23
|
+
DefaultInstrumentId["Cello1"] = "cello-1";
|
|
24
|
+
DefaultInstrumentId["Cello2"] = "cello-2";
|
|
21
25
|
DefaultInstrumentId["Choir"] = "choir";
|
|
22
26
|
DefaultInstrumentId["Chocalho"] = "chocalho";
|
|
23
27
|
DefaultInstrumentId["Clarinet"] = "clarinet";
|
|
28
|
+
DefaultInstrumentId["Clarinet1"] = "clarinet-1";
|
|
29
|
+
DefaultInstrumentId["Clarinet2"] = "clarinet-2";
|
|
30
|
+
DefaultInstrumentId["Clarinet3"] = "clarinet-3";
|
|
24
31
|
DefaultInstrumentId["ClarinetAlto"] = "altoClarinet";
|
|
25
32
|
DefaultInstrumentId["ClarinetBass"] = "bassClarinet";
|
|
26
33
|
DefaultInstrumentId["ClarinetContrabass"] = "contrabassClarinet";
|
|
27
34
|
DefaultInstrumentId["ClarinetLittle"] = "littleClarinet";
|
|
35
|
+
DefaultInstrumentId["ClarinetPrincipal"] = "principalClarinet";
|
|
36
|
+
DefaultInstrumentId["Concertino"] = "concertino";
|
|
28
37
|
DefaultInstrumentId["ContraAlto"] = "contraAlto";
|
|
38
|
+
DefaultInstrumentId["ContrabassBugle"] = "contrabass-bugle";
|
|
29
39
|
DefaultInstrumentId["Cornet"] = "cornet";
|
|
40
|
+
DefaultInstrumentId["CornetHigh"] = "highCornet";
|
|
41
|
+
DefaultInstrumentId["CornetLow"] = "lowCornet";
|
|
30
42
|
DefaultInstrumentId["CounterTenor"] = "counterTenor";
|
|
31
43
|
DefaultInstrumentId["Cymbals"] = "cymbals";
|
|
32
44
|
DefaultInstrumentId["DJ"] = "dj";
|
|
33
45
|
DefaultInstrumentId["DoubleBass"] = "doubleBass";
|
|
46
|
+
DefaultInstrumentId["DoubleBass1"] = "doubleBass-1";
|
|
47
|
+
DefaultInstrumentId["DoubleBass2"] = "doubleBass-2";
|
|
34
48
|
DefaultInstrumentId["DrumSet"] = "drumSet";
|
|
35
49
|
DefaultInstrumentId["Dulzaina"] = "dulzaina";
|
|
36
50
|
DefaultInstrumentId["DulzainaFa"] = "dulzaina-fa";
|
|
37
51
|
DefaultInstrumentId["ElectricGuitar"] = "electricGuitar";
|
|
38
52
|
DefaultInstrumentId["EnglishHorn"] = "englishHorn";
|
|
53
|
+
DefaultInstrumentId["Escort"] = "escort";
|
|
39
54
|
DefaultInstrumentId["Euphonium"] = "euphonium";
|
|
55
|
+
DefaultInstrumentId["Euphonium1"] = "euphonium-1";
|
|
56
|
+
DefaultInstrumentId["Euphonium2"] = "euphonium-2";
|
|
40
57
|
DefaultInstrumentId["Flabiol"] = "flabiol";
|
|
41
58
|
DefaultInstrumentId["FlagBearer"] = "flagBearer";
|
|
42
59
|
DefaultInstrumentId["FlugeHorn"] = "flugelhorn";
|
|
43
60
|
DefaultInstrumentId["Flute"] = "flute";
|
|
61
|
+
DefaultInstrumentId["Flute1"] = "flute-1";
|
|
62
|
+
DefaultInstrumentId["Flute2"] = "flute-2";
|
|
44
63
|
DefaultInstrumentId["FluteLow"] = "low-flute";
|
|
45
64
|
DefaultInstrumentId["FlutePeak"] = "peak-flute";
|
|
46
65
|
DefaultInstrumentId["FrenchHorn"] = "frenchHorn";
|
|
66
|
+
DefaultInstrumentId["FrenchHorn1"] = "frenchHorn-1";
|
|
67
|
+
DefaultInstrumentId["FrenchHorn2"] = "frenchHorn-2";
|
|
68
|
+
DefaultInstrumentId["FrenchHorn3"] = "frenchHorn-3";
|
|
69
|
+
DefaultInstrumentId["FrenchHorn4"] = "frenchHorn-4";
|
|
70
|
+
DefaultInstrumentId["Glockenspiel"] = "glockenspiel";
|
|
47
71
|
DefaultInstrumentId["Guitar"] = "guitar";
|
|
48
72
|
DefaultInstrumentId["Harmonica"] = "harmonica";
|
|
49
73
|
DefaultInstrumentId["Harpsichord"] = "harpsichord";
|
|
@@ -54,23 +78,36 @@ var DefaultInstrumentId;
|
|
|
54
78
|
DefaultInstrumentId["MarchingToms"] = "marchingToms";
|
|
55
79
|
DefaultInstrumentId["Mallets"] = "mallets";
|
|
56
80
|
DefaultInstrumentId["Mandoline"] = "mandoline";
|
|
81
|
+
DefaultInstrumentId["MarchingBaritone"] = "marching-baritone";
|
|
82
|
+
DefaultInstrumentId["Marimba"] = "marimba";
|
|
57
83
|
DefaultInstrumentId["Melodica"] = "melodica";
|
|
84
|
+
DefaultInstrumentId["Mellophone"] = "mellophone";
|
|
85
|
+
DefaultInstrumentId["Mellophone1"] = "mellophone-1";
|
|
86
|
+
DefaultInstrumentId["Mellophone2"] = "mellophone-2";
|
|
58
87
|
DefaultInstrumentId["MezzoSoprano"] = "mezzosoproano";
|
|
88
|
+
DefaultInstrumentId["Multipercussion"] = "multipercussion";
|
|
59
89
|
DefaultInstrumentId["MusicConductor"] = "musicConductor";
|
|
60
90
|
DefaultInstrumentId["Oboe"] = "oboe";
|
|
91
|
+
DefaultInstrumentId["Oboe1"] = "oboe-1";
|
|
92
|
+
DefaultInstrumentId["Oboe2"] = "oboe-2";
|
|
61
93
|
DefaultInstrumentId["Percussion"] = "percussion";
|
|
62
94
|
DefaultInstrumentId["Piano"] = "piano";
|
|
63
95
|
DefaultInstrumentId["Piccolo"] = "piccolo";
|
|
64
96
|
DefaultInstrumentId["Repique"] = "repique";
|
|
65
97
|
DefaultInstrumentId["SaxAlto"] = "altoSaxophone";
|
|
98
|
+
DefaultInstrumentId["SaxAlto1"] = "altoSaxophone-1";
|
|
99
|
+
DefaultInstrumentId["SaxAlto2"] = "altoSaxophone-2";
|
|
66
100
|
DefaultInstrumentId["SaxBaritone"] = "baritoneSax";
|
|
67
101
|
DefaultInstrumentId["SaxLow"] = "lowSaxophone";
|
|
68
102
|
DefaultInstrumentId["SaxSoprano"] = "sopranoSaxophone";
|
|
69
103
|
DefaultInstrumentId["SaxTenor"] = "tenorSax";
|
|
104
|
+
DefaultInstrumentId["SaxTenor1"] = "tenorSax-1";
|
|
105
|
+
DefaultInstrumentId["SaxTenor2"] = "tenorSax-2";
|
|
70
106
|
DefaultInstrumentId["Silbote"] = "silbote";
|
|
71
107
|
DefaultInstrumentId["Singer"] = "singer";
|
|
72
108
|
DefaultInstrumentId["SnareDrum"] = "snareDrum";
|
|
73
109
|
DefaultInstrumentId["Soprano"] = "soprano";
|
|
110
|
+
DefaultInstrumentId["Sousaphone"] = "sousaphone";
|
|
74
111
|
DefaultInstrumentId["Surdo"] = "surdo";
|
|
75
112
|
DefaultInstrumentId["Tabal"] = "tabal";
|
|
76
113
|
DefaultInstrumentId["Tambourine"] = "tambourine";
|
|
@@ -79,19 +116,86 @@ var DefaultInstrumentId;
|
|
|
79
116
|
DefaultInstrumentId["Tenor"] = "tenor";
|
|
80
117
|
DefaultInstrumentId["TimbalBrazilian"] = "timbalBrazilian";
|
|
81
118
|
DefaultInstrumentId["Timpani"] = "timpani";
|
|
119
|
+
DefaultInstrumentId["Timbal"] = "timbal";
|
|
82
120
|
DefaultInstrumentId["Trombone"] = "trombone";
|
|
121
|
+
DefaultInstrumentId["Trombone1"] = "trombone-1";
|
|
122
|
+
DefaultInstrumentId["Trombone2"] = "trombone-2";
|
|
123
|
+
DefaultInstrumentId["Trombone3"] = "trombone-3";
|
|
83
124
|
DefaultInstrumentId["TromboneHigh"] = "highTrombone";
|
|
84
125
|
DefaultInstrumentId["TromboneLow"] = "lowTrombone";
|
|
85
126
|
DefaultInstrumentId["Trumpet"] = "trumpet";
|
|
127
|
+
DefaultInstrumentId["Trumpet1"] = "trumpet-1";
|
|
128
|
+
DefaultInstrumentId["Trumpet2"] = "trumpet-2";
|
|
129
|
+
DefaultInstrumentId["Trumpet3"] = "trumpet-3";
|
|
86
130
|
DefaultInstrumentId["TrumpetLow"] = "lowTrumpet";
|
|
87
131
|
DefaultInstrumentId["TrumpetPiccolo"] = "piccoloTrumpet";
|
|
88
132
|
DefaultInstrumentId["Tuba"] = "tuba";
|
|
133
|
+
DefaultInstrumentId["Tuba1"] = "tuba-1";
|
|
134
|
+
DefaultInstrumentId["Tuba2"] = "tuba-2";
|
|
89
135
|
DefaultInstrumentId["TubaWagnerian"] = "tuba-wagnerian";
|
|
90
136
|
DefaultInstrumentId["Txistu"] = "txistu";
|
|
91
137
|
DefaultInstrumentId["Ukelele"] = "ukelele";
|
|
138
|
+
DefaultInstrumentId["Vibraphone"] = "vibraphone";
|
|
92
139
|
DefaultInstrumentId["Viola"] = "viola";
|
|
140
|
+
DefaultInstrumentId["Viola1"] = "viola-1";
|
|
141
|
+
DefaultInstrumentId["Viola2"] = "viola-2";
|
|
93
142
|
DefaultInstrumentId["Violin"] = "violin";
|
|
143
|
+
DefaultInstrumentId["Violin1"] = "violin-1";
|
|
144
|
+
DefaultInstrumentId["Violin2"] = "violin-2";
|
|
145
|
+
DefaultInstrumentId["Xylophone"] = "xylophone";
|
|
94
146
|
})(DefaultInstrumentId = exports.DefaultInstrumentId || (exports.DefaultInstrumentId = {}));
|
|
147
|
+
exports.voicesByInstrument = {
|
|
148
|
+
[DefaultInstrumentId.Bassoon]: [DefaultInstrumentId.Bassoon1, DefaultInstrumentId.Bassoon2],
|
|
149
|
+
[DefaultInstrumentId.Cello]: [DefaultInstrumentId.Cello1, DefaultInstrumentId.Cello2],
|
|
150
|
+
[DefaultInstrumentId.Clarinet]: [
|
|
151
|
+
DefaultInstrumentId.ClarinetPrincipal,
|
|
152
|
+
DefaultInstrumentId.Clarinet1,
|
|
153
|
+
DefaultInstrumentId.Clarinet2,
|
|
154
|
+
DefaultInstrumentId.Clarinet3,
|
|
155
|
+
],
|
|
156
|
+
[DefaultInstrumentId.Cornet]: [DefaultInstrumentId.CornetHigh, DefaultInstrumentId.CornetLow],
|
|
157
|
+
[DefaultInstrumentId.DoubleBass]: [
|
|
158
|
+
DefaultInstrumentId.DoubleBass1,
|
|
159
|
+
DefaultInstrumentId.DoubleBass2,
|
|
160
|
+
],
|
|
161
|
+
[DefaultInstrumentId.Euphonium]: [
|
|
162
|
+
DefaultInstrumentId.Euphonium1,
|
|
163
|
+
DefaultInstrumentId.Euphonium2,
|
|
164
|
+
],
|
|
165
|
+
[DefaultInstrumentId.Flute]: [DefaultInstrumentId.Flute1, DefaultInstrumentId.Flute2],
|
|
166
|
+
[DefaultInstrumentId.FrenchHorn]: [
|
|
167
|
+
DefaultInstrumentId.FrenchHorn1,
|
|
168
|
+
DefaultInstrumentId.FrenchHorn2,
|
|
169
|
+
DefaultInstrumentId.FrenchHorn3,
|
|
170
|
+
DefaultInstrumentId.FrenchHorn4,
|
|
171
|
+
],
|
|
172
|
+
[DefaultInstrumentId.Mellophone]: [
|
|
173
|
+
DefaultInstrumentId.Mellophone1,
|
|
174
|
+
DefaultInstrumentId.Mellophone2,
|
|
175
|
+
],
|
|
176
|
+
[DefaultInstrumentId.Oboe]: [DefaultInstrumentId.Oboe1, DefaultInstrumentId.Oboe2],
|
|
177
|
+
[DefaultInstrumentId.SaxAlto]: [DefaultInstrumentId.SaxAlto1, DefaultInstrumentId.SaxAlto2],
|
|
178
|
+
[DefaultInstrumentId.SaxTenor]: [DefaultInstrumentId.SaxTenor1, DefaultInstrumentId.SaxTenor2],
|
|
179
|
+
[DefaultInstrumentId.Trombone]: [
|
|
180
|
+
DefaultInstrumentId.Trombone1,
|
|
181
|
+
DefaultInstrumentId.Trombone2,
|
|
182
|
+
DefaultInstrumentId.Trombone3,
|
|
183
|
+
],
|
|
184
|
+
[DefaultInstrumentId.Trumpet]: [
|
|
185
|
+
DefaultInstrumentId.Trumpet1,
|
|
186
|
+
DefaultInstrumentId.Trumpet2,
|
|
187
|
+
DefaultInstrumentId.Trumpet3,
|
|
188
|
+
],
|
|
189
|
+
[DefaultInstrumentId.Tuba]: [DefaultInstrumentId.Tuba1, DefaultInstrumentId.Tuba2],
|
|
190
|
+
[DefaultInstrumentId.Viola]: [DefaultInstrumentId.Viola1, DefaultInstrumentId.Viola2],
|
|
191
|
+
[DefaultInstrumentId.Violin]: [
|
|
192
|
+
DefaultInstrumentId.Concertino,
|
|
193
|
+
DefaultInstrumentId.Violin1,
|
|
194
|
+
DefaultInstrumentId.Violin2,
|
|
195
|
+
],
|
|
196
|
+
};
|
|
197
|
+
const getVoicesOf = (id) => exports.voicesByInstrument[id] ?? [];
|
|
198
|
+
exports.getVoicesOf = getVoicesOf;
|
|
95
199
|
exports.InstrumentIcons = {
|
|
96
200
|
[DefaultInstrumentId.Accordion]: 'accordion',
|
|
97
201
|
[DefaultInstrumentId.Agogo]: 'agogo',
|
|
@@ -104,36 +208,60 @@ exports.InstrumentIcons = {
|
|
|
104
208
|
[DefaultInstrumentId.Bass]: 'guitarBass',
|
|
105
209
|
[DefaultInstrumentId.BassDrum]: 'drumBass',
|
|
106
210
|
[DefaultInstrumentId.Bassoon]: 'bassoon',
|
|
211
|
+
[DefaultInstrumentId.Bassoon1]: 'bassoon',
|
|
212
|
+
[DefaultInstrumentId.Bassoon2]: 'bassoon',
|
|
107
213
|
[DefaultInstrumentId.BassoonContra]: 'bassoon',
|
|
108
214
|
[DefaultInstrumentId.Castanets]: 'castanets',
|
|
109
215
|
[DefaultInstrumentId.Cajon]: 'cajon',
|
|
110
216
|
[DefaultInstrumentId.Cello]: 'cello',
|
|
217
|
+
[DefaultInstrumentId.Cello1]: 'cello',
|
|
218
|
+
[DefaultInstrumentId.Cello2]: 'cello',
|
|
111
219
|
[DefaultInstrumentId.Choir]: 'choirMen',
|
|
112
220
|
[DefaultInstrumentId.Chocalho]: 'chocalho',
|
|
113
221
|
[DefaultInstrumentId.ClarinetBass]: 'bassClarinet',
|
|
114
222
|
[DefaultInstrumentId.ClarinetAlto]: 'bassClarinet',
|
|
115
223
|
[DefaultInstrumentId.ClarinetContrabass]: 'contrabassClarinet',
|
|
116
224
|
[DefaultInstrumentId.ClarinetLittle]: 'clarinet',
|
|
225
|
+
[DefaultInstrumentId.ClarinetPrincipal]: 'clarinet',
|
|
117
226
|
[DefaultInstrumentId.Clarinet]: 'clarinet',
|
|
227
|
+
[DefaultInstrumentId.Clarinet1]: 'clarinet',
|
|
228
|
+
[DefaultInstrumentId.Clarinet2]: 'clarinet',
|
|
229
|
+
[DefaultInstrumentId.Clarinet3]: 'clarinet',
|
|
118
230
|
[DefaultInstrumentId.ContraAlto]: 'choirWomen',
|
|
231
|
+
[DefaultInstrumentId.Concertino]: 'violin',
|
|
232
|
+
[DefaultInstrumentId.ContrabassBugle]: 'tuba',
|
|
119
233
|
[DefaultInstrumentId.Cornet]: 'cornet',
|
|
234
|
+
[DefaultInstrumentId.CornetHigh]: 'cornet',
|
|
235
|
+
[DefaultInstrumentId.CornetLow]: 'cornet',
|
|
120
236
|
[DefaultInstrumentId.CounterTenor]: 'choirMen',
|
|
121
237
|
[DefaultInstrumentId.Cymbals]: 'cymbals',
|
|
122
238
|
[DefaultInstrumentId.DJ]: 'dj',
|
|
123
239
|
[DefaultInstrumentId.DoubleBass]: 'cello',
|
|
240
|
+
[DefaultInstrumentId.DoubleBass1]: 'cello',
|
|
241
|
+
[DefaultInstrumentId.DoubleBass2]: 'cello',
|
|
124
242
|
[DefaultInstrumentId.DrumSet]: 'drumSet',
|
|
125
243
|
[DefaultInstrumentId.Dulzaina]: 'dulzaina',
|
|
126
244
|
[DefaultInstrumentId.DulzainaFa]: 'dulzaina',
|
|
127
245
|
[DefaultInstrumentId.ElectricGuitar]: 'guitarElectric',
|
|
128
246
|
[DefaultInstrumentId.EnglishHorn]: 'clarinet',
|
|
247
|
+
[DefaultInstrumentId.Escort]: 'auxiliar',
|
|
129
248
|
[DefaultInstrumentId.Euphonium]: 'tuba',
|
|
249
|
+
[DefaultInstrumentId.Euphonium1]: 'tuba',
|
|
250
|
+
[DefaultInstrumentId.Euphonium2]: 'tuba',
|
|
130
251
|
[DefaultInstrumentId.Flabiol]: 'flabiol',
|
|
131
252
|
[DefaultInstrumentId.FlagBearer]: 'flagBearer',
|
|
132
253
|
[DefaultInstrumentId.FlugeHorn]: 'trumpet',
|
|
133
254
|
[DefaultInstrumentId.FluteLow]: 'flute',
|
|
134
255
|
[DefaultInstrumentId.Flute]: 'flute',
|
|
256
|
+
[DefaultInstrumentId.Flute1]: 'flute',
|
|
257
|
+
[DefaultInstrumentId.Flute2]: 'flute',
|
|
135
258
|
[DefaultInstrumentId.FlutePeak]: 'fluteWood',
|
|
136
259
|
[DefaultInstrumentId.FrenchHorn]: 'frenchHorn',
|
|
260
|
+
[DefaultInstrumentId.FrenchHorn1]: 'frenchHorn',
|
|
261
|
+
[DefaultInstrumentId.FrenchHorn2]: 'frenchHorn',
|
|
262
|
+
[DefaultInstrumentId.FrenchHorn3]: 'frenchHorn',
|
|
263
|
+
[DefaultInstrumentId.FrenchHorn4]: 'frenchHorn',
|
|
264
|
+
[DefaultInstrumentId.Glockenspiel]: 'xylophone',
|
|
137
265
|
[DefaultInstrumentId.Guitar]: 'guitar',
|
|
138
266
|
[DefaultInstrumentId.Harmonica]: 'harmonica',
|
|
139
267
|
[DefaultInstrumentId.Harp]: 'harp',
|
|
@@ -141,26 +269,39 @@ exports.InstrumentIcons = {
|
|
|
141
269
|
[DefaultInstrumentId.Keyboard]: 'piano',
|
|
142
270
|
[DefaultInstrumentId.Lute]: 'lute',
|
|
143
271
|
[DefaultInstrumentId.Mallets]: 'xylophone',
|
|
272
|
+
[DefaultInstrumentId.Marimba]: 'xylophone',
|
|
144
273
|
[DefaultInstrumentId.Maracas]: 'maracas',
|
|
145
274
|
[DefaultInstrumentId.MarchingToms]: 'marchingDrums',
|
|
275
|
+
[DefaultInstrumentId.MarchingBaritone]: 'tuba',
|
|
146
276
|
[DefaultInstrumentId.Mandoline]: 'mandoline',
|
|
147
277
|
[DefaultInstrumentId.MezzoSoprano]: 'choirWomen',
|
|
148
278
|
[DefaultInstrumentId.Melodica]: 'melodica',
|
|
279
|
+
[DefaultInstrumentId.Mellophone]: 'frenchHorn',
|
|
280
|
+
[DefaultInstrumentId.Mellophone1]: 'frenchHorn',
|
|
281
|
+
[DefaultInstrumentId.Mellophone2]: 'frenchHorn',
|
|
282
|
+
[DefaultInstrumentId.Multipercussion]: 'drumSnare',
|
|
149
283
|
[DefaultInstrumentId.MusicConductor]: 'bandmastersMace',
|
|
150
284
|
[DefaultInstrumentId.Oboe]: 'oboe',
|
|
285
|
+
[DefaultInstrumentId.Oboe1]: 'oboe',
|
|
286
|
+
[DefaultInstrumentId.Oboe2]: 'oboe',
|
|
151
287
|
[DefaultInstrumentId.Percussion]: 'drumSnare',
|
|
152
288
|
[DefaultInstrumentId.Piano]: 'pianoClassic',
|
|
153
289
|
[DefaultInstrumentId.Piccolo]: 'piccolo',
|
|
154
290
|
[DefaultInstrumentId.Repique]: 'repique',
|
|
155
291
|
[DefaultInstrumentId.SaxAlto]: 'saxophone',
|
|
292
|
+
[DefaultInstrumentId.SaxAlto1]: 'saxophone',
|
|
293
|
+
[DefaultInstrumentId.SaxAlto2]: 'saxophone',
|
|
156
294
|
[DefaultInstrumentId.SaxBaritone]: 'saxophoneHigh',
|
|
157
295
|
[DefaultInstrumentId.SaxLow]: 'saxophoneHigh',
|
|
158
296
|
[DefaultInstrumentId.SaxSoprano]: 'saxophoneSoprano',
|
|
159
297
|
[DefaultInstrumentId.SaxTenor]: 'saxophone',
|
|
298
|
+
[DefaultInstrumentId.SaxTenor1]: 'saxophone',
|
|
299
|
+
[DefaultInstrumentId.SaxTenor2]: 'saxophone',
|
|
160
300
|
[DefaultInstrumentId.Silbote]: 'silbote',
|
|
161
301
|
[DefaultInstrumentId.Singer]: 'microphone',
|
|
162
302
|
[DefaultInstrumentId.SnareDrum]: 'drumSnare',
|
|
163
303
|
[DefaultInstrumentId.Soprano]: 'choirWomen',
|
|
304
|
+
[DefaultInstrumentId.Sousaphone]: 'tuba',
|
|
164
305
|
[DefaultInstrumentId.Surdo]: 'surdo',
|
|
165
306
|
[DefaultInstrumentId.Tabal]: 'tabal',
|
|
166
307
|
[DefaultInstrumentId.Tambourine]: 'tambourine',
|
|
@@ -168,17 +309,32 @@ exports.InstrumentIcons = {
|
|
|
168
309
|
[DefaultInstrumentId.Tarota]: 'dulzaina',
|
|
169
310
|
[DefaultInstrumentId.Tenor]: 'choirMen',
|
|
170
311
|
[DefaultInstrumentId.TimbalBrazilian]: 'timbalBrazilian',
|
|
312
|
+
[DefaultInstrumentId.Timbal]: 'tabal',
|
|
171
313
|
[DefaultInstrumentId.TromboneHigh]: 'trombone',
|
|
172
314
|
[DefaultInstrumentId.TromboneLow]: 'trombone',
|
|
173
315
|
[DefaultInstrumentId.Trombone]: 'trombone',
|
|
316
|
+
[DefaultInstrumentId.Trombone1]: 'trombone',
|
|
317
|
+
[DefaultInstrumentId.Trombone2]: 'trombone',
|
|
318
|
+
[DefaultInstrumentId.Trombone3]: 'trombone',
|
|
174
319
|
[DefaultInstrumentId.Trumpet]: 'trumpet',
|
|
320
|
+
[DefaultInstrumentId.Trumpet1]: 'trumpet',
|
|
321
|
+
[DefaultInstrumentId.Trumpet2]: 'trumpet',
|
|
322
|
+
[DefaultInstrumentId.Trumpet3]: 'trumpet',
|
|
175
323
|
[DefaultInstrumentId.TrumpetLow]: 'trumpet',
|
|
176
324
|
[DefaultInstrumentId.TrumpetPiccolo]: 'trumpet',
|
|
177
325
|
[DefaultInstrumentId.TubaWagnerian]: 'tuba',
|
|
178
326
|
[DefaultInstrumentId.Tuba]: 'tuba',
|
|
327
|
+
[DefaultInstrumentId.Tuba1]: 'tuba',
|
|
328
|
+
[DefaultInstrumentId.Tuba2]: 'tuba',
|
|
179
329
|
[DefaultInstrumentId.Timpani]: 'timpani',
|
|
180
330
|
[DefaultInstrumentId.Txistu]: 'txistu',
|
|
181
331
|
[DefaultInstrumentId.Ukelele]: 'guitar',
|
|
332
|
+
[DefaultInstrumentId.Vibraphone]: 'xylophone',
|
|
182
333
|
[DefaultInstrumentId.Viola]: 'violin',
|
|
334
|
+
[DefaultInstrumentId.Viola1]: 'violin',
|
|
335
|
+
[DefaultInstrumentId.Viola2]: 'violin',
|
|
183
336
|
[DefaultInstrumentId.Violin]: 'violin',
|
|
337
|
+
[DefaultInstrumentId.Violin1]: 'violin',
|
|
338
|
+
[DefaultInstrumentId.Violin2]: 'violin',
|
|
339
|
+
[DefaultInstrumentId.Xylophone]: 'xylophone',
|
|
184
340
|
};
|
|
@@ -56,7 +56,6 @@ exports.musicStyleByCountry = {
|
|
|
56
56
|
MusicStyleId.MarchingBand,
|
|
57
57
|
MusicStyleId.Band,
|
|
58
58
|
MusicStyleId.BigBand,
|
|
59
|
-
MusicStyleId.JazzBand,
|
|
60
59
|
MusicStyleId.Choir,
|
|
61
60
|
MusicStyleId.Batucada,
|
|
62
61
|
],
|
|
@@ -65,7 +64,6 @@ exports.musicStyleByCountry = {
|
|
|
65
64
|
MusicStyleId.MarchingBand,
|
|
66
65
|
MusicStyleId.Band,
|
|
67
66
|
MusicStyleId.BigBand,
|
|
68
|
-
MusicStyleId.JazzBand,
|
|
69
67
|
MusicStyleId.Choir,
|
|
70
68
|
MusicStyleId.Batucada,
|
|
71
69
|
],
|
|
@@ -74,7 +72,6 @@ exports.musicStyleByCountry = {
|
|
|
74
72
|
MusicStyleId.MarchingBand,
|
|
75
73
|
MusicStyleId.Band,
|
|
76
74
|
MusicStyleId.BigBand,
|
|
77
|
-
MusicStyleId.JazzBand,
|
|
78
75
|
MusicStyleId.Choir,
|
|
79
76
|
MusicStyleId.Charanga,
|
|
80
77
|
MusicStyleId.Batucada,
|
|
@@ -84,7 +81,6 @@ exports.musicStyleByCountry = {
|
|
|
84
81
|
MusicStyleId.MarchingBand,
|
|
85
82
|
MusicStyleId.Band,
|
|
86
83
|
MusicStyleId.BigBand,
|
|
87
|
-
MusicStyleId.JazzBand,
|
|
88
84
|
MusicStyleId.Choir,
|
|
89
85
|
MusicStyleId.Charanga,
|
|
90
86
|
MusicStyleId.Batucada,
|
|
@@ -94,7 +90,6 @@ exports.musicStyleByCountry = {
|
|
|
94
90
|
MusicStyleId.MarchingBand,
|
|
95
91
|
MusicStyleId.Band,
|
|
96
92
|
MusicStyleId.BigBand,
|
|
97
|
-
MusicStyleId.JazzBand,
|
|
98
93
|
MusicStyleId.Choir,
|
|
99
94
|
],
|
|
100
95
|
[lang_1.LanguagesTypes.ES]: [
|
|
@@ -104,7 +99,6 @@ exports.musicStyleByCountry = {
|
|
|
104
99
|
MusicStyleId.BandaCornetasYTambores,
|
|
105
100
|
MusicStyleId.AgrupacionMusical,
|
|
106
101
|
MusicStyleId.BigBand,
|
|
107
|
-
MusicStyleId.JazzBand,
|
|
108
102
|
MusicStyleId.Charanga,
|
|
109
103
|
MusicStyleId.Batucada,
|
|
110
104
|
MusicStyleId.Colla,
|
|
@@ -117,14 +111,12 @@ exports.musicStyleByCountry = {
|
|
|
117
111
|
MusicStyleId.Band,
|
|
118
112
|
MusicStyleId.Charanga,
|
|
119
113
|
MusicStyleId.BigBand,
|
|
120
|
-
MusicStyleId.JazzBand,
|
|
121
114
|
MusicStyleId.Batucada,
|
|
122
115
|
],
|
|
123
116
|
[lang_1.LanguagesTypes.GL]: [
|
|
124
117
|
MusicStyleId.Orchestra,
|
|
125
118
|
MusicStyleId.Band,
|
|
126
119
|
MusicStyleId.BigBand,
|
|
127
|
-
MusicStyleId.JazzBand,
|
|
128
120
|
MusicStyleId.TxistularisBand,
|
|
129
121
|
MusicStyleId.Charanga,
|
|
130
122
|
MusicStyleId.BandaCornetasYTambores,
|
|
@@ -135,7 +127,6 @@ exports.musicStyleByCountry = {
|
|
|
135
127
|
MusicStyleId.Orchestra,
|
|
136
128
|
MusicStyleId.Band,
|
|
137
129
|
MusicStyleId.BigBand,
|
|
138
|
-
MusicStyleId.JazzBand,
|
|
139
130
|
MusicStyleId.Charanga,
|
|
140
131
|
MusicStyleId.Colla,
|
|
141
132
|
MusicStyleId.BandaCornetasYTambores,
|
|
@@ -146,7 +137,6 @@ exports.musicStyleByCountry = {
|
|
|
146
137
|
MusicStyleId.Orchestra,
|
|
147
138
|
MusicStyleId.Band,
|
|
148
139
|
MusicStyleId.BigBand,
|
|
149
|
-
MusicStyleId.JazzBand,
|
|
150
140
|
MusicStyleId.Choir,
|
|
151
141
|
MusicStyleId.Batucada,
|
|
152
142
|
],
|