@vendasta/billing 9.0.0 → 9.1.0
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/esm2020/lib/_internal/interfaces/recurring-invoice.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/recurring-invoice.mjs +4 -1
- package/fesm2015/vendasta-billing.mjs +3 -0
- package/fesm2015/vendasta-billing.mjs.map +1 -1
- package/fesm2020/vendasta-billing.mjs +3 -0
- package/fesm2020/vendasta-billing.mjs.map +1 -1
- package/lib/_internal/interfaces/recurring-invoice.interface.d.ts +1 -0
- package/lib/_internal/objects/recurring-invoice.d.ts +1 -0
- package/package.json +1 -1
|
@@ -12069,6 +12069,9 @@ class RecurringInvoice {
|
|
|
12069
12069
|
if (typeof this.currencyCode !== 'undefined') {
|
|
12070
12070
|
toReturn['currencyCode'] = this.currencyCode;
|
|
12071
12071
|
}
|
|
12072
|
+
if (typeof this.memo !== 'undefined') {
|
|
12073
|
+
toReturn['memo'] = this.memo;
|
|
12074
|
+
}
|
|
12072
12075
|
return toReturn;
|
|
12073
12076
|
}
|
|
12074
12077
|
}
|