@experts_hub/shared 1.0.29 → 1.0.31
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 +107 -1
- package/dist/index.d.ts +107 -1
- package/dist/index.js +91 -2
- package/dist/index.mjs +93 -3
- package/dist/modules/authentication/dto/index.d.ts +2 -0
- package/dist/modules/authentication/dto/logout.dto.d.ts +3 -0
- package/dist/modules/authentication/dto/refresh.dto.d.ts +3 -0
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/user/subadmin/dto/create-subadmin.dto.d.ts +7 -0
- package/dist/modules/user/subadmin/dto/index.d.ts +3 -0
- package/dist/modules/user/subadmin/dto/toggle-subadmin-visibility.dto.d.ts +3 -0
- package/dist/modules/user/subadmin/dto/update-subadmin.dto.d.ts +7 -0
- package/dist/modules/user/subadmin/index.d.ts +3 -0
- package/dist/modules/user/subadmin/pattern/pattern.d.ts +10 -0
- package/dist/modules/user/subadmin/subadmin.interface.d.ts +66 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -15,6 +15,112 @@ declare class LoginDto {
|
|
|
15
15
|
password: string;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
+
declare class RefreshDto {
|
|
19
|
+
refreshToken: string;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
declare class LogoutDto {
|
|
23
|
+
refreshToken: string;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
declare const SUBADMIN_PATTERN: {
|
|
27
|
+
fetchSubAdmins: string;
|
|
28
|
+
fetchDeletedSubAdmins: string;
|
|
29
|
+
fetchSubAdminDropdown: string;
|
|
30
|
+
findSubAdminById: string;
|
|
31
|
+
createSubAdmin: string;
|
|
32
|
+
toggleSubAdminStatus: string;
|
|
33
|
+
updateSubAdmin: string;
|
|
34
|
+
deleteSubAdmin: string;
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
declare class SubAdminDto {
|
|
38
|
+
firstName: string;
|
|
39
|
+
lastName: string;
|
|
40
|
+
email: string;
|
|
41
|
+
mobile: string;
|
|
42
|
+
isActive: boolean;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
declare class ToggleSubAdminVisibilityDto {
|
|
46
|
+
isActive: boolean;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
declare class UpdateSubAdminDto {
|
|
50
|
+
firstName: string;
|
|
51
|
+
lastName: string;
|
|
52
|
+
email: string;
|
|
53
|
+
mobile: string;
|
|
54
|
+
isActive: boolean;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
interface IFetchSubAdminQuery {
|
|
58
|
+
page_size?: number;
|
|
59
|
+
page: number;
|
|
60
|
+
searchText?: string;
|
|
61
|
+
subadmin: string;
|
|
62
|
+
right: string;
|
|
63
|
+
sortColumn?: string;
|
|
64
|
+
sortBy?: string;
|
|
65
|
+
}
|
|
66
|
+
interface IFetchSubAdminResponse {
|
|
67
|
+
statusCode: number;
|
|
68
|
+
status: boolean;
|
|
69
|
+
message: string;
|
|
70
|
+
data: any;
|
|
71
|
+
}
|
|
72
|
+
interface IFetchSubAdminByIdQuery {
|
|
73
|
+
permission?: string;
|
|
74
|
+
}
|
|
75
|
+
interface IFetchSubAdminByIdResponse {
|
|
76
|
+
statusCode: number;
|
|
77
|
+
status: boolean;
|
|
78
|
+
message: string;
|
|
79
|
+
data: any;
|
|
80
|
+
}
|
|
81
|
+
interface ICreateSubAdminPayload {
|
|
82
|
+
firstName: string;
|
|
83
|
+
lastName: string;
|
|
84
|
+
email: string;
|
|
85
|
+
mobile: string;
|
|
86
|
+
isActive: boolean;
|
|
87
|
+
}
|
|
88
|
+
interface ICreateSubAdminResponse {
|
|
89
|
+
statusCode: number;
|
|
90
|
+
status: boolean;
|
|
91
|
+
message: string;
|
|
92
|
+
}
|
|
93
|
+
interface IUpdateSubAdminPayload {
|
|
94
|
+
firstName: string;
|
|
95
|
+
lastName: string;
|
|
96
|
+
email: string;
|
|
97
|
+
mobile: string;
|
|
98
|
+
isActive: boolean;
|
|
99
|
+
}
|
|
100
|
+
interface IUpdateSubAdminResponse {
|
|
101
|
+
statusCode: number;
|
|
102
|
+
status: boolean;
|
|
103
|
+
message: string;
|
|
104
|
+
}
|
|
105
|
+
interface IToggleSubAdminVisibilityPayload {
|
|
106
|
+
isActive: boolean;
|
|
107
|
+
}
|
|
108
|
+
interface IToggleSubAdminVisibilityResponse {
|
|
109
|
+
statusCode: number;
|
|
110
|
+
status: boolean;
|
|
111
|
+
message: string;
|
|
112
|
+
}
|
|
113
|
+
interface IDeleteSubAdminResponse {
|
|
114
|
+
statusCode: number;
|
|
115
|
+
status: boolean;
|
|
116
|
+
message: string;
|
|
117
|
+
}
|
|
118
|
+
interface IAttachPermissionsToSubAdminResponse {
|
|
119
|
+
statusCode: number;
|
|
120
|
+
status: boolean;
|
|
121
|
+
message: string;
|
|
122
|
+
}
|
|
123
|
+
|
|
18
124
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
19
125
|
|
|
20
126
|
declare const UserRMQAdapter: (mode?: string) => MicroserviceOptions;
|
|
@@ -75,4 +181,4 @@ declare class User extends BaseEntity {
|
|
|
75
181
|
refreshTokens: RefreshToken[];
|
|
76
182
|
}
|
|
77
183
|
|
|
78
|
-
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, BaseEntity, LoginDto, RefreshToken, User, UserRMQAdapter, UserTCPAdapter };
|
|
184
|
+
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, LoginDto, LogoutDto, RefreshDto, RefreshToken, SUBADMIN_PATTERN, SubAdminDto, ToggleSubAdminVisibilityDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
|
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,112 @@ declare class LoginDto {
|
|
|
15
15
|
password: string;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
+
declare class RefreshDto {
|
|
19
|
+
refreshToken: string;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
declare class LogoutDto {
|
|
23
|
+
refreshToken: string;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
declare const SUBADMIN_PATTERN: {
|
|
27
|
+
fetchSubAdmins: string;
|
|
28
|
+
fetchDeletedSubAdmins: string;
|
|
29
|
+
fetchSubAdminDropdown: string;
|
|
30
|
+
findSubAdminById: string;
|
|
31
|
+
createSubAdmin: string;
|
|
32
|
+
toggleSubAdminStatus: string;
|
|
33
|
+
updateSubAdmin: string;
|
|
34
|
+
deleteSubAdmin: string;
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
declare class SubAdminDto {
|
|
38
|
+
firstName: string;
|
|
39
|
+
lastName: string;
|
|
40
|
+
email: string;
|
|
41
|
+
mobile: string;
|
|
42
|
+
isActive: boolean;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
declare class ToggleSubAdminVisibilityDto {
|
|
46
|
+
isActive: boolean;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
declare class UpdateSubAdminDto {
|
|
50
|
+
firstName: string;
|
|
51
|
+
lastName: string;
|
|
52
|
+
email: string;
|
|
53
|
+
mobile: string;
|
|
54
|
+
isActive: boolean;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
interface IFetchSubAdminQuery {
|
|
58
|
+
page_size?: number;
|
|
59
|
+
page: number;
|
|
60
|
+
searchText?: string;
|
|
61
|
+
subadmin: string;
|
|
62
|
+
right: string;
|
|
63
|
+
sortColumn?: string;
|
|
64
|
+
sortBy?: string;
|
|
65
|
+
}
|
|
66
|
+
interface IFetchSubAdminResponse {
|
|
67
|
+
statusCode: number;
|
|
68
|
+
status: boolean;
|
|
69
|
+
message: string;
|
|
70
|
+
data: any;
|
|
71
|
+
}
|
|
72
|
+
interface IFetchSubAdminByIdQuery {
|
|
73
|
+
permission?: string;
|
|
74
|
+
}
|
|
75
|
+
interface IFetchSubAdminByIdResponse {
|
|
76
|
+
statusCode: number;
|
|
77
|
+
status: boolean;
|
|
78
|
+
message: string;
|
|
79
|
+
data: any;
|
|
80
|
+
}
|
|
81
|
+
interface ICreateSubAdminPayload {
|
|
82
|
+
firstName: string;
|
|
83
|
+
lastName: string;
|
|
84
|
+
email: string;
|
|
85
|
+
mobile: string;
|
|
86
|
+
isActive: boolean;
|
|
87
|
+
}
|
|
88
|
+
interface ICreateSubAdminResponse {
|
|
89
|
+
statusCode: number;
|
|
90
|
+
status: boolean;
|
|
91
|
+
message: string;
|
|
92
|
+
}
|
|
93
|
+
interface IUpdateSubAdminPayload {
|
|
94
|
+
firstName: string;
|
|
95
|
+
lastName: string;
|
|
96
|
+
email: string;
|
|
97
|
+
mobile: string;
|
|
98
|
+
isActive: boolean;
|
|
99
|
+
}
|
|
100
|
+
interface IUpdateSubAdminResponse {
|
|
101
|
+
statusCode: number;
|
|
102
|
+
status: boolean;
|
|
103
|
+
message: string;
|
|
104
|
+
}
|
|
105
|
+
interface IToggleSubAdminVisibilityPayload {
|
|
106
|
+
isActive: boolean;
|
|
107
|
+
}
|
|
108
|
+
interface IToggleSubAdminVisibilityResponse {
|
|
109
|
+
statusCode: number;
|
|
110
|
+
status: boolean;
|
|
111
|
+
message: string;
|
|
112
|
+
}
|
|
113
|
+
interface IDeleteSubAdminResponse {
|
|
114
|
+
statusCode: number;
|
|
115
|
+
status: boolean;
|
|
116
|
+
message: string;
|
|
117
|
+
}
|
|
118
|
+
interface IAttachPermissionsToSubAdminResponse {
|
|
119
|
+
statusCode: number;
|
|
120
|
+
status: boolean;
|
|
121
|
+
message: string;
|
|
122
|
+
}
|
|
123
|
+
|
|
18
124
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
19
125
|
|
|
20
126
|
declare const UserRMQAdapter: (mode?: string) => MicroserviceOptions;
|
|
@@ -75,4 +181,4 @@ declare class User extends BaseEntity {
|
|
|
75
181
|
refreshTokens: RefreshToken[];
|
|
76
182
|
}
|
|
77
183
|
|
|
78
|
-
export { AUTHENTICATION_PATTERN, AccountStatus, AccountType, BaseEntity, LoginDto, RefreshToken, User, UserRMQAdapter, UserTCPAdapter };
|
|
184
|
+
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, LoginDto, LogoutDto, RefreshDto, RefreshToken, SUBADMIN_PATTERN, SubAdminDto, ToggleSubAdminVisibilityDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter };
|
package/dist/index.js
CHANGED
|
@@ -32,7 +32,13 @@ __export(index_exports, {
|
|
|
32
32
|
AccountType: () => AccountType,
|
|
33
33
|
BaseEntity: () => BaseEntity,
|
|
34
34
|
LoginDto: () => LoginDto,
|
|
35
|
+
LogoutDto: () => LogoutDto,
|
|
36
|
+
RefreshDto: () => RefreshDto,
|
|
35
37
|
RefreshToken: () => RefreshToken,
|
|
38
|
+
SUBADMIN_PATTERN: () => SUBADMIN_PATTERN,
|
|
39
|
+
SubAdminDto: () => SubAdminDto,
|
|
40
|
+
ToggleSubAdminVisibilityDto: () => ToggleSubAdminVisibilityDto,
|
|
41
|
+
UpdateSubAdminDto: () => UpdateSubAdminDto,
|
|
36
42
|
User: () => User,
|
|
37
43
|
UserRMQAdapter: () => UserRMQAdapter,
|
|
38
44
|
UserTCPAdapter: () => UserTCPAdapter
|
|
@@ -55,13 +61,90 @@ var import_class_validator = require("class-validator");
|
|
|
55
61
|
var LoginDto = class {
|
|
56
62
|
};
|
|
57
63
|
__decorateClass([
|
|
58
|
-
(0, import_class_validator.IsNotEmpty)({ message: "Please enter email." })
|
|
59
|
-
(0, import_class_validator.IsString)({ message: "Please enter valid email." })
|
|
64
|
+
(0, import_class_validator.IsNotEmpty)({ message: "Please enter email." })
|
|
60
65
|
], LoginDto.prototype, "email", 2);
|
|
61
66
|
__decorateClass([
|
|
62
67
|
(0, import_class_validator.IsNotEmpty)({ message: "Please enter password." })
|
|
63
68
|
], LoginDto.prototype, "password", 2);
|
|
64
69
|
|
|
70
|
+
// src/modules/authentication/dto/refresh.dto.ts
|
|
71
|
+
var import_class_validator2 = require("class-validator");
|
|
72
|
+
var RefreshDto = class {
|
|
73
|
+
};
|
|
74
|
+
__decorateClass([
|
|
75
|
+
(0, import_class_validator2.IsNotEmpty)({ message: "Please provide refresh token." })
|
|
76
|
+
], RefreshDto.prototype, "refreshToken", 2);
|
|
77
|
+
|
|
78
|
+
// src/modules/authentication/dto/logout.dto.ts
|
|
79
|
+
var import_class_validator3 = require("class-validator");
|
|
80
|
+
var LogoutDto = class {
|
|
81
|
+
};
|
|
82
|
+
__decorateClass([
|
|
83
|
+
(0, import_class_validator3.IsNotEmpty)({ message: "Please provide refresh token." })
|
|
84
|
+
], LogoutDto.prototype, "refreshToken", 2);
|
|
85
|
+
|
|
86
|
+
// src/modules/user/subadmin/pattern/pattern.ts
|
|
87
|
+
var SUBADMIN_PATTERN = {
|
|
88
|
+
fetchSubAdmins: "fetch.subadmins",
|
|
89
|
+
fetchDeletedSubAdmins: "fetch.deleted.subadmins",
|
|
90
|
+
fetchSubAdminDropdown: "fetch.subadmin.dropdown",
|
|
91
|
+
findSubAdminById: "fetch.subadmin.by.id",
|
|
92
|
+
createSubAdmin: "create.subadmin",
|
|
93
|
+
toggleSubAdminStatus: "toggle.subadmin.status",
|
|
94
|
+
updateSubAdmin: "update.subadmin",
|
|
95
|
+
deleteSubAdmin: "delete.subadmin"
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
// src/modules/user/subadmin/dto/create-subadmin.dto.ts
|
|
99
|
+
var import_class_validator4 = require("class-validator");
|
|
100
|
+
var SubAdminDto = class {
|
|
101
|
+
};
|
|
102
|
+
__decorateClass([
|
|
103
|
+
(0, import_class_validator4.IsNotEmpty)({ message: "Please enter first name." })
|
|
104
|
+
], SubAdminDto.prototype, "firstName", 2);
|
|
105
|
+
__decorateClass([
|
|
106
|
+
(0, import_class_validator4.IsNotEmpty)({ message: "Please enter last name." })
|
|
107
|
+
], SubAdminDto.prototype, "lastName", 2);
|
|
108
|
+
__decorateClass([
|
|
109
|
+
(0, import_class_validator4.IsNotEmpty)({ message: "Please enter email." })
|
|
110
|
+
], SubAdminDto.prototype, "email", 2);
|
|
111
|
+
__decorateClass([
|
|
112
|
+
(0, import_class_validator4.IsNotEmpty)({ message: "Please enter mobile number." })
|
|
113
|
+
], SubAdminDto.prototype, "mobile", 2);
|
|
114
|
+
__decorateClass([
|
|
115
|
+
(0, import_class_validator4.IsOptional)(),
|
|
116
|
+
(0, import_class_validator4.IsBoolean)({ message: "Is active must be a boolean value" })
|
|
117
|
+
], SubAdminDto.prototype, "isActive", 2);
|
|
118
|
+
|
|
119
|
+
// src/modules/user/subadmin/dto/toggle-subadmin-visibility.dto.ts
|
|
120
|
+
var import_class_validator5 = require("class-validator");
|
|
121
|
+
var ToggleSubAdminVisibilityDto = class {
|
|
122
|
+
};
|
|
123
|
+
__decorateClass([
|
|
124
|
+
(0, import_class_validator5.IsBoolean)()
|
|
125
|
+
], ToggleSubAdminVisibilityDto.prototype, "isActive", 2);
|
|
126
|
+
|
|
127
|
+
// src/modules/user/subadmin/dto/update-subadmin.dto.ts
|
|
128
|
+
var import_class_validator6 = require("class-validator");
|
|
129
|
+
var UpdateSubAdminDto = class {
|
|
130
|
+
};
|
|
131
|
+
__decorateClass([
|
|
132
|
+
(0, import_class_validator6.IsNotEmpty)({ message: "Please enter first name." })
|
|
133
|
+
], UpdateSubAdminDto.prototype, "firstName", 2);
|
|
134
|
+
__decorateClass([
|
|
135
|
+
(0, import_class_validator6.IsNotEmpty)({ message: "Please enter last name." })
|
|
136
|
+
], UpdateSubAdminDto.prototype, "lastName", 2);
|
|
137
|
+
__decorateClass([
|
|
138
|
+
(0, import_class_validator6.IsNotEmpty)({ message: "Please enter email." })
|
|
139
|
+
], UpdateSubAdminDto.prototype, "email", 2);
|
|
140
|
+
__decorateClass([
|
|
141
|
+
(0, import_class_validator6.IsNotEmpty)({ message: "Please enter mobile number." })
|
|
142
|
+
], UpdateSubAdminDto.prototype, "mobile", 2);
|
|
143
|
+
__decorateClass([
|
|
144
|
+
(0, import_class_validator6.IsOptional)(),
|
|
145
|
+
(0, import_class_validator6.IsBoolean)({ message: "Is active must be a boolean value" })
|
|
146
|
+
], UpdateSubAdminDto.prototype, "isActive", 2);
|
|
147
|
+
|
|
65
148
|
// src/adapters/tcp/user.tcp.adapter.ts
|
|
66
149
|
var import_dotenv = require("dotenv");
|
|
67
150
|
var import_microservices = require("@nestjs/microservices");
|
|
@@ -298,7 +381,13 @@ User = __decorateClass([
|
|
|
298
381
|
AccountType,
|
|
299
382
|
BaseEntity,
|
|
300
383
|
LoginDto,
|
|
384
|
+
LogoutDto,
|
|
385
|
+
RefreshDto,
|
|
301
386
|
RefreshToken,
|
|
387
|
+
SUBADMIN_PATTERN,
|
|
388
|
+
SubAdminDto,
|
|
389
|
+
ToggleSubAdminVisibilityDto,
|
|
390
|
+
UpdateSubAdminDto,
|
|
302
391
|
User,
|
|
303
392
|
UserRMQAdapter,
|
|
304
393
|
UserTCPAdapter
|
package/dist/index.mjs
CHANGED
|
@@ -22,19 +22,103 @@ var AUTHENTICATION_PATTERN = {
|
|
|
22
22
|
|
|
23
23
|
// src/modules/authentication/dto/login.dto.ts
|
|
24
24
|
import {
|
|
25
|
-
IsString,
|
|
26
25
|
IsNotEmpty
|
|
27
26
|
} from "class-validator";
|
|
28
27
|
var LoginDto = class {
|
|
29
28
|
};
|
|
30
29
|
__decorateClass([
|
|
31
|
-
IsNotEmpty({ message: "Please enter email." })
|
|
32
|
-
IsString({ message: "Please enter valid email." })
|
|
30
|
+
IsNotEmpty({ message: "Please enter email." })
|
|
33
31
|
], LoginDto.prototype, "email", 2);
|
|
34
32
|
__decorateClass([
|
|
35
33
|
IsNotEmpty({ message: "Please enter password." })
|
|
36
34
|
], LoginDto.prototype, "password", 2);
|
|
37
35
|
|
|
36
|
+
// src/modules/authentication/dto/refresh.dto.ts
|
|
37
|
+
import {
|
|
38
|
+
IsNotEmpty as IsNotEmpty2
|
|
39
|
+
} from "class-validator";
|
|
40
|
+
var RefreshDto = class {
|
|
41
|
+
};
|
|
42
|
+
__decorateClass([
|
|
43
|
+
IsNotEmpty2({ message: "Please provide refresh token." })
|
|
44
|
+
], RefreshDto.prototype, "refreshToken", 2);
|
|
45
|
+
|
|
46
|
+
// src/modules/authentication/dto/logout.dto.ts
|
|
47
|
+
import {
|
|
48
|
+
IsNotEmpty as IsNotEmpty3
|
|
49
|
+
} from "class-validator";
|
|
50
|
+
var LogoutDto = class {
|
|
51
|
+
};
|
|
52
|
+
__decorateClass([
|
|
53
|
+
IsNotEmpty3({ message: "Please provide refresh token." })
|
|
54
|
+
], LogoutDto.prototype, "refreshToken", 2);
|
|
55
|
+
|
|
56
|
+
// src/modules/user/subadmin/pattern/pattern.ts
|
|
57
|
+
var SUBADMIN_PATTERN = {
|
|
58
|
+
fetchSubAdmins: "fetch.subadmins",
|
|
59
|
+
fetchDeletedSubAdmins: "fetch.deleted.subadmins",
|
|
60
|
+
fetchSubAdminDropdown: "fetch.subadmin.dropdown",
|
|
61
|
+
findSubAdminById: "fetch.subadmin.by.id",
|
|
62
|
+
createSubAdmin: "create.subadmin",
|
|
63
|
+
toggleSubAdminStatus: "toggle.subadmin.status",
|
|
64
|
+
updateSubAdmin: "update.subadmin",
|
|
65
|
+
deleteSubAdmin: "delete.subadmin"
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
// src/modules/user/subadmin/dto/create-subadmin.dto.ts
|
|
69
|
+
import {
|
|
70
|
+
IsNotEmpty as IsNotEmpty4,
|
|
71
|
+
IsOptional,
|
|
72
|
+
IsBoolean
|
|
73
|
+
} from "class-validator";
|
|
74
|
+
var SubAdminDto = class {
|
|
75
|
+
};
|
|
76
|
+
__decorateClass([
|
|
77
|
+
IsNotEmpty4({ message: "Please enter first name." })
|
|
78
|
+
], SubAdminDto.prototype, "firstName", 2);
|
|
79
|
+
__decorateClass([
|
|
80
|
+
IsNotEmpty4({ message: "Please enter last name." })
|
|
81
|
+
], SubAdminDto.prototype, "lastName", 2);
|
|
82
|
+
__decorateClass([
|
|
83
|
+
IsNotEmpty4({ message: "Please enter email." })
|
|
84
|
+
], SubAdminDto.prototype, "email", 2);
|
|
85
|
+
__decorateClass([
|
|
86
|
+
IsNotEmpty4({ message: "Please enter mobile number." })
|
|
87
|
+
], SubAdminDto.prototype, "mobile", 2);
|
|
88
|
+
__decorateClass([
|
|
89
|
+
IsOptional(),
|
|
90
|
+
IsBoolean({ message: "Is active must be a boolean value" })
|
|
91
|
+
], SubAdminDto.prototype, "isActive", 2);
|
|
92
|
+
|
|
93
|
+
// src/modules/user/subadmin/dto/toggle-subadmin-visibility.dto.ts
|
|
94
|
+
import { IsBoolean as IsBoolean2 } from "class-validator";
|
|
95
|
+
var ToggleSubAdminVisibilityDto = class {
|
|
96
|
+
};
|
|
97
|
+
__decorateClass([
|
|
98
|
+
IsBoolean2()
|
|
99
|
+
], ToggleSubAdminVisibilityDto.prototype, "isActive", 2);
|
|
100
|
+
|
|
101
|
+
// src/modules/user/subadmin/dto/update-subadmin.dto.ts
|
|
102
|
+
import { IsBoolean as IsBoolean3, IsNotEmpty as IsNotEmpty5, IsOptional as IsOptional2 } from "class-validator";
|
|
103
|
+
var UpdateSubAdminDto = class {
|
|
104
|
+
};
|
|
105
|
+
__decorateClass([
|
|
106
|
+
IsNotEmpty5({ message: "Please enter first name." })
|
|
107
|
+
], UpdateSubAdminDto.prototype, "firstName", 2);
|
|
108
|
+
__decorateClass([
|
|
109
|
+
IsNotEmpty5({ message: "Please enter last name." })
|
|
110
|
+
], UpdateSubAdminDto.prototype, "lastName", 2);
|
|
111
|
+
__decorateClass([
|
|
112
|
+
IsNotEmpty5({ message: "Please enter email." })
|
|
113
|
+
], UpdateSubAdminDto.prototype, "email", 2);
|
|
114
|
+
__decorateClass([
|
|
115
|
+
IsNotEmpty5({ message: "Please enter mobile number." })
|
|
116
|
+
], UpdateSubAdminDto.prototype, "mobile", 2);
|
|
117
|
+
__decorateClass([
|
|
118
|
+
IsOptional2(),
|
|
119
|
+
IsBoolean3({ message: "Is active must be a boolean value" })
|
|
120
|
+
], UpdateSubAdminDto.prototype, "isActive", 2);
|
|
121
|
+
|
|
38
122
|
// src/adapters/tcp/user.tcp.adapter.ts
|
|
39
123
|
import { config } from "dotenv";
|
|
40
124
|
import { Transport } from "@nestjs/microservices";
|
|
@@ -285,7 +369,13 @@ export {
|
|
|
285
369
|
AccountType,
|
|
286
370
|
BaseEntity,
|
|
287
371
|
LoginDto,
|
|
372
|
+
LogoutDto,
|
|
373
|
+
RefreshDto,
|
|
288
374
|
RefreshToken,
|
|
375
|
+
SUBADMIN_PATTERN,
|
|
376
|
+
SubAdminDto,
|
|
377
|
+
ToggleSubAdminVisibilityDto,
|
|
378
|
+
UpdateSubAdminDto,
|
|
289
379
|
User,
|
|
290
380
|
UserRMQAdapter,
|
|
291
381
|
UserTCPAdapter
|
package/dist/modules/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const SUBADMIN_PATTERN: {
|
|
2
|
+
fetchSubAdmins: string;
|
|
3
|
+
fetchDeletedSubAdmins: string;
|
|
4
|
+
fetchSubAdminDropdown: string;
|
|
5
|
+
findSubAdminById: string;
|
|
6
|
+
createSubAdmin: string;
|
|
7
|
+
toggleSubAdminStatus: string;
|
|
8
|
+
updateSubAdmin: string;
|
|
9
|
+
deleteSubAdmin: string;
|
|
10
|
+
};
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
export interface IFetchSubAdminQuery {
|
|
2
|
+
page_size?: number;
|
|
3
|
+
page: number;
|
|
4
|
+
searchText?: string;
|
|
5
|
+
subadmin: string;
|
|
6
|
+
right: string;
|
|
7
|
+
sortColumn?: string;
|
|
8
|
+
sortBy?: string;
|
|
9
|
+
}
|
|
10
|
+
export interface IFetchSubAdminResponse {
|
|
11
|
+
statusCode: number;
|
|
12
|
+
status: boolean;
|
|
13
|
+
message: string;
|
|
14
|
+
data: any;
|
|
15
|
+
}
|
|
16
|
+
export interface IFetchSubAdminByIdQuery {
|
|
17
|
+
permission?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface IFetchSubAdminByIdResponse {
|
|
20
|
+
statusCode: number;
|
|
21
|
+
status: boolean;
|
|
22
|
+
message: string;
|
|
23
|
+
data: any;
|
|
24
|
+
}
|
|
25
|
+
export interface ICreateSubAdminPayload {
|
|
26
|
+
firstName: string;
|
|
27
|
+
lastName: string;
|
|
28
|
+
email: string;
|
|
29
|
+
mobile: string;
|
|
30
|
+
isActive: boolean;
|
|
31
|
+
}
|
|
32
|
+
export interface ICreateSubAdminResponse {
|
|
33
|
+
statusCode: number;
|
|
34
|
+
status: boolean;
|
|
35
|
+
message: string;
|
|
36
|
+
}
|
|
37
|
+
export interface IUpdateSubAdminPayload {
|
|
38
|
+
firstName: string;
|
|
39
|
+
lastName: string;
|
|
40
|
+
email: string;
|
|
41
|
+
mobile: string;
|
|
42
|
+
isActive: boolean;
|
|
43
|
+
}
|
|
44
|
+
export interface IUpdateSubAdminResponse {
|
|
45
|
+
statusCode: number;
|
|
46
|
+
status: boolean;
|
|
47
|
+
message: string;
|
|
48
|
+
}
|
|
49
|
+
export interface IToggleSubAdminVisibilityPayload {
|
|
50
|
+
isActive: boolean;
|
|
51
|
+
}
|
|
52
|
+
export interface IToggleSubAdminVisibilityResponse {
|
|
53
|
+
statusCode: number;
|
|
54
|
+
status: boolean;
|
|
55
|
+
message: string;
|
|
56
|
+
}
|
|
57
|
+
export interface IDeleteSubAdminResponse {
|
|
58
|
+
statusCode: number;
|
|
59
|
+
status: boolean;
|
|
60
|
+
message: string;
|
|
61
|
+
}
|
|
62
|
+
export interface IAttachPermissionsToSubAdminResponse {
|
|
63
|
+
statusCode: number;
|
|
64
|
+
status: boolean;
|
|
65
|
+
message: string;
|
|
66
|
+
}
|