File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class Macros extends Client {
20
20
* const macros = await client.macros.list();
21
21
*/
22
22
async list ( ) {
23
- return this . gettAll ( [ 'macros' , 'active' ] ) ;
23
+ return this . getAll ( [ 'macros' , 'active' ] ) ;
24
24
}
25
25
26
26
/**
@@ -71,7 +71,7 @@ class Macros extends Client {
71
71
* const macros = await client.macros.listByParams({ active: true });
72
72
*/
73
73
async listByParams ( parameters ) {
74
- return this . gettAll ( [ 'macros' , parameters ] ) ;
74
+ return this . getAll ( [ 'macros' , parameters ] ) ;
75
75
}
76
76
77
77
/**
@@ -130,7 +130,7 @@ class Macros extends Client {
130
130
* const macroCategories = await client.macros.categories();
131
131
*/
132
132
async categories ( ) {
133
- return this . gettAll ( [ 'macros' , 'categories' ] ) ;
133
+ return this . getAll ( [ 'macros' , 'categories' ] ) ;
134
134
}
135
135
136
136
/**
You can’t perform that action at this time.
0 commit comments