glitch-javascript-sdk 3.2.7 → 3.2.8

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
@@ -19100,6 +19100,10 @@ var AdsRoute = /** @class */ (function () {
19100
19100
  url: "/ads/reports/time-performance",
19101
19101
  method: HTTP_METHODS.GET,
19102
19102
  },
19103
+ getDetailedBreakdownReport: {
19104
+ url: "/ads/reports/detailed-breakdown",
19105
+ method: HTTP_METHODS.GET,
19106
+ },
19103
19107
  getGoogleGeoSuggestions: {
19104
19108
  url: "/ads/google/targeting/geo/suggest",
19105
19109
  method: HTTP_METHODS.GET,
@@ -19156,6 +19160,10 @@ var AdsRoute = /** @class */ (function () {
19156
19160
  url: "/ads/google/accounts/create",
19157
19161
  method: HTTP_METHODS.POST,
19158
19162
  },
19163
+ reportSkanAttributionPostback: {
19164
+ url: "/.well-known/appattribution/report-attribution",
19165
+ method: HTTP_METHODS.POST,
19166
+ },
19159
19167
  };
19160
19168
  return AdsRoute;
19161
19169
  }());
@@ -19756,6 +19764,12 @@ var Ads = /** @class */ (function () {
19756
19764
  return Requests.processRoute(AdsRoute.routes.getTimePerformanceReport, undefined, undefined, params);
19757
19765
  };
19758
19766
  /**
19767
+ * Get detailed paid campaign performance rows for tables and exports.
19768
+ */
19769
+ Ads.getDetailedBreakdownReport = function (params) {
19770
+ return Requests.processRoute(AdsRoute.routes.getDetailedBreakdownReport, undefined, undefined, params);
19771
+ };
19772
+ /**
19759
19773
  * GET /ads/google/targeting/geo/suggest
19760
19774
  */
19761
19775
  Ads.listGoogleGeoSuggestions = function (params) {
@@ -19836,6 +19850,13 @@ var Ads = /** @class */ (function () {
19836
19850
  Ads.createGoogleAccount = function (data) {
19837
19851
  return Requests.processRoute(AdsRoute.routes.createGoogleAccount, data, undefined, undefined);
19838
19852
  };
19853
+ /**
19854
+ * Submit a SKAN attribution postback to the public Apple app attribution endpoint.
19855
+ * This mirrors POST /.well-known/appattribution/report-attribution.
19856
+ */
19857
+ Ads.reportSkanAttributionPostback = function (data, params) {
19858
+ return Requests.processRoute(AdsRoute.routes.reportSkanAttributionPostback, data, undefined, params);
19859
+ };
19839
19860
  return Ads;
19840
19861
  }());
19841
19862
 
@@ -28286,6 +28307,13 @@ var Scheduler = /** @class */ (function () {
28286
28307
  Scheduler.listCampaignFundingInstruments = function (scheduler_id, params) {
28287
28308
  return Requests.processRoute(SchedulerRoute.routes.getCampaignFundingInstruments, undefined, { scheduler_id: scheduler_id }, params);
28288
28309
  };
28310
+ /**
28311
+ * List Google Ads conversion actions available to a scheduler account.
28312
+ * GET /schedulers/{scheduler_id}/conversion-actions
28313
+ */
28314
+ Scheduler.listConversionActions = function (scheduler_id, params) {
28315
+ return Requests.processRoute(SchedulerRoute.routes.getConversionActions, undefined, { scheduler_id: scheduler_id }, params);
28316
+ };
28289
28317
  /**
28290
28318
  * List all destinations for a title update.
28291
28319
  *