moneybirdjs 1.0.7 → 1.0.8

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.
@@ -71,7 +71,7 @@ class SalesInvoice {
71
71
  return this;
72
72
  }
73
73
  async delete() {
74
- await this.administration.deleteExternalSalesInvoice(this.id);
74
+ await this.administration.deleteSalesInvoice(this.id);
75
75
  }
76
76
  async addNote(options) {
77
77
  const { data } = await this.administration.client.rest.addNote(this, options);
package/package.json CHANGED
@@ -28,5 +28,5 @@
28
28
  "test": "npm run prepare && node test/index.js"
29
29
  },
30
30
  "types": "dist/types/index.d.ts",
31
- "version": "1.0.7"
31
+ "version": "1.0.8"
32
32
  }