@resolveio/server-lib 22.2.8 → 22.2.10

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/methods.ts CHANGED
@@ -63,7 +63,7 @@ export function SERVER_METHODS(resolveioServer) {
63
63
  countCollectionWithQuery: (collectionType: string, query: Object, cb?: Function): Promise<any> => {
64
64
  return resolveioServer.call('countCollectionWithQuery', collectionType, query, cb);
65
65
  },
66
- createCustomerNotification: (payload: CreateCustomerNotificationPayload, cb?: Function): Promise<any> => {
66
+ createCustomerNotification: (payload, cb?: Function): Promise<any> => {
67
67
  return resolveioServer.call('createCustomerNotification', payload, cb);
68
68
  },
69
69
  createUserAndEmailEnrollment: (newUser: UserModel, sendEnrollmentEmail = true, cb?: Function): Promise<any> => {
@@ -144,7 +144,7 @@ export function SERVER_METHODS(resolveioServer) {
144
144
  insertSubscriptionLog: (type, subscription, collection_name, subData, cb?: Function): Promise<any> => {
145
145
  return resolveioServer.call('insertSubscriptionLog', type, subscription, collection_name, subData, cb);
146
146
  },
147
- listCustomerNotifications: (payload?: ListCustomerNotificationsPayload, cb?: Function): Promise<any> => {
147
+ listCustomerNotifications: (payload?, cb?: Function): Promise<any> => {
148
148
  return resolveioServer.call('listCustomerNotifications', payload, cb);
149
149
  },
150
150
  markAllUserNotificationsRead: (id_client?: string, cb?: Function): Promise<any> => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/server-lib",
3
- "version": "22.2.8",
3
+ "version": "22.2.10",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "package": "./build_package.sh",