ensend 0.0.6 → 0.0.7

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.
@@ -46,7 +46,7 @@ export class SendApi {
46
46
  async SendMailBroadcast(dto) {
47
47
  return this.http({
48
48
  method: "POST",
49
- path: "/send/mail/broadast",
49
+ path: "/send/mail/broadcast",
50
50
  body: dto,
51
51
  });
52
52
  }
@@ -65,7 +65,7 @@ export class SendApi {
65
65
  async SendExistingMailBroadcast(dto) {
66
66
  return this.http({
67
67
  method: "POST",
68
- path: "/send/mail/broadast",
68
+ path: "/send/mail/broadcast",
69
69
  body: dto,
70
70
  });
71
71
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ensend",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "description": "Official Typescript/Javascript SDK for the new Ensend API. See completed documentation at https://docs.ensend.co",