@captureid/datatypes 1.0.13 → 1.0.15
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/lib/model/common/client-object.mjs +1 -1
- package/esm2022/lib/model/common/user-object.mjs +3 -3
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/captureid-datatypes.mjs +79 -60
- 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/lib/model/common/client-object.d.ts +4 -0
- package/lib/model/common/user-object.d.ts +2 -2
- 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
|
+
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { EMailTemplateType, WebTemplateType } from "../../enums";
|
|
2
2
|
import { DataObject } from "../data-object";
|
|
3
|
+
import { ShelfLabel } from "../esl/esl-object";
|
|
3
4
|
import { Company } from "./company-object";
|
|
5
|
+
import { User } from "./user-object";
|
|
4
6
|
export interface WebTemplates {
|
|
5
7
|
id?: string;
|
|
6
8
|
type: WebTemplateType;
|
|
@@ -43,6 +45,8 @@ export interface Client {
|
|
|
43
45
|
logo: string;
|
|
44
46
|
webtemplates: WebTemplates[];
|
|
45
47
|
emailtemplates: EmailTemplates[];
|
|
48
|
+
shelflabels: ShelfLabel[];
|
|
49
|
+
users: User[];
|
|
46
50
|
}
|
|
47
51
|
export declare class Client implements Client {
|
|
48
52
|
}
|
|
@@ -29,10 +29,10 @@ export interface User {
|
|
|
29
29
|
accountNonExpired?: boolean;
|
|
30
30
|
username?: string;
|
|
31
31
|
enabled?: boolean;
|
|
32
|
-
|
|
32
|
+
clientid?: string;
|
|
33
33
|
}
|
|
34
34
|
export declare class User implements User {
|
|
35
|
-
constructor(id?: string, use2FA?: boolean, created?: Date, regstate?: RegistrationState, creator?: string, changed?: Date, changedBy?: string, firstname?: string, lastname?: string, email?: string, role?: string, phone?: string, mobile?: string, city?: string, zipcode?: string, street?: string, no?: string, country?: string, state?: string, dateOfBirth?: string, context?: Context, avatarImg?: Blob, credentialsNonExpired?: boolean, accountNonLocked?: boolean, accountNonExpired?: boolean, username?: string, enabled?: boolean,
|
|
35
|
+
constructor(id?: string, use2FA?: boolean, created?: Date, regstate?: RegistrationState, creator?: string, changed?: Date, changedBy?: string, firstname?: string, lastname?: string, email?: string, role?: string, phone?: string, mobile?: string, city?: string, zipcode?: string, street?: string, no?: string, country?: string, state?: string, dateOfBirth?: string, context?: Context, avatarImg?: Blob, credentialsNonExpired?: boolean, accountNonLocked?: boolean, accountNonExpired?: boolean, username?: string, enabled?: boolean, clientid?: string);
|
|
36
36
|
}
|
|
37
37
|
export interface UserObject {
|
|
38
38
|
data: User[];
|
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';
|