PluginProbe
BeyondWords – AI audio for publishers / 4.2.4
BeyondWords – AI audio for publishers v4.2.4
7.1.0 trunk 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.1.0 4.1.1 4.1.2 4.2.0 4.2.1 4.2.2 4.2.3 4.2.4 4.3.0 4.4.0 4.5.0 4.5.1 4.6.0 4.6.1 4.6.2 4.7.0 All 43 releases
speechkit / src / Core / Settings / store / actions.js

actions.js in BeyondWords – AI audio for publishers 4.2.4, at src/Core/Settings/store/actions.js

43 lines 611 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 const actions = {
2 fetchFromAPI( path ) {
3 // fetchFromAPI( path, queryParams ) {
4 return {
5 type: 'FETCH_FROM_API',
6 path,
7 // queryParams,
8 };
9 },
10 setIsRegeneratingAudio( value ) {
11 return {
12 type: 'SET_IS_REGENERATING_AUDIO',
13 value,
14 };
15 },
16 setSettings( value ) {
17 return {
18 type: 'SET_SETTINGS',
19 value,
20 };
21 },
22 setPlayerStyles( value ) {
23 return {
24 type: 'SET_PLAYER_STYLES',
25 value,
26 };
27 },
28 setLanguages( value ) {
29 return {
30 type: 'SET_LANGUAGES',
31 value,
32 };
33 },
34 setVoices( value ) {
35 return {
36 type: 'SET_VOICES',
37 value,
38 };
39 },
40 };
41
42 export default actions;
43