@experts_hub/shared 1.0.32 → 1.0.33
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/index.d.mts
CHANGED
|
@@ -23,6 +23,10 @@ declare class LogoutDto {
|
|
|
23
23
|
refreshToken: string;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
+
declare const RESUME_PARSER_PATTERN: {
|
|
27
|
+
handleResumeParsing: string;
|
|
28
|
+
};
|
|
29
|
+
|
|
26
30
|
declare const SUBADMIN_PATTERN: {
|
|
27
31
|
fetchSubAdmins: string;
|
|
28
32
|
fetchDeletedSubAdmins: string;
|
|
@@ -185,4 +189,4 @@ declare class User extends BaseEntity {
|
|
|
185
189
|
refreshTokens: RefreshToken[];
|
|
186
190
|
}
|
|
187
191
|
|
|
188
|
-
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, BaseEntity, type IAttachPermissionsToSubAdminResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteSubAdminResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IToggleSubAdminVisibilityPayload, type IToggleSubAdminVisibilityResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JobRMQAdapter, JobTCPAdapter, LoginDto, LogoutDto, RefreshDto, RefreshToken, SUBADMIN_PATTERN, SubAdminDto, ToggleSubAdminVisibilityDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
|
|
192
|
+
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, BaseEntity, type IAttachPermissionsToSubAdminResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteSubAdminResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IToggleSubAdminVisibilityPayload, type IToggleSubAdminVisibilityResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JobRMQAdapter, JobTCPAdapter, LoginDto, LogoutDto, RESUME_PARSER_PATTERN, RefreshDto, RefreshToken, SUBADMIN_PATTERN, SubAdminDto, ToggleSubAdminVisibilityDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
|
package/dist/index.d.ts
CHANGED
|
@@ -23,6 +23,10 @@ declare class LogoutDto {
|
|
|
23
23
|
refreshToken: string;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
+
declare const RESUME_PARSER_PATTERN: {
|
|
27
|
+
handleResumeParsing: string;
|
|
28
|
+
};
|
|
29
|
+
|
|
26
30
|
declare const SUBADMIN_PATTERN: {
|
|
27
31
|
fetchSubAdmins: string;
|
|
28
32
|
fetchDeletedSubAdmins: string;
|
|
@@ -185,4 +189,4 @@ declare class User extends BaseEntity {
|
|
|
185
189
|
refreshTokens: RefreshToken[];
|
|
186
190
|
}
|
|
187
191
|
|
|
188
|
-
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, BaseEntity, type IAttachPermissionsToSubAdminResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteSubAdminResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IToggleSubAdminVisibilityPayload, type IToggleSubAdminVisibilityResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JobRMQAdapter, JobTCPAdapter, LoginDto, LogoutDto, RefreshDto, RefreshToken, SUBADMIN_PATTERN, SubAdminDto, ToggleSubAdminVisibilityDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
|
|
192
|
+
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, BaseEntity, type IAttachPermissionsToSubAdminResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteSubAdminResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, type IToggleSubAdminVisibilityPayload, type IToggleSubAdminVisibilityResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, JobRMQAdapter, JobTCPAdapter, LoginDto, LogoutDto, RESUME_PARSER_PATTERN, RefreshDto, RefreshToken, SUBADMIN_PATTERN, SubAdminDto, ToggleSubAdminVisibilityDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
|
package/dist/index.js
CHANGED
|
@@ -35,6 +35,7 @@ __export(index_exports, {
|
|
|
35
35
|
JobTCPAdapter: () => JobTCPAdapter,
|
|
36
36
|
LoginDto: () => LoginDto,
|
|
37
37
|
LogoutDto: () => LogoutDto,
|
|
38
|
+
RESUME_PARSER_PATTERN: () => RESUME_PARSER_PATTERN,
|
|
38
39
|
RefreshDto: () => RefreshDto,
|
|
39
40
|
RefreshToken: () => RefreshToken,
|
|
40
41
|
SUBADMIN_PATTERN: () => SUBADMIN_PATTERN,
|
|
@@ -85,6 +86,11 @@ __decorateClass([
|
|
|
85
86
|
(0, import_class_validator3.IsNotEmpty)({ message: "Please provide refresh token." })
|
|
86
87
|
], LogoutDto.prototype, "refreshToken", 2);
|
|
87
88
|
|
|
89
|
+
// src/modules/resume-parser/pattern/pattern.ts
|
|
90
|
+
var RESUME_PARSER_PATTERN = {
|
|
91
|
+
handleResumeParsing: "handle.resume.parsing"
|
|
92
|
+
};
|
|
93
|
+
|
|
88
94
|
// src/modules/user/subadmin/pattern/pattern.ts
|
|
89
95
|
var SUBADMIN_PATTERN = {
|
|
90
96
|
fetchSubAdmins: "fetch.subadmins",
|
|
@@ -458,6 +464,7 @@ User = __decorateClass([
|
|
|
458
464
|
JobTCPAdapter,
|
|
459
465
|
LoginDto,
|
|
460
466
|
LogoutDto,
|
|
467
|
+
RESUME_PARSER_PATTERN,
|
|
461
468
|
RefreshDto,
|
|
462
469
|
RefreshToken,
|
|
463
470
|
SUBADMIN_PATTERN,
|
package/dist/index.mjs
CHANGED
|
@@ -53,6 +53,11 @@ __decorateClass([
|
|
|
53
53
|
IsNotEmpty3({ message: "Please provide refresh token." })
|
|
54
54
|
], LogoutDto.prototype, "refreshToken", 2);
|
|
55
55
|
|
|
56
|
+
// src/modules/resume-parser/pattern/pattern.ts
|
|
57
|
+
var RESUME_PARSER_PATTERN = {
|
|
58
|
+
handleResumeParsing: "handle.resume.parsing"
|
|
59
|
+
};
|
|
60
|
+
|
|
56
61
|
// src/modules/user/subadmin/pattern/pattern.ts
|
|
57
62
|
var SUBADMIN_PATTERN = {
|
|
58
63
|
fetchSubAdmins: "fetch.subadmins",
|
|
@@ -444,6 +449,7 @@ export {
|
|
|
444
449
|
JobTCPAdapter,
|
|
445
450
|
LoginDto,
|
|
446
451
|
LogoutDto,
|
|
452
|
+
RESUME_PARSER_PATTERN,
|
|
447
453
|
RefreshDto,
|
|
448
454
|
RefreshToken,
|
|
449
455
|
SUBADMIN_PATTERN,
|
package/dist/modules/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './pattern/pattern';
|