@migration-planner-ui/api-client 0.0.2 → 0.0.4

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.
@@ -1,4 +1,4 @@
1
1
  export { type GetImageRequest, type HeadImageRequest, type ImageApiInterface, ImageApi, } from "./ImageApi";
2
- export { type CreateSourceRequest, type DeleteSourceRequest, type ListSourcesRequest, type SourceApiInterface, SourceApi, } from "./SourceApi";
2
+ export { type CreateSourceRequest, type DeleteSourceRequest, type ListSourcesRequest, type SourceApiInterface, GetSourceRequest, SourceApi, UpdateSourceRequest } from "./SourceApi";
3
3
  export { type HealthApiInterface, HealthApi } from "./HealthApi";
4
4
  export { type AgentApiInterface, type DeleteAgentRequest, AgentApi } from "./AgentApi";
@@ -1,6 +1,6 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  export { ImageApi, } from "./ImageApi";
4
- export { SourceApi, } from "./SourceApi";
4
+ export { SourceApi } from "./SourceApi";
5
5
  export { HealthApi } from "./HealthApi";
6
6
  export { AgentApi } from "./AgentApi";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@migration-planner-ui/api-client",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "OpenAPI client for the Migration Planner API",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -9,24 +9,15 @@
9
9
  "directory": "packages/api-client"
10
10
  },
11
11
  "type": "module",
12
- "main": "dist/index.js",
13
- "types": "dist/index.d.ts",
14
12
  "exports": {
15
- ".": {
16
- "import": "./dist/index.js",
17
- "require": "./dist/index.cjs",
18
- "types": "./dist/index.d.ts"
19
- },
20
- "./apis": {
21
- "import": "./dist/apis/index.js",
22
- "require": "./dist/apis/index.cjs",
23
- "types": "./dist/apis/index.d.ts"
24
- },
25
- "./models": {
26
- "import": "./dist/models/index.js",
27
- "require": "./dist/models/index.cjs",
28
- "types": "./dist/models/index.d.ts"
29
- },
13
+ "./apis": [
14
+ "./src/apis/index.ts",
15
+ "./dist/apis/index.d.ts"
16
+ ],
17
+ "./models": [
18
+ "./src/models/index.ts",
19
+ "./dist/models/index.d.ts"
20
+ ],
30
21
  "./runtime": [
31
22
  "./src/runtime.ts",
32
23
  "./dist/runtime.d.ts"
package/src/apis/index.ts CHANGED
@@ -12,7 +12,9 @@ export {
12
12
  type DeleteSourceRequest,
13
13
  type ListSourcesRequest,
14
14
  type SourceApiInterface,
15
+ GetSourceRequest,
15
16
  SourceApi,
17
+ UpdateSourceRequest
16
18
  } from "./SourceApi";
17
19
 
18
20
  export {