@escapenavigator/types 1.10.35 → 1.10.36

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.
@@ -3,14 +3,7 @@ export declare class CreateProfileActionRO {
3
3
  salesStatus: ProfileSalesStatus;
4
4
  type: string;
5
5
  description: string;
6
- result: string;
7
- done: boolean;
8
- success: boolean;
9
6
  date: string;
10
7
  time: string;
11
8
  profileId: number;
12
- nextActionType: string;
13
- nextActionDescription: string;
14
- nextActionDate: string;
15
- nextActionTime: string;
16
9
  }
@@ -35,22 +35,6 @@ __decorate([
35
35
  (0, is_not_blank_1.IsNotBlank)(),
36
36
  (0, class_transformer_1.Expose)(),
37
37
  __metadata("design:type", String)
38
- ], CreateProfileActionRO.prototype, "result", void 0);
39
- __decorate([
40
- (0, class_validator_1.IsBoolean)(),
41
- (0, class_transformer_1.Expose)(),
42
- __metadata("design:type", Boolean)
43
- ], CreateProfileActionRO.prototype, "done", void 0);
44
- __decorate([
45
- (0, class_validator_1.IsBoolean)(),
46
- (0, class_transformer_1.Expose)(),
47
- __metadata("design:type", Boolean)
48
- ], CreateProfileActionRO.prototype, "success", void 0);
49
- __decorate([
50
- (0, class_validator_1.ValidateIf)(({ done }) => !done),
51
- (0, is_not_blank_1.IsNotBlank)(),
52
- (0, class_transformer_1.Expose)(),
53
- __metadata("design:type", String)
54
38
  ], CreateProfileActionRO.prototype, "date", void 0);
55
39
  __decorate([
56
40
  (0, class_validator_1.ValidateIf)(({ done }) => !done),
@@ -64,29 +48,4 @@ __decorate([
64
48
  (0, class_transformer_1.Expose)(),
65
49
  __metadata("design:type", Number)
66
50
  ], CreateProfileActionRO.prototype, "profileId", void 0);
67
- __decorate([
68
- (0, class_validator_1.ValidateIf)(({ success }) => success),
69
- (0, is_not_blank_1.IsNotBlank)(),
70
- (0, class_transformer_1.Expose)(),
71
- __metadata("design:type", String)
72
- ], CreateProfileActionRO.prototype, "nextActionType", void 0);
73
- __decorate([
74
- (0, class_validator_1.ValidateIf)(({ success }) => success),
75
- (0, is_not_blank_1.IsNotBlank)(),
76
- (0, class_transformer_1.Expose)(),
77
- __metadata("design:type", String)
78
- ], CreateProfileActionRO.prototype, "nextActionDescription", void 0);
79
- __decorate([
80
- (0, class_validator_1.ValidateIf)(({ success }) => success),
81
- (0, is_not_blank_1.IsNotBlank)(),
82
- (0, class_transformer_1.Expose)(),
83
- __metadata("design:type", String)
84
- ], CreateProfileActionRO.prototype, "nextActionDate", void 0);
85
- __decorate([
86
- (0, class_validator_1.ValidateIf)(({ success }) => success),
87
- (0, is_not_blank_1.IsNotBlank)(),
88
- (0, class_validator_1.IsMilitaryTime)(),
89
- (0, class_transformer_1.Expose)(),
90
- __metadata("design:type", String)
91
- ], CreateProfileActionRO.prototype, "nextActionTime", void 0);
92
51
  exports.CreateProfileActionRO = CreateProfileActionRO;
@@ -6,11 +6,8 @@ export declare class ProfileActionRO {
6
6
  id: number;
7
7
  profile: Profile;
8
8
  createdAt: Date;
9
- author: string;
10
9
  type: string;
11
- success: boolean;
12
10
  description: string;
13
- result: string;
14
11
  date: string;
15
12
  time: string;
16
13
  done: boolean;
@@ -37,26 +37,14 @@ __decorate([
37
37
  (0, class_transformer_1.Expose)(),
38
38
  __metadata("design:type", Date)
39
39
  ], ProfileActionRO.prototype, "createdAt", void 0);
40
- __decorate([
41
- (0, class_transformer_1.Expose)(),
42
- __metadata("design:type", String)
43
- ], ProfileActionRO.prototype, "author", void 0);
44
40
  __decorate([
45
41
  (0, class_transformer_1.Expose)(),
46
42
  __metadata("design:type", String)
47
43
  ], ProfileActionRO.prototype, "type", void 0);
48
- __decorate([
49
- (0, class_transformer_1.Expose)(),
50
- __metadata("design:type", Boolean)
51
- ], ProfileActionRO.prototype, "success", void 0);
52
44
  __decorate([
53
45
  (0, class_transformer_1.Expose)(),
54
46
  __metadata("design:type", String)
55
47
  ], ProfileActionRO.prototype, "description", void 0);
56
- __decorate([
57
- (0, class_transformer_1.Expose)(),
58
- __metadata("design:type", String)
59
- ], ProfileActionRO.prototype, "result", void 0);
60
48
  __decorate([
61
49
  (0, class_transformer_1.Expose)(),
62
50
  __metadata("design:type", String)
@@ -1,5 +1,5 @@
1
1
  import { CountriesEnum } from '../shared/enum/countries.enum';
2
- import { ProfileActionRO } from './action/profile-action.dto';
2
+ import { ProfileActionRO } from './action/profile-action.ro';
3
3
  import { CrmVerificationEnum } from './enum/crm-verifiaction.enum';
4
4
  import { PartnerProgramEnum } from './enum/partner-program.enum';
5
5
  import { ProfileIntegrationTypeEnum } from './enum/profile-integration-type.enum';
@@ -13,7 +13,7 @@ exports.AdminDashboardProfileRO = void 0;
13
13
  /* eslint-disable max-classes-per-file */
14
14
  const class_transformer_1 = require("class-transformer");
15
15
  const countries_enum_1 = require("../shared/enum/countries.enum");
16
- const profile_action_dto_1 = require("./action/profile-action.dto");
16
+ const profile_action_ro_1 = require("./action/profile-action.ro");
17
17
  const crm_verifiaction_enum_1 = require("./enum/crm-verifiaction.enum");
18
18
  const partner_program_enum_1 = require("./enum/partner-program.enum");
19
19
  const profile_integration_type_enum_1 = require("./enum/profile-integration-type.enum");
@@ -80,7 +80,7 @@ __decorate([
80
80
  ], AdminDashboardProfileRO.prototype, "crm", void 0);
81
81
  __decorate([
82
82
  (0, class_transformer_1.Expose)(),
83
- (0, class_transformer_1.Type)(() => profile_action_dto_1.ProfileActionRO),
83
+ (0, class_transformer_1.Type)(() => profile_action_ro_1.ProfileActionRO),
84
84
  __metadata("design:type", Array)
85
85
  ], AdminDashboardProfileRO.prototype, "actions", void 0);
86
86
  exports.AdminDashboardProfileRO = AdminDashboardProfileRO;
@@ -1,5 +1,5 @@
1
1
  import { CountriesEnum } from '../shared/enum/countries.enum';
2
- import { ProfileActionRO } from './action/profile-action.dto';
2
+ import { ProfileActionRO } from './action/profile-action.ro';
3
3
  import { CrmVerificationEnum } from './enum/crm-verifiaction.enum';
4
4
  import { PartnerProgramEnum } from './enum/partner-program.enum';
5
5
  import { ProfileIntegrationTypeEnum } from './enum/profile-integration-type.enum';
@@ -13,7 +13,7 @@ exports.AdminProfileRO = void 0;
13
13
  /* eslint-disable max-classes-per-file */
14
14
  const class_transformer_1 = require("class-transformer");
15
15
  const countries_enum_1 = require("../shared/enum/countries.enum");
16
- const profile_action_dto_1 = require("./action/profile-action.dto");
16
+ const profile_action_ro_1 = require("./action/profile-action.ro");
17
17
  const crm_verifiaction_enum_1 = require("./enum/crm-verifiaction.enum");
18
18
  const partner_program_enum_1 = require("./enum/partner-program.enum");
19
19
  const profile_integration_type_enum_1 = require("./enum/profile-integration-type.enum");
@@ -184,7 +184,7 @@ __decorate([
184
184
  ], AdminProfileRO.prototype, "crm", void 0);
185
185
  __decorate([
186
186
  (0, class_transformer_1.Expose)(),
187
- (0, class_transformer_1.Type)(() => profile_action_dto_1.ProfileActionRO),
187
+ (0, class_transformer_1.Type)(() => profile_action_ro_1.ProfileActionRO),
188
188
  __metadata("design:type", Array)
189
189
  ], AdminProfileRO.prototype, "actions", void 0);
190
190
  exports.AdminProfileRO = AdminProfileRO;
@@ -1,6 +1,7 @@
1
1
  export declare enum ProfileSalesStatus {
2
2
  NEW = "new",
3
3
  NO_ANSWER = "no_answer",
4
+ NO_CEO = "no_ceo",
4
5
  FOLLOW_UP = "follow_up",
5
6
  DEMO = "demo",
6
7
  THINKING = "thinking",
@@ -5,6 +5,7 @@ var ProfileSalesStatus;
5
5
  (function (ProfileSalesStatus) {
6
6
  ProfileSalesStatus["NEW"] = "new";
7
7
  ProfileSalesStatus["NO_ANSWER"] = "no_answer";
8
+ ProfileSalesStatus["NO_CEO"] = "no_ceo";
8
9
  ProfileSalesStatus["FOLLOW_UP"] = "follow_up";
9
10
  ProfileSalesStatus["DEMO"] = "demo";
10
11
  ProfileSalesStatus["THINKING"] = "thinking";
@@ -17,7 +17,7 @@ export declare class QueryAdminProfileDto {
17
17
  status?: ProfileStatusEnum[];
18
18
  salesStatus?: ProfileSalesStatus[];
19
19
  country?: CountriesEnum;
20
- city?: string;
20
+ city?: number;
21
21
  crm?: string;
22
22
  lastEmailSendId?: string;
23
23
  notlastEmailSendId?: string;
@@ -60,7 +60,7 @@ __decorate([
60
60
  ], QueryAdminProfileDto.prototype, "country", void 0);
61
61
  __decorate([
62
62
  (0, class_transformer_1.Expose)(),
63
- __metadata("design:type", String)
63
+ __metadata("design:type", Number)
64
64
  ], QueryAdminProfileDto.prototype, "city", void 0);
65
65
  __decorate([
66
66
  (0, class_transformer_1.Expose)(),