@vendasta/billing 12.2.0 → 12.3.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/retail-customer-configuration.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/retail-customer-configuration.mjs +7 -1
- package/fesm2015/vendasta-billing.mjs +6 -0
- package/fesm2015/vendasta-billing.mjs.map +1 -1
- package/fesm2020/vendasta-billing.mjs +6 -0
- package/fesm2020/vendasta-billing.mjs.map +1 -1
- package/lib/_internal/interfaces/retail-customer-configuration.interface.d.ts +2 -0
- package/lib/_internal/objects/retail-customer-configuration.d.ts +2 -0
- package/package.json +1 -1
|
@@ -12322,6 +12322,9 @@ class RetailCustomerConfiguration {
|
|
|
12322
12322
|
if (typeof this.useTemplateInvoice !== 'undefined') {
|
|
12323
12323
|
toReturn['useTemplateInvoice'] = this.useTemplateInvoice;
|
|
12324
12324
|
}
|
|
12325
|
+
if (typeof this.memo !== 'undefined') {
|
|
12326
|
+
toReturn['memo'] = this.memo;
|
|
12327
|
+
}
|
|
12325
12328
|
return toReturn;
|
|
12326
12329
|
}
|
|
12327
12330
|
}
|
|
@@ -12372,6 +12375,9 @@ class UpsertRetailCustomerConfigurationRequest {
|
|
|
12372
12375
|
if (typeof this.useTemplateInvoice !== 'undefined') {
|
|
12373
12376
|
toReturn['useTemplateInvoice'] = this.useTemplateInvoice;
|
|
12374
12377
|
}
|
|
12378
|
+
if (typeof this.memo !== 'undefined') {
|
|
12379
|
+
toReturn['memo'] = this.memo;
|
|
12380
|
+
}
|
|
12375
12381
|
return toReturn;
|
|
12376
12382
|
}
|
|
12377
12383
|
}
|