@openbox/shared-types 0.1.56 → 0.1.57
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/index.d.ts +2 -2
- package/lib/services/UpdateManyStatus/Request.d.ts +4 -0
- package/lib/services/UpdateManyStatus/Request.js +3 -0
- package/lib/services/UpdateManyStatus/Request.js.map +1 -0
- package/lib/services/index.d.ts +2 -1
- package/package.json +1 -1
- package/src/index.ts +2 -0
- package/src/services/UpdateManyStatus/Request.ts +4 -0
- package/src/services/index.ts +2 -0
package/lib/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { CreateServiceRequest, CreateServiceResponse, DeleteServiceResponse, DeleteServicesRequest, DeleteServicesResponse, GetServiceResponse, GetServicesRequest, GetServicesResponse, IManyServices, IServiceSellingType, ISingleService } from './services';
|
|
2
|
-
export { IManyServices, GetServicesRequest, GetServicesResponse, ISingleService, IServiceSellingType, GetServiceResponse, CreateServiceRequest, CreateServiceResponse, DeleteServiceResponse, DeleteServicesRequest, DeleteServicesResponse, };
|
|
1
|
+
import { CreateServiceRequest, CreateServiceResponse, DeleteServiceResponse, DeleteServicesRequest, DeleteServicesResponse, GetServiceResponse, GetServicesRequest, GetServicesResponse, IManyServices, IServiceSellingType, ISingleService, UpdateServicesStatusRequest } from './services';
|
|
2
|
+
export { IManyServices, GetServicesRequest, GetServicesResponse, ISingleService, IServiceSellingType, GetServiceResponse, CreateServiceRequest, CreateServiceResponse, DeleteServiceResponse, DeleteServicesRequest, DeleteServicesResponse, UpdateServicesStatusRequest, };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../src/services/UpdateManyStatus/Request.ts"],"names":[],"mappings":""}
|
package/lib/services/index.d.ts
CHANGED
|
@@ -6,4 +6,5 @@ import { DeleteServiceResponse } from './DeleteSingle/Response';
|
|
|
6
6
|
import { GetServicesRequest } from './GetMany/Request';
|
|
7
7
|
import { GetServicesResponse, IManyServices } from './GetMany/Response';
|
|
8
8
|
import { GetServiceResponse, IServiceSellingType, ISingleService } from './GetSingle/Response';
|
|
9
|
-
|
|
9
|
+
import { UpdateServicesStatusRequest } from './UpdateManyStatus/Request';
|
|
10
|
+
export { IManyServices, GetServicesRequest, GetServicesResponse, ISingleService, IServiceSellingType, GetServiceResponse, CreateServiceRequest, CreateServiceResponse, DeleteServiceResponse, DeleteServicesRequest, DeleteServicesResponse, UpdateServicesStatusRequest, };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -10,6 +10,7 @@ import {
|
|
|
10
10
|
IManyServices,
|
|
11
11
|
IServiceSellingType,
|
|
12
12
|
ISingleService,
|
|
13
|
+
UpdateServicesStatusRequest,
|
|
13
14
|
} from './services'
|
|
14
15
|
|
|
15
16
|
export {
|
|
@@ -24,4 +25,5 @@ export {
|
|
|
24
25
|
DeleteServiceResponse,
|
|
25
26
|
DeleteServicesRequest,
|
|
26
27
|
DeleteServicesResponse,
|
|
28
|
+
UpdateServicesStatusRequest,
|
|
27
29
|
}
|
package/src/services/index.ts
CHANGED
|
@@ -10,6 +10,7 @@ import {
|
|
|
10
10
|
IServiceSellingType,
|
|
11
11
|
ISingleService,
|
|
12
12
|
} from './GetSingle/Response'
|
|
13
|
+
import { UpdateServicesStatusRequest } from './UpdateManyStatus/Request'
|
|
13
14
|
|
|
14
15
|
export {
|
|
15
16
|
IManyServices,
|
|
@@ -23,4 +24,5 @@ export {
|
|
|
23
24
|
DeleteServiceResponse,
|
|
24
25
|
DeleteServicesRequest,
|
|
25
26
|
DeleteServicesResponse,
|
|
27
|
+
UpdateServicesStatusRequest,
|
|
26
28
|
}
|