@captureid/datatypes 1.0.12 → 1.0.14

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
@@ -82,7 +82,8 @@ export declare enum DataType {
82
82
  WEBTEMPLATE = 80,
83
83
  EMAILTEMPLATE = 81,
84
84
  JOURNAL = 82,
85
- FILEIMPORT = 83
85
+ FILEIMPORT = 83,
86
+ BUILDINGACCESS = 84
86
87
  }
87
88
  export declare enum BookingType {
88
89
  UNKNOWN = 0,
@@ -0,0 +1,16 @@
1
+ import { DataObject } from "../data-object";
2
+ export interface BuildingAccess {
3
+ id: string;
4
+ userid: string;
5
+ buildingid: string;
6
+ }
7
+ export declare class BuildingAccess implements BuildingAccess {
8
+ constructor(id?: string, userid?: string, buildingid?: string);
9
+ }
10
+ export interface BuildingAccessObject {
11
+ data: BuildingAccess[];
12
+ }
13
+ export declare class BuildingAccessObject extends DataObject implements BuildingAccessObject {
14
+ constructor(data: BuildingAccess[]);
15
+ getEntryCount(): number;
16
+ }
@@ -11,7 +11,7 @@ export interface Stock {
11
11
  companyid: string;
12
12
  }
13
13
  export declare class Stock implements Stock {
14
- constructor(id: string, name: string, room: Room, shelf: Shelf[], row: number, ownerid: string, companyid?: string);
14
+ constructor(id?: string, name?: string, room?: Room, shelf?: Shelf[], row?: number, ownerid?: string, companyid?: string);
15
15
  }
16
16
  export interface StockObject {
17
17
  data: Stock[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@captureid/datatypes",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=17.0.0",
6
6
  "@angular/core": ">=17.0.0"
package/public-api.d.ts CHANGED
@@ -36,6 +36,7 @@ export * from './lib/model/common/farmingmethod-object';
36
36
  export * from './lib/model/common/chat-object';
37
37
  export * from './lib/model/common/ticket-object';
38
38
  export * from './lib/model/common/fileimport-object';
39
+ export * from './lib/model/common/buildingaccess-object';
39
40
  export * from './lib/model/configuration/menu-object';
40
41
  export * from './lib/model/erp/items/dimension-object';
41
42
  export * from './lib/model/erp/items/gtin';