@openbox/shared-types 0.1.58 → 0.1.59
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/UpdateSingleStatus/Request.d.ts +3 -0
- package/lib/services/UpdateSingleStatus/Request.js +3 -0
- package/lib/services/UpdateSingleStatus/Request.js.map +1 -0
- package/lib/services/UpdateSingleStatus/Response.d.ts +3 -0
- package/lib/services/UpdateSingleStatus/Response.js +3 -0
- package/lib/services/UpdateSingleStatus/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/UpdateSingleStatus/Request.ts +3 -0
- package/src/services/UpdateSingleStatus/Response.ts +3 -0
- package/src/services/index.ts +4 -0
package/lib/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { CreateServiceRequest, CreateServiceResponse, DeleteServiceResponse, DeleteServicesRequest, DeleteServicesResponse, GetServiceResponse, GetServicesRequest, GetServicesResponse, IManyServices, IServiceSellingType, ISingleService, UpdateServicesStatusRequest, UpdateServicesStatusResponse } from './services';
|
|
2
|
-
export { IManyServices, GetServicesRequest, GetServicesResponse, ISingleService, IServiceSellingType, GetServiceResponse, CreateServiceRequest, CreateServiceResponse, DeleteServiceResponse, DeleteServicesRequest, DeleteServicesResponse, UpdateServicesStatusRequest, UpdateServicesStatusResponse, };
|
|
1
|
+
import { CreateServiceRequest, CreateServiceResponse, DeleteServiceResponse, DeleteServicesRequest, DeleteServicesResponse, GetServiceResponse, GetServicesRequest, GetServicesResponse, IManyServices, IServiceSellingType, ISingleService, UpdateServicesStatusRequest, UpdateServicesStatusResponse, UpdateServiceStatusRequest, UpdateServiceStatusResponse } from './services';
|
|
2
|
+
export { IManyServices, GetServicesRequest, GetServicesResponse, ISingleService, IServiceSellingType, GetServiceResponse, CreateServiceRequest, CreateServiceResponse, DeleteServiceResponse, DeleteServicesRequest, DeleteServicesResponse, UpdateServicesStatusRequest, UpdateServicesStatusResponse, UpdateServiceStatusRequest, UpdateServiceStatusResponse, };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../src/services/UpdateSingleStatus/Request.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../src/services/UpdateSingleStatus/Response.ts"],"names":[],"mappings":""}
|
package/lib/services/index.d.ts
CHANGED
|
@@ -8,4 +8,6 @@ import { GetServicesResponse, IManyServices } from './GetMany/Response';
|
|
|
8
8
|
import { GetServiceResponse, IServiceSellingType, ISingleService } from './GetSingle/Response';
|
|
9
9
|
import { UpdateServicesStatusRequest } from './UpdateManyStatuses/Request';
|
|
10
10
|
import { UpdateServicesStatusResponse } from './UpdateManyStatuses/Response';
|
|
11
|
-
|
|
11
|
+
import { UpdateServiceStatusRequest } from './UpdateSingleStatus/Request';
|
|
12
|
+
import { UpdateServiceStatusResponse } from './UpdateSingleStatus/Response';
|
|
13
|
+
export { IManyServices, GetServicesRequest, GetServicesResponse, ISingleService, IServiceSellingType, GetServiceResponse, CreateServiceRequest, CreateServiceResponse, DeleteServiceResponse, DeleteServicesRequest, DeleteServicesResponse, UpdateServicesStatusRequest, UpdateServicesStatusResponse, UpdateServiceStatusRequest, UpdateServiceStatusResponse, };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -12,6 +12,8 @@ import {
|
|
|
12
12
|
ISingleService,
|
|
13
13
|
UpdateServicesStatusRequest,
|
|
14
14
|
UpdateServicesStatusResponse,
|
|
15
|
+
UpdateServiceStatusRequest,
|
|
16
|
+
UpdateServiceStatusResponse,
|
|
15
17
|
} from './services'
|
|
16
18
|
|
|
17
19
|
export {
|
|
@@ -28,4 +30,6 @@ export {
|
|
|
28
30
|
DeleteServicesResponse,
|
|
29
31
|
UpdateServicesStatusRequest,
|
|
30
32
|
UpdateServicesStatusResponse,
|
|
33
|
+
UpdateServiceStatusRequest,
|
|
34
|
+
UpdateServiceStatusResponse,
|
|
31
35
|
}
|
package/src/services/index.ts
CHANGED
|
@@ -12,6 +12,8 @@ import {
|
|
|
12
12
|
} from './GetSingle/Response'
|
|
13
13
|
import { UpdateServicesStatusRequest } from './UpdateManyStatuses/Request'
|
|
14
14
|
import { UpdateServicesStatusResponse } from './UpdateManyStatuses/Response'
|
|
15
|
+
import { UpdateServiceStatusRequest } from './UpdateSingleStatus/Request'
|
|
16
|
+
import { UpdateServiceStatusResponse } from './UpdateSingleStatus/Response'
|
|
15
17
|
|
|
16
18
|
export {
|
|
17
19
|
IManyServices,
|
|
@@ -27,4 +29,6 @@ export {
|
|
|
27
29
|
DeleteServicesResponse,
|
|
28
30
|
UpdateServicesStatusRequest,
|
|
29
31
|
UpdateServicesStatusResponse,
|
|
32
|
+
UpdateServiceStatusRequest,
|
|
33
|
+
UpdateServiceStatusResponse,
|
|
30
34
|
}
|