@signalhousellc/sdk 1.0.5 → 1.0.6

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": "@signalhousellc/sdk",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Signal House SDK for use with the Signal House platform",
5
5
  "type": "module",
6
6
  "main": "src/SignalHouseSDK.js",
@@ -204,6 +204,6 @@ export class Messages {
204
204
  formData.append("enableShortlink", enableShortlink);
205
205
  formData.append("enableCompression", enableCompression);
206
206
 
207
- return this.multipartClient(`/message/mms`, { method: "POST", body: formData, ...options });
207
+ return this.multipartClient(`/message/groupMessage`, { method: "POST", body: formData, ...options });
208
208
  }
209
209
  }