glitch-javascript-sdk 3.0.8 → 3.0.9

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/dist/cjs/index.js CHANGED
@@ -25179,6 +25179,8 @@ var TitlesRoute = /** @class */ (function () {
25179
25179
  wishlistAds: { url: '/titles/{title_id}/wishlist/ads', method: HTTP_METHODS.GET },
25180
25180
  wishlistUtms: { url: '/titles/{title_id}/wishlist/utms', method: HTTP_METHODS.GET },
25181
25181
  wishlistConversions: { url: '/titles/{title_id}/wishlist/conversions', method: HTTP_METHODS.GET },
25182
+ wishlistGeo: { url: '/titles/{title_id}/wishlist/geo', method: HTTP_METHODS.GET },
25183
+ wishlistDevices: { url: '/titles/{title_id}/wishlist/devices', method: HTTP_METHODS.GET },
25182
25184
  };
25183
25185
  return TitlesRoute;
25184
25186
  }());
@@ -26103,6 +26105,12 @@ var Titles = /** @class */ (function () {
26103
26105
  Titles.wishlistConversions = function (title_id, params) {
26104
26106
  return Requests.processRoute(TitlesRoute.routes.wishlistConversions, undefined, { title_id: title_id }, params);
26105
26107
  };
26108
+ Titles.wishlistGeo = function (title_id, params) {
26109
+ return Requests.processRoute(TitlesRoute.routes.wishlistGeo, undefined, { title_id: title_id }, params);
26110
+ };
26111
+ Titles.wishlistDevices = function (title_id, params) {
26112
+ return Requests.processRoute(TitlesRoute.routes.wishlistDevices, undefined, { title_id: title_id }, params);
26113
+ };
26106
26114
  return Titles;
26107
26115
  }());
26108
26116