@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.
- 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 +9 -0
package/dist/apis/index.d.ts
CHANGED
|
@@ -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";
|
package/dist/apis/index.js
CHANGED
package/package.json
CHANGED
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
|
+
|