@resolveio/server-lib 22.2.54 → 22.2.55

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/publications.ts CHANGED
@@ -20,11 +20,11 @@ export function SERVER_PUBLICATIONS(resolveioServer) {
20
20
  cronjobs: () => {
21
21
  return <Observable<any>> resolveioServer.subscribe('cronjobs');
22
22
  },
23
- cronjobsReportBuilderWithIdUser: (id_user: string) => {
24
- return <Observable<any>> resolveioServer.subscribe('cronjobsReportBuilderWithIdUser', id_user);
23
+ cronjobsReportBuilderWithIdUser: () => {
24
+ return <Observable<any>> resolveioServer.subscribe('cronjobsReportBuilderWithIdUser');
25
25
  },
26
- customerNotificationsAdmin: (id_user: string, limit?: number) => {
27
- return <Observable<any>> resolveioServer.subscribe('customerNotificationsAdmin', id_user, limit);
26
+ customerNotificationsAdmin: (limit?: number) => {
27
+ return <Observable<any>> resolveioServer.subscribe('customerNotificationsAdmin', limit);
28
28
  },
29
29
  fileWithId: (id_file: string) => {
30
30
  return <Observable<any>> resolveioServer.subscribe('fileWithId', id_file);
@@ -95,8 +95,8 @@ export function SERVER_PUBLICATIONS(resolveioServer) {
95
95
  userGuides: () => {
96
96
  return <Observable<any>> resolveioServer.subscribe('userGuides');
97
97
  },
98
- userNotificationCenter: (id_user: string, limit?: number) => {
99
- return <Observable<any>> resolveioServer.subscribe('userNotificationCenter', id_user, limit);
98
+ userNotificationCenter: (limit?: number) => {
99
+ return <Observable<any>> resolveioServer.subscribe('userNotificationCenter', limit);
100
100
  },
101
101
  usergroups: () => {
102
102
  return <Observable<any>> resolveioServer.subscribe('usergroups');