@vendasta/billing 10.9.1 → 10.9.3
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/payment.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/payment.mjs +7 -4
- package/fesm2015/vendasta-billing.mjs +6 -3
- package/fesm2015/vendasta-billing.mjs.map +1 -1
- package/fesm2020/vendasta-billing.mjs +6 -3
- package/fesm2020/vendasta-billing.mjs.map +1 -1
- package/lib/_internal/interfaces/payment.interface.d.ts +2 -1
- package/lib/_internal/objects/payment.d.ts +2 -1
- package/package.json +1 -1
|
@@ -10,7 +10,7 @@ export interface AdjustmentInterface {
|
|
|
10
10
|
net?: number;
|
|
11
11
|
refund?: RetailRefundInterface;
|
|
12
12
|
dispute?: DisputeInterface;
|
|
13
|
-
created?:
|
|
13
|
+
created?: Date;
|
|
14
14
|
}
|
|
15
15
|
export interface RetailPaymentCardDetailsInterface {
|
|
16
16
|
cardType?: e.CardType;
|
|
@@ -151,6 +151,7 @@ export interface ListRetailTransactionsRequestListRetailTransactionsFiltersInter
|
|
|
151
151
|
createdDateGte?: Date;
|
|
152
152
|
createdDateLte?: Date;
|
|
153
153
|
type?: e.RetailTransactionType;
|
|
154
|
+
customerId?: string;
|
|
154
155
|
}
|
|
155
156
|
export interface ListRetailTransactionsRequestInterface {
|
|
156
157
|
merchantId?: string;
|
|
@@ -12,7 +12,7 @@ export declare class Adjustment implements i.AdjustmentInterface {
|
|
|
12
12
|
net: number;
|
|
13
13
|
refund: RetailRefund;
|
|
14
14
|
dispute: Dispute;
|
|
15
|
-
created:
|
|
15
|
+
created: Date;
|
|
16
16
|
static fromProto(proto: any): Adjustment;
|
|
17
17
|
constructor(kwargs?: i.AdjustmentInterface);
|
|
18
18
|
toApiJson(): object;
|
|
@@ -234,6 +234,7 @@ export declare class ListRetailTransactionsRequestListRetailTransactionsFilters
|
|
|
234
234
|
createdDateGte: Date;
|
|
235
235
|
createdDateLte: Date;
|
|
236
236
|
type: e.RetailTransactionType;
|
|
237
|
+
customerId: string;
|
|
237
238
|
static fromProto(proto: any): ListRetailTransactionsRequestListRetailTransactionsFilters;
|
|
238
239
|
constructor(kwargs?: i.ListRetailTransactionsRequestListRetailTransactionsFiltersInterface);
|
|
239
240
|
toApiJson(): object;
|