@openbox/shared-types 0.1.54 → 0.1.55
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/CreateSingle/Request.d.ts +11 -0
- package/lib/services/CreateSingle/Request.js +3 -0
- package/lib/services/CreateSingle/Request.js.map +1 -0
- package/lib/services/CreateSingle/Response.d.ts +4 -0
- package/lib/services/CreateSingle/Response.js +3 -0
- package/lib/services/CreateSingle/Response.js.map +1 -0
- package/lib/services/index.d.ts +3 -1
- package/package.json +1 -1
- package/src/index.ts +4 -0
- package/src/services/CreateSingle/Request.ts +11 -0
- package/src/services/CreateSingle/Response.ts +4 -0
- package/src/services/index.ts +4 -0
package/lib/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { GetServiceResponse, GetServicesRequest, GetServicesResponse, IManyServices, IServiceSellingType, ISingleService } from './services';
|
|
2
|
-
export { IManyServices, GetServicesRequest, GetServicesResponse, ISingleService, IServiceSellingType, GetServiceResponse, };
|
|
1
|
+
import { CreateServiceRequest, CreateServiceResponse, GetServiceResponse, GetServicesRequest, GetServicesResponse, IManyServices, IServiceSellingType, ISingleService } from './services';
|
|
2
|
+
export { IManyServices, GetServicesRequest, GetServicesResponse, ISingleService, IServiceSellingType, GetServiceResponse, CreateServiceRequest, CreateServiceResponse, };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../src/services/CreateSingle/Request.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../src/services/CreateSingle/Response.ts"],"names":[],"mappings":""}
|
package/lib/services/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { CreateServiceRequest } from './CreateSingle/Request';
|
|
2
|
+
import { CreateServiceResponse } from './CreateSingle/Response';
|
|
1
3
|
import { GetServicesRequest } from './GetMany/Request';
|
|
2
4
|
import { GetServicesResponse, IManyServices } from './GetMany/Response';
|
|
3
5
|
import { GetServiceResponse, IServiceSellingType, ISingleService } from './GetSingle/Response';
|
|
4
|
-
export { IManyServices, GetServicesRequest, GetServicesResponse, ISingleService, IServiceSellingType, GetServiceResponse, };
|
|
6
|
+
export { IManyServices, GetServicesRequest, GetServicesResponse, ISingleService, IServiceSellingType, GetServiceResponse, CreateServiceRequest, CreateServiceResponse, };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
|
+
CreateServiceRequest,
|
|
3
|
+
CreateServiceResponse,
|
|
2
4
|
GetServiceResponse,
|
|
3
5
|
GetServicesRequest,
|
|
4
6
|
GetServicesResponse,
|
|
@@ -14,4 +16,6 @@ export {
|
|
|
14
16
|
ISingleService,
|
|
15
17
|
IServiceSellingType,
|
|
16
18
|
GetServiceResponse,
|
|
19
|
+
CreateServiceRequest,
|
|
20
|
+
CreateServiceResponse,
|
|
17
21
|
}
|
package/src/services/index.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { CreateServiceRequest } from './CreateSingle/Request'
|
|
2
|
+
import { CreateServiceResponse } from './CreateSingle/Response'
|
|
1
3
|
import { GetServicesRequest } from './GetMany/Request'
|
|
2
4
|
import { GetServicesResponse, IManyServices } from './GetMany/Response'
|
|
3
5
|
import {
|
|
@@ -13,4 +15,6 @@ export {
|
|
|
13
15
|
ISingleService,
|
|
14
16
|
IServiceSellingType,
|
|
15
17
|
GetServiceResponse,
|
|
18
|
+
CreateServiceRequest,
|
|
19
|
+
CreateServiceResponse,
|
|
16
20
|
}
|