@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.
@@ -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";
@@ -5,4 +5,5 @@ export { SourceApi } from "./SourceApi";
5
5
  export { HealthApi } from "./HealthApi";
6
6
  export { AgentApi } from "./AgentApi";
7
7
  export { AssessmentApi } from "./AssessmentApi";
8
+ export { JobApi } from "./JobApi";
8
9
  export { InfoApi } from "./InfoApi";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@migration-planner-ui/api-client",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "description": "OpenAPI client for the Migration Planner API",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
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