glitch-javascript-sdk 1.2.1 → 1.2.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glitch-javascript-sdk",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Javascript SDK for Glitch",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -487,7 +487,7 @@ class Communities {
487
487
  */
488
488
  public static populateEmailTemplate<T>(community_id : string, template_id : string, data : object, params?: Record<string, any>) : AxiosPromise<Response<T>> {
489
489
 
490
- return Requests.processRoute(CommunitiesRoute.routes.createEmailTemplate, data, {community_id : community_id, template_id : template_id}, params);
490
+ return Requests.processRoute(CommunitiesRoute.routes.populateEmailTemplate, data, {community_id : community_id, template_id : template_id}, params);
491
491
  }
492
492
 
493
493