vtb-appit 0.0.48 → 0.0.49
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/appit.js +2 -2
- package/package.json +1 -1
package/appit.js
CHANGED
|
@@ -625,9 +625,9 @@ class Appit {
|
|
|
625
625
|
}
|
|
626
626
|
}
|
|
627
627
|
|
|
628
|
-
async saveHomescreen(
|
|
628
|
+
async saveHomescreen(data)
|
|
629
629
|
{
|
|
630
|
-
return await this.request('PUT', `excursions/${
|
|
630
|
+
return await this.request('PUT', `excursions/${this.history.excursionId}/homescreen/save_setting`, data);
|
|
631
631
|
}
|
|
632
632
|
}
|
|
633
633
|
|