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/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
- package/src/api/Communities.ts +1 -1
package/package.json
CHANGED
package/src/api/Communities.ts
CHANGED
|
@@ -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.
|
|
490
|
+
return Requests.processRoute(CommunitiesRoute.routes.populateEmailTemplate, data, {community_id : community_id, template_id : template_id}, params);
|
|
491
491
|
}
|
|
492
492
|
|
|
493
493
|
|