glitch-javascript-sdk 2.1.3 → 2.1.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/index.d.ts CHANGED
@@ -3580,6 +3580,14 @@ declare class SocialPosts {
3580
3580
  * @returns A promise
3581
3581
  */
3582
3582
  static updateCommentMetrics<T>(comment_id: string): AxiosPromise<Response<T>>;
3583
+ /**
3584
+ * Create a new top-level comment on a post.
3585
+ *
3586
+ * @param post_id The ID of the social media post to comment on.
3587
+ * @param data The content of the comment.
3588
+ * @returns A promise
3589
+ */
3590
+ static createComment<T>(post_id: string, data: object): AxiosPromise<Response<T>>;
3583
3591
  }
3584
3592
 
3585
3593
  declare class Titles {
@@ -5780,6 +5788,22 @@ declare class Scheduler {
5780
5788
  * @returns promise
5781
5789
  */
5782
5790
  static generateRedditContent<T>(scheduler_id: string, data: object, params?: Record<string, any>): AxiosPromise<Response<T>>;
5791
+ /**
5792
+ * Get all posts and comments for a scheduler.
5793
+ *
5794
+ * @param scheduler_id The ID of the promotion schedule.
5795
+ * @param params Optional query parameters for filtering and sorting.
5796
+ * @returns promise
5797
+ */
5798
+ static getSchedulerPostsWithComments<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
5799
+ /**
5800
+ * Sync all comments for all posts in a scheduler.
5801
+ *
5802
+ * @param scheduler_id The ID of the promotion schedule.
5803
+ * @param params Optional query parameters (e.g., limit_per_post).
5804
+ * @returns promise
5805
+ */
5806
+ static syncAllSchedulerComments<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
5783
5807
  }
5784
5808
 
5785
5809
  declare class Funnel {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glitch-javascript-sdk",
3
- "version": "2.1.3",
3
+ "version": "2.1.5",
4
4
  "description": "Javascript SDK for Glitch",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -777,6 +777,28 @@ class Scheduler {
777
777
  return Requests.processRoute(SchedulerRoute.routes.generateRedditContent, data, { scheduler_id }, params);
778
778
  }
779
779
 
780
+ /**
781
+ * Get all posts and comments for a scheduler.
782
+ *
783
+ * @param scheduler_id The ID of the promotion schedule.
784
+ * @param params Optional query parameters for filtering and sorting.
785
+ * @returns promise
786
+ */
787
+ public static getSchedulerPostsWithComments<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> {
788
+ return Requests.processRoute(SchedulerRoute.routes.getSchedulerPostsWithComments, {}, { scheduler_id }, params);
789
+ }
790
+
791
+ /**
792
+ * Sync all comments for all posts in a scheduler.
793
+ *
794
+ * @param scheduler_id The ID of the promotion schedule.
795
+ * @param params Optional query parameters (e.g., limit_per_post).
796
+ * @returns promise
797
+ */
798
+ public static syncAllSchedulerComments<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> {
799
+ return Requests.processRoute(SchedulerRoute.routes.syncAllSchedulerComments, {}, { scheduler_id }, params);
800
+ }
801
+
780
802
  }
781
803
 
782
804
  export default Scheduler;
@@ -286,6 +286,17 @@ class SocialPosts {
286
286
  return Requests.processRoute(SocialPostsRoute.routes.updateCommentMetrics, undefined, { comment_id });
287
287
  }
288
288
 
289
+ /**
290
+ * Create a new top-level comment on a post.
291
+ *
292
+ * @param post_id The ID of the social media post to comment on.
293
+ * @param data The content of the comment.
294
+ * @returns A promise
295
+ */
296
+ public static createComment<T>(post_id: string, data: object): AxiosPromise<Response<T>> {
297
+ return Requests.processRoute(SocialPostsRoute.routes.createComment, data, { post_id });
298
+ }
299
+
289
300
  }
290
301
 
291
302
  export default SocialPosts;
@@ -119,6 +119,9 @@ class SchedulerRoute {
119
119
  updateDestination: { url: '/schedulers/{scheduler_id}/updates/{update_id}/destinations/{destination_id}', method: HTTP_METHODS.PUT },
120
120
  deleteDestination: { url: '/schedulers/{scheduler_id}/updates/{update_id}/destinations/{destination_id}', method: HTTP_METHODS.DELETE },
121
121
 
122
+ getSchedulerPostsWithComments: { url: '/schedulers/{scheduler_id}/posts-with-comments', method: HTTP_METHODS.GET },
123
+ syncAllSchedulerComments: { url: '/schedulers/{scheduler_id}/sync-all-comments', method: HTTP_METHODS.POST },
124
+
122
125
  };
123
126
  }
124
127
 
@@ -29,6 +29,8 @@ class SocialPostsRoute {
29
29
  markCommentForResponse: { url: '/socialposts/comments/{comment_id}/mark-for-response', method: HTTP_METHODS.PUT },
30
30
  getCommentThread: { url: '/socialposts/comments/{comment_id}/thread', method: HTTP_METHODS.GET },
31
31
  updateCommentMetrics: { url: '/socialposts/comments/{comment_id}/update-metrics', method: HTTP_METHODS.PUT },
32
+ createComment: { url: '/socialposts/{post_id}/comments', method: HTTP_METHODS.POST },
33
+
32
34
 
33
35
  };
34
36