@openbox/shared-types 0.1.65 → 0.1.66
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/lib/auth/index.d.ts +2 -2
- package/lib/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/auth/index.ts +6 -1
- package/src/index.ts +2 -0
package/lib/auth/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { AuthGetUserResponse, LoggedUserInfo } from './GetUser/Response';
|
|
1
|
+
import { AuthGetUserResponse, LoggedUserInfo, LoggedUserInfoProfileAccess } from './GetUser/Response';
|
|
2
2
|
import { AuthLoginRequest } from './Login/Request';
|
|
3
3
|
import { AuthLoginResponse, JWTResponse } from './Login/Response';
|
|
4
4
|
import { AuthRecoverPasswordRequest } from './RecoverPassword/Request';
|
|
5
5
|
import { AuthRecoverPasswordResponse } from './RecoverPassword/Response';
|
|
6
6
|
import { AuthResetPasswordRequest } from './ResetPassword/Request';
|
|
7
7
|
import { AuthResetPasswordResponse } from './ResetPassword/Response';
|
|
8
|
-
export { AuthLoginRequest, JWTResponse, AuthLoginResponse, AuthRecoverPasswordRequest, AuthRecoverPasswordResponse, AuthResetPasswordResponse, AuthResetPasswordRequest, AuthGetUserResponse, LoggedUserInfo, };
|
|
8
|
+
export { AuthLoginRequest, JWTResponse, AuthLoginResponse, AuthRecoverPasswordRequest, AuthRecoverPasswordResponse, AuthResetPasswordResponse, AuthResetPasswordRequest, AuthGetUserResponse, LoggedUserInfo, LoggedUserInfoProfileAccess, };
|
package/lib/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { AuthGetUserResponse, AuthLoginRequest, AuthLoginResponse, AuthRecoverPasswordRequest, AuthRecoverPasswordResponse, AuthResetPasswordRequest, AuthResetPasswordResponse, JWTResponse, LoggedUserInfo } from './auth';
|
|
1
|
+
import { AuthGetUserResponse, AuthLoginRequest, AuthLoginResponse, AuthRecoverPasswordRequest, AuthRecoverPasswordResponse, AuthResetPasswordRequest, AuthResetPasswordResponse, JWTResponse, LoggedUserInfo, LoggedUserInfoProfileAccess } from './auth';
|
|
2
2
|
import { CreateServiceRequest, CreateServiceResponse, DeleteServiceResponse, DeleteServicesRequest, DeleteServicesResponse, GetServiceResponse, GetServicesRequest, GetServicesResponse, ManyServices, ServiceSellingType, SingleService, UpdateServiceRequest, UpdateServiceResponse, UpdateServicesStatusRequest, UpdateServicesStatusResponse, UpdateServiceStatusRequest, UpdateServiceStatusResponse } from './services';
|
|
3
|
-
export { ManyServices, GetServicesRequest, GetServicesResponse, SingleService, ServiceSellingType, GetServiceResponse, CreateServiceRequest, CreateServiceResponse, DeleteServiceResponse, DeleteServicesRequest, DeleteServicesResponse, UpdateServicesStatusRequest, UpdateServicesStatusResponse, UpdateServiceStatusRequest, UpdateServiceStatusResponse, UpdateServiceRequest, UpdateServiceResponse, AuthLoginRequest, JWTResponse, AuthLoginResponse, AuthRecoverPasswordRequest, AuthRecoverPasswordResponse, AuthResetPasswordRequest, AuthResetPasswordResponse, AuthGetUserResponse, LoggedUserInfo, };
|
|
3
|
+
export { ManyServices, GetServicesRequest, GetServicesResponse, SingleService, ServiceSellingType, GetServiceResponse, CreateServiceRequest, CreateServiceResponse, DeleteServiceResponse, DeleteServicesRequest, DeleteServicesResponse, UpdateServicesStatusRequest, UpdateServicesStatusResponse, UpdateServiceStatusRequest, UpdateServiceStatusResponse, UpdateServiceRequest, UpdateServiceResponse, AuthLoginRequest, JWTResponse, AuthLoginResponse, AuthRecoverPasswordRequest, AuthRecoverPasswordResponse, AuthResetPasswordRequest, AuthResetPasswordResponse, AuthGetUserResponse, LoggedUserInfo, LoggedUserInfoProfileAccess, };
|
package/package.json
CHANGED
package/src/auth/index.ts
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
AuthGetUserResponse,
|
|
3
|
+
LoggedUserInfo,
|
|
4
|
+
LoggedUserInfoProfileAccess,
|
|
5
|
+
} from './GetUser/Response'
|
|
2
6
|
import { AuthLoginRequest } from './Login/Request'
|
|
3
7
|
import { AuthLoginResponse, JWTResponse } from './Login/Response'
|
|
4
8
|
import { AuthRecoverPasswordRequest } from './RecoverPassword/Request'
|
|
@@ -16,4 +20,5 @@ export {
|
|
|
16
20
|
AuthResetPasswordRequest,
|
|
17
21
|
AuthGetUserResponse,
|
|
18
22
|
LoggedUserInfo,
|
|
23
|
+
LoggedUserInfoProfileAccess,
|
|
19
24
|
}
|
package/src/index.ts
CHANGED
|
@@ -8,6 +8,7 @@ import {
|
|
|
8
8
|
AuthResetPasswordResponse,
|
|
9
9
|
JWTResponse,
|
|
10
10
|
LoggedUserInfo,
|
|
11
|
+
LoggedUserInfoProfileAccess,
|
|
11
12
|
} from './auth'
|
|
12
13
|
import {
|
|
13
14
|
CreateServiceRequest,
|
|
@@ -56,4 +57,5 @@ export {
|
|
|
56
57
|
AuthResetPasswordResponse,
|
|
57
58
|
AuthGetUserResponse,
|
|
58
59
|
LoggedUserInfo,
|
|
60
|
+
LoggedUserInfoProfileAccess,
|
|
59
61
|
}
|