@openbox/shared-types 0.1.62 → 0.1.63
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/RecoverPassword/Request.d.ts +3 -0
- package/lib/auth/RecoverPassword/Request.js +3 -0
- package/lib/auth/RecoverPassword/Request.js.map +1 -0
- package/lib/auth/RecoverPassword/Response.d.ts +3 -0
- package/lib/auth/RecoverPassword/Response.js +3 -0
- package/lib/auth/RecoverPassword/Response.js.map +1 -0
- package/lib/auth/ResetPassword/Request.d.ts +4 -0
- package/lib/auth/ResetPassword/Request.js +3 -0
- package/lib/auth/ResetPassword/Request.js.map +1 -0
- package/lib/auth/ResetPassword/Response.d.ts +3 -0
- package/lib/auth/ResetPassword/Response.js +3 -0
- package/lib/auth/ResetPassword/Response.js.map +1 -0
- package/lib/auth/index.d.ts +5 -1
- package/lib/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/auth/RecoverPassword/Request.ts +3 -0
- package/src/auth/RecoverPassword/Response.ts +3 -0
- package/src/auth/ResetPassword/Request.ts +4 -0
- package/src/auth/ResetPassword/Response.ts +3 -0
- package/src/auth/index.ts +13 -1
- package/src/index.ts +13 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../src/auth/RecoverPassword/Request.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../src/auth/RecoverPassword/Response.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../src/auth/ResetPassword/Request.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../src/auth/ResetPassword/Response.ts"],"names":[],"mappings":""}
|
package/lib/auth/index.d.ts
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
import { AuthLoginRequest } from './Login/Request';
|
|
2
2
|
import { AuthLoginResponse, JWTResponse } from './Login/Response';
|
|
3
|
-
|
|
3
|
+
import { AuthRecoverPasswordRequest } from './RecoverPassword/Request';
|
|
4
|
+
import { AuthRecoverPasswordResponse } from './RecoverPassword/Response';
|
|
5
|
+
import { AuthResetPasswordRequest } from './ResetPassword/Request';
|
|
6
|
+
import { AuthResetPasswordResponse } from './ResetPassword/Response';
|
|
7
|
+
export { AuthLoginRequest, JWTResponse, AuthLoginResponse, AuthRecoverPasswordRequest, AuthRecoverPasswordResponse, AuthResetPasswordResponse, AuthResetPasswordRequest, };
|
package/lib/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { AuthLoginRequest, AuthLoginResponse, JWTResponse } from './auth';
|
|
1
|
+
import { AuthLoginRequest, AuthLoginResponse, AuthRecoverPasswordRequest, AuthRecoverPasswordResponse, AuthResetPasswordRequest, AuthResetPasswordResponse, JWTResponse } 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, };
|
|
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, };
|
package/package.json
CHANGED
package/src/auth/index.ts
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
import { AuthLoginRequest } from './Login/Request'
|
|
2
2
|
import { AuthLoginResponse, JWTResponse } from './Login/Response'
|
|
3
|
+
import { AuthRecoverPasswordRequest } from './RecoverPassword/Request'
|
|
4
|
+
import { AuthRecoverPasswordResponse } from './RecoverPassword/Response'
|
|
5
|
+
import { AuthResetPasswordRequest } from './ResetPassword/Request'
|
|
6
|
+
import { AuthResetPasswordResponse } from './ResetPassword/Response'
|
|
3
7
|
|
|
4
|
-
export {
|
|
8
|
+
export {
|
|
9
|
+
AuthLoginRequest,
|
|
10
|
+
JWTResponse,
|
|
11
|
+
AuthLoginResponse,
|
|
12
|
+
AuthRecoverPasswordRequest,
|
|
13
|
+
AuthRecoverPasswordResponse,
|
|
14
|
+
AuthResetPasswordResponse,
|
|
15
|
+
AuthResetPasswordRequest,
|
|
16
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
AuthLoginRequest,
|
|
3
|
+
AuthLoginResponse,
|
|
4
|
+
AuthRecoverPasswordRequest,
|
|
5
|
+
AuthRecoverPasswordResponse,
|
|
6
|
+
AuthResetPasswordRequest,
|
|
7
|
+
AuthResetPasswordResponse,
|
|
8
|
+
JWTResponse,
|
|
9
|
+
} from './auth'
|
|
2
10
|
import {
|
|
3
11
|
CreateServiceRequest,
|
|
4
12
|
CreateServiceResponse,
|
|
@@ -40,4 +48,8 @@ export {
|
|
|
40
48
|
AuthLoginRequest,
|
|
41
49
|
JWTResponse,
|
|
42
50
|
AuthLoginResponse,
|
|
51
|
+
AuthRecoverPasswordRequest,
|
|
52
|
+
AuthRecoverPasswordResponse,
|
|
53
|
+
AuthResetPasswordRequest,
|
|
54
|
+
AuthResetPasswordResponse,
|
|
43
55
|
}
|