chayns-api 2.4.26 → 2.4.27
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.
|
@@ -851,6 +851,7 @@ export interface Page {
|
|
|
851
851
|
viewMode: number;
|
|
852
852
|
originalTappId?: number;
|
|
853
853
|
apiVersion?: number;
|
|
854
|
+
mainGroupId?: PageMainGroupType;
|
|
854
855
|
}
|
|
855
856
|
export declare enum Gender {
|
|
856
857
|
Unknown = 0,
|
|
@@ -1004,3 +1005,8 @@ export declare enum DialogIconType {
|
|
|
1004
1005
|
export type AnonymousAccountResult = {
|
|
1005
1006
|
token: string;
|
|
1006
1007
|
};
|
|
1008
|
+
export type PageMainGroupType = {
|
|
1009
|
+
Id: 1;
|
|
1010
|
+
Administration: 2;
|
|
1011
|
+
User: 3;
|
|
1012
|
+
};
|