@captureid/datatypes 1.0.58 → 1.0.60

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/lib/enums.d.ts CHANGED
@@ -423,6 +423,8 @@ export declare namespace PaymentCommand {
423
423
  export declare enum PaymentEventType {
424
424
  EVENT_UNKNOWN = 0,
425
425
  EVENT_PAYMENT = 1,
426
+ EVENT_ENDOFDAY = 2,
427
+ EVENT_STATUS = 3,
426
428
  EVENT_HEARTBEAT = 10
427
429
  }
428
430
  export declare namespace PaymentEventType {
@@ -5,11 +5,11 @@ export interface CalendarEntry {
5
5
  title: string;
6
6
  type: CalendarType;
7
7
  description?: string;
8
- startDate: Date;
9
- endDate: Date;
8
+ startdate: Date;
9
+ enddate: Date;
10
10
  }
11
11
  export declare class CalendarEntry implements CalendarEntry {
12
- constructor(id?: string, title?: string, type?: CalendarType, description?: string, startDate?: Date, endDate?: Date);
12
+ constructor(id?: string, title?: string, type?: CalendarType, description?: string, startdate?: Date, enddate?: Date);
13
13
  }
14
14
  export interface CalendarObject {
15
15
  data: CalendarEntry[];
@@ -19,9 +19,10 @@ export interface AddressToCompany {
19
19
  id?: string;
20
20
  address: Address;
21
21
  company: Company;
22
- type: AddressType;
22
+ addresstype: AddressType;
23
23
  }
24
24
  export declare class AddressToCompany implements AddressToCompany {
25
+ constructor(id?: string, address?: Address, company?: Company, addresstype?: AddressType);
25
26
  }
26
27
  export interface CompanyObject {
27
28
  data: Company[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@captureid/datatypes",
3
- "version": "1.0.58",
3
+ "version": "1.0.60",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=17.0.0",
6
6
  "@angular/core": ">=17.0.0"