@openbox/shared-types 0.1.64 → 0.1.65
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 +2 -1
- package/src/index.ts +2 -0
package/lib/auth/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { AuthGetUserResponse } from './GetUser/Response';
|
|
1
|
+
import { AuthGetUserResponse, LoggedUserInfo } 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, };
|
|
8
|
+
export { AuthLoginRequest, JWTResponse, AuthLoginResponse, AuthRecoverPasswordRequest, AuthRecoverPasswordResponse, AuthResetPasswordResponse, AuthResetPasswordRequest, AuthGetUserResponse, LoggedUserInfo, };
|
package/lib/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { AuthGetUserResponse, AuthLoginRequest, AuthLoginResponse, AuthRecoverPasswordRequest, AuthRecoverPasswordResponse, AuthResetPasswordRequest, AuthResetPasswordResponse, JWTResponse } from './auth';
|
|
1
|
+
import { AuthGetUserResponse, AuthLoginRequest, AuthLoginResponse, AuthRecoverPasswordRequest, AuthRecoverPasswordResponse, AuthResetPasswordRequest, AuthResetPasswordResponse, JWTResponse, LoggedUserInfo } 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, };
|
|
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, };
|
package/package.json
CHANGED
package/src/auth/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AuthGetUserResponse } from './GetUser/Response'
|
|
1
|
+
import { AuthGetUserResponse, LoggedUserInfo } 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'
|
|
@@ -15,4 +15,5 @@ export {
|
|
|
15
15
|
AuthResetPasswordResponse,
|
|
16
16
|
AuthResetPasswordRequest,
|
|
17
17
|
AuthGetUserResponse,
|
|
18
|
+
LoggedUserInfo,
|
|
18
19
|
}
|
package/src/index.ts
CHANGED
|
@@ -7,6 +7,7 @@ import {
|
|
|
7
7
|
AuthResetPasswordRequest,
|
|
8
8
|
AuthResetPasswordResponse,
|
|
9
9
|
JWTResponse,
|
|
10
|
+
LoggedUserInfo,
|
|
10
11
|
} from './auth'
|
|
11
12
|
import {
|
|
12
13
|
CreateServiceRequest,
|
|
@@ -54,4 +55,5 @@ export {
|
|
|
54
55
|
AuthResetPasswordRequest,
|
|
55
56
|
AuthResetPasswordResponse,
|
|
56
57
|
AuthGetUserResponse,
|
|
58
|
+
LoggedUserInfo,
|
|
57
59
|
}
|