@nodaro/prompts 1.26.1 → 1.27.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.
@@ -0,0 +1,722 @@
1
+ // Picture for every option of the five music / voice pickers, keyed by
2
+ // catalog id → dimension field → option id. A value is an asset key; the
3
+ // content-hashed file it resolves to lives in sound-art-files.generated.ts
4
+ // (written by tools/picker-art/build.mts from tools/picker-art/sources.json).
5
+ //
6
+ // Served to the app (picker-ui) and, as absolute URLs, over the API / SDK / MCP
7
+ // (picker-art/images.ts). Adding a catalog option? Give it a key here (reuse an existing one or add a
8
+ // source to sources.json and re-run the build script). The coverage test fails
9
+ // until every option has one. At runtime an option without a key simply
10
+ // renders its label.
11
+ import type { SoundArtMap } from "./sound-art-types.js"
12
+
13
+ export const SOUND_ART = {
14
+ "music-genre": {
15
+ genre: {
16
+ "hip-hop": "emoji/microphone_3d",
17
+ rnb: "emoji/rose_3d",
18
+ soul: "emoji/studio_microphone_3d",
19
+ funk: "emoji/man_dancing_3d_default",
20
+ lofi: "emoji/headphone_3d",
21
+ electronic: "emoji/control_knobs_3d",
22
+ industrial: "emoji/factory_3d",
23
+ "ambient-genre": "emoji/milky_way_3d",
24
+ experimental: "emoji/test_tube_3d",
25
+ chill: "emoji/tropical_drink_3d",
26
+ disco: "emoji/mirror_ball_3d",
27
+ pop: "emoji/glowing_star_3d",
28
+ anime: "emoji/cherry_blossom_3d",
29
+ rock: "emoji/guitar_3d",
30
+ punk: "emoji/safety_pin_3d",
31
+ metal: "emoji/sign_of_the_horns_3d_default",
32
+ jazz: "emoji/saxophone_3d",
33
+ blues: "emoji/blue_heart_3d",
34
+ country: "emoji/cowboy_hat_face_3d",
35
+ folk: "emoji/banjo_3d",
36
+ gospel: "emoji/dove_3d",
37
+ reggae: "emoji/palm_tree_3d",
38
+ latin: "emoji/maracas_3d",
39
+ world: "emoji/globe_showing_europe-africa_3d",
40
+ classical: "emoji/violin_3d",
41
+ cinematic: "emoji/clapper_board_3d",
42
+ "video-game": "emoji/video_game_3d",
43
+ holiday: "emoji/christmas_tree_3d",
44
+ children: "emoji/teddy_bear_3d",
45
+ },
46
+ subgenre: {
47
+ trap: "emoji/money_bag_3d",
48
+ "boom-bap": "emoji/radio_3d",
49
+ "lo-fi-hip-hop": "emoji/headphone_3d",
50
+ drill: "emoji/skull_3d",
51
+ "uk-drill": "emoji/guard_3d_default",
52
+ "cloud-rap": "emoji/cloud_3d",
53
+ "conscious-rap": "emoji/brain_3d",
54
+ "gangsta-rap": "emoji/smiling_face_with_sunglasses_3d",
55
+ "jazz-rap": "emoji/trumpet_3d",
56
+ "alt-hip-hop": "emoji/alien_3d",
57
+ phonk: "emoji/skull_and_crossbones_3d",
58
+ "drift-phonk": "emoji/racing_car_3d",
59
+ "uk-hip-hop": "emoji/bus_3d",
60
+ grime: "emoji/cityscape_3d",
61
+ pluggnb: "emoji/electric_plug_3d",
62
+ rage: "emoji/fire_3d",
63
+ "jersey-club": "emoji/party_popper_3d",
64
+ "brazilian-funk": "emoji/parrot_3d",
65
+ moombahton: "emoji/pineapple_3d",
66
+ "glitch-hop": "emoji/robot_3d",
67
+ "neo-soul": "emoji/sparkles_3d",
68
+ "contemporary-rnb": "emoji/rose_3d",
69
+ "alt-rnb": "emoji/crescent_moon_3d",
70
+ "neo-rnb": "emoji/purple_heart_3d",
71
+ "quiet-storm": "emoji/cloud_with_lightning_and_rain_3d",
72
+ "new-jack-swing": "emoji/videocassette_3d",
73
+ "future-soul": "emoji/crystal_ball_3d",
74
+ motown: "emoji/automobile_3d",
75
+ "northern-soul": "emoji/man_dancing_3d_default",
76
+ "southern-soul": "emoji/sun_3d",
77
+ "psychedelic-soul": "emoji/rainbow_3d",
78
+ "p-funk": "emoji/flying_saucer_3d",
79
+ "g-funk": "emoji/palm_tree_3d",
80
+ "electro-funk": "emoji/high_voltage_3d",
81
+ "jazz-funk": "emoji/trumpet_3d",
82
+ "lofi-beats": "emoji/headphone_3d",
83
+ "lofi-jazz": "emoji/hot_beverage_3d",
84
+ chillhop: "emoji/cat_3d",
85
+ house: "emoji/house_3d",
86
+ "deep-house": "emoji/water_wave_3d",
87
+ "tech-house": "emoji/gear_3d",
88
+ "afro-house": "emoji/drum_3d",
89
+ amapiano: "emoji/musical_keyboard_3d",
90
+ techno: "emoji/robot_3d",
91
+ "minimal-techno": "emoji/control_knobs_3d",
92
+ "melodic-techno": "emoji/musical_notes_3d",
93
+ "drum-and-bass": "emoji/drum_3d",
94
+ jungle: "emoji/leopard_3d",
95
+ dubstep: "emoji/loudspeaker_3d",
96
+ "future-bass": "emoji/sparkles_3d",
97
+ "trap-edm": "emoji/collision_3d",
98
+ synthwave: "emoji/sunset_3d",
99
+ outrun: "emoji/racing_car_3d",
100
+ vaporwave: "emoji/moai_3d",
101
+ trance: "emoji/dizzy_3d",
102
+ psytrance: "emoji/mushroom_3d",
103
+ ambient: "emoji/milky_way_3d",
104
+ idm: "emoji/brain_3d",
105
+ breakbeat: "emoji/drum_3d",
106
+ "garage-uk": "emoji/bus_3d",
107
+ hardstyle: "emoji/hammer_3d",
108
+ footwork: "emoji/running_shoe_3d",
109
+ "indie-electronic": "emoji/light_bulb_3d",
110
+ ebm: "emoji/gear_3d",
111
+ "industrial-metal": "emoji/nut_and_bolt_3d",
112
+ noise: "emoji/speaker_high_volume_3d",
113
+ "dark-ambient": "emoji/new_moon_3d",
114
+ drone: "emoji/fog_3d",
115
+ "new-age": "emoji/lotus_3d",
116
+ "space-music": "emoji/ringed_planet_3d",
117
+ "musique-concrete": "emoji/brick_3d",
118
+ "noise-music": "emoji/speaker_high_volume_3d",
119
+ "free-improv": "emoji/artist_palette_3d",
120
+ "sound-art": "emoji/framed_picture_3d",
121
+ chillout: "emoji/beach_with_umbrella_3d",
122
+ chillwave: "emoji/water_wave_3d",
123
+ downtempo: "emoji/snail_3d",
124
+ "trip-hop": "emoji/crescent_moon_3d",
125
+ "italo-disco": "emoji/pizza_3d",
126
+ "nu-disco": "emoji/mirror_ball_3d",
127
+ "euro-disco": "emoji/glowing_star_3d",
128
+ "synth-pop": "emoji/musical_keyboard_3d",
129
+ "dream-pop": "emoji/cloud_3d",
130
+ "indie-pop": "emoji/cherries_3d",
131
+ "k-pop": "emoji/sparkling_heart_3d",
132
+ "j-pop": "emoji/cherry_blossom_3d",
133
+ "art-pop": "emoji/artist_palette_3d",
134
+ "bubblegum-pop": "emoji/lollipop_3d",
135
+ "chamber-pop": "emoji/violin_3d",
136
+ "electro-pop": "emoji/high_voltage_3d",
137
+ hyperpop: "emoji/unicorn_3d",
138
+ "power-pop": "emoji/flexed_biceps_3d_default",
139
+ "bedroom-pop": "emoji/bed_3d",
140
+ "anime-opening": "emoji/japanese_dolls_3d",
141
+ "j-rock": "emoji/guitar_3d",
142
+ "city-pop": "emoji/night_with_stars_3d",
143
+ "classic-rock": "emoji/guitar_3d",
144
+ "hard-rock": "emoji/rock_3d",
145
+ "indie-rock": "emoji/sunflower_3d",
146
+ "punk-rock": "emoji/safety_pin_3d",
147
+ "alt-rock": "emoji/radio_3d",
148
+ "psychedelic-rock": "emoji/rainbow_3d",
149
+ "garage-rock": "emoji/wrench_3d",
150
+ "surf-rock": "emoji/person_surfing_3d_default",
151
+ "prog-rock": "emoji/hourglass_done_3d",
152
+ "post-rock": "emoji/mountain_3d",
153
+ shoegaze: "emoji/fog_3d",
154
+ "math-rock": "emoji/abacus_3d",
155
+ "stoner-rock": "emoji/herb_3d",
156
+ emo: "emoji/black_heart_3d",
157
+ "hardcore-punk": "emoji/collision_3d",
158
+ "post-punk": "emoji/bat_3d",
159
+ "pop-punk": "emoji/skateboard_3d",
160
+ "skate-punk": "emoji/skateboard_3d",
161
+ "anarcho-punk": "emoji/fire_3d",
162
+ "heavy-metal": "emoji/sign_of_the_horns_3d_default",
163
+ "death-metal": "emoji/skull_3d",
164
+ "black-metal": "emoji/bat_3d",
165
+ "thrash-metal": "emoji/tornado_3d",
166
+ "doom-metal": "emoji/coffin_3d",
167
+ "power-metal": "emoji/crossed_swords_3d",
168
+ "prog-metal": "emoji/hourglass_done_3d",
169
+ metalcore: "emoji/collision_3d",
170
+ deathcore: "emoji/skull_and_crossbones_3d",
171
+ "nu-metal": "emoji/chains_3d",
172
+ "sludge-metal": "emoji/volcano_3d",
173
+ "symphonic-metal": "emoji/violin_3d",
174
+ bebop: "emoji/saxophone_3d",
175
+ "smooth-jazz": "emoji/wine_glass_3d",
176
+ fusion: "emoji/atom_symbol_3d",
177
+ "cool-jazz": "emoji/smiling_face_with_sunglasses_3d",
178
+ "free-jazz": "emoji/bird_3d",
179
+ swing: "emoji/woman_dancing_3d_default",
180
+ "big-band": "emoji/trumpet_3d",
181
+ dixieland: "emoji/top_hat_3d",
182
+ "latin-jazz": "emoji/maracas_3d",
183
+ "nu-jazz": "emoji/cocktail_glass_3d",
184
+ "acid-jazz": "emoji/test_tube_3d",
185
+ "delta-blues": "emoji/canoe_3d",
186
+ "chicago-blues": "emoji/cityscape_3d",
187
+ "electric-blues": "emoji/high_voltage_3d",
188
+ "jump-blues": "emoji/man_dancing_3d_default",
189
+ "blues-rock": "emoji/guitar_3d",
190
+ "country-pop": "emoji/cowboy_hat_face_3d",
191
+ "outlaw-country": "emoji/cactus_3d",
192
+ "alt-country": "emoji/horse_3d",
193
+ "country-rock": "emoji/pickup_truck_3d",
194
+ americana: "emoji/fuel_pump_3d",
195
+ "honky-tonk": "emoji/beer_mug_3d",
196
+ bluegrass: "emoji/banjo_3d",
197
+ "indie-folk": "emoji/evergreen_tree_3d",
198
+ "traditional-folk": "emoji/scroll_3d",
199
+ "celtic-folk": "emoji/shamrock_3d",
200
+ "freak-folk": "emoji/mushroom_3d",
201
+ "folk-rock": "emoji/guitar_3d",
202
+ "anti-folk": "emoji/upside-down_face_3d",
203
+ "traditional-gospel": "emoji/dove_3d",
204
+ "contemporary-gospel": "emoji/sparkles_3d",
205
+ "urban-gospel": "emoji/cityscape_3d",
206
+ "roots-reggae": "emoji/seedling_3d",
207
+ dub: "emoji/speaker_high_volume_3d",
208
+ dancehall: "emoji/woman_dancing_3d_default",
209
+ ska: "emoji/palm_tree_3d",
210
+ rocksteady: "emoji/rock_3d",
211
+ salsa: "emoji/hot_pepper_3d",
212
+ "bossa-nova": "emoji/beach_with_umbrella_3d",
213
+ reggaeton: "emoji/fire_3d",
214
+ cumbia: "emoji/maracas_3d",
215
+ merengue: "emoji/woman_dancing_3d_default",
216
+ bachata: "emoji/rose_3d",
217
+ tango: "emoji/man_in_tuxedo_3d_default",
218
+ mariachi: "emoji/trumpet_3d",
219
+ samba: "emoji/parrot_3d",
220
+ flamenco: "emoji/hibiscus_3d",
221
+ "latin-pop": "emoji/sun_3d",
222
+ "latin-trap": "emoji/money_bag_3d",
223
+ afrobeat: "emoji/drum_3d",
224
+ afrobeats: "emoji/woman_dancing_3d_default",
225
+ highlife: "emoji/sun_3d",
226
+ "amapiano-w": "emoji/musical_keyboard_3d",
227
+ bhangra: "emoji/man_dancing_3d_default",
228
+ bollywood: "emoji/clapper_board_3d",
229
+ "indian-classical": "emoji/lotus_3d",
230
+ klezmer: "emoji/violin_3d",
231
+ balkan: "emoji/trumpet_3d",
232
+ "middle-eastern": "emoji/camel_3d",
233
+ celtic: "emoji/shamrock_3d",
234
+ gamelan: "emoji/bell_3d",
235
+ "throat-singing": "emoji/mountain_3d",
236
+ baroque: "emoji/violin_3d",
237
+ romantic: "emoji/rose_3d",
238
+ "modern-classical": "emoji/musical_score_3d",
239
+ "minimalist-classical": "emoji/leaf_fluttering_in_wind_3d",
240
+ choral: "emoji/busts_in_silhouette_3d",
241
+ "chamber-music": "emoji/candle_3d",
242
+ opera: "emoji/performing_arts_3d",
243
+ "early-music": "emoji/scroll_3d",
244
+ "epic-orchestral": "emoji/mountain_3d",
245
+ "minimalist-score": "emoji/musical_score_3d",
246
+ "trailer-music": "emoji/film_projector_3d",
247
+ "score-action": "emoji/collision_3d",
248
+ "score-horror": "emoji/ghost_3d",
249
+ "score-romance": "emoji/smiling_face_with_hearts_3d",
250
+ "score-sci-fi": "emoji/flying_saucer_3d",
251
+ "score-fantasy": "emoji/dragon_3d",
252
+ "score-noir": "emoji/detective_3d_default",
253
+ "score-documentary": "emoji/clapper_board_3d",
254
+ chiptune: "emoji/joystick_3d",
255
+ "8bit": "emoji/alien_monster_3d",
256
+ "16bit": "emoji/video_game_3d",
257
+ "vgm-orchestral": "emoji/violin_3d",
258
+ "vgm-synth": "emoji/joystick_3d",
259
+ christmas: "emoji/christmas_tree_3d",
260
+ winter: "emoji/snowflake_3d",
261
+ festive: "emoji/party_popper_3d",
262
+ lullaby: "emoji/baby_bottle_3d",
263
+ "nursery-rhyme": "emoji/teddy_bear_3d",
264
+ "kids-pop": "emoji/balloon_3d",
265
+ },
266
+ era: {
267
+ "1920s": "emoji/cocktail_glass_3d",
268
+ "1930s": "emoji/trumpet_3d",
269
+ "1940s": "emoji/radio_3d",
270
+ "1950s": "emoji/automobile_3d",
271
+ "1960s": "emoji/peace_symbol_3d",
272
+ "1970s": "emoji/mirror_ball_3d",
273
+ "1980s": "emoji/videocassette_3d",
274
+ "1990s": "emoji/pager_3d",
275
+ "2000s": "emoji/mobile_phone_3d",
276
+ "2010s": "emoji/headphone_3d",
277
+ modern: "emoji/sparkles_3d",
278
+ futurist: "emoji/rocket_3d",
279
+ },
280
+ },
281
+ "music-mood": {
282
+ energy: {
283
+ low: "emoji/low_battery_3d",
284
+ mellow: "emoji/hot_beverage_3d",
285
+ gentle: "emoji/feather_3d",
286
+ moderate: "emoji/person_walking_3d_default",
287
+ building: "emoji/chart_increasing_3d",
288
+ upbeat: "emoji/balloon_3d",
289
+ driving: "emoji/automobile_3d",
290
+ high: "emoji/high_voltage_3d",
291
+ explosive: "emoji/collision_3d",
292
+ frenetic: "emoji/tornado_3d",
293
+ pulsing: "emoji/beating_heart_3d",
294
+ throbbing: "emoji/drum_3d",
295
+ simmering: "emoji/hot_springs_3d",
296
+ ferocious: "emoji/lion_3d",
297
+ },
298
+ emotion: {
299
+ happy: "emoji/smiling_face_with_smiling_eyes_3d",
300
+ joyful: "emoji/grinning_face_with_big_eyes_3d",
301
+ euphoric: "emoji/star-struck_3d",
302
+ melancholic: "emoji/cloud_with_rain_3d",
303
+ sad: "emoji/crying_face_3d",
304
+ longing: "emoji/sunset_3d",
305
+ lonely: "emoji/pensive_face_3d",
306
+ angry: "emoji/pouting_face_3d",
307
+ defiant: "emoji/raised_fist_3d_default",
308
+ triumphant: "emoji/trophy_3d",
309
+ victorious: "emoji/1st_place_medal_3d",
310
+ tender: "emoji/two_hearts_3d",
311
+ romantic: "emoji/smiling_face_with_hearts_3d",
312
+ haunting: "emoji/ghost_3d",
313
+ mysterious: "emoji/crystal_ball_3d",
314
+ menacing: "emoji/smiling_face_with_horns_3d",
315
+ playful: "emoji/kite_3d",
316
+ mischievous: "emoji/smirking_face_3d",
317
+ anxious: "emoji/anxious_face_with_sweat_3d",
318
+ fearful: "emoji/fearful_face_3d",
319
+ hopeful: "emoji/sunrise_3d",
320
+ inspirational: "emoji/glowing_star_3d",
321
+ nostalgic: "emoji/framed_picture_3d",
322
+ bittersweet: "emoji/lemon_3d",
323
+ peaceful: "emoji/dove_3d",
324
+ contemplative: "emoji/thinking_face_3d",
325
+ ethereal: "emoji/bubbles_3d",
326
+ awe: "emoji/milky_way_3d",
327
+ },
328
+ vibe: {
329
+ cinematic: "emoji/clapper_board_3d",
330
+ intimate: "emoji/candle_3d",
331
+ epic: "emoji/mountain_3d",
332
+ anthemic: "emoji/megaphone_3d",
333
+ "lo-fi": "emoji/videocassette_3d",
334
+ polished: "emoji/gem_stone_3d",
335
+ raw: "emoji/rock_3d",
336
+ dreamy: "emoji/cloud_3d",
337
+ hypnotic: "emoji/dizzy_3d",
338
+ dark: "emoji/new_moon_3d",
339
+ gritty: "emoji/brick_3d",
340
+ uplifting: "emoji/sunrise_over_mountains_3d",
341
+ tense: "emoji/grimacing_face_3d",
342
+ spacey: "emoji/rocket_3d",
343
+ psychedelic: "emoji/rainbow_3d",
344
+ noir: "emoji/detective_3d_default",
345
+ vintage: "emoji/radio_3d",
346
+ futuristic: "emoji/robot_3d",
347
+ suspenseful: "emoji/hourglass_not_done_3d",
348
+ espionage: "emoji/magnifying_glass_tilted_left_3d",
349
+ cold: "emoji/ice_3d",
350
+ clandestine: "emoji/locked_3d",
351
+ },
352
+ },
353
+ "instrumentation": {
354
+ instruments: {
355
+ drums: "emoji/drum_3d",
356
+ "drum-machine": "emoji/control_knobs_3d",
357
+ "808": "emoji/loudspeaker_3d",
358
+ "live-drums": "emoji/drum_3d",
359
+ breakbeats: "emoji/repeat_button_3d",
360
+ "trap-drums": "emoji/drum_3d",
361
+ bongos: "emoji/drum_3d",
362
+ conga: "emoji/long_drum_3d",
363
+ djembe: "emoji/long_drum_3d",
364
+ timbales: "emoji/drum_3d",
365
+ tambourine: "emoji/drum_3d",
366
+ shaker: "emoji/maracas_3d",
367
+ cowbell: "emoji/bell_3d",
368
+ maracas: "emoji/maracas_3d",
369
+ claves: "emoji/chopsticks_3d",
370
+ marimba: "emoji/musical_keyboard_3d",
371
+ vibraphone: "emoji/musical_keyboard_3d",
372
+ xylophone: "emoji/musical_keyboard_3d",
373
+ glockenspiel: "emoji/bell_3d",
374
+ timpani: "emoji/drum_3d",
375
+ taiko: "emoji/drum_3d",
376
+ "frame-drum": "emoji/drum_3d",
377
+ cajon: "emoji/package_3d",
378
+ darbuka: "emoji/drum_3d",
379
+ piano: "emoji/musical_keyboard_3d",
380
+ "electric-piano": "emoji/musical_keyboard_3d",
381
+ wurlitzer: "emoji/musical_keyboard_3d",
382
+ rhodes: "emoji/musical_keyboard_3d",
383
+ clavinet: "emoji/musical_keyboard_3d",
384
+ organ: "emoji/musical_keyboard_3d",
385
+ "hammond-organ": "emoji/musical_keyboard_3d",
386
+ "pipe-organ": "emoji/classical_building_3d",
387
+ accordion: "emoji/accordion_3d",
388
+ mellotron: "emoji/videocassette_3d",
389
+ harpsichord: "emoji/musical_keyboard_3d",
390
+ celesta: "emoji/bell_3d",
391
+ synthesizer: "emoji/control_knobs_3d",
392
+ "lead-synth": "emoji/level_slider_3d",
393
+ "pluck-synth": "emoji/musical_note_3d",
394
+ pads: "emoji/cloud_3d",
395
+ arpeggiator: "emoji/musical_notes_3d",
396
+ vocoder: "emoji/robot_3d",
397
+ talkbox: "emoji/speaking_head_3d",
398
+ "modular-synth": "emoji/electric_plug_3d",
399
+ "fm-synth": "emoji/control_knobs_3d",
400
+ "wavetable-synth": "emoji/control_knobs_3d",
401
+ "stab-synth": "emoji/collision_3d",
402
+ "acoustic-guitar": "emoji/guitar_3d",
403
+ "electric-guitar": "emoji/guitar_3d",
404
+ "classical-guitar": "emoji/guitar_3d",
405
+ "12-string-guitar": "emoji/guitar_3d",
406
+ "pedal-steel": "emoji/guitar_3d",
407
+ "lap-steel": "emoji/guitar_3d",
408
+ dobro: "emoji/guitar_3d",
409
+ banjo: "emoji/banjo_3d",
410
+ mandolin: "emoji/guitar_3d",
411
+ ukulele: "emoji/guitar_3d",
412
+ "bass-guitar": "emoji/guitar_3d",
413
+ "synth-bass": "emoji/control_knobs_3d",
414
+ "sub-bass": "emoji/speaker_high_volume_3d",
415
+ "acoustic-bass": "emoji/guitar_3d",
416
+ "upright-bass": "emoji/violin_3d",
417
+ "fretless-bass": "emoji/guitar_3d",
418
+ "acid-bass": "emoji/test_tube_3d",
419
+ "wobble-bass": "emoji/water_wave_3d",
420
+ "reese-bass": "emoji/loudspeaker_3d",
421
+ brass: "emoji/trumpet_3d",
422
+ trumpet: "emoji/trumpet_3d",
423
+ trombone: "emoji/trumpet_3d",
424
+ "french-horn": "emoji/postal_horn_3d",
425
+ tuba: "emoji/trumpet_3d",
426
+ saxophone: "emoji/saxophone_3d",
427
+ flugelhorn: "emoji/trumpet_3d",
428
+ cornet: "emoji/trumpet_3d",
429
+ "muted-trumpet": "emoji/trumpet_3d",
430
+ flute: "emoji/flute_3d",
431
+ clarinet: "emoji/flute_3d",
432
+ harmonica: "emoji/flute_3d",
433
+ oboe: "emoji/flute_3d",
434
+ bassoon: "emoji/flute_3d",
435
+ "english-horn": "emoji/flute_3d",
436
+ piccolo: "emoji/flute_3d",
437
+ recorder: "emoji/flute_3d",
438
+ "pan-flute": "emoji/flute_3d",
439
+ strings: "emoji/violin_3d",
440
+ violin: "emoji/violin_3d",
441
+ viola: "emoji/violin_3d",
442
+ cello: "emoji/violin_3d",
443
+ "double-bass": "emoji/violin_3d",
444
+ harp: "emoji/violin_3d",
445
+ "pizzicato-strings": "emoji/violin_3d",
446
+ "staccato-strings": "emoji/violin_3d",
447
+ fiddle: "emoji/violin_3d",
448
+ sitar: "emoji/guitar_3d",
449
+ tabla: "emoji/drum_3d",
450
+ "steel-drum": "emoji/drum_3d",
451
+ kalimba: "emoji/musical_keyboard_3d",
452
+ bagpipes: "emoji/flute_3d",
453
+ didgeridoo: "emoji/flute_3d",
454
+ oud: "emoji/guitar_3d",
455
+ erhu: "emoji/violin_3d",
456
+ koto: "emoji/guitar_3d",
457
+ shakuhachi: "emoji/flute_3d",
458
+ shamisen: "emoji/guitar_3d",
459
+ duduk: "emoji/flute_3d",
460
+ balalaika: "emoji/guitar_3d",
461
+ bouzouki: "emoji/guitar_3d",
462
+ kora: "emoji/guitar_3d",
463
+ "hang-drum": "emoji/drum_3d",
464
+ kamancheh: "emoji/violin_3d",
465
+ ney: "emoji/flute_3d",
466
+ santur: "emoji/musical_keyboard_3d",
467
+ },
468
+ production: {
469
+ polished: "emoji/gem_stone_3d",
470
+ "lo-fi": "emoji/videocassette_3d",
471
+ raw: "emoji/rock_3d",
472
+ vintage: "emoji/radio_3d",
473
+ modern: "emoji/laptop_3d",
474
+ minimalist: "emoji/leaf_fluttering_in_wind_3d",
475
+ "wall-of-sound": "emoji/brick_3d",
476
+ ambient: "emoji/fog_3d",
477
+ "garage-band": "emoji/hammer_and_wrench_3d",
478
+ "live-recording": "emoji/admission_tickets_3d",
479
+ "demo-quality": "emoji/pencil_3d",
480
+ "studio-pristine": "emoji/studio_microphone_3d",
481
+ "tape-saturated": "emoji/film_frames_3d",
482
+ "8-bit-retro": "emoji/alien_monster_3d",
483
+ },
484
+ vocalPresence: {
485
+ instrumental: "emoji/musical_keyboard_3d",
486
+ "male-lead": "emoji/man_3d_default",
487
+ "female-lead": "emoji/woman_3d_default",
488
+ "androgynous-lead": "emoji/person_3d_default",
489
+ duet: "emoji/people_hugging_3d",
490
+ choir: "emoji/busts_in_silhouette_3d",
491
+ "gospel-choir": "emoji/folded_hands_3d_default",
492
+ "harmony-stack": "emoji/musical_notes_3d",
493
+ "rapper-lead": "emoji/microphone_3d",
494
+ "spoken-word": "emoji/speaking_head_3d",
495
+ "vocal-chops": "emoji/scissors_3d",
496
+ mixed: "emoji/busts_in_silhouette_3d",
497
+ },
498
+ singingStyle: {
499
+ "pop-singing": "emoji/microphone_3d",
500
+ "rock-singing": "emoji/sign_of_the_horns_3d_default",
501
+ operatic: "emoji/performing_arts_3d",
502
+ "classical-vocals": "emoji/musical_score_3d",
503
+ rap: "emoji/microphone_3d",
504
+ "trap-melodic": "emoji/money_bag_3d",
505
+ growl: "emoji/wolf_3d",
506
+ scream: "emoji/face_screaming_in_fear_3d",
507
+ shout: "emoji/megaphone_3d",
508
+ falsetto: "emoji/bird_3d",
509
+ "head-voice": "emoji/feather_3d",
510
+ "chest-voice": "emoji/lion_3d",
511
+ belting: "emoji/loudspeaker_3d",
512
+ crooning: "emoji/rose_3d",
513
+ scat: "emoji/saxophone_3d",
514
+ yodeling: "emoji/snow-capped_mountain_3d",
515
+ "throat-singing": "emoji/mountain_3d",
516
+ melismatic: "emoji/musical_notes_3d",
517
+ autotuned: "emoji/robot_3d",
518
+ vocoded: "emoji/robot_3d",
519
+ "whisper-singing": "emoji/shushing_face_3d",
520
+ "breathy-singing": "emoji/wind_face_3d",
521
+ harmonized: "emoji/busts_in_silhouette_3d",
522
+ chant: "emoji/candle_3d",
523
+ },
524
+ },
525
+ "voice-character": {
526
+ age: {
527
+ infant: "emoji/baby_3d_default",
528
+ child: "emoji/child_3d_default",
529
+ preteen: "emoji/boy_3d_default",
530
+ teen: "emoji/girl_3d_default",
531
+ "young-adult": "emoji/woman_3d_default",
532
+ "middle-aged": "emoji/man_3d_default",
533
+ mature: "emoji/older_person_3d_default",
534
+ elderly: "emoji/old_woman_3d_default",
535
+ },
536
+ gender: {
537
+ male: "emoji/man_3d_default",
538
+ female: "emoji/woman_3d_default",
539
+ androgynous: "emoji/person_3d_default",
540
+ },
541
+ language: {
542
+ english: "flags/gb",
543
+ spanish: "flags/es",
544
+ french: "flags/fr",
545
+ german: "flags/de",
546
+ italian: "flags/it",
547
+ portuguese: "flags/pt",
548
+ dutch: "flags/nl",
549
+ russian: "flags/ru",
550
+ polish: "flags/pl",
551
+ ukrainian: "flags/ua",
552
+ swedish: "flags/se",
553
+ norwegian: "flags/no",
554
+ danish: "flags/dk",
555
+ finnish: "flags/fi",
556
+ greek: "flags/gr",
557
+ turkish: "flags/tr",
558
+ arabic: "flags/sa",
559
+ hebrew: "flags/il",
560
+ persian: "flags/ir",
561
+ hindi: "flags/in",
562
+ bengali: "flags/bd",
563
+ tamil: "flags/in",
564
+ urdu: "flags/pk",
565
+ tagalog: "flags/ph",
566
+ indonesian: "flags/id",
567
+ thai: "flags/th",
568
+ vietnamese: "flags/vn",
569
+ mandarin: "flags/cn",
570
+ cantonese: "flags/hk",
571
+ japanese: "flags/jp",
572
+ korean: "flags/kr",
573
+ swahili: "flags/tz",
574
+ yoruba: "flags/ng",
575
+ },
576
+ accent: {
577
+ "general-american": "flags/us",
578
+ "southern-us": "emoji/cowboy_hat_face_3d",
579
+ "new-york": "emoji/statue_of_liberty_3d",
580
+ boston: "emoji/lobster_3d",
581
+ "midwestern-us": "emoji/ear_of_corn_3d",
582
+ chicago: "emoji/cityscape_3d",
583
+ appalachian: "emoji/mountain_3d",
584
+ canadian: "flags/ca",
585
+ "british-rp": "emoji/crown_3d",
586
+ cockney: "flags/gb",
587
+ "estuary-english": "flags/gb",
588
+ "northern-english": "flags/gb",
589
+ scouse: "flags/gb",
590
+ geordie: "flags/gb",
591
+ scottish: "flags/gb-sct",
592
+ irish: "flags/ie",
593
+ welsh: "flags/gb-wls",
594
+ australian: "flags/au",
595
+ "new-zealand": "flags/nz",
596
+ "south-african": "flags/za",
597
+ "indian-english": "flags/in",
598
+ caribbean: "flags/bb",
599
+ jamaican: "flags/jm",
600
+ "french-accented": "flags/fr",
601
+ "italian-accented": "flags/it",
602
+ "german-accented": "flags/de",
603
+ "dutch-accented": "flags/nl",
604
+ "russian-accented": "flags/ru",
605
+ "polish-accented": "flags/pl",
606
+ "spanish-accented": "flags/es",
607
+ "portuguese-accented": "flags/pt",
608
+ "scandinavian-accented": "flags/se",
609
+ "mexican-accented": "flags/mx",
610
+ "argentinian-accented": "flags/ar",
611
+ "japanese-accented": "flags/jp",
612
+ "korean-accented": "flags/kr",
613
+ "chinese-accented": "flags/cn",
614
+ "filipino-accented": "flags/ph",
615
+ "arabic-accented": "flags/sa",
616
+ "hebrew-accented": "flags/il",
617
+ "turkish-accented": "flags/tr",
618
+ "persian-accented": "flags/ir",
619
+ "nigerian-accented": "flags/ng",
620
+ "neutral-international": "emoji/globe_with_meridians_3d",
621
+ transatlantic: "emoji/passenger_ship_3d",
622
+ },
623
+ timbre: {
624
+ warm: "emoji/hot_beverage_3d",
625
+ smooth: "emoji/butter_3d",
626
+ silky: "emoji/ribbon_3d",
627
+ velvety: "emoji/chocolate_bar_3d",
628
+ raspy: "emoji/cactus_3d",
629
+ gravelly: "emoji/rock_3d",
630
+ rough: "emoji/brick_3d",
631
+ husky: "emoji/dog_face_3d",
632
+ breathy: "emoji/wind_face_3d",
633
+ whispered: "emoji/shushing_face_3d",
634
+ nasal: "emoji/nose_3d_default",
635
+ twangy: "emoji/cowboy_hat_face_3d",
636
+ deep: "emoji/whale_3d",
637
+ booming: "emoji/loudspeaker_3d",
638
+ "high-pitched": "emoji/bird_3d",
639
+ squeaky: "emoji/mouse_3d",
640
+ bright: "emoji/sun_3d",
641
+ dark: "emoji/new_moon_3d",
642
+ youthful: "emoji/seedling_3d",
643
+ authoritative: "emoji/crown_3d",
644
+ sultry: "emoji/wine_glass_3d",
645
+ polished: "emoji/gem_stone_3d",
646
+ },
647
+ },
648
+ "voice-delivery": {
649
+ pace: {
650
+ "very-slow": "emoji/turtle_3d",
651
+ slow: "emoji/snail_3d",
652
+ drawl: "emoji/sloth_3d",
653
+ measured: "emoji/balance_scale_3d",
654
+ moderate: "emoji/person_walking_3d_default",
655
+ punchy: "emoji/boxing_glove_3d",
656
+ brisk: "emoji/person_running_3d_default",
657
+ rapid: "emoji/rabbit_3d",
658
+ "rapid-fire": "emoji/racing_car_3d",
659
+ frenetic: "emoji/tornado_3d",
660
+ halting: "emoji/stop_sign_3d",
661
+ },
662
+ emotion: {
663
+ neutral: "emoji/neutral_face_3d",
664
+ cheerful: "emoji/grinning_face_3d",
665
+ warm: "emoji/smiling_face_3d",
666
+ reassuring: "emoji/handshake_3d",
667
+ compassionate: "emoji/hugging_face_3d",
668
+ somber: "emoji/pensive_face_3d",
669
+ stoic: "emoji/moai_3d",
670
+ urgent: "emoji/police_car_light_3d",
671
+ frantic: "emoji/exploding_head_3d",
672
+ anxious: "emoji/anxious_face_with_sweat_3d",
673
+ scared: "emoji/fearful_face_3d",
674
+ excited: "emoji/star-struck_3d",
675
+ enthusiastic: "emoji/party_popper_3d",
676
+ wistful: "emoji/sunset_3d",
677
+ melancholic: "emoji/cloud_with_rain_3d",
678
+ menacing: "emoji/smiling_face_with_horns_3d",
679
+ angry: "emoji/pouting_face_3d",
680
+ sarcastic: "emoji/face_with_rolling_eyes_3d",
681
+ smug: "emoji/smirking_face_3d",
682
+ playful: "emoji/winking_face_with_tongue_3d",
683
+ flirty: "emoji/winking_face_3d",
684
+ intimate: "emoji/candle_3d",
685
+ seductive: "emoji/kiss_mark_3d",
686
+ },
687
+ archetype: {
688
+ newscaster: "emoji/newspaper_3d",
689
+ anchor: "emoji/television_3d",
690
+ "documentary-narrator": "emoji/globe_showing_europe-africa_3d",
691
+ "nature-narrator": "emoji/elephant_3d",
692
+ "fairy-tale-narrator": "emoji/castle_3d",
693
+ "audiobook-narrator": "emoji/open_book_3d",
694
+ podcaster: "emoji/studio_microphone_3d",
695
+ "talk-show-host": "emoji/couch_and_lamp_3d",
696
+ "radio-dj": "emoji/radio_3d",
697
+ asmr: "emoji/ear_3d_default",
698
+ sportscaster: "emoji/soccer_ball_3d",
699
+ auctioneer: "emoji/hammer_3d",
700
+ preacher: "emoji/scroll_3d",
701
+ politician: "emoji/classical_building_3d",
702
+ lawyer: "emoji/balance_scale_3d",
703
+ professor: "emoji/graduation_cap_3d",
704
+ infomercial: "emoji/shopping_cart_3d",
705
+ "voice-actor": "emoji/performing_arts_3d",
706
+ "drag-queen": "emoji/lipstick_3d",
707
+ villain: "emoji/smiling_face_with_horns_3d",
708
+ hero: "emoji/shield_3d",
709
+ mentor: "emoji/owl_3d",
710
+ comedian: "emoji/face_with_tears_of_joy_3d",
711
+ "stand-up-comic": "emoji/microphone_3d",
712
+ "drill-sergeant": "emoji/military_helmet_3d",
713
+ "meditation-guide": "emoji/lotus_3d",
714
+ "yoga-instructor": "emoji/person_in_lotus_position_3d_default",
715
+ "noir-detective": "emoji/detective_3d_default",
716
+ wizard: "emoji/magic_wand_3d",
717
+ robot: "emoji/robot_3d",
718
+ "ai-assistant": "emoji/speech_balloon_3d",
719
+ "siri-style": "emoji/mobile_phone_3d",
720
+ },
721
+ },
722
+ } as const satisfies SoundArtMap