@vendasta/billing 10.6.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/refund.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/refund.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/refund.interface.d.ts +2 -0
- package/lib/_internal/objects/refund.d.ts +2 -0
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ export interface CreateRefundRequestInterface {
|
|
|
6
6
|
reason?: e.RefundReason;
|
|
7
7
|
referenceType?: e.ReferenceType;
|
|
8
8
|
referenceId?: string;
|
|
9
|
+
description?: string;
|
|
9
10
|
}
|
|
10
11
|
export interface ListRefundsRequestInterface {
|
|
11
12
|
paymentIds?: string[];
|
|
@@ -30,4 +31,5 @@ export interface RefundInterface {
|
|
|
30
31
|
updated?: Date;
|
|
31
32
|
referenceType?: e.ReferenceType;
|
|
32
33
|
referenceId?: string;
|
|
34
|
+
description?: string;
|
|
33
35
|
}
|
|
@@ -8,6 +8,7 @@ export declare class CreateRefundRequest implements i.CreateRefundRequestInterfa
|
|
|
8
8
|
reason: e.RefundReason;
|
|
9
9
|
referenceType: e.ReferenceType;
|
|
10
10
|
referenceId: string;
|
|
11
|
+
description: string;
|
|
11
12
|
static fromProto(proto: any): CreateRefundRequest;
|
|
12
13
|
constructor(kwargs?: i.CreateRefundRequestInterface);
|
|
13
14
|
toApiJson(): object;
|
|
@@ -41,6 +42,7 @@ export declare class Refund implements i.RefundInterface {
|
|
|
41
42
|
updated: Date;
|
|
42
43
|
referenceType: e.ReferenceType;
|
|
43
44
|
referenceId: string;
|
|
45
|
+
description: string;
|
|
44
46
|
static fromProto(proto: any): Refund;
|
|
45
47
|
constructor(kwargs?: i.RefundInterface);
|
|
46
48
|
toApiJson(): object;
|