@captureid/datatypes 1.0.53 → 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,
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@captureid/datatypes",
3
- "version": "1.0.53",
3
+ "version": "1.0.54",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=17.0.0",
6
6
  "@angular/core": ">=17.0.0"