@resolveio/server-lib 20.1.6 → 20.1.8
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/package.json +1 -1
- package/publications.ts +54 -54
package/package.json
CHANGED
package/publications.ts
CHANGED
|
@@ -2,86 +2,86 @@ import { Observable } from 'rxjs';
|
|
|
2
2
|
|
|
3
3
|
export function SERVER_PUBLICATIONS(manager) {
|
|
4
4
|
return {
|
|
5
|
-
usergroups: (
|
|
6
|
-
return <Observable<any>> manager.subscribe('usergroups'
|
|
5
|
+
usergroups: () => {
|
|
6
|
+
return <Observable<any>> manager.subscribe('usergroups');
|
|
7
7
|
},
|
|
8
|
-
cronjobs: (
|
|
9
|
-
return <Observable<any>> manager.subscribe('cronjobs'
|
|
8
|
+
cronjobs: () => {
|
|
9
|
+
return <Observable<any>> manager.subscribe('cronjobs');
|
|
10
10
|
},
|
|
11
|
-
cronjobsReportBuilderWithIdUser: (id_user: string
|
|
12
|
-
return <Observable<any>> manager.subscribe('cronjobsReportBuilderWithIdUser', id_user
|
|
11
|
+
cronjobsReportBuilderWithIdUser: (id_user: string) => {
|
|
12
|
+
return <Observable<any>> manager.subscribe('cronjobsReportBuilderWithIdUser', id_user);
|
|
13
13
|
},
|
|
14
|
-
reportbuilderdashboards: (
|
|
15
|
-
return <Observable<any>> manager.subscribe('reportbuilderdashboards'
|
|
14
|
+
reportbuilderdashboards: () => {
|
|
15
|
+
return <Observable<any>> manager.subscribe('reportbuilderdashboards');
|
|
16
16
|
},
|
|
17
|
-
reportbuilderdashboardWithId: (id_dashboard: string
|
|
18
|
-
return <Observable<any>> manager.subscribe('reportbuilderdashboardWithId', id_dashboard
|
|
17
|
+
reportbuilderdashboardWithId: (id_dashboard: string) => {
|
|
18
|
+
return <Observable<any>> manager.subscribe('reportbuilderdashboardWithId', id_dashboard);
|
|
19
19
|
},
|
|
20
|
-
loggedInUsers: (
|
|
21
|
-
return <Observable<any>> manager.subscribe('loggedInUsers'
|
|
20
|
+
loggedInUsers: () => {
|
|
21
|
+
return <Observable<any>> manager.subscribe('loggedInUsers');
|
|
22
22
|
},
|
|
23
|
-
notifications: (
|
|
24
|
-
return <Observable<any>> manager.subscribe('notifications'
|
|
23
|
+
notifications: () => {
|
|
24
|
+
return <Observable<any>> manager.subscribe('notifications');
|
|
25
25
|
},
|
|
26
|
-
reportbuilderreports: (
|
|
27
|
-
return <Observable<any>> manager.subscribe('reportbuilderreports'
|
|
26
|
+
reportbuilderreports: () => {
|
|
27
|
+
return <Observable<any>> manager.subscribe('reportbuilderreports');
|
|
28
28
|
},
|
|
29
|
-
reportbuilderreportsWithIdUser: (id_user: string
|
|
30
|
-
return <Observable<any>> manager.subscribe('reportbuilderreportsWithIdUser', id_user
|
|
29
|
+
reportbuilderreportsWithIdUser: (id_user: string) => {
|
|
30
|
+
return <Observable<any>> manager.subscribe('reportbuilderreportsWithIdUser', id_user);
|
|
31
31
|
},
|
|
32
|
-
reportbuilderreportWithId: (id: string
|
|
33
|
-
return <Observable<any>> manager.subscribe('reportbuilderreportWithId', id
|
|
32
|
+
reportbuilderreportWithId: (id: string) => {
|
|
33
|
+
return <Observable<any>> manager.subscribe('reportbuilderreportWithId', id);
|
|
34
34
|
},
|
|
35
|
-
reportbuilderreportsWithCustomerId: (id: string
|
|
36
|
-
return <Observable<any>> manager.subscribe('reportbuilderreportsWithCustomerId', id
|
|
35
|
+
reportbuilderreportsWithCustomerId: (id: string) => {
|
|
36
|
+
return <Observable<any>> manager.subscribe('reportbuilderreportsWithCustomerId', id);
|
|
37
37
|
},
|
|
38
|
-
logsWithType: (type: string
|
|
39
|
-
return <Observable<any>> manager.subscribe('logsWithType', type
|
|
38
|
+
logsWithType: (type: string) => {
|
|
39
|
+
return <Observable<any>> manager.subscribe('logsWithType', type);
|
|
40
40
|
},
|
|
41
|
-
logsWithTypes: (types: string[]
|
|
42
|
-
return <Observable<any>> manager.subscribe('logsWithTypes', types
|
|
41
|
+
logsWithTypes: (types: string[]) => {
|
|
42
|
+
return <Observable<any>> manager.subscribe('logsWithTypes', types);
|
|
43
43
|
},
|
|
44
|
-
logsWithIdDocument: (id_document: string
|
|
45
|
-
return <Observable<any>> manager.subscribe('logsWithIdDocument', id_document
|
|
44
|
+
logsWithIdDocument: (id_document: string) => {
|
|
45
|
+
return <Observable<any>> manager.subscribe('logsWithIdDocument', id_document);
|
|
46
46
|
},
|
|
47
|
-
logsWithMethod: (method: string
|
|
48
|
-
return <Observable<any>> manager.subscribe('logsWithMethod', method
|
|
47
|
+
logsWithMethod: (method: string) => {
|
|
48
|
+
return <Observable<any>> manager.subscribe('logsWithMethod', method);
|
|
49
49
|
},
|
|
50
|
-
logsWithRoute: (route: string
|
|
51
|
-
return <Observable<any>> manager.subscribe('logsWithRoute', route
|
|
50
|
+
logsWithRoute: (route: string) => {
|
|
51
|
+
return <Observable<any>> manager.subscribe('logsWithRoute', route);
|
|
52
52
|
},
|
|
53
|
-
logsWithCollection: (collection: string
|
|
54
|
-
return <Observable<any>> manager.subscribe('logsWithCollection', collection
|
|
53
|
+
logsWithCollection: (collection: string) => {
|
|
54
|
+
return <Observable<any>> manager.subscribe('logsWithCollection', collection);
|
|
55
55
|
},
|
|
56
|
-
methodlatencies: (
|
|
57
|
-
return <Observable<any>> manager.subscribe('methodlatencies'
|
|
56
|
+
methodlatencies: () => {
|
|
57
|
+
return <Observable<any>> manager.subscribe('methodlatencies');
|
|
58
58
|
},
|
|
59
|
-
userGuides: (
|
|
60
|
-
return <Observable<any>> manager.subscribe('userGuides'
|
|
59
|
+
userGuides: () => {
|
|
60
|
+
return <Observable<any>> manager.subscribe('userGuides');
|
|
61
61
|
},
|
|
62
|
-
flagWithType: (flagType: string
|
|
63
|
-
return <Observable<any>> manager.subscribe('flagWithType', flagType
|
|
62
|
+
flagWithType: (flagType: string) => {
|
|
63
|
+
return <Observable<any>> manager.subscribe('flagWithType', flagType);
|
|
64
64
|
},
|
|
65
|
-
methodresponses: (
|
|
66
|
-
return <Observable<any>> manager.subscribe('methodresponses'
|
|
65
|
+
methodresponses: () => {
|
|
66
|
+
return <Observable<any>> manager.subscribe('methodresponses');
|
|
67
67
|
},
|
|
68
|
-
reportbuilderlibraries: (
|
|
69
|
-
return <Observable<any>> manager.subscribe('reportbuilderlibraries'
|
|
68
|
+
reportbuilderlibraries: () => {
|
|
69
|
+
return <Observable<any>> manager.subscribe('reportbuilderlibraries');
|
|
70
70
|
},
|
|
71
|
-
reportbuilderlibrariesWithIdUser: (id_user: string
|
|
72
|
-
return <Observable<any>> manager.subscribe('reportbuilderlibrariesWithIdUser', id_user
|
|
71
|
+
reportbuilderlibrariesWithIdUser: (id_user: string) => {
|
|
72
|
+
return <Observable<any>> manager.subscribe('reportbuilderlibrariesWithIdUser', id_user);
|
|
73
73
|
},
|
|
74
|
-
reportbuilderlibrariesForUser: (id_user: string
|
|
75
|
-
return <Observable<any>> manager.subscribe('reportbuilderlibrariesForUser', id_user
|
|
74
|
+
reportbuilderlibrariesForUser: (id_user: string) => {
|
|
75
|
+
return <Observable<any>> manager.subscribe('reportbuilderlibrariesForUser', id_user);
|
|
76
76
|
},
|
|
77
|
-
fileWithId: (id_file: string
|
|
78
|
-
return <Observable<any>> manager.subscribe('fileWithId', id_file
|
|
77
|
+
fileWithId: (id_file: string) => {
|
|
78
|
+
return <Observable<any>> manager.subscribe('fileWithId', id_file);
|
|
79
79
|
},
|
|
80
|
-
filesIn: (id_files: string[]
|
|
81
|
-
return <Observable<any>> manager.subscribe('filesIn', id_files
|
|
80
|
+
filesIn: (id_files: string[]) => {
|
|
81
|
+
return <Observable<any>> manager.subscribe('filesIn', id_files);
|
|
82
82
|
},
|
|
83
|
-
appstatus: (
|
|
84
|
-
return <Observable<any>> manager.subscribe('appstatus'
|
|
83
|
+
appstatus: () => {
|
|
84
|
+
return <Observable<any>> manager.subscribe('appstatus');
|
|
85
85
|
},
|
|
86
86
|
};
|
|
87
87
|
}
|