@onereach/types-hitl-api 0.0.88-rc.1 → 0.0.88-rc.2

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/README.md CHANGED
@@ -36,6 +36,7 @@ DB_PASSWORD=mysecretpassword
36
36
  DB_HOST=localhost
37
37
  DB_PORT=5432
38
38
  DB_NAME=hitl-app-db
39
+ SCHEDULED_TASKS_SWITCH='{"ARCHIVE_SESSION_EVENTS":true,"CLEAN_UP_LISTENERS":true,"CLEAN_UP_SESSIONS":true,"ADD_EVENTS_TO_ARCHIVE":true,"ADD_MEMBERS_TO_ARCHIVE":true,"CLEAN_UP_CONTACTLESS_SESSIONS":true,"DELETE_EXPIRED_SESSIONS":true,"LONG_EXPIRE_DAYS":7,"SHORT_EXPIRE_DAYS":1}'
39
40
  ```
40
41
 
41
42
  You can change all the values above, if you want to, just make sure that the variables in `.env` file point to some valid PostgreSQL instance.
@@ -5,6 +5,8 @@ export interface ISettings<Data = any> {
5
5
  readonly userId: string;
6
6
  readonly ruleTags: string[];
7
7
  readonly data: Data;
8
+ readonly updatedAt?: Date;
9
+ readonly createdAt?: Date;
8
10
  }
9
11
  export interface IUpdateSettingsQuery extends ITargetAccountId, ITargetUserId {
10
12
  readonly isCommon?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/types-hitl-api",
3
- "version": "0.0.88-rc.1",
3
+ "version": "0.0.88-rc.2",
4
4
  "author": "OneReach.ai",
5
5
  "main": "dist/types/index.types.js",
6
6
  "types": "dist/types/index.types.d.ts",