@evergis/api 5.0.13 → 5.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/dist/__generated__/CatalogService.d.ts +0 -12
- package/dist/__generated__/RemoteTaskManagerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +34 -251
- package/dist/api.esm.js +1 -142
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +0 -141
- package/dist/index.js.map +1 -1
- package/dist/services/ClientSettings.d.ts +4 -50
- package/package.json +2 -2
|
@@ -5,58 +5,12 @@ export declare class ClientSettings extends ClientSettingsService {
|
|
|
5
5
|
fetchClientSettings(query: GetConfigurationParams): Promise<ClientConfiguration>;
|
|
6
6
|
updateClientSettings(update: Partial<ClientConfiguration>): void;
|
|
7
7
|
}
|
|
8
|
-
export
|
|
9
|
-
username?: string;
|
|
10
|
-
workspace?: string;
|
|
11
|
-
email?: string;
|
|
12
|
-
pk?: string;
|
|
13
|
-
first_name?: string;
|
|
14
|
-
last_name?: string;
|
|
15
|
-
is_password_set?: boolean;
|
|
16
|
-
description?: string;
|
|
17
|
-
is_subscribed?: boolean;
|
|
18
|
-
profile_photo?: string;
|
|
19
|
-
social?: unknown;
|
|
20
|
-
is_open_last_project?: boolean;
|
|
21
|
-
position?: string;
|
|
22
|
-
company?: string;
|
|
23
|
-
location?: string;
|
|
24
|
-
};
|
|
25
|
-
type MenuConfig = {
|
|
26
|
-
title: string;
|
|
27
|
-
icon: string;
|
|
28
|
-
};
|
|
29
|
-
type LayoutConfig = {
|
|
30
|
-
area?: string;
|
|
31
|
-
menu?: MenuConfig;
|
|
32
|
-
resizable?: boolean;
|
|
33
|
-
};
|
|
34
|
-
export type RouteConfig = string | {
|
|
35
|
-
name: string;
|
|
36
|
-
payload?: {
|
|
37
|
-
panel: string | string[];
|
|
38
|
-
};
|
|
39
|
-
default?: boolean;
|
|
40
|
-
type?: string;
|
|
41
|
-
};
|
|
42
|
-
export interface ModuleConfig {
|
|
43
|
-
name: string;
|
|
44
|
-
modulePath: string;
|
|
45
|
-
route?: RouteConfig;
|
|
46
|
-
layoutOptions?: LayoutConfig;
|
|
47
|
-
priority?: number;
|
|
48
|
-
options?: Record<string, any>;
|
|
49
|
-
submodules?: ModuleConfig[];
|
|
50
|
-
preload?: boolean;
|
|
51
|
-
}
|
|
52
|
-
export type ConnectionSettings = {
|
|
8
|
+
export interface ConnectionSettings {
|
|
53
9
|
url: string;
|
|
54
10
|
login?: string;
|
|
55
11
|
password?: string;
|
|
56
12
|
session_id?: string;
|
|
57
|
-
}
|
|
58
|
-
export
|
|
13
|
+
}
|
|
14
|
+
export interface ClientConfiguration {
|
|
59
15
|
connection: ConnectionSettings;
|
|
60
|
-
|
|
61
|
-
};
|
|
62
|
-
export {};
|
|
16
|
+
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "5.0.
|
|
2
|
+
"version": "5.0.15",
|
|
3
3
|
"name": "@evergis/api",
|
|
4
4
|
"author": "Everpoint",
|
|
5
5
|
"license": "MIT",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"query-string": "^6.7.0",
|
|
27
27
|
"swagger-typescript-api": "13.0.23"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "e31017c3270282d011e205116f30cc2ca691741b"
|
|
30
30
|
}
|