@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.
@@ -10,7 +10,7 @@ export interface AdjustmentInterface {
10
10
  net?: number;
11
11
  refund?: RetailRefundInterface;
12
12
  dispute?: DisputeInterface;
13
- created?: number;
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: number;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/billing",
3
- "version": "10.9.1",
3
+ "version": "10.9.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.0.1",
6
6
  "@angular/core": "^14.0.1"