@techextensor/tab-core-utility 2.1.6 → 2.1.7
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/.eslintrc.json +92 -0
- package/README.md +7 -0
- package/jest.config.ts +22 -0
- package/ng-package.json +7 -0
- package/package.json +18 -31
- package/project.json +42 -0
- package/{index.d.ts → src/index.ts} +77 -53
- package/src/lib/tab-core-utility/app/constants/api-constants.ts +33 -0
- package/src/lib/tab-core-utility/app/constants/common.ts +34 -0
- package/src/lib/tab-core-utility/app/constants/error-messages.ts +21 -0
- package/src/lib/tab-core-utility/app/constants/storage-constants.ts +17 -0
- package/src/lib/tab-core-utility/app/crud/tab-delete.service.ts +144 -0
- package/src/lib/tab-core-utility/app/crud/tab-get.service.ts +160 -0
- package/src/lib/tab-core-utility/app/crud/tab-insert.service.ts +75 -0
- package/src/lib/tab-core-utility/app/crud/tab-update.service.ts +105 -0
- package/src/lib/tab-core-utility/app/crud/tab-workflow.service.ts +39 -0
- package/src/lib/tab-core-utility/app/enums/controllers.enum.ts +24 -0
- package/src/lib/tab-core-utility/app/enums/dsq.enum.ts +46 -0
- package/src/lib/tab-core-utility/app/enums/permission.enum.ts +18 -0
- package/src/lib/tab-core-utility/app/enums/query.enum.ts +12 -0
- package/src/lib/tab-core-utility/app/enums/workflow.enum.ts +35 -0
- package/src/lib/tab-core-utility/app/helpers/common/app.helpers.ts +65 -0
- package/src/lib/tab-core-utility/app/helpers/common/dsq.helpers.ts +80 -0
- package/src/lib/tab-core-utility/app/helpers/common/req-res.helpers.ts +75 -0
- package/src/lib/tab-core-utility/app/helpers/common/where-clause.helpers.ts +262 -0
- package/src/lib/tab-core-utility/app/helpers/screen/forms.helpers.ts +33 -0
- package/src/lib/tab-core-utility/app/helpers/screen/grid-column-data.helpers.ts +88 -0
- package/src/lib/tab-core-utility/app/helpers/screen/grid.helpers.ts +113 -0
- package/src/lib/tab-core-utility/app/helpers/screen/media-upload.helpers.ts +74 -0
- package/src/lib/tab-core-utility/app/helpers/screen/plugin.helpers.ts +52 -0
- package/src/lib/tab-core-utility/app/helpers/screen/screen.helpers.ts +20 -0
- package/{lib/tab-core-utility/app/interfaces/auth.interface.d.ts → src/lib/tab-core-utility/app/interfaces/auth.interface.ts} +18 -15
- package/src/lib/tab-core-utility/app/interfaces/common-api.interface.ts +27 -0
- package/src/lib/tab-core-utility/app/interfaces/grid.interface.ts +118 -0
- package/src/lib/tab-core-utility/app/interfaces/orgInfo.interface.ts +34 -0
- package/src/lib/tab-core-utility/app/interfaces/schema.interface.ts +11 -0
- package/src/lib/tab-core-utility/app/interfaces/user.interface.ts +91 -0
- package/src/lib/tab-core-utility/app/models/api-query.class.ts +92 -0
- package/src/lib/tab-core-utility/app/models/app-object.class.ts +87 -0
- package/src/lib/tab-core-utility/app/models/common.class.ts +30 -0
- package/src/lib/tab-core-utility/app/models/data-source-queries.class.ts +114 -0
- package/src/lib/tab-core-utility/app/utils/filter.util.ts +78 -0
- package/src/lib/tab-core-utility/app/utils/form-builder.util.ts +31 -0
- package/src/lib/tab-core-utility/app/utils/json.util.ts +137 -0
- package/src/lib/tab-core-utility/app/utils/operators.util.ts +129 -0
- package/src/lib/tab-core-utility/app/utils/req-res.util.ts +189 -0
- package/src/lib/tab-core-utility/app/utils/tab-app.util.ts +131 -0
- package/src/lib/tab-core-utility/auth/auth.service.spec.ts +167 -0
- package/src/lib/tab-core-utility/auth/auth.service.ts +91 -0
- package/src/lib/tab-core-utility/auth/idb-storage.service.ts +77 -0
- package/src/lib/tab-core-utility/auth/local-storage.service.spec.ts +47 -0
- package/src/lib/tab-core-utility/auth/local-storage.service.ts +46 -0
- package/src/lib/tab-core-utility/auth/session-storage.service.spec.ts +47 -0
- package/src/lib/tab-core-utility/auth/session-storage.service.ts +46 -0
- package/src/lib/tab-core-utility/core/error-handler/error-handler-interceptor.service.ts +32 -0
- package/src/lib/tab-core-utility/core/error-handler/error-handler.store.spec.ts +16 -0
- package/src/lib/tab-core-utility/core/error-handler/error-handler.store.ts +26 -0
- package/src/lib/tab-core-utility/core/error-handler/models/error-handler.state.ts +9 -0
- package/src/lib/tab-core-utility/core/http-client/api-url.token.ts +4 -0
- package/src/lib/tab-core-utility/core/http-client/api.service.spec.ts +18 -0
- package/src/lib/tab-core-utility/core/http-client/api.service.ts +105 -0
- package/src/lib/tab-core-utility/core/util/auth.utils.ts +22 -0
- package/src/lib/tab-core-utility/store/auth.store.ts +54 -0
- package/src/lib/tab-core-utility/store/orginfo.store.ts +57 -0
- package/src/lib/tab-core-utility/store/schema.store.ts +85 -0
- package/src/test-setup.ts +8 -0
- package/tsconfig.json +29 -0
- package/tsconfig.lib.json +17 -0
- package/tsconfig.lib.prod.json +7 -0
- package/tsconfig.spec.json +16 -0
- package/esm2022/index.mjs +0 -64
- package/esm2022/lib/tab-core-utility/app/constants/api-constants.mjs +0 -33
- package/esm2022/lib/tab-core-utility/app/constants/common.mjs +0 -25
- package/esm2022/lib/tab-core-utility/app/constants/error-messages.mjs +0 -13
- package/esm2022/lib/tab-core-utility/app/constants/storage-constants.mjs +0 -16
- package/esm2022/lib/tab-core-utility/app/crud/tab-delete.service.mjs +0 -145
- package/esm2022/lib/tab-core-utility/app/crud/tab-get.service.mjs +0 -131
- package/esm2022/lib/tab-core-utility/app/crud/tab-insert.service.mjs +0 -77
- package/esm2022/lib/tab-core-utility/app/crud/tab-update.service.mjs +0 -105
- package/esm2022/lib/tab-core-utility/app/crud/tab-workflow.service.mjs +0 -43
- package/esm2022/lib/tab-core-utility/app/enums/controllers.enum.mjs +0 -26
- package/esm2022/lib/tab-core-utility/app/enums/dsq.enum.mjs +0 -48
- package/esm2022/lib/tab-core-utility/app/enums/permission.enum.mjs +0 -20
- package/esm2022/lib/tab-core-utility/app/enums/query.enum.mjs +0 -14
- package/esm2022/lib/tab-core-utility/app/enums/workflow.enum.mjs +0 -37
- package/esm2022/lib/tab-core-utility/app/helpers/common/app.helpers.mjs +0 -68
- package/esm2022/lib/tab-core-utility/app/helpers/common/dsq.helpers.mjs +0 -70
- package/esm2022/lib/tab-core-utility/app/helpers/common/req-res.helpers.mjs +0 -64
- package/esm2022/lib/tab-core-utility/app/helpers/common/where-clause.helpers.mjs +0 -208
- package/esm2022/lib/tab-core-utility/app/helpers/screen/forms.helpers.mjs +0 -38
- package/esm2022/lib/tab-core-utility/app/helpers/screen/grid-column-data.helpers.mjs +0 -78
- package/esm2022/lib/tab-core-utility/app/helpers/screen/grid.helpers.mjs +0 -112
- package/esm2022/lib/tab-core-utility/app/helpers/screen/media-upload.helpers.mjs +0 -77
- package/esm2022/lib/tab-core-utility/app/helpers/screen/plugin.helpers.mjs +0 -55
- package/esm2022/lib/tab-core-utility/app/helpers/screen/screen.helpers.mjs +0 -26
- package/esm2022/lib/tab-core-utility/app/interfaces/auth.interface.mjs +0 -2
- package/esm2022/lib/tab-core-utility/app/interfaces/common-api.interface.mjs +0 -2
- package/esm2022/lib/tab-core-utility/app/interfaces/grid.interface.mjs +0 -3
- package/esm2022/lib/tab-core-utility/app/interfaces/orgInfo.interface.mjs +0 -2
- package/esm2022/lib/tab-core-utility/app/interfaces/schema.interface.mjs +0 -2
- package/esm2022/lib/tab-core-utility/app/interfaces/user.interface.mjs +0 -2
- package/esm2022/lib/tab-core-utility/app/models/api-query.class.mjs +0 -47
- package/esm2022/lib/tab-core-utility/app/models/app-object.class.mjs +0 -30
- package/esm2022/lib/tab-core-utility/app/models/common.class.mjs +0 -12
- package/esm2022/lib/tab-core-utility/app/models/data-source-queries.class.mjs +0 -31
- package/esm2022/lib/tab-core-utility/app/utils/filter.util.mjs +0 -75
- package/esm2022/lib/tab-core-utility/app/utils/form-builder.util.mjs +0 -39
- package/esm2022/lib/tab-core-utility/app/utils/json.util.mjs +0 -138
- package/esm2022/lib/tab-core-utility/app/utils/operators.util.mjs +0 -129
- package/esm2022/lib/tab-core-utility/app/utils/req-res.util.mjs +0 -168
- package/esm2022/lib/tab-core-utility/app/utils/tab-app.util.mjs +0 -99
- package/esm2022/lib/tab-core-utility/auth/auth.service.mjs +0 -74
- package/esm2022/lib/tab-core-utility/auth/idb-storage.service.mjs +0 -69
- package/esm2022/lib/tab-core-utility/auth/local-storage.service.mjs +0 -52
- package/esm2022/lib/tab-core-utility/auth/session-storage.service.mjs +0 -52
- package/esm2022/lib/tab-core-utility/core/error-handler/error-handler-interceptor.service.mjs +0 -26
- package/esm2022/lib/tab-core-utility/core/error-handler/error-handler.store.mjs +0 -21
- package/esm2022/lib/tab-core-utility/core/error-handler/models/error-handler.state.mjs +0 -5
- package/esm2022/lib/tab-core-utility/core/http-client/api-url.token.mjs +0 -4
- package/esm2022/lib/tab-core-utility/core/http-client/api.service.mjs +0 -99
- package/esm2022/lib/tab-core-utility/core/util/auth.utils.mjs +0 -21
- package/esm2022/lib/tab-core-utility/store/auth.store.mjs +0 -43
- package/esm2022/lib/tab-core-utility/store/orginfo.store.mjs +0 -42
- package/esm2022/lib/tab-core-utility/store/schema.store.mjs +0 -68
- package/esm2022/techextensor-tab-core-utility.mjs +0 -5
- package/lib/tab-core-utility/app/constants/api-constants.d.ts +0 -30
- package/lib/tab-core-utility/app/constants/common.d.ts +0 -8
- package/lib/tab-core-utility/app/constants/error-messages.d.ts +0 -6
- package/lib/tab-core-utility/app/constants/storage-constants.d.ts +0 -15
- package/lib/tab-core-utility/app/crud/tab-delete.service.d.ts +0 -51
- package/lib/tab-core-utility/app/crud/tab-get.service.d.ts +0 -58
- package/lib/tab-core-utility/app/crud/tab-insert.service.d.ts +0 -37
- package/lib/tab-core-utility/app/crud/tab-update.service.d.ts +0 -14
- package/lib/tab-core-utility/app/crud/tab-workflow.service.d.ts +0 -20
- package/lib/tab-core-utility/app/enums/controllers.enum.d.ts +0 -24
- package/lib/tab-core-utility/app/enums/dsq.enum.d.ts +0 -42
- package/lib/tab-core-utility/app/enums/permission.enum.d.ts +0 -16
- package/lib/tab-core-utility/app/enums/query.enum.d.ts +0 -11
- package/lib/tab-core-utility/app/enums/workflow.enum.d.ts +0 -30
- package/lib/tab-core-utility/app/helpers/common/app.helpers.d.ts +0 -31
- package/lib/tab-core-utility/app/helpers/common/dsq.helpers.d.ts +0 -32
- package/lib/tab-core-utility/app/helpers/common/req-res.helpers.d.ts +0 -62
- package/lib/tab-core-utility/app/helpers/common/where-clause.helpers.d.ts +0 -82
- package/lib/tab-core-utility/app/helpers/screen/forms.helpers.d.ts +0 -11
- package/lib/tab-core-utility/app/helpers/screen/grid-column-data.helpers.d.ts +0 -33
- package/lib/tab-core-utility/app/helpers/screen/grid.helpers.d.ts +0 -63
- package/lib/tab-core-utility/app/helpers/screen/media-upload.helpers.d.ts +0 -38
- package/lib/tab-core-utility/app/helpers/screen/plugin.helpers.d.ts +0 -25
- package/lib/tab-core-utility/app/helpers/screen/screen.helpers.d.ts +0 -11
- package/lib/tab-core-utility/app/interfaces/common-api.interface.d.ts +0 -24
- package/lib/tab-core-utility/app/interfaces/grid.interface.d.ts +0 -110
- package/lib/tab-core-utility/app/interfaces/orgInfo.interface.d.ts +0 -31
- package/lib/tab-core-utility/app/interfaces/schema.interface.d.ts +0 -11
- package/lib/tab-core-utility/app/interfaces/user.interface.d.ts +0 -84
- package/lib/tab-core-utility/app/models/api-query.class.d.ts +0 -69
- package/lib/tab-core-utility/app/models/app-object.class.d.ts +0 -74
- package/lib/tab-core-utility/app/models/common.class.d.ts +0 -24
- package/lib/tab-core-utility/app/models/data-source-queries.class.d.ts +0 -95
- package/lib/tab-core-utility/app/utils/filter.util.d.ts +0 -30
- package/lib/tab-core-utility/app/utils/form-builder.util.d.ts +0 -13
- package/lib/tab-core-utility/app/utils/json.util.d.ts +0 -25
- package/lib/tab-core-utility/app/utils/operators.util.d.ts +0 -21
- package/lib/tab-core-utility/app/utils/req-res.util.d.ts +0 -61
- package/lib/tab-core-utility/app/utils/tab-app.util.d.ts +0 -48
- package/lib/tab-core-utility/auth/auth.service.d.ts +0 -53
- package/lib/tab-core-utility/auth/idb-storage.service.d.ts +0 -14
- package/lib/tab-core-utility/auth/local-storage.service.d.ts +0 -22
- package/lib/tab-core-utility/auth/session-storage.service.d.ts +0 -22
- package/lib/tab-core-utility/core/error-handler/error-handler-interceptor.service.d.ts +0 -3
- package/lib/tab-core-utility/core/error-handler/error-handler.store.d.ts +0 -10
- package/lib/tab-core-utility/core/error-handler/models/error-handler.state.d.ts +0 -5
- package/lib/tab-core-utility/core/http-client/api-url.token.d.ts +0 -3
- package/lib/tab-core-utility/core/http-client/api.service.d.ts +0 -65
- package/lib/tab-core-utility/core/util/auth.utils.d.ts +0 -9
- package/lib/tab-core-utility/store/auth.store.d.ts +0 -19
- package/lib/tab-core-utility/store/orginfo.store.d.ts +0 -22
- package/lib/tab-core-utility/store/schema.store.d.ts +0 -32
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import { HttpParams, HttpHeaders } from '@angular/common/http';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ApiService {
|
|
5
|
-
private readonly http;
|
|
6
|
-
private readonly api_url;
|
|
7
|
-
private readonly workflow_url;
|
|
8
|
-
/**
|
|
9
|
-
* Makes an HTTP GET request to retrieve data from the specified URL.
|
|
10
|
-
* @param endPointName The URL for the HTTP GET request.
|
|
11
|
-
* @param params The query parameters for the request (default is an empty HttpParams object).
|
|
12
|
-
* @param reqHeader The custom headers for the request (optional).
|
|
13
|
-
* @returns An Observable emitting the response data of type T.
|
|
14
|
-
*/
|
|
15
|
-
get<T>(endPointName: string, params?: HttpParams, reqHeader?: HttpHeaders): Observable<any>;
|
|
16
|
-
/**
|
|
17
|
-
* Makes an HTTP POST request to send data to the specified URL.
|
|
18
|
-
* @param endPointName The URL for the HTTP POST request.
|
|
19
|
-
* @param data The data to send with the request (optional).
|
|
20
|
-
* @param reqHeader The custom headers for the request (optional).
|
|
21
|
-
* @returns An Observable emitting the response data of type T.
|
|
22
|
-
*/
|
|
23
|
-
post<T, D>(endPointName: string, data?: D, reqHeader?: HttpHeaders): Observable<any>;
|
|
24
|
-
/**
|
|
25
|
-
* Makes an HTTP PUT request to update data at the specified URL.
|
|
26
|
-
* @param endPointName The URL for the HTTP PUT request.
|
|
27
|
-
* @param data The data to send with the request.
|
|
28
|
-
* @param reqHeader The custom headers for the request (optional).
|
|
29
|
-
* @returns An Observable emitting the response data of type T.
|
|
30
|
-
*/
|
|
31
|
-
put<T, D>(endPointName: string, data: D, reqHeader?: HttpHeaders): Observable<any>;
|
|
32
|
-
/**
|
|
33
|
-
* Makes an HTTP DELETE request to delete data from the specified URL.
|
|
34
|
-
* @param endPointName The URL for the HTTP DELETE request.
|
|
35
|
-
* @param reqHeader The custom headers for the request (optional).
|
|
36
|
-
* @returns An Observable emitting the response data of type T.
|
|
37
|
-
*/
|
|
38
|
-
delete<T>(endPointName: string, reqHeader?: HttpHeaders): Observable<any>;
|
|
39
|
-
/**
|
|
40
|
-
* Makes an HTTP GET request to retrieve blob data with custom headers.
|
|
41
|
-
* @param endPointName The URL for the HTTP request.
|
|
42
|
-
* @param params The query parameters for the request.
|
|
43
|
-
* @param reqHeader The custom headers for the request.
|
|
44
|
-
* @returns An Observable emitting the response as a Blob.
|
|
45
|
-
*/
|
|
46
|
-
getBlob<T>(endPointName: string, params?: HttpParams, reqHeader?: HttpHeaders): Observable<any>;
|
|
47
|
-
/**
|
|
48
|
-
* Makes an HTTP POST request to send data and retrieve blob data with custom headers.
|
|
49
|
-
* @param endPointName The URL for the HTTP request.
|
|
50
|
-
* @param data The data to send with the request.
|
|
51
|
-
* @param reqHeader The custom headers for the request.
|
|
52
|
-
* @returns An Observable emitting the response as a Blob.
|
|
53
|
-
*/
|
|
54
|
-
postBlob<T, D>(endPointName: string, data?: D, reqHeader?: HttpHeaders): Observable<any>;
|
|
55
|
-
/**
|
|
56
|
-
* Makes an HTTP POST request to the specified endpoint for Workflow.
|
|
57
|
-
* @param endPointName The endpoint for the HTTP POST request.
|
|
58
|
-
* @param data The data to send with the request (optional).
|
|
59
|
-
* @param reqHeader The custom headers for the request (optional).
|
|
60
|
-
* @returns An Observable emitting the response data of type T.
|
|
61
|
-
*/
|
|
62
|
-
postWorkflow<T, D>(endPointName: string, data?: D, reqHeader?: HttpHeaders): Observable<any>;
|
|
63
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ApiService, never>;
|
|
64
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ApiService>;
|
|
65
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { Observable } from "rxjs";
|
|
2
|
-
import { LoginUserRequest } from "../app/interfaces/auth.interface";
|
|
3
|
-
export declare const authStore: import("@angular/core").Type<{
|
|
4
|
-
name: import("@angular/core").Signal<string>;
|
|
5
|
-
token: import("@angular/core").Signal<string>;
|
|
6
|
-
id: import("@angular/core").Signal<any>;
|
|
7
|
-
email: import("@angular/core").Signal<string>;
|
|
8
|
-
avatar: import("@angular/core").Signal<string>;
|
|
9
|
-
status: import("@angular/core").Signal<string>;
|
|
10
|
-
checkUserlogin: () => boolean;
|
|
11
|
-
login: (API_URL: string, credentials: LoginUserRequest) => Observable<any>;
|
|
12
|
-
} & import("@ngrx/signals").StateSignal<{
|
|
13
|
-
name: string;
|
|
14
|
-
token: string;
|
|
15
|
-
id: any;
|
|
16
|
-
email: string;
|
|
17
|
-
avatar: string;
|
|
18
|
-
status: string;
|
|
19
|
-
}>>;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
export declare const OrgInfoStore: import("@angular/core").Type<{
|
|
2
|
-
FavIcon: import("@angular/core").Signal<string>;
|
|
3
|
-
Org_Brand_Color: import("@angular/core").Signal<string>;
|
|
4
|
-
Org_Logo: import("@angular/core").Signal<string>;
|
|
5
|
-
Org_Menu_Logo: import("@angular/core").Signal<string>;
|
|
6
|
-
ShowSignUp: import("@angular/core").Signal<string>;
|
|
7
|
-
TagLine: import("@angular/core").Signal<string>;
|
|
8
|
-
profileScreenID: import("@angular/core").Signal<string>;
|
|
9
|
-
workFlowName: import("@angular/core").Signal<string>;
|
|
10
|
-
OrganizationName: import("@angular/core").Signal<string>;
|
|
11
|
-
getOrganizationInformation: (orgInfoData: any) => void;
|
|
12
|
-
} & import("@ngrx/signals").StateSignal<{
|
|
13
|
-
FavIcon: string;
|
|
14
|
-
Org_Brand_Color: string;
|
|
15
|
-
Org_Logo: string;
|
|
16
|
-
Org_Menu_Logo: string;
|
|
17
|
-
ShowSignUp: string;
|
|
18
|
-
TagLine: string;
|
|
19
|
-
profileScreenID: string;
|
|
20
|
-
workFlowName: string;
|
|
21
|
-
OrganizationName: string;
|
|
22
|
-
}>>;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
export declare const SchemaStore: import("@angular/core").Type<{
|
|
2
|
-
ID: import("@angular/core").Signal<any>;
|
|
3
|
-
AppName: import("@angular/core").Signal<any>;
|
|
4
|
-
DisplayName: import("@angular/core").Signal<any>;
|
|
5
|
-
PlatformVersion: import("@angular/core").Signal<any>;
|
|
6
|
-
AppVersion: import("@angular/core").Signal<any>;
|
|
7
|
-
Description: import("@angular/core").Signal<any>;
|
|
8
|
-
AppObjects: import("@angular/core").Signal<import("../app/models/app-object.class").AppObject[]>;
|
|
9
|
-
AppScreens: import("@angular/core").Signal<import("../app/models/app-object.class").AppScreen[]>;
|
|
10
|
-
AppMenus: import("@angular/core").Signal<import("../app/models/app-object.class").AppMenu[]>;
|
|
11
|
-
AppConfigurations: import("@angular/core").Signal<import("@techextensor/tab-core-utility").Configurations[]>;
|
|
12
|
-
Roles?: import("@angular/core").Signal<import("@techextensor/tab-core-utility").Role[] | undefined> | undefined;
|
|
13
|
-
Profiles?: import("@angular/core").Signal<import("@techextensor/tab-core-utility").Profile[] | undefined> | undefined;
|
|
14
|
-
WorkFlows: import("@angular/core").Signal<any[]>;
|
|
15
|
-
Plugins: import("@angular/core").Signal<any[]>;
|
|
16
|
-
getSchemaInformation: () => Promise<void>;
|
|
17
|
-
} & import("@ngrx/signals").StateSignal<{
|
|
18
|
-
ID: any;
|
|
19
|
-
AppName: any;
|
|
20
|
-
DisplayName: any;
|
|
21
|
-
PlatformVersion: any;
|
|
22
|
-
AppVersion: any;
|
|
23
|
-
Description: any;
|
|
24
|
-
AppObjects: import("../app/models/app-object.class").AppObject[];
|
|
25
|
-
AppScreens: import("../app/models/app-object.class").AppScreen[];
|
|
26
|
-
AppMenus: import("../app/models/app-object.class").AppMenu[];
|
|
27
|
-
AppConfigurations: import("@techextensor/tab-core-utility").Configurations[];
|
|
28
|
-
Roles?: import("@techextensor/tab-core-utility").Role[] | undefined;
|
|
29
|
-
Profiles?: import("@techextensor/tab-core-utility").Profile[] | undefined;
|
|
30
|
-
WorkFlows: any[];
|
|
31
|
-
Plugins: any[];
|
|
32
|
-
}>>;
|