add set-stored-value action

commit_hash:827b756d3294d56f4d5b8a123427cddfe2cbcf24
This commit is contained in:
avmushtukov
2024-09-27 15:27:16 +03:00
parent 08e4e621b3
commit a1d4d10ab6
16 changed files with 442 additions and 13 deletions
@@ -1256,6 +1256,36 @@
"ios",
"web"
]
},
{
"name": "getStoredArrayValue(string) array",
"function_name": "getStoredArrayValue",
"doc": "Returns the stored value by its name. If the value doesn't exist or has incorrect type, the exception will be thrown.",
"arguments": [
{
"type": "string",
"doc": "Stored value name."
}
],
"result_type": "array",
"platforms": [
"android"
]
},
{
"name": "getStoredDictValue(string) dict",
"function_name": "getStoredDictValue",
"doc": "Returns the stored value by its name. If the value doesn't exist or has incorrect type, the exception will be thrown.",
"arguments": [
{
"type": "string",
"doc": "Stored value name."
}
],
"result_type": "dict",
"platforms": [
"android"
]
}
]
}