glitch-javascript-sdk 1.5.4 → 1.5.5

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
@@ -22542,7 +22542,7 @@ var SocialPostsRoute = /** @class */ (function () {
22542
22542
  deletePost: { url: '/socialposts/{post_id}', method: HTTP_METHODS.DELETE },
22543
22543
  dispute: { url: '/social/{post_id}/dispute', method: HTTP_METHODS.POST },
22544
22544
  history: { url: '/socialposts/{post_id}/history', method: HTTP_METHODS.GET },
22545
- progression: { url: '/socialposts/{post_id}/progression', method: HTTP_METHODS.GET },
22545
+ progression: { url: '/socialposts/progression', method: HTTP_METHODS.GET },
22546
22546
  addMedia: { url: '/socialposts/{post_id}/addMedia', method: HTTP_METHODS.POST },
22547
22547
  removeMedia: { url: '/socialposts/{post_id}/removeMedia/{media_id}', method: HTTP_METHODS.DELETE },
22548
22548
  reschedule: { url: '/socialposts/{post_id}/reschedule', method: HTTP_METHODS.POST },
@@ -22643,8 +22643,8 @@ var SocialPosts = /** @class */ (function () {
22643
22643
  *
22644
22644
  * @returns promise
22645
22645
  */
22646
- SocialPosts.progression = function (post_id, params) {
22647
- return Requests.processRoute(SocialPostsRoute.routes.progression, {}, { post_id: post_id }, params);
22646
+ SocialPosts.progression = function (params) {
22647
+ return Requests.processRoute(SocialPostsRoute.routes.progression, {}, {}, params);
22648
22648
  };
22649
22649
  /**
22650
22650
  * Add media to a social media post.