Hi,
We submitted our Marketplace APP on monday.com. Recently, we received a notification email from monday.com stating that:
Your app is currently at risk of being removed from the monday.com App Marketplace because our records show that it is using 2023-07 API, which soon will be deprecated.
We are currently using the following APIs and SDK alone in our App. Are there any changes that we need to make?
APIs and SDK used in our APP:
-
let query =
query { users (ids: [${db_config.userId}]) { name,email account { id slug } }}
; -
let query =
mutation {create_update (item_id: ${db_config.itemId}, body:${JSON.stringify(msg1)}) { id }}
; -
let query =
query { app_subscription { billing_period days_left is_trial plan_id renewal_date } }
; -
monday.storage.instance.getItem(‘configDB’).then(res => {
if(JSON.parse(res.data.value)){ let token = "x:"+JSON.parse(res.data.value).token; ... } }).catch(err=>{ //console.log("err---->",err); });
-
monday.storage.instance.setItem(key,values).then(res => {
…
}); -
monday.execute("valueCreatedForUser"); monday.listen("context", (res) => { theme_mode = res.data.theme; ... });
Please let us know if any action is required on the above.
Thanks in advance!