@captureid/datatypes 1.0.72 → 1.0.73

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
@@ -103,7 +103,8 @@ export declare enum DataType {
103
103
  PREORDERTOCUSTOMER = 101,
104
104
  SECURITYPROFILE = 102,
105
105
  ADVERTISEMENT_IMAGE_TYPE = 103,
106
- IMAGETOADVERTISEMENT = 104
106
+ IMAGETOADVERTISEMENT = 104,
107
+ ADDRESSTOMANUFACTURER = 105
107
108
  }
108
109
  export declare enum BookingType {
109
110
  UNKNOWN = 0,
@@ -1,5 +1,5 @@
1
1
  import { DataObject } from "../data-object";
2
- import { Address } from "./address-object";
2
+ import { Address, AddressType } from "./address-object";
3
3
  export interface Manufacturer {
4
4
  id: string;
5
5
  name: string;
@@ -19,3 +19,18 @@ export interface ManufacturerObject {
19
19
  export declare class ManufacturerObject extends DataObject implements ManufacturerObject {
20
20
  constructor(data: Manufacturer[]);
21
21
  }
22
+ export interface Address2Manufacturer {
23
+ id?: string;
24
+ address?: Address;
25
+ manufacturer?: Manufacturer;
26
+ addresstype?: AddressType;
27
+ }
28
+ export declare class Address2Manufacturer implements Address2Manufacturer {
29
+ constructor(id?: string, address?: Address, manufacturer?: Manufacturer, addresstype?: AddressType);
30
+ }
31
+ export interface AddressToManufacturerObject {
32
+ data: Address2Manufacturer[];
33
+ }
34
+ export declare class AddressToManufacturerObject extends DataObject implements AddressToManufacturerObject {
35
+ constructor(data: Address2Manufacturer[]);
36
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@captureid/datatypes",
3
- "version": "1.0.72",
3
+ "version": "1.0.73",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=17.0.0",
6
6
  "@angular/core": ">=17.0.0"