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