fnapi-js 1.1.2 → 1.1.3
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/README.md +2 -2
- package/package.json +1 -1
- package/src/enums/CosmeticType.js +1 -1
package/README.md
CHANGED
|
@@ -34,13 +34,13 @@ const searchOptions = new SearchOptions()
|
|
|
34
34
|
.setRarity('epic')
|
|
35
35
|
.setMatchMethod(Enums.matchMethod.contains());
|
|
36
36
|
|
|
37
|
-
const cosmetics = await fnApi.cosmetics.
|
|
37
|
+
const cosmetics = await fnApi.cosmetics.search(searchOptions);
|
|
38
38
|
|
|
39
39
|
// Get creator code
|
|
40
40
|
const creatorCode = await fnApi.sac.get('code');
|
|
41
41
|
|
|
42
42
|
// Get AES keys
|
|
43
|
-
const aesKeys = await fnApi.aes.
|
|
43
|
+
const aesKeys = await fnApi.aes.get();
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
## Check out the docs
|
package/package.json
CHANGED