@captureid/datatypes 1.0.79 → 1.0.80
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/enterprise-object.mjs +22 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/captureid-datatypes.mjs +97 -77
- package/fesm2022/captureid-datatypes.mjs.map +1 -1
- package/lib/enums.d.ts +2 -1
- package/lib/model/common/enterprise-object.d.ts +17 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
package/lib/enums.d.ts
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { DataObject } from "../data-object";
|
|
2
|
+
export interface EnterpriseNode {
|
|
3
|
+
label: string;
|
|
4
|
+
expanded: boolean;
|
|
5
|
+
data?: any;
|
|
6
|
+
children: EnterpriseNode[];
|
|
7
|
+
}
|
|
8
|
+
export declare class EnterpriseNode implements EnterpriseNode {
|
|
9
|
+
constructor(label?: string, expanded?: boolean, data?: any, children?: EnterpriseNode[]);
|
|
10
|
+
}
|
|
11
|
+
export interface EnterpriseObject {
|
|
12
|
+
data: EnterpriseNode[];
|
|
13
|
+
}
|
|
14
|
+
export declare class EnterpriseObject extends DataObject implements EnterpriseObject {
|
|
15
|
+
constructor(data: EnterpriseNode[]);
|
|
16
|
+
getEntryCount(): number;
|
|
17
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export * from './lib/model/common/store-object';
|
|
|
44
44
|
export * from './lib/model/common/calendar-object';
|
|
45
45
|
export * from './lib/model/common/pos-terminal-object';
|
|
46
46
|
export * from './lib/model/common/userprofile-object';
|
|
47
|
+
export * from './lib/model/common/enterprise-object';
|
|
47
48
|
export * from './lib/model/common/security-profile-object';
|
|
48
49
|
export * from './lib/model/configuration/menu-object';
|
|
49
50
|
export * from './lib/model/messaging/topic-object';
|