@captureid/datatypes 1.0.52 → 1.0.54
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 +25 -1
- package/esm2022/lib/model/common/address-object.mjs +7 -1
- package/esm2022/lib/model/event/pos-event.mjs +9 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/captureid-datatypes.mjs +38 -1
- package/fesm2022/captureid-datatypes.mjs.map +1 -1
- package/lib/enums.d.ts +11 -1
- package/lib/model/common/address-object.d.ts +6 -0
- package/lib/model/event/pos-event.d.ts +9 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
package/lib/enums.d.ts
CHANGED
|
@@ -97,7 +97,8 @@ export declare enum DataType {
|
|
|
97
97
|
STOREINFORMATION = 95,
|
|
98
98
|
POSTERMINAL = 96,
|
|
99
99
|
MANAGEMENT = 97,
|
|
100
|
-
ADDRESSTYPE = 98
|
|
100
|
+
ADDRESSTYPE = 98,
|
|
101
|
+
ADDRESSTOCOMPANY = 99
|
|
101
102
|
}
|
|
102
103
|
export declare enum BookingType {
|
|
103
104
|
UNKNOWN = 0,
|
|
@@ -428,3 +429,12 @@ export declare namespace PaymentEventType {
|
|
|
428
429
|
function valueOf(str: string): number;
|
|
429
430
|
function values(): any[];
|
|
430
431
|
}
|
|
432
|
+
export declare enum PosEventType {
|
|
433
|
+
UNKNOWN = 0,
|
|
434
|
+
CHECKOUT = 1,
|
|
435
|
+
PAYMENT = 2
|
|
436
|
+
}
|
|
437
|
+
export declare namespace PosEventType {
|
|
438
|
+
function valueOf(str: string): number;
|
|
439
|
+
function values(): any[];
|
|
440
|
+
}
|
|
@@ -38,3 +38,9 @@ export interface AddressTypeObject extends DataObject {
|
|
|
38
38
|
export declare class AddressTypeObject extends DataObject implements AddressTypeObject {
|
|
39
39
|
constructor(data: AddressType[]);
|
|
40
40
|
}
|
|
41
|
+
export interface AddressToCompanyObject extends DataObject {
|
|
42
|
+
data: AddressToCompany[];
|
|
43
|
+
}
|
|
44
|
+
export declare class AddressToCompanyObject extends DataObject implements AddressToCompanyObject {
|
|
45
|
+
constructor(data: AddressToCompany[]);
|
|
46
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -71,6 +71,7 @@ export * from './lib/model/esl/esl-association-object';
|
|
|
71
71
|
export * from './lib/model/esl/esl-template-object';
|
|
72
72
|
export * from './lib/model/esl/esl-update-object';
|
|
73
73
|
export * from './lib/model/event/payment-event';
|
|
74
|
+
export * from './lib/model/event/pos-event';
|
|
74
75
|
export * from './lib/model/labeldesigner/label-designer-object';
|
|
75
76
|
export * from './lib/model/payment/payment-terminal-object';
|
|
76
77
|
export * from './lib/model/payment/payment-detail-object';
|