ntk-cms-api 1.2.203 → 1.2.205

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.
Files changed (41) hide show
  1. package/esm2020/lib/models/dto/estate/estateAccountAgencyFilterModel.mjs +1 -1
  2. package/esm2020/lib/models/dto/estate/estateAccountUserFilterModel.mjs +1 -1
  3. package/esm2020/lib/models/dto/estate/estateCustomerOrderFilterModel.mjs +1 -1
  4. package/esm2020/lib/models/dto/estate/estatePropertyFilterModel.mjs +1 -1
  5. package/esm2020/lib/models/dto/estate/estatePropertyHistoryFilterModel.mjs +1 -1
  6. package/esm2020/lib/models/entity/core-token/_export.mjs +3 -1
  7. package/esm2020/lib/models/entity/core-token/coreTokenMicroServiceModel.mjs +1 -1
  8. package/esm2020/lib/models/entity/core-token/coreTokenNotificationLogModel.mjs +5 -0
  9. package/esm2020/lib/models/entity/core-token/coreTokenNotificationModel.mjs +5 -0
  10. package/esm2020/lib/models/enums/base/_export.mjs +7 -1
  11. package/esm2020/lib/models/enums/base/enumMicroServiceModuleType.mjs +6 -0
  12. package/esm2020/lib/models/enums/base/enumNotificationConnectionStatus.mjs +7 -0
  13. package/esm2020/lib/models/enums/base/enumNotificationConnectionType.mjs +7 -0
  14. package/esm2020/lib/models/enums/base/enumNotificationModuleType.mjs +6 -0
  15. package/esm2020/lib/service/core-token/_export.mjs +3 -1
  16. package/esm2020/lib/service/core-token/coreTokenNotification.service.mjs +14 -0
  17. package/esm2020/lib/service/core-token/coreTokenNotificationLog.service.mjs +14 -0
  18. package/fesm2015/ntk-cms-api.mjs +71 -1
  19. package/fesm2015/ntk-cms-api.mjs.map +1 -1
  20. package/fesm2020/ntk-cms-api.mjs +71 -1
  21. package/fesm2020/ntk-cms-api.mjs.map +1 -1
  22. package/lib/models/dto/estate/estateAccountAgencyFilterModel.d.ts +1 -0
  23. package/lib/models/dto/estate/estateAccountUserFilterModel.d.ts +1 -0
  24. package/lib/models/dto/estate/estateCustomerOrderFilterModel.d.ts +1 -0
  25. package/lib/models/dto/estate/estatePropertyFilterModel.d.ts +1 -0
  26. package/lib/models/dto/estate/estatePropertyHistoryFilterModel.d.ts +1 -0
  27. package/lib/models/entity/core-token/_export.d.ts +2 -0
  28. package/lib/models/entity/core-token/coreTokenMicroServiceModel.d.ts +2 -2
  29. package/lib/models/entity/core-token/coreTokenNotificationLogModel.d.ts +4 -0
  30. package/lib/models/entity/core-token/coreTokenNotificationModel.d.ts +18 -0
  31. package/lib/models/enums/base/_export.d.ts +6 -0
  32. package/lib/models/enums/base/enumMicroServiceModuleType.d.ts +4 -0
  33. package/lib/models/enums/base/enumNotificationConnectionStatus.d.ts +5 -0
  34. package/lib/models/enums/base/enumNotificationConnectionType.d.ts +5 -0
  35. package/lib/models/enums/base/enumNotificationModuleType.d.ts +4 -0
  36. package/lib/service/core-token/_export.d.ts +2 -0
  37. package/lib/service/core-token/coreTokenNotification.service.d.ts +9 -0
  38. package/lib/service/core-token/coreTokenNotificationLog.service.d.ts +9 -0
  39. package/package.json +1 -1
  40. package/esm2020/lib/models/enums/base/enumMicroServiceType.mjs +0 -6
  41. package/lib/models/enums/base/enumMicroServiceType.d.ts +0 -4
@@ -2,6 +2,7 @@ import { FilterModel } from "../../entity/base/filterModel";
2
2
  export declare class EstateAccountAgencyFilterModel extends FilterModel {
3
3
  onDateTimeFrom: Date;
4
4
  onDateTimeTo: Date;
5
+ linkResponsibleUserId: number;
5
6
  locationListIds: number[];
6
7
  linkLocationWorkAreaIds: number[];
7
8
  }
@@ -2,6 +2,7 @@ import { FilterModel } from "../../entity/base/filterModel";
2
2
  export declare class EstateAccountUserFilterModel extends FilterModel {
3
3
  onDateTimeFrom: Date;
4
4
  onDateTimeTo: Date;
5
+ linkResponsibleUserId: number;
5
6
  locationListIds: number[];
6
7
  linkLocationWorkAreaIds: number[];
7
8
  }
@@ -3,6 +3,7 @@ import { EstatePropertyDetailValueModel } from "../../entity/estate/estateProper
3
3
  export declare class EstateCustomerOrderFilterModel extends FilterModel {
4
4
  onDateTimeFrom: Date;
5
5
  onDateTimeTo: Date;
6
+ linkResponsibleUserId: number;
6
7
  caseCode: string;
7
8
  linkPropertyTypeLanduseId: string;
8
9
  linkPropertyTypeUsageId: string;
@@ -3,6 +3,7 @@ import { EstatePropertyDetailValueModel } from "../../entity/estate/estateProper
3
3
  export declare class EstatePropertyFilterModel extends FilterModel {
4
4
  onDateTimeFrom: Date;
5
5
  onDateTimeTo: Date;
6
+ linkResponsibleUserId: number;
6
7
  caseCode: string;
7
8
  linkPropertyTypeLanduseId: string;
8
9
  linkPropertyTypeUsageId: string;
@@ -2,4 +2,5 @@ import { FilterModel } from "../../entity/base/filterModel";
2
2
  export declare class EstatePropertyHistoryFilterModel extends FilterModel {
3
3
  onDateTimeFrom: Date;
4
4
  onDateTimeTo: Date;
5
+ linkResponsibleUserId: number;
5
6
  }
@@ -4,5 +4,7 @@ export * from './coreTokenUserLogModel';
4
4
  export * from './coreTokenUserBadLoginModel';
5
5
  export * from './coreTokenMicroServiceLogModel';
6
6
  export * from './coreTokenMicroServiceModel';
7
+ export * from './coreTokenNotificationLogModel';
8
+ export * from './coreTokenNotificationModel';
7
9
  export * from './tokenInfoModel';
8
10
  export * from './tokenDeviceModel';
@@ -1,4 +1,4 @@
1
- import { EnumMicroServiceType } from '../../enums/base/enumMicroServiceType';
1
+ import { EnumMicroServiceModuleType } from '../../enums/base/enumMicroServiceModuleType';
2
2
  import { EnumManageUserAccessUserTypes } from '../../enums/base/enumManageUserAccessUserTypes';
3
3
  import { EnumMicroServiceConnectionType } from '../../enums/base/enumMicroServiceConnectionType';
4
4
  import { EnumMicroServiceConnectionStatus } from '../../enums/base/enumMicroServiceConnectionStatus';
@@ -7,7 +7,7 @@ export declare class CoreTokenMicroServiceModel extends BaseEntity<string> {
7
7
  linkUserId?: number;
8
8
  linkSiteId?: number;
9
9
  deviceId: string;
10
- deviceType: EnumMicroServiceType;
10
+ deviceType: EnumMicroServiceModuleType;
11
11
  userType: EnumManageUserAccessUserTypes;
12
12
  deviceConnectionType: EnumMicroServiceConnectionType;
13
13
  deviceConnectionState: EnumMicroServiceConnectionStatus;
@@ -0,0 +1,4 @@
1
+ import { CoreTokenNotificationModel } from './coreTokenNotificationModel';
2
+ export declare class CoreTokenNotificationLogModel extends CoreTokenNotificationModel {
3
+ action: string;
4
+ }
@@ -0,0 +1,18 @@
1
+ import { EnumNotificationType } from '../../enums/base/enumNotificationType';
2
+ import { EnumManageUserAccessUserTypes } from '../../enums/base/enumManageUserAccessUserTypes';
3
+ import { EnumNotificationConnectionType } from '../../enums/base/enumNotificationConnectionType';
4
+ import { EnumNotificationConnectionStatus } from '../../enums/base/enumNotificationConnectionStatus';
5
+ import { BaseEntity } from '../base/baseEntity';
6
+ export declare class CoreTokenNotificationModel extends BaseEntity<string> {
7
+ linkUserId?: number;
8
+ linkSiteId?: number;
9
+ deviceId: string;
10
+ deviceType: EnumNotificationType;
11
+ userType: EnumManageUserAccessUserTypes;
12
+ deviceConnectionType: EnumNotificationConnectionType;
13
+ deviceConnectionState: EnumNotificationConnectionStatus;
14
+ requestDate: string;
15
+ usedUsername: string;
16
+ iP: string;
17
+ description: string;
18
+ }
@@ -33,3 +33,9 @@ export * from './enumFormSubmitedStatus';
33
33
  export * from './enumManageUserAccessDataTypes';
34
34
  export * from './enumSiteStatus';
35
35
  export * from './errorTypeEnum';
36
+ export * from './enumNotificationModuleType';
37
+ export * from './enumNotificationConnectionType';
38
+ export * from './enumNotificationConnectionStatus';
39
+ export * from './enumMicroServiceConnectionStatus';
40
+ export * from './enumMicroServiceConnectionType';
41
+ export * from './enumMicroServiceModuleType';
@@ -0,0 +1,4 @@
1
+ export declare enum EnumMicroServiceModuleType {
2
+ Core = 0,
3
+ hyperShop = 1
4
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum EnumNotificationConnectionStatus {
2
+ Connected = 0,
3
+ Diconnect = 1,
4
+ Standby = 2
5
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum EnumNotificationConnectionType {
2
+ restApi = 0,
3
+ signalr = 1,
4
+ webSoocket = 2
5
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum EnumNotificationModuleType {
2
+ Core = 0,
3
+ hyperShop = 1
4
+ }
@@ -5,3 +5,5 @@ export * from './coreTokenUserLog.service';
5
5
  export * from './coreTokenUserBadLogin.service';
6
6
  export * from './coreTokenMicroService.service';
7
7
  export * from './coreTokenMicroServiceLog.service';
8
+ export * from './coreTokenNotification.service';
9
+ export * from './coreTokenNotificationLog.service';
@@ -0,0 +1,9 @@
1
+ import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
2
+ import { CoreTokenNotificationModel } from '../../models/entity/core-token/coreTokenNotificationModel';
3
+ import { FilterModel } from '../../models/entity/base/filterModel';
4
+ import * as i0 from "@angular/core";
5
+ export declare class CoreTokenNotificationService extends ApiCmsServerBase<CoreTokenNotificationModel, string, FilterModel> {
6
+ getModuleControllerUrl(): string;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CoreTokenNotificationService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<CoreTokenNotificationService>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
2
+ import { CoreTokenNotificationLogModel } from '../../models/entity/core-token/coreTokenNotificationLogModel';
3
+ import { FilterModel } from '../../models/entity/base/filterModel';
4
+ import * as i0 from "@angular/core";
5
+ export declare class CoreTokenNotificationLogService extends ApiCmsServerBase<CoreTokenNotificationLogModel, string, FilterModel> {
6
+ getModuleControllerUrl(): string;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CoreTokenNotificationLogService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<CoreTokenNotificationLogService>;
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ntk-cms-api",
3
- "version": "1.2.203",
3
+ "version": "1.2.205",
4
4
  "description": "Ntk Cms Api And Model For Typscript",
5
5
  "author": "Alireza-Karavi",
6
6
  "license": "ISC",
@@ -1,6 +0,0 @@
1
- export var EnumMicroServiceType;
2
- (function (EnumMicroServiceType) {
3
- EnumMicroServiceType[EnumMicroServiceType["Core"] = 0] = "Core";
4
- EnumMicroServiceType[EnumMicroServiceType["hyperShop"] = 1] = "hyperShop";
5
- })(EnumMicroServiceType || (EnumMicroServiceType = {}));
6
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW51bU1pY3JvU2VydmljZVR5cGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9udGstY21zLWFwaS9zcmMvbGliL21vZGVscy9lbnVtcy9iYXNlL2VudW1NaWNyb1NlcnZpY2VUeXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBTixJQUFZLG9CQUdYO0FBSEQsV0FBWSxvQkFBb0I7SUFDOUIsK0RBQVEsQ0FBQTtJQUNGLHlFQUFhLENBQUE7QUFDckIsQ0FBQyxFQUhXLG9CQUFvQixLQUFwQixvQkFBb0IsUUFHL0IiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBFbnVtTWljcm9TZXJ2aWNlVHlwZSB7XHJcbiAgQ29yZSA9IDAsXHJcbiAgICAgICAgaHlwZXJTaG9wID0gMSxcclxufVxyXG4iXX0=
@@ -1,4 +0,0 @@
1
- export declare enum EnumMicroServiceType {
2
- Core = 0,
3
- hyperShop = 1
4
- }