You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/api/MetaApi.js
+3-3
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ export default class MetaApi {
46
46
/**
47
47
* Available Game Search Types
48
48
* Get all types for /{game}/v1/{lang}/search available for filtering. All names are english for comparing them inside applications. Order is fixed so you can compare indices instead of strings.
49
-
* @param {String} game game main 'dofus3' or beta channel 'dofus3beta'
49
+
* @param {module:model/String} game game main 'dofus3' or beta channel 'dofus3beta'
50
50
* @param {module:api/MetaApi~getGameSearchTypesCallback} callback The callback function, accepting three arguments: error, data, response
51
51
* data is of type: {@link Array.<String>}
52
52
*/
@@ -89,7 +89,7 @@ export default class MetaApi {
89
89
/**
90
90
* Available Item Types
91
91
* Get all types of all items. Primarily used for filtering more detailed types in listings or search endpoints. All names are english for comparing them inside applications. Ordering is not guaranteed to persist with game updates.
92
-
* @param {String} game game main 'dofus3' or beta channel 'dofus3beta'
92
+
* @param {module:model/String} game game main 'dofus3' or beta channel 'dofus3beta'
93
93
* @param {module:api/MetaApi~getItemTypesCallback} callback The callback function, accepting three arguments: error, data, response
94
94
* data is of type: {@link Array.<String>}
95
95
*/
@@ -228,7 +228,7 @@ export default class MetaApi {
228
228
/**
229
229
* Effects and Condition Elements
230
230
* Get the mappings for all specific elements that are linked in the dataset. All names are english. Translations are not needed because of a global unique id which is the index inside the array. Future elements will get a higher id.
231
-
* @param {String} game game main 'dofus3' or beta channel 'dofus3beta'
231
+
* @param {module:model/String} game game main 'dofus3' or beta channel 'dofus3beta'
232
232
* @param {module:api/MetaApi~getMetaElementsCallback} callback The callback function, accepting three arguments: error, data, response
0 commit comments