@cool-digital-solutions/interferir-models 1.3.17 → 1.3.19
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/dist/schemas/ai-hr-candidate-candidate-profile.schema.js +76 -0
- package/dist/schemas/ai-hr-candidate-output.schema.js +20 -0
- package/dist/schemas/ai-hr-candidate-top-candidate.schema.js +76 -0
- package/dist/types/ai-hr-candidate-output.type.d.ts +21 -0
- package/dist/types/ai-hr-candidate-profile.type.d.ts +84 -0
- package/dist/types/ai-hr-candidate-profile.type.js +6 -0
- package/dist/types/ai-hr-candidate-top-candidate.type.d.ts +84 -0
- package/dist/types/ai-hr-candidate-top-candidate.type.js +6 -0
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
const mongoose_1 = require("mongoose");
|
|
7
7
|
const express_http_context_1 = __importDefault(require("express-http-context"));
|
|
8
8
|
const _config_1 = require("../config");
|
|
9
|
+
const ai_hr_candidate_profile_type_1 = require("../types/ai-hr-candidate-profile.type");
|
|
9
10
|
const aiHrCandidateProfileSchema = new mongoose_1.Schema({
|
|
10
11
|
aiTask: { type: mongoose_1.Schema.Types.ObjectId, ref: 'AiTask', required: true },
|
|
11
12
|
aiHrCandidate: { type: mongoose_1.Schema.Types.ObjectId, ref: 'AiHrCandidate', required: true },
|
|
@@ -14,6 +15,81 @@ const aiHrCandidateProfileSchema = new mongoose_1.Schema({
|
|
|
14
15
|
relevancy: { type: String, required: true },
|
|
15
16
|
strengths: [{ type: String, default: '' }],
|
|
16
17
|
weaknesses: [{ type: String, default: '' }],
|
|
18
|
+
addToOutreach: { type: Boolean, required: false },
|
|
19
|
+
isOutreached: { type: Boolean, required: false },
|
|
20
|
+
companyBackgroundAnalysis: { type: String, required: false },
|
|
21
|
+
educationBackgroundAnalysis: { type: String, required: false },
|
|
22
|
+
profileTag: { type: String, enum: Object.values(ai_hr_candidate_profile_type_1.ProfileTag), required: false },
|
|
23
|
+
personalityAnalysis: {
|
|
24
|
+
thinkingStyle: {
|
|
25
|
+
learningIndex: {
|
|
26
|
+
score: { type: Number, required: false },
|
|
27
|
+
reasoning: [{ type: String, required: false }],
|
|
28
|
+
},
|
|
29
|
+
verbalSkills: {
|
|
30
|
+
score: { type: Number, required: false },
|
|
31
|
+
reasoning: [{ type: String, required: false }],
|
|
32
|
+
},
|
|
33
|
+
verbalReasoning: {
|
|
34
|
+
score: { type: Number, required: false },
|
|
35
|
+
reasoning: [{ type: String, required: false }],
|
|
36
|
+
},
|
|
37
|
+
numericalAbility: {
|
|
38
|
+
score: { type: Number, required: false },
|
|
39
|
+
reasoning: [{ type: String, required: false }],
|
|
40
|
+
},
|
|
41
|
+
numericalReasoning: {
|
|
42
|
+
score: { type: Number, required: false },
|
|
43
|
+
reasoning: [{ type: String, required: false }],
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
behaviorTraits: {
|
|
47
|
+
energyLevel: {
|
|
48
|
+
score: { type: Number, required: false },
|
|
49
|
+
reasoning: [{ type: String, required: false }],
|
|
50
|
+
},
|
|
51
|
+
assertiveness: {
|
|
52
|
+
score: { type: Number, required: false },
|
|
53
|
+
reasoning: [{ type: String, required: false }],
|
|
54
|
+
},
|
|
55
|
+
sociability: {
|
|
56
|
+
score: { type: Number, required: false },
|
|
57
|
+
reasoning: [{ type: String, required: false }],
|
|
58
|
+
},
|
|
59
|
+
manageability: {
|
|
60
|
+
score: { type: Number, required: false },
|
|
61
|
+
reasoning: [{ type: String, required: false }],
|
|
62
|
+
},
|
|
63
|
+
attitude: {
|
|
64
|
+
score: { type: Number, required: false },
|
|
65
|
+
reasoning: [{ type: String, required: false }],
|
|
66
|
+
},
|
|
67
|
+
decisiveness: {
|
|
68
|
+
score: { type: Number, required: false },
|
|
69
|
+
reasoning: [{ type: String, required: false }],
|
|
70
|
+
},
|
|
71
|
+
accommodating: {
|
|
72
|
+
score: { type: Number, required: false },
|
|
73
|
+
reasoning: [{ type: String, required: false }],
|
|
74
|
+
},
|
|
75
|
+
independence: {
|
|
76
|
+
score: { type: Number, required: false },
|
|
77
|
+
reasoning: [{ type: String, required: false }],
|
|
78
|
+
},
|
|
79
|
+
objectiveJudgment: {
|
|
80
|
+
score: { type: Number, required: false },
|
|
81
|
+
reasoning: [{ type: String, required: false }],
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
interests: {
|
|
85
|
+
creative: { type: Boolean, required: false },
|
|
86
|
+
enterprising: { type: Boolean, required: false },
|
|
87
|
+
financialAdministrative: { type: Boolean, required: false },
|
|
88
|
+
peopleService: { type: Boolean, required: false },
|
|
89
|
+
technical: { type: Boolean, required: false },
|
|
90
|
+
mechanical: { type: Boolean, required: false },
|
|
91
|
+
},
|
|
92
|
+
},
|
|
17
93
|
createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
18
94
|
updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
19
95
|
updatedDate: Number,
|
|
@@ -15,6 +15,26 @@ const aiHrCandidateOutputSchema = new mongoose_1.Schema({
|
|
|
15
15
|
filteredByExperience: { type: Number },
|
|
16
16
|
locationFit: { type: Number },
|
|
17
17
|
},
|
|
18
|
+
analyseJobOutput: {
|
|
19
|
+
keywords: { type: [String], default: [] },
|
|
20
|
+
summary: { type: String, default: '' },
|
|
21
|
+
requiredSkills: { type: [String], default: [] },
|
|
22
|
+
experienceLevel: { type: String, default: '' },
|
|
23
|
+
roleType: { type: String, default: '' },
|
|
24
|
+
title: { type: String, default: '' },
|
|
25
|
+
currentCompany: { type: [String], default: [] },
|
|
26
|
+
pastCompany: { type: [String], default: [] },
|
|
27
|
+
locations: { type: [String], default: [] },
|
|
28
|
+
requiredLanguages: { type: [String], default: [] },
|
|
29
|
+
optionalLanguages: { type: [String], default: [] },
|
|
30
|
+
requiredUniversities: { type: [String], default: [] },
|
|
31
|
+
industries: { type: [String], default: [] },
|
|
32
|
+
minYearsExperience: { type: Number, required: false },
|
|
33
|
+
maxYearsExperience: { type: Number, required: false },
|
|
34
|
+
keyResponsibilities: { type: [String], default: [] },
|
|
35
|
+
educationalRequirements: { type: String, default: '' },
|
|
36
|
+
jobText: { type: String, default: '' },
|
|
37
|
+
},
|
|
18
38
|
createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
19
39
|
updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
20
40
|
updatedDate: Number,
|
|
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
const mongoose_1 = require("mongoose");
|
|
7
7
|
const express_http_context_1 = __importDefault(require("express-http-context"));
|
|
8
8
|
const _config_1 = require("../config");
|
|
9
|
+
const ai_hr_candidate_top_candidate_type_1 = require("../types/ai-hr-candidate-top-candidate.type");
|
|
9
10
|
const aiHrCandidateTopCandidateSchema = new mongoose_1.Schema({
|
|
10
11
|
aiTask: { type: mongoose_1.Schema.Types.ObjectId, ref: 'AiTask', required: true },
|
|
11
12
|
aiHrCandidate: { type: mongoose_1.Schema.Types.ObjectId, ref: 'AiHrCandidate', required: true },
|
|
@@ -14,6 +15,81 @@ const aiHrCandidateTopCandidateSchema = new mongoose_1.Schema({
|
|
|
14
15
|
relevancy: { type: String, required: true },
|
|
15
16
|
strengths: [{ type: String, required: true }],
|
|
16
17
|
weaknesses: [{ type: String, required: true }],
|
|
18
|
+
addToOutreach: { type: Boolean, required: false },
|
|
19
|
+
isOutreached: { type: Boolean, required: false },
|
|
20
|
+
companyBackgroundAnalysis: { type: String, required: false },
|
|
21
|
+
educationBackgroundAnalysis: { type: String, required: false },
|
|
22
|
+
profileTag: { type: String, enum: Object.values(ai_hr_candidate_top_candidate_type_1.ProfileTag), required: false },
|
|
23
|
+
personalityAnalysis: {
|
|
24
|
+
thinkingStyle: {
|
|
25
|
+
learningIndex: {
|
|
26
|
+
score: { type: Number, required: false },
|
|
27
|
+
reasoning: [{ type: String, required: false }],
|
|
28
|
+
},
|
|
29
|
+
verbalSkills: {
|
|
30
|
+
score: { type: Number, required: false },
|
|
31
|
+
reasoning: [{ type: String, required: false }],
|
|
32
|
+
},
|
|
33
|
+
verbalReasoning: {
|
|
34
|
+
score: { type: Number, required: false },
|
|
35
|
+
reasoning: [{ type: String, required: false }],
|
|
36
|
+
},
|
|
37
|
+
numericalAbility: {
|
|
38
|
+
score: { type: Number, required: false },
|
|
39
|
+
reasoning: [{ type: String, required: false }],
|
|
40
|
+
},
|
|
41
|
+
numericalReasoning: {
|
|
42
|
+
score: { type: Number, required: false },
|
|
43
|
+
reasoning: [{ type: String, required: false }],
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
behaviorTraits: {
|
|
47
|
+
energyLevel: {
|
|
48
|
+
score: { type: Number, required: false },
|
|
49
|
+
reasoning: [{ type: String, required: false }],
|
|
50
|
+
},
|
|
51
|
+
assertiveness: {
|
|
52
|
+
score: { type: Number, required: false },
|
|
53
|
+
reasoning: [{ type: String, required: false }],
|
|
54
|
+
},
|
|
55
|
+
sociability: {
|
|
56
|
+
score: { type: Number, required: false },
|
|
57
|
+
reasoning: [{ type: String, required: false }],
|
|
58
|
+
},
|
|
59
|
+
manageability: {
|
|
60
|
+
score: { type: Number, required: false },
|
|
61
|
+
reasoning: [{ type: String, required: false }],
|
|
62
|
+
},
|
|
63
|
+
attitude: {
|
|
64
|
+
score: { type: Number, required: false },
|
|
65
|
+
reasoning: [{ type: String, required: false }],
|
|
66
|
+
},
|
|
67
|
+
decisiveness: {
|
|
68
|
+
score: { type: Number, required: false },
|
|
69
|
+
reasoning: [{ type: String, required: false }],
|
|
70
|
+
},
|
|
71
|
+
accommodating: {
|
|
72
|
+
score: { type: Number, required: false },
|
|
73
|
+
reasoning: [{ type: String, required: false }],
|
|
74
|
+
},
|
|
75
|
+
independence: {
|
|
76
|
+
score: { type: Number, required: false },
|
|
77
|
+
reasoning: [{ type: String, required: false }],
|
|
78
|
+
},
|
|
79
|
+
objectiveJudgment: {
|
|
80
|
+
score: { type: Number, required: false },
|
|
81
|
+
reasoning: [{ type: String, required: false }],
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
interests: {
|
|
85
|
+
creative: { type: Boolean, required: false },
|
|
86
|
+
enterprising: { type: Boolean, required: false },
|
|
87
|
+
financialAdministrative: { type: Boolean, required: false },
|
|
88
|
+
peopleService: { type: Boolean, required: false },
|
|
89
|
+
technical: { type: Boolean, required: false },
|
|
90
|
+
mechanical: { type: Boolean, required: false },
|
|
91
|
+
},
|
|
92
|
+
},
|
|
17
93
|
createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
18
94
|
updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
19
95
|
updatedDate: Number,
|
|
@@ -31,10 +31,31 @@ interface ResearchNumber {
|
|
|
31
31
|
filteredByExperience: number;
|
|
32
32
|
locationFit: number;
|
|
33
33
|
}
|
|
34
|
+
interface AnalyseJobOutput {
|
|
35
|
+
keywords: string[];
|
|
36
|
+
summary: string;
|
|
37
|
+
requiredSkills: string[];
|
|
38
|
+
experienceLevel: string;
|
|
39
|
+
roleType: string;
|
|
40
|
+
title: string;
|
|
41
|
+
currentCompany: string[];
|
|
42
|
+
pastCompany: string[];
|
|
43
|
+
locations: string[];
|
|
44
|
+
requiredLanguages: string[];
|
|
45
|
+
optionalLanguages: string[];
|
|
46
|
+
requiredUniversities: string[];
|
|
47
|
+
industries: string[];
|
|
48
|
+
minYearsExperience: number;
|
|
49
|
+
maxYearsExperience: number;
|
|
50
|
+
keyResponsibilities: string[];
|
|
51
|
+
educationalRequirements: string;
|
|
52
|
+
jobText: string;
|
|
53
|
+
}
|
|
34
54
|
export interface IAiHrCandidateOutput extends BaseSchema {
|
|
35
55
|
aiTask: Types.ObjectId | IAiTask;
|
|
36
56
|
executiveSummary: string;
|
|
37
57
|
researchNumbers: ResearchNumber;
|
|
58
|
+
analyseJobOutput: AnalyseJobOutput;
|
|
38
59
|
}
|
|
39
60
|
export interface IAiHrCandidateOutputModel extends BaseModel<IAiHrCandidateOutput> {
|
|
40
61
|
}
|
|
@@ -26,6 +26,83 @@ import { BaseModel, BaseSchema } from '../config';
|
|
|
26
26
|
import { Types } from 'mongoose';
|
|
27
27
|
import { IAiTask } from './ai-task.type';
|
|
28
28
|
import { IAiHrCandidate } from './ai-hr-candidate.type';
|
|
29
|
+
interface ThinkingStyle {
|
|
30
|
+
learningIndex: {
|
|
31
|
+
score: number;
|
|
32
|
+
reasoning: string[];
|
|
33
|
+
};
|
|
34
|
+
verbalSkills: {
|
|
35
|
+
score: number;
|
|
36
|
+
reasoning: string[];
|
|
37
|
+
};
|
|
38
|
+
verbalReasoning: {
|
|
39
|
+
score: number;
|
|
40
|
+
reasoning: string[];
|
|
41
|
+
};
|
|
42
|
+
numericalAbility: {
|
|
43
|
+
score: number;
|
|
44
|
+
reasoning: string[];
|
|
45
|
+
};
|
|
46
|
+
numericalReasoning: {
|
|
47
|
+
score: number;
|
|
48
|
+
reasoning: string[];
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
interface BehaviorTraits {
|
|
52
|
+
energyLevel: {
|
|
53
|
+
score: number;
|
|
54
|
+
reasoning: string[];
|
|
55
|
+
};
|
|
56
|
+
assertiveness: {
|
|
57
|
+
score: number;
|
|
58
|
+
reasoning: string[];
|
|
59
|
+
};
|
|
60
|
+
sociability: {
|
|
61
|
+
score: number;
|
|
62
|
+
reasoning: string[];
|
|
63
|
+
};
|
|
64
|
+
manageability: {
|
|
65
|
+
score: number;
|
|
66
|
+
reasoning: string[];
|
|
67
|
+
};
|
|
68
|
+
attitude: {
|
|
69
|
+
score: number;
|
|
70
|
+
reasoning: string[];
|
|
71
|
+
};
|
|
72
|
+
decisiveness: {
|
|
73
|
+
score: number;
|
|
74
|
+
reasoning: string[];
|
|
75
|
+
};
|
|
76
|
+
accommodating: {
|
|
77
|
+
score: number;
|
|
78
|
+
reasoning: string[];
|
|
79
|
+
};
|
|
80
|
+
independence: {
|
|
81
|
+
score: number;
|
|
82
|
+
reasoning: string[];
|
|
83
|
+
};
|
|
84
|
+
objectiveJudgment: {
|
|
85
|
+
score: number;
|
|
86
|
+
reasoning: string[];
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
interface Interests {
|
|
90
|
+
creative: boolean;
|
|
91
|
+
enterprising: boolean;
|
|
92
|
+
financialAdministrative: boolean;
|
|
93
|
+
peopleService: boolean;
|
|
94
|
+
technical: boolean;
|
|
95
|
+
mechanical: boolean;
|
|
96
|
+
}
|
|
97
|
+
interface PersonalityAnalysis {
|
|
98
|
+
thinkingStyle: ThinkingStyle;
|
|
99
|
+
behaviorTraits: BehaviorTraits;
|
|
100
|
+
interests: Interests;
|
|
101
|
+
}
|
|
102
|
+
export declare enum ProfileTag {
|
|
103
|
+
IGNORED = "ignored",
|
|
104
|
+
NOT_INTERESTED = "notInterested"
|
|
105
|
+
}
|
|
29
106
|
export interface IAiHrCandidateProfile extends BaseSchema {
|
|
30
107
|
aiTask: Types.ObjectId | IAiTask;
|
|
31
108
|
aiHrCandidate: Types.ObjectId | IAiHrCandidate;
|
|
@@ -34,6 +111,13 @@ export interface IAiHrCandidateProfile extends BaseSchema {
|
|
|
34
111
|
relevancy: string;
|
|
35
112
|
strengths: string[];
|
|
36
113
|
weaknesses: string[];
|
|
114
|
+
personalityAnalysis: PersonalityAnalysis;
|
|
115
|
+
companyBackgroundAnalysis: string;
|
|
116
|
+
educationBackgroundAnalysis: string;
|
|
117
|
+
addToOutreach: boolean;
|
|
118
|
+
isOutreached: boolean;
|
|
119
|
+
profileTag: ProfileTag;
|
|
37
120
|
}
|
|
38
121
|
export interface IAiHrCandidateProfileModel extends BaseModel<IAiHrCandidateProfile> {
|
|
39
122
|
}
|
|
123
|
+
export {};
|
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ProfileTag = void 0;
|
|
4
|
+
var ProfileTag;
|
|
5
|
+
(function (ProfileTag) {
|
|
6
|
+
ProfileTag["IGNORED"] = "ignored";
|
|
7
|
+
ProfileTag["NOT_INTERESTED"] = "notInterested";
|
|
8
|
+
})(ProfileTag || (exports.ProfileTag = ProfileTag = {}));
|
|
@@ -26,6 +26,83 @@ import { BaseModel, BaseSchema } from '../config';
|
|
|
26
26
|
import { Types } from 'mongoose';
|
|
27
27
|
import { IAiTask } from './ai-task.type';
|
|
28
28
|
import { IAiHrCandidate } from './ai-hr-candidate.type';
|
|
29
|
+
interface ThinkingStyle {
|
|
30
|
+
learningIndex: {
|
|
31
|
+
score: number;
|
|
32
|
+
reasoning: string[];
|
|
33
|
+
};
|
|
34
|
+
verbalSkills: {
|
|
35
|
+
score: number;
|
|
36
|
+
reasoning: string[];
|
|
37
|
+
};
|
|
38
|
+
verbalReasoning: {
|
|
39
|
+
score: number;
|
|
40
|
+
reasoning: string[];
|
|
41
|
+
};
|
|
42
|
+
numericalAbility: {
|
|
43
|
+
score: number;
|
|
44
|
+
reasoning: string[];
|
|
45
|
+
};
|
|
46
|
+
numericalReasoning: {
|
|
47
|
+
score: number;
|
|
48
|
+
reasoning: string[];
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
interface BehaviorTraits {
|
|
52
|
+
energyLevel: {
|
|
53
|
+
score: number;
|
|
54
|
+
reasoning: string[];
|
|
55
|
+
};
|
|
56
|
+
assertiveness: {
|
|
57
|
+
score: number;
|
|
58
|
+
reasoning: string[];
|
|
59
|
+
};
|
|
60
|
+
sociability: {
|
|
61
|
+
score: number;
|
|
62
|
+
reasoning: string[];
|
|
63
|
+
};
|
|
64
|
+
manageability: {
|
|
65
|
+
score: number;
|
|
66
|
+
reasoning: string[];
|
|
67
|
+
};
|
|
68
|
+
attitude: {
|
|
69
|
+
score: number;
|
|
70
|
+
reasoning: string[];
|
|
71
|
+
};
|
|
72
|
+
decisiveness: {
|
|
73
|
+
score: number;
|
|
74
|
+
reasoning: string[];
|
|
75
|
+
};
|
|
76
|
+
accommodating: {
|
|
77
|
+
score: number;
|
|
78
|
+
reasoning: string[];
|
|
79
|
+
};
|
|
80
|
+
independence: {
|
|
81
|
+
score: number;
|
|
82
|
+
reasoning: string[];
|
|
83
|
+
};
|
|
84
|
+
objectiveJudgment: {
|
|
85
|
+
score: number;
|
|
86
|
+
reasoning: string[];
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
interface Interests {
|
|
90
|
+
creative: boolean;
|
|
91
|
+
enterprising: boolean;
|
|
92
|
+
financialAdministrative: boolean;
|
|
93
|
+
peopleService: boolean;
|
|
94
|
+
technical: boolean;
|
|
95
|
+
mechanical: boolean;
|
|
96
|
+
}
|
|
97
|
+
interface PersonalityAnalysis {
|
|
98
|
+
thinkingStyle: ThinkingStyle;
|
|
99
|
+
behaviorTraits: BehaviorTraits;
|
|
100
|
+
interests: Interests;
|
|
101
|
+
}
|
|
102
|
+
export declare enum ProfileTag {
|
|
103
|
+
IGNORED = "ignored",
|
|
104
|
+
NOT_INTERESTED = "notInterested"
|
|
105
|
+
}
|
|
29
106
|
export interface IAiHrCandidateTopCandidate extends BaseSchema {
|
|
30
107
|
aiTask: Types.ObjectId | IAiTask;
|
|
31
108
|
aiHrCandidate: Types.ObjectId | IAiHrCandidate;
|
|
@@ -34,6 +111,13 @@ export interface IAiHrCandidateTopCandidate extends BaseSchema {
|
|
|
34
111
|
relevancy: string;
|
|
35
112
|
strengths: string[];
|
|
36
113
|
weaknesses: string[];
|
|
114
|
+
personalityAnalysis: PersonalityAnalysis;
|
|
115
|
+
companyBackgroundAnalysis: string;
|
|
116
|
+
educationBackgroundAnalysis: string;
|
|
117
|
+
addToOutreach: boolean;
|
|
118
|
+
isOutreached: boolean;
|
|
119
|
+
profileTag: ProfileTag;
|
|
37
120
|
}
|
|
38
121
|
export interface IAiHrCandidateTopCandidateModel extends BaseModel<IAiHrCandidateTopCandidate> {
|
|
39
122
|
}
|
|
123
|
+
export {};
|
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ProfileTag = void 0;
|
|
4
|
+
var ProfileTag;
|
|
5
|
+
(function (ProfileTag) {
|
|
6
|
+
ProfileTag["IGNORED"] = "ignored";
|
|
7
|
+
ProfileTag["NOT_INTERESTED"] = "notInterested";
|
|
8
|
+
})(ProfileTag || (exports.ProfileTag = ProfileTag = {}));
|