@experts_hub/shared 1.0.596 → 1.0.597
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 +1834 -1826
- package/dist/index.d.ts +1834 -1826
- package/dist/index.js +4740 -4725
- package/dist/index.mjs +5068 -5053
- package/dist/modules/user/subadmin/dto/create-subadmin.dto.d.ts +5 -1
- package/dist/modules/user/subadmin/dto/update-subadmin.dto.d.ts +5 -1
- package/package.json +1 -1
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
declare enum AccountType {
|
|
2
|
+
ADMIN = "ADMIN",
|
|
3
|
+
SUB_ADMIN = "SUB_ADMIN"
|
|
4
|
+
}
|
|
2
5
|
export declare class CreateSubAdminDto {
|
|
3
6
|
userName: string;
|
|
4
7
|
firstName: string;
|
|
@@ -10,3 +13,4 @@ export declare class CreateSubAdminDto {
|
|
|
10
13
|
password: string;
|
|
11
14
|
roleIds: string;
|
|
12
15
|
}
|
|
16
|
+
export {};
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
declare enum AccountType {
|
|
2
|
+
ADMIN = "ADMIN",
|
|
3
|
+
SUB_ADMIN = "SUB_ADMIN"
|
|
4
|
+
}
|
|
2
5
|
export declare class UpdateSubAdminDto {
|
|
3
6
|
userName: string;
|
|
4
7
|
firstName: string;
|
|
@@ -10,3 +13,4 @@ export declare class UpdateSubAdminDto {
|
|
|
10
13
|
password?: string;
|
|
11
14
|
roleIds: string;
|
|
12
15
|
}
|
|
16
|
+
export {};
|