@migration-planner-ui/api-client 0.0.29 → 0.0.30
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/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/package.json +1 -1
- package/src/apis/index.ts +8 -0
package/dist/apis/index.d.ts
CHANGED
|
@@ -3,4 +3,5 @@ export { type CreateSourceRequest, type DeleteSourceRequest, type GetSourceReque
|
|
|
3
3
|
export { type HealthApiInterface, HealthApi } from "./HealthApi";
|
|
4
4
|
export { type AgentApiInterface, type DeleteAgentRequest, AgentApi } from "./AgentApi";
|
|
5
5
|
export { type AssessmentApiInterface, type CreateAssessmentRequest, type DeleteAssessmentRequest, type GetAssessmentRequest, type UpdateAssessmentRequest, AssessmentApi } from "./AssessmentApi";
|
|
6
|
+
export { type CancelJobRequest, type CreateRVToolsAssessmentRequest, type GetJobRequest, type JobApiInterface, JobApi } from "./JobApi";
|
|
6
7
|
export { type InfoApiInterface, InfoApi } from "./InfoApi";
|
package/dist/apis/index.js
CHANGED
package/package.json
CHANGED
package/src/apis/index.ts
CHANGED
|
@@ -36,6 +36,14 @@ export {
|
|
|
36
36
|
AssessmentApi
|
|
37
37
|
} from "./AssessmentApi";
|
|
38
38
|
|
|
39
|
+
export {
|
|
40
|
+
type CancelJobRequest,
|
|
41
|
+
type CreateRVToolsAssessmentRequest,
|
|
42
|
+
type GetJobRequest,
|
|
43
|
+
type JobApiInterface,
|
|
44
|
+
JobApi
|
|
45
|
+
} from "./JobApi";
|
|
46
|
+
|
|
39
47
|
export {
|
|
40
48
|
type InfoApiInterface,
|
|
41
49
|
InfoApi
|