@vendasta/billing 10.5.0 → 10.7.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/applied-tax-rate.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/refund.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/applied-tax-rate.mjs +4 -1
- package/esm2020/lib/_internal/objects/refund.mjs +7 -1
- package/fesm2015/vendasta-billing.mjs +9 -0
- package/fesm2015/vendasta-billing.mjs.map +1 -1
- package/fesm2020/vendasta-billing.mjs +9 -0
- package/fesm2020/vendasta-billing.mjs.map +1 -1
- package/lib/_internal/interfaces/applied-tax-rate.interface.d.ts +1 -0
- package/lib/_internal/interfaces/refund.interface.d.ts +2 -0
- package/lib/_internal/objects/applied-tax-rate.d.ts +1 -0
- package/lib/_internal/objects/refund.d.ts +2 -0
- package/package.json +1 -1
|
@@ -3308,6 +3308,9 @@ class AppliedTaxRate {
|
|
|
3308
3308
|
if (typeof this.percentage !== 'undefined') {
|
|
3309
3309
|
toReturn['percentage'] = this.percentage;
|
|
3310
3310
|
}
|
|
3311
|
+
if (typeof this.description !== 'undefined') {
|
|
3312
|
+
toReturn['description'] = this.description;
|
|
3313
|
+
}
|
|
3311
3314
|
return toReturn;
|
|
3312
3315
|
}
|
|
3313
3316
|
}
|
|
@@ -10177,6 +10180,9 @@ class CreateRefundRequest {
|
|
|
10177
10180
|
if (typeof this.referenceId !== 'undefined') {
|
|
10178
10181
|
toReturn['referenceId'] = this.referenceId;
|
|
10179
10182
|
}
|
|
10183
|
+
if (typeof this.description !== 'undefined') {
|
|
10184
|
+
toReturn['description'] = this.description;
|
|
10185
|
+
}
|
|
10180
10186
|
return toReturn;
|
|
10181
10187
|
}
|
|
10182
10188
|
}
|
|
@@ -10306,6 +10312,9 @@ class Refund {
|
|
|
10306
10312
|
if (typeof this.referenceId !== 'undefined') {
|
|
10307
10313
|
toReturn['referenceId'] = this.referenceId;
|
|
10308
10314
|
}
|
|
10315
|
+
if (typeof this.description !== 'undefined') {
|
|
10316
|
+
toReturn['description'] = this.description;
|
|
10317
|
+
}
|
|
10309
10318
|
return toReturn;
|
|
10310
10319
|
}
|
|
10311
10320
|
}
|