@captureid/datatypes 1.0.13 → 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/esm2022/lib/enums.mjs +2 -1
- package/esm2022/lib/model/common/buildingaccess-object.mjs +21 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/captureid-datatypes.mjs +77 -58
- package/fesm2022/captureid-datatypes.mjs.map +1 -1
- package/lib/enums.d.ts +2 -1
- package/lib/model/common/buildingaccess-object.d.ts +16 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
package/lib/enums.d.ts
CHANGED
|
@@ -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
|
+
}
|
package/package.json
CHANGED
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';
|