glitch-javascript-sdk 2.1.9 → 2.2.1

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.
@@ -674,5 +674,13 @@ declare class Campaigns {
674
674
  static sourcingGetGamesByIds<T>(campaign_id: string, data: {
675
675
  igdb_ids: number[];
676
676
  }): AxiosPromise<Response<T>>;
677
+ /**
678
+ * Get full game details from a list of IGDB IDs.
679
+ * @param campaign_id The UUID of the campaign.
680
+ * @param data An object containing the array of IGDB IDs.
681
+ * @param data.igdb_ids An array of IGDB game IDs.
682
+ * @returns promise
683
+ */
684
+ static updateAutoInviteCriteria<T>(campaign_id: string, data: object): AxiosPromise<Response<T>>;
677
685
  }
678
686
  export default Campaigns;
@@ -359,5 +359,49 @@ declare class Titles {
359
359
  * @returns Promise
360
360
  */
361
361
  static updateAdministrator<T>(title_id: string, user_id: string, data: object, params?: Record<string, any>): AxiosPromise<Response<T>>;
362
+ /**
363
+ * List ad conversion events for a title with filtering
364
+ */
365
+ static listAdConversionEvents<T>(title_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
366
+ /**
367
+ * Retry a failed or pending ad conversion event
368
+ */
369
+ static retryAdConversionEvent<T>(title_id: string, event_id: string): AxiosPromise<Response<T>>;
370
+ /**
371
+ * List all landing pages for a specific title.
372
+ * @param title_id The UUID of the title.
373
+ * @param params Optional query parameters for pagination.
374
+ */
375
+ static listLandingPages<T>(title_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
376
+ /**
377
+ * Create a new landing page for a title.
378
+ * @param title_id The UUID of the title.
379
+ * @param data The data for the new landing page.
380
+ */
381
+ static createLandingPage<T>(title_id: string, data: object, params?: Record<string, any>): AxiosPromise<Response<T>>;
382
+ /**
383
+ * View a specific landing page by its ID.
384
+ * @param landing_page_id The UUID of the landing page.
385
+ */
386
+ static viewLandingPage<T>(landing_page_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
387
+ /**
388
+ * Update an existing landing page.
389
+ * @param landing_page_id The UUID of the landing page to update.
390
+ * @param data The new data for the landing page.
391
+ */
392
+ static updateLandingPage<T>(landing_page_id: string, data: object, params?: Record<string, any>): AxiosPromise<Response<T>>;
393
+ /**
394
+ * Delete a landing page.
395
+ * @param landing_page_id The UUID of the landing page to delete.
396
+ */
397
+ static deleteLandingPage<T>(landing_page_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
398
+ /**
399
+ * Trigger an AI translation for a landing page.
400
+ * @param landing_page_id The UUID of the landing page.
401
+ * @param data An object containing the target language code, e.g., { language_code: 'es' }.
402
+ */
403
+ static translateLandingPage<T>(landing_page_id: string, data: {
404
+ language_code: string;
405
+ }, params?: Record<string, any>): AxiosPromise<Response<T>>;
362
406
  }
363
407
  export default Titles;
package/dist/esm/index.js CHANGED
@@ -11345,6 +11345,20 @@ var TitlesRoute = /** @class */ (function () {
11345
11345
  url: "/titles/{title_id}/purchases/reports/item-type-stats",
11346
11346
  method: HTTP_METHODS.GET,
11347
11347
  },
11348
+ listAdConversionEvents: {
11349
+ url: '/titles/{title_id}/ad-conversion-events',
11350
+ method: HTTP_METHODS.GET
11351
+ },
11352
+ retryAdConversionEvent: {
11353
+ url: '/titles/{title_id}/ad-conversion-events/{event_id}/retry',
11354
+ method: HTTP_METHODS.POST
11355
+ },
11356
+ listLandingPages: { url: '/titles/{title_id}/landing-pages', method: HTTP_METHODS.GET },
11357
+ createLandingPage: { url: '/titles/{title_id}/landing-pages', method: HTTP_METHODS.POST },
11358
+ viewLandingPage: { url: '/landing-pages/{landing_page_id}', method: HTTP_METHODS.GET },
11359
+ updateLandingPage: { url: '/landing-pages/{landing_page_id}', method: HTTP_METHODS.PUT },
11360
+ deleteLandingPage: { url: '/landing-pages/{landing_page_id}', method: HTTP_METHODS.DELETE },
11361
+ translateLandingPage: { url: '/landing-pages/{landing_page_id}/translate', method: HTTP_METHODS.POST },
11348
11362
  };
11349
11363
  return TitlesRoute;
11350
11364
  }());
@@ -11817,6 +11831,64 @@ var Titles = /** @class */ (function () {
11817
11831
  Titles.updateAdministrator = function (title_id, user_id, data, params) {
11818
11832
  return Requests.processRoute(TitlesRoute.routes.updateAdministrator, data, { title_id: title_id, user_id: user_id }, params);
11819
11833
  };
11834
+ /**
11835
+ * List ad conversion events for a title with filtering
11836
+ */
11837
+ Titles.listAdConversionEvents = function (title_id, params) {
11838
+ return Requests.processRoute(TitlesRoute.routes.listAdConversionEvents, {}, { title_id: title_id }, params);
11839
+ };
11840
+ /**
11841
+ * Retry a failed or pending ad conversion event
11842
+ */
11843
+ Titles.retryAdConversionEvent = function (title_id, event_id) {
11844
+ return Requests.processRoute(TitlesRoute.routes.retryAdConversionEvent, {}, { title_id: title_id, event_id: event_id });
11845
+ };
11846
+ /**
11847
+ * List all landing pages for a specific title.
11848
+ * @param title_id The UUID of the title.
11849
+ * @param params Optional query parameters for pagination.
11850
+ */
11851
+ Titles.listLandingPages = function (title_id, params) {
11852
+ return Requests.processRoute(TitlesRoute.routes.listLandingPages, {}, { title_id: title_id }, params);
11853
+ };
11854
+ /**
11855
+ * Create a new landing page for a title.
11856
+ * @param title_id The UUID of the title.
11857
+ * @param data The data for the new landing page.
11858
+ */
11859
+ Titles.createLandingPage = function (title_id, data, params) {
11860
+ return Requests.processRoute(TitlesRoute.routes.createLandingPage, data, { title_id: title_id }, params);
11861
+ };
11862
+ /**
11863
+ * View a specific landing page by its ID.
11864
+ * @param landing_page_id The UUID of the landing page.
11865
+ */
11866
+ Titles.viewLandingPage = function (landing_page_id, params) {
11867
+ return Requests.processRoute(TitlesRoute.routes.viewLandingPage, {}, { landing_page_id: landing_page_id }, params);
11868
+ };
11869
+ /**
11870
+ * Update an existing landing page.
11871
+ * @param landing_page_id The UUID of the landing page to update.
11872
+ * @param data The new data for the landing page.
11873
+ */
11874
+ Titles.updateLandingPage = function (landing_page_id, data, params) {
11875
+ return Requests.processRoute(TitlesRoute.routes.updateLandingPage, data, { landing_page_id: landing_page_id }, params);
11876
+ };
11877
+ /**
11878
+ * Delete a landing page.
11879
+ * @param landing_page_id The UUID of the landing page to delete.
11880
+ */
11881
+ Titles.deleteLandingPage = function (landing_page_id, params) {
11882
+ return Requests.processRoute(TitlesRoute.routes.deleteLandingPage, {}, { landing_page_id: landing_page_id }, params);
11883
+ };
11884
+ /**
11885
+ * Trigger an AI translation for a landing page.
11886
+ * @param landing_page_id The UUID of the landing page.
11887
+ * @param data An object containing the target language code, e.g., { language_code: 'es' }.
11888
+ */
11889
+ Titles.translateLandingPage = function (landing_page_id, data, params) {
11890
+ return Requests.processRoute(TitlesRoute.routes.translateLandingPage, data, { landing_page_id: landing_page_id }, params);
11891
+ };
11820
11892
  return Titles;
11821
11893
  }());
11822
11894
 
@@ -11896,6 +11968,7 @@ var CampaignsRoute = /** @class */ (function () {
11896
11968
  exportSourcedCreators: { url: '/campaigns/{campaign_id}/sourcing/creators/export', method: HTTP_METHODS.GET },
11897
11969
  sourcingSearchAnyIgdbGame: { url: '/campaigns/{campaign_id}/sourcing/search-any-game', method: HTTP_METHODS.GET },
11898
11970
  sourcingGetGamesByIds: { url: '/campaigns/{campaign_id}/sourcing/games-by-ids', method: HTTP_METHODS.POST },
11971
+ updateAutoInviteCriteria: { url: '/campaigns/{campaign_id}/sourcing/auto-invite-criteria', method: HTTP_METHODS.PUT },
11899
11972
  };
11900
11973
  return CampaignsRoute;
11901
11974
  }());
@@ -12710,6 +12783,16 @@ var Campaigns = /** @class */ (function () {
12710
12783
  Campaigns.sourcingGetGamesByIds = function (campaign_id, data) {
12711
12784
  return Requests.processRoute(CampaignsRoute.routes.sourcingGetGamesByIds, data, { campaign_id: campaign_id });
12712
12785
  };
12786
+ /**
12787
+ * Get full game details from a list of IGDB IDs.
12788
+ * @param campaign_id The UUID of the campaign.
12789
+ * @param data An object containing the array of IGDB IDs.
12790
+ * @param data.igdb_ids An array of IGDB game IDs.
12791
+ * @returns promise
12792
+ */
12793
+ Campaigns.updateAutoInviteCriteria = function (campaign_id, data) {
12794
+ return Requests.processRoute(CampaignsRoute.routes.updateAutoInviteCriteria, data, { campaign_id: campaign_id });
12795
+ };
12713
12796
  return Campaigns;
12714
12797
  }());
12715
12798