hh-contracts 0.0.16 → 0.0.17

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.
@@ -9,7 +9,7 @@ var AppAbility;
9
9
  read: 'read',
10
10
  update: 'update',
11
11
  delete: 'delete',
12
- messaging: 'messaging',
12
+ hotelClientMessaging: 'hotelClientMessaging',
13
13
  };
14
14
  AppAbility.ACTION_VALUES = Object.values(AppAbility.ACTION);
15
15
  AppAbility.SUBJECT = {
@@ -4,5 +4,5 @@ exports.DEFAULT_PAGINATION_CONFIG = void 0;
4
4
  exports.DEFAULT_PAGINATION_CONFIG = {
5
5
  page: 1,
6
6
  pageSize: 10,
7
- maxPageSize: 250,
7
+ maxPageSize: 500,
8
8
  };
@@ -5,7 +5,7 @@ export namespace AppAbility {
5
5
  read: 'read',
6
6
  update: 'update',
7
7
  delete: 'delete',
8
- messaging: 'messaging',
8
+ hotelClientMessaging: 'hotelClientMessaging',
9
9
  } as const;
10
10
  export type TAction = (typeof ACTION)[keyof typeof ACTION];
11
11
  export const ACTION_VALUES = Object.values(ACTION) as [TAction];
@@ -1,5 +1,5 @@
1
1
  export const DEFAULT_PAGINATION_CONFIG = {
2
2
  page: 1,
3
3
  pageSize: 10,
4
- maxPageSize: 250,
4
+ maxPageSize: 500,
5
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hh-contracts",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "scripts": {