diff --git a/_data/arguments.json b/_data/arguments.json index c16bc66..fe53e93 100644 --- a/_data/arguments.json +++ b/_data/arguments.json @@ -169,6 +169,13 @@ ] }, "Coin": { + "reset_password_coin": [ + { + "type": "string", + "name": "newPassword", + "optional": false + } + ], "create_subwallet": [ { "type": "string", @@ -239,11 +246,6 @@ "type": "number", "name": "amount", "optional": false - }, - { - "type": "string", - "name": "subwalletUser", - "optional": false } ] }, @@ -955,6 +957,13 @@ "active_net_card": [] }, "General": { + "reset_ctf_password": [ + { + "type": "String", + "name": "new_password", + "optional": false + } + ], "get_ctf": [ { "type": "String", @@ -1439,6 +1448,11 @@ "type": "String", "name": "key", "optional": true + }, + { + "type": "Number", + "name": "ascending", + "optional": true } ], "pull": [], diff --git a/_data/descriptions.json b/_data/descriptions.json index 12957e4..2a4e7df 100644 --- a/_data/descriptions.json +++ b/_data/descriptions.json @@ -27,6 +27,7 @@ "show_nodes": "Returns an int indicating the number of devices mining a specific coin for the same wallet. In case of error a string is returned with the details." }, "Coin": { + "reset_password_coin": "Reset the password for this coin.", "create_subwallet": "Register a new account in the Coin that can be used to manage services such as stores. It is necessary to use the PIN that the owner of the wallet that wants to register has to provide.", "get_address": "Returns the configured address that will be shown to users who do not have the currency, indicating where they have to register.", "get_cycle_mining": "Returns an int with the number of hours (game time) that each mining cycle lasts. When a cycle ends, it is decided who gets the reward (1 coin) and the next cycle begins.", @@ -184,6 +185,7 @@ "active_net_card": "Returns a string with the keyword WIFI if the current device is connected to a router by WiFi, if it is connected by cable a string with the keyword ETHERNET is returned." }, "General": { + "reset_ctf_password": "Reset your player password used for all CTFs.", "get_ctf": "Gets the event created in the web browser. In case of success, it will return a CTFEvent type object, otherwise it will return a string with the error.", "get_custom_object": "Returns an empty Map object that can be used to share data back and forth with programs launched with shell.launch.", "mail_login": "Access the email account\n\nReturns a MetaMail type object if the login has been correct. In case of error, it returns a string", diff --git a/_data/functions.json b/_data/functions.json index 6fabb5d..6b7973e 100644 --- a/_data/functions.json +++ b/_data/functions.json @@ -29,6 +29,7 @@ "show_nodes" ], "Coin": [ + "reset_password_coin", "create_subwallet", "get_address", "get_cycle_mining", @@ -186,6 +187,7 @@ "public_ip" ], "General": [ + "reset_ctf_password", "mail_login", "print", "wait", diff --git a/_data/returns.json b/_data/returns.json index 1b92bc6..3832203 100644 --- a/_data/returns.json +++ b/_data/returns.json @@ -134,6 +134,17 @@ ] }, "Coin": { + "reset_password_coin": [ + { + "type": "Number" + }, + { + "type": "String" + }, + { + "type": "null" + } + ], "create_subwallet": [ { "type": "null" @@ -757,8 +768,11 @@ ], "delete": [ { - "type": "Number" - } + "type": "String" + }, + { + "type": "null" + }, ], "get_folders": [ { @@ -928,6 +942,14 @@ ] }, "General": { + "reset_ctf_password": [ + { + "type": "String" + }, + { + "type": "Number" + } + ], "get_ctf": [ { "type": "CTFEvent" diff --git a/_data/types.json b/_data/types.json index 24859dd..29b29b4 100644 --- a/_data/types.json +++ b/_data/types.json @@ -27,6 +27,7 @@ "sell_coin": "wallet", "show_nodes": "wallet", + "reset_password_coin": "coin", "create_subwallet": "coin", "get_address": "coin", "get_cycle_mining": "coin", @@ -165,6 +166,7 @@ "active_net_card": "computer", "get_name": "computer", + "reset_ctf_password": "general", "typeof": "general", "get_ctf": "general", "get_router": "general",