@captureid/datatypes 1.0.59 → 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/esm2022/lib/enums.mjs +3 -1
- package/esm2022/lib/model/common/calendar-object.mjs +4 -4
- package/fesm2022/captureid-datatypes.mjs +5 -3
- package/fesm2022/captureid-datatypes.mjs.map +1 -1
- package/lib/enums.d.ts +2 -0
- package/lib/model/common/calendar-object.d.ts +3 -3
- package/package.json +1 -1
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
|
-
|
|
9
|
-
|
|
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,
|
|
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[];
|