@migration-planner-ui/api-client 0.0.14 → 0.0.15

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.
@@ -2,3 +2,4 @@ export { type HeadImageRequest, type ImageApiInterface, ImageApi, } from "./Imag
2
2
  export { type CreateSourceRequest, type DeleteSourceRequest, type GetSourceRequest, type ListSourcesRequest, type SourceApiInterface, SourceApi, type UpdateSourceRequest, type UpdateInventoryRequest } from "./SourceApi";
3
3
  export { type HealthApiInterface, HealthApi } from "./HealthApi";
4
4
  export { type AgentApiInterface, type DeleteAgentRequest, AgentApi } from "./AgentApi";
5
+ export { type AssessmentApiInterface, type CreateAssessmentRequest, type DeleteAssessmentRequest, type GetAssessmentRequest, AssessmentApi } from "./AssessmentApi";
@@ -4,3 +4,4 @@ export { ImageApi, } from "./ImageApi";
4
4
  export { SourceApi } from "./SourceApi";
5
5
  export { HealthApi } from "./HealthApi";
6
6
  export { AgentApi } from "./AgentApi";
7
+ export { AssessmentApi } from "./AssessmentApi";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@migration-planner-ui/api-client",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "OpenAPI client for the Migration Planner API",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
package/src/apis/index.ts CHANGED
@@ -27,3 +27,12 @@ export {
27
27
  type DeleteAgentRequest,
28
28
  AgentApi
29
29
  } from "./AgentApi";
30
+
31
+ export {
32
+ type AssessmentApiInterface,
33
+ type CreateAssessmentRequest,
34
+ type DeleteAssessmentRequest,
35
+ type GetAssessmentRequest,
36
+ AssessmentApi
37
+ } from "./AssessmentApi";
38
+