ntk-cms-api 1.2.244 → 1.2.245

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.
@@ -12,4 +12,6 @@ export declare class CmsNotificationModel {
12
12
  contentJsonClass: string;
13
13
  smallImageId?: number;
14
14
  bigImageId?: number;
15
+ smallImageIdSrc: string;
16
+ bigImageIdSrc: string;
15
17
  }
@@ -1,14 +1,28 @@
1
+ import { NotificationTypeEnum } from '../../enums/base/notificationTypeEnum';
2
+ import { ReceiverNotificationStatusTypeEnum } from '../../enums/base/receiverNotificationStatusTypeEnum';
1
3
  import { SendNotificationStatusTypeEnum } from '../../enums/base/sendNotificationStatusTypeEnum';
2
4
  import { BaseEntity } from '../base/baseEntity';
3
5
  export declare class CoreLogNotificationModel extends BaseEntity<string> {
4
6
  sendStatusType: SendNotificationStatusTypeEnum;
7
+ receiverStatusType: ReceiverNotificationStatusTypeEnum;
5
8
  linkSiteId?: number;
6
9
  linkMemberId: string;
7
10
  moduleName: string;
8
11
  moduleEntityName: string;
9
12
  moduleEntityId: string;
10
- fromlinkUserId: string;
11
- tolinkUserId: string;
12
- message: string;
13
+ senderlinkUserId?: number;
14
+ receiverlinkUserId?: number;
13
15
  returnApi: string;
16
+ icon: string;
17
+ badge: string;
18
+ sound: string;
19
+ title: string;
20
+ clickAction: string;
21
+ renotify: boolean;
22
+ contentType: NotificationTypeEnum;
23
+ content: string;
24
+ contentJson: string;
25
+ contentJsonClass: string;
26
+ smallImageId?: number;
27
+ bigImageId?: number;
14
28
  }
@@ -13,6 +13,6 @@ export declare class CoreTokenMicroServiceModel extends BaseEntity<string> {
13
13
  deviceConnectionState: MicroServiceConnectionStatusEnum;
14
14
  requestDate: string;
15
15
  usedUsername: string;
16
- iP: string;
16
+ deviceIP: string;
17
17
  description: string;
18
18
  }
@@ -17,6 +17,6 @@ export declare class CoreTokenNotificationModel extends BaseEntity<string> {
17
17
  deviceConnectionType: NotificationConnectionTypeEnum;
18
18
  deviceConnectionState: NotificationConnectionStatusEnum;
19
19
  usedUsername: string;
20
- iP: string;
20
+ deviceIP: string;
21
21
  description: string;
22
22
  }
@@ -40,3 +40,4 @@ export * from './microServiceConnectionTypeEnum';
40
40
  export * from './microServiceModuleTypeEnum';
41
41
  export * from './notificationConnectionTypeEnum';
42
42
  export * from './sendNotificationStatusTypeEnum';
43
+ export * from './receiverNotificationStatusTypeEnum';
@@ -0,0 +1,5 @@
1
+ export declare enum ReceiverNotificationStatusTypeEnum {
2
+ None = 0,
3
+ Receive = 1,
4
+ Read = 2
5
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ntk-cms-api",
3
- "version": "1.2.244",
3
+ "version": "1.2.245",
4
4
  "description": "Ntk Cms Api And Model For Typscript",
5
5
  "author": "Alireza-Karavi",
6
6
  "license": "ISC",