@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/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
+ }
@@ -0,0 +1,9 @@
1
+ import { PosEventType } from "../../enums";
2
+ import { DataDto } from "../data-dto";
3
+ export interface PosEvent {
4
+ eventtype: PosEventType;
5
+ data: DataDto;
6
+ }
7
+ export declare class PosEvent implements PosEvent {
8
+ constructor();
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@captureid/datatypes",
3
- "version": "1.0.52",
3
+ "version": "1.0.54",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=17.0.0",
6
6
  "@angular/core": ">=17.0.0"
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';