@xemahq/project-registry-api-client 0.1.3 → 0.1.5
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/endpoints/manifest/manifest.d.ts +15 -15
- package/dist/endpoints/manifest/manifest.js +36 -36
- package/dist/endpoints/project-registry/project-registry.d.ts +4 -4
- package/dist/endpoints/project-registry/project-registry.js +8 -8
- package/dist/models/index.d.ts +2 -2
- package/dist/models/index.js +2 -2
- package/dist/models/projectResponseDto.d.ts +2 -2
- package/package.json +1 -1
|
@@ -91,28 +91,28 @@ export declare const getManifestControllerDeleteResourceUrl: (projectId: string,
|
|
|
91
91
|
* @summary Remove a resource entry
|
|
92
92
|
*/
|
|
93
93
|
export declare const manifestControllerDeleteResource: (projectId: string, name: string, options?: RequestInit) => Promise<ManifestResponseDtoDataEnvelope>;
|
|
94
|
-
export declare const
|
|
94
|
+
export declare const getManifestControllerListConnectionsUrl: (projectId: string) => string;
|
|
95
95
|
/**
|
|
96
|
-
* @summary List all
|
|
96
|
+
* @summary List all connections in the manifest
|
|
97
97
|
*/
|
|
98
|
-
export declare const
|
|
99
|
-
export declare const
|
|
98
|
+
export declare const manifestControllerListConnections: (projectId: string, options?: RequestInit) => Promise<ManifestSectionListResponseDtoDataArrayEnvelope>;
|
|
99
|
+
export declare const getManifestControllerGetConnectionUrl: (projectId: string, name: string) => string;
|
|
100
100
|
/**
|
|
101
|
-
* @summary Get a single
|
|
101
|
+
* @summary Get a single connection entry
|
|
102
102
|
*/
|
|
103
|
-
export declare const
|
|
104
|
-
export declare const
|
|
103
|
+
export declare const manifestControllerGetConnection: (projectId: string, name: string, options?: RequestInit) => Promise<unknown>;
|
|
104
|
+
export declare const getManifestControllerUpsertConnectionUrl: (projectId: string, name: string) => string;
|
|
105
105
|
/**
|
|
106
|
-
* @summary Create or replace
|
|
106
|
+
* @summary Create or replace a connection entry
|
|
107
107
|
*/
|
|
108
|
-
export declare const
|
|
109
|
-
export declare const
|
|
108
|
+
export declare const manifestControllerUpsertConnection: (projectId: string, name: string, upsertSectionEntryDto: UpsertSectionEntryDto, options?: RequestInit) => Promise<ManifestResponseDtoDataEnvelope>;
|
|
109
|
+
export declare const getManifestControllerPatchConnectionUrl: (projectId: string, name: string) => string;
|
|
110
110
|
/**
|
|
111
|
-
* @summary Partial update
|
|
111
|
+
* @summary Partial update a connection entry
|
|
112
112
|
*/
|
|
113
|
-
export declare const
|
|
114
|
-
export declare const
|
|
113
|
+
export declare const manifestControllerPatchConnection: (projectId: string, name: string, patchSectionEntryDto: PatchSectionEntryDto, options?: RequestInit) => Promise<ManifestResponseDtoDataEnvelope>;
|
|
114
|
+
export declare const getManifestControllerDeleteConnectionUrl: (projectId: string, name: string) => string;
|
|
115
115
|
/**
|
|
116
|
-
* @summary Remove
|
|
116
|
+
* @summary Remove a connection entry
|
|
117
117
|
*/
|
|
118
|
-
export declare const
|
|
118
|
+
export declare const manifestControllerDeleteConnection: (projectId: string, name: string, options?: RequestInit) => Promise<ManifestResponseDtoDataEnvelope>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.manifestControllerDeleteConnection = exports.getManifestControllerDeleteConnectionUrl = exports.manifestControllerPatchConnection = exports.getManifestControllerPatchConnectionUrl = exports.manifestControllerUpsertConnection = exports.getManifestControllerUpsertConnectionUrl = exports.manifestControllerGetConnection = exports.getManifestControllerGetConnectionUrl = exports.manifestControllerListConnections = exports.getManifestControllerListConnectionsUrl = exports.manifestControllerDeleteResource = exports.getManifestControllerDeleteResourceUrl = exports.manifestControllerPatchResource = exports.getManifestControllerPatchResourceUrl = exports.manifestControllerUpsertResource = exports.getManifestControllerUpsertResourceUrl = exports.manifestControllerGetResource = exports.getManifestControllerGetResourceUrl = exports.manifestControllerListResources = exports.getManifestControllerListResourcesUrl = exports.manifestControllerDeleteService = exports.getManifestControllerDeleteServiceUrl = exports.manifestControllerPatchService = exports.getManifestControllerPatchServiceUrl = exports.manifestControllerUpsertService = exports.getManifestControllerUpsertServiceUrl = exports.manifestControllerGetService = exports.getManifestControllerGetServiceUrl = exports.manifestControllerListServices = exports.getManifestControllerListServicesUrl = exports.manifestControllerGetDiff = exports.getManifestControllerGetDiffUrl = exports.manifestControllerGetHistoryVersion = exports.getManifestControllerGetHistoryVersionUrl = exports.manifestControllerGetHistory = exports.getManifestControllerGetHistoryUrl = exports.manifestControllerValidateManifest = exports.getManifestControllerValidateManifestUrl = exports.manifestControllerPatchManifest = exports.getManifestControllerPatchManifestUrl = exports.manifestControllerPutManifest = exports.getManifestControllerPutManifestUrl = exports.manifestControllerGetManifest = exports.getManifestControllerGetManifestUrl = void 0;
|
|
4
4
|
const custom_fetch_1 = require("../../custom-fetch");
|
|
5
5
|
const getManifestControllerGetManifestUrl = (projectId) => {
|
|
6
6
|
return `/projects/${projectId}/manifest`;
|
|
@@ -273,77 +273,77 @@ const manifestControllerDeleteResource = async (projectId, name, options) => {
|
|
|
273
273
|
});
|
|
274
274
|
};
|
|
275
275
|
exports.manifestControllerDeleteResource = manifestControllerDeleteResource;
|
|
276
|
-
const
|
|
277
|
-
return `/projects/${projectId}/manifest/
|
|
276
|
+
const getManifestControllerListConnectionsUrl = (projectId) => {
|
|
277
|
+
return `/projects/${projectId}/manifest/connections`;
|
|
278
278
|
};
|
|
279
|
-
exports.
|
|
279
|
+
exports.getManifestControllerListConnectionsUrl = getManifestControllerListConnectionsUrl;
|
|
280
280
|
/**
|
|
281
|
-
* @summary List all
|
|
281
|
+
* @summary List all connections in the manifest
|
|
282
282
|
*/
|
|
283
|
-
const
|
|
284
|
-
return (0, custom_fetch_1.customFetch)((0, exports.
|
|
283
|
+
const manifestControllerListConnections = async (projectId, options) => {
|
|
284
|
+
return (0, custom_fetch_1.customFetch)((0, exports.getManifestControllerListConnectionsUrl)(projectId), {
|
|
285
285
|
...options,
|
|
286
286
|
method: 'GET'
|
|
287
287
|
});
|
|
288
288
|
};
|
|
289
|
-
exports.
|
|
290
|
-
const
|
|
291
|
-
return `/projects/${projectId}/manifest/
|
|
289
|
+
exports.manifestControllerListConnections = manifestControllerListConnections;
|
|
290
|
+
const getManifestControllerGetConnectionUrl = (projectId, name) => {
|
|
291
|
+
return `/projects/${projectId}/manifest/connections/${name}`;
|
|
292
292
|
};
|
|
293
|
-
exports.
|
|
293
|
+
exports.getManifestControllerGetConnectionUrl = getManifestControllerGetConnectionUrl;
|
|
294
294
|
/**
|
|
295
|
-
* @summary Get a single
|
|
295
|
+
* @summary Get a single connection entry
|
|
296
296
|
*/
|
|
297
|
-
const
|
|
298
|
-
return (0, custom_fetch_1.customFetch)((0, exports.
|
|
297
|
+
const manifestControllerGetConnection = async (projectId, name, options) => {
|
|
298
|
+
return (0, custom_fetch_1.customFetch)((0, exports.getManifestControllerGetConnectionUrl)(projectId, name), {
|
|
299
299
|
...options,
|
|
300
300
|
method: 'GET'
|
|
301
301
|
});
|
|
302
302
|
};
|
|
303
|
-
exports.
|
|
304
|
-
const
|
|
305
|
-
return `/projects/${projectId}/manifest/
|
|
303
|
+
exports.manifestControllerGetConnection = manifestControllerGetConnection;
|
|
304
|
+
const getManifestControllerUpsertConnectionUrl = (projectId, name) => {
|
|
305
|
+
return `/projects/${projectId}/manifest/connections/${name}`;
|
|
306
306
|
};
|
|
307
|
-
exports.
|
|
307
|
+
exports.getManifestControllerUpsertConnectionUrl = getManifestControllerUpsertConnectionUrl;
|
|
308
308
|
/**
|
|
309
|
-
* @summary Create or replace
|
|
309
|
+
* @summary Create or replace a connection entry
|
|
310
310
|
*/
|
|
311
|
-
const
|
|
312
|
-
return (0, custom_fetch_1.customFetch)((0, exports.
|
|
311
|
+
const manifestControllerUpsertConnection = async (projectId, name, upsertSectionEntryDto, options) => {
|
|
312
|
+
return (0, custom_fetch_1.customFetch)((0, exports.getManifestControllerUpsertConnectionUrl)(projectId, name), {
|
|
313
313
|
...options,
|
|
314
314
|
method: 'PUT',
|
|
315
315
|
headers: { 'Content-Type': 'application/json', ...options?.headers },
|
|
316
316
|
body: JSON.stringify(upsertSectionEntryDto)
|
|
317
317
|
});
|
|
318
318
|
};
|
|
319
|
-
exports.
|
|
320
|
-
const
|
|
321
|
-
return `/projects/${projectId}/manifest/
|
|
319
|
+
exports.manifestControllerUpsertConnection = manifestControllerUpsertConnection;
|
|
320
|
+
const getManifestControllerPatchConnectionUrl = (projectId, name) => {
|
|
321
|
+
return `/projects/${projectId}/manifest/connections/${name}`;
|
|
322
322
|
};
|
|
323
|
-
exports.
|
|
323
|
+
exports.getManifestControllerPatchConnectionUrl = getManifestControllerPatchConnectionUrl;
|
|
324
324
|
/**
|
|
325
|
-
* @summary Partial update
|
|
325
|
+
* @summary Partial update a connection entry
|
|
326
326
|
*/
|
|
327
|
-
const
|
|
328
|
-
return (0, custom_fetch_1.customFetch)((0, exports.
|
|
327
|
+
const manifestControllerPatchConnection = async (projectId, name, patchSectionEntryDto, options) => {
|
|
328
|
+
return (0, custom_fetch_1.customFetch)((0, exports.getManifestControllerPatchConnectionUrl)(projectId, name), {
|
|
329
329
|
...options,
|
|
330
330
|
method: 'PATCH',
|
|
331
331
|
headers: { 'Content-Type': 'application/json', ...options?.headers },
|
|
332
332
|
body: JSON.stringify(patchSectionEntryDto)
|
|
333
333
|
});
|
|
334
334
|
};
|
|
335
|
-
exports.
|
|
336
|
-
const
|
|
337
|
-
return `/projects/${projectId}/manifest/
|
|
335
|
+
exports.manifestControllerPatchConnection = manifestControllerPatchConnection;
|
|
336
|
+
const getManifestControllerDeleteConnectionUrl = (projectId, name) => {
|
|
337
|
+
return `/projects/${projectId}/manifest/connections/${name}`;
|
|
338
338
|
};
|
|
339
|
-
exports.
|
|
339
|
+
exports.getManifestControllerDeleteConnectionUrl = getManifestControllerDeleteConnectionUrl;
|
|
340
340
|
/**
|
|
341
|
-
* @summary Remove
|
|
341
|
+
* @summary Remove a connection entry
|
|
342
342
|
*/
|
|
343
|
-
const
|
|
344
|
-
return (0, custom_fetch_1.customFetch)((0, exports.
|
|
343
|
+
const manifestControllerDeleteConnection = async (projectId, name, options) => {
|
|
344
|
+
return (0, custom_fetch_1.customFetch)((0, exports.getManifestControllerDeleteConnectionUrl)(projectId, name), {
|
|
345
345
|
...options,
|
|
346
346
|
method: 'DELETE'
|
|
347
347
|
});
|
|
348
348
|
};
|
|
349
|
-
exports.
|
|
349
|
+
exports.manifestControllerDeleteConnection = manifestControllerDeleteConnection;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Project workspace, repository links, integrations and settings
|
|
6
6
|
* OpenAPI spec version: 0.1.0
|
|
7
7
|
*/
|
|
8
|
-
import type { BootstrapAnalyzeDto, BootstrapDecisionDtoDataEnvelope, BootstrapProjectDto, CreateProjectDto, PreferredImageVariantResponseDtoDataEnvelope, ProjectRegistryControllerListProjectsParams, ProjectResponseDtoDataEnvelope, ProjectSummaryResponseDtoDataArrayEnvelope, SetPreferredImageVariantDto,
|
|
8
|
+
import type { BootstrapAnalyzeDto, BootstrapDecisionDtoDataEnvelope, BootstrapProjectDto, CreateProjectDto, PreferredImageVariantResponseDtoDataEnvelope, ProjectRegistryControllerListProjectsParams, ProjectResponseDtoDataEnvelope, ProjectSummaryResponseDtoDataArrayEnvelope, SetPreferredImageVariantDto, UpdateProjectConnectionDto, UpdateProjectDto, UpdateProjectSettingsDto } from '../../models';
|
|
9
9
|
export declare const getProjectRegistryControllerCreateProjectUrl: () => string;
|
|
10
10
|
/**
|
|
11
11
|
* @summary Create project workspace and optional repository link
|
|
@@ -41,11 +41,11 @@ export declare const getProjectRegistryControllerGetTypedSettingsUrl: (projectId
|
|
|
41
41
|
* @summary Get typed project settings with defaults applied (service-to-service)
|
|
42
42
|
*/
|
|
43
43
|
export declare const projectRegistryControllerGetTypedSettings: (projectId: string, options?: RequestInit) => Promise<unknown>;
|
|
44
|
-
export declare const
|
|
44
|
+
export declare const getProjectRegistryControllerUpdateConnectionUrl: (projectId: string, type: string) => string;
|
|
45
45
|
/**
|
|
46
|
-
* @summary Enable, disable, or update project
|
|
46
|
+
* @summary Enable, disable, or update project connection configuration
|
|
47
47
|
*/
|
|
48
|
-
export declare const
|
|
48
|
+
export declare const projectRegistryControllerUpdateConnection: (projectId: string, type: string, updateProjectConnectionDto: UpdateProjectConnectionDto, options?: RequestInit) => Promise<ProjectResponseDtoDataEnvelope>;
|
|
49
49
|
export declare const getProjectRegistryControllerGetPreferredImageVariantUrl: (projectId: string) => string;
|
|
50
50
|
/**
|
|
51
51
|
* @summary Get the preferred workspace-image variant slug for a project
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.projectRegistryControllerBootstrap = exports.getProjectRegistryControllerBootstrapUrl = exports.projectRegistryControllerAnalyzeBootstrap = exports.getProjectRegistryControllerAnalyzeBootstrapUrl = exports.projectRegistryControllerSetPreferredImageVariant = exports.getProjectRegistryControllerSetPreferredImageVariantUrl = exports.projectRegistryControllerGetPreferredImageVariant = exports.getProjectRegistryControllerGetPreferredImageVariantUrl = exports.
|
|
3
|
+
exports.projectRegistryControllerBootstrap = exports.getProjectRegistryControllerBootstrapUrl = exports.projectRegistryControllerAnalyzeBootstrap = exports.getProjectRegistryControllerAnalyzeBootstrapUrl = exports.projectRegistryControllerSetPreferredImageVariant = exports.getProjectRegistryControllerSetPreferredImageVariantUrl = exports.projectRegistryControllerGetPreferredImageVariant = exports.getProjectRegistryControllerGetPreferredImageVariantUrl = exports.projectRegistryControllerUpdateConnection = exports.getProjectRegistryControllerUpdateConnectionUrl = exports.projectRegistryControllerGetTypedSettings = exports.getProjectRegistryControllerGetTypedSettingsUrl = exports.projectRegistryControllerUpdateSettings = exports.getProjectRegistryControllerUpdateSettingsUrl = exports.projectRegistryControllerDeleteProject = exports.getProjectRegistryControllerDeleteProjectUrl = exports.projectRegistryControllerUpdateProject = exports.getProjectRegistryControllerUpdateProjectUrl = exports.projectRegistryControllerGetProject = exports.getProjectRegistryControllerGetProjectUrl = exports.projectRegistryControllerListProjects = exports.getProjectRegistryControllerListProjectsUrl = exports.projectRegistryControllerCreateProject = exports.getProjectRegistryControllerCreateProjectUrl = void 0;
|
|
4
4
|
const custom_fetch_1 = require("../../custom-fetch");
|
|
5
5
|
const getProjectRegistryControllerCreateProjectUrl = () => {
|
|
6
6
|
return `/projects`;
|
|
@@ -125,22 +125,22 @@ const projectRegistryControllerGetTypedSettings = async (projectId, options) =>
|
|
|
125
125
|
});
|
|
126
126
|
};
|
|
127
127
|
exports.projectRegistryControllerGetTypedSettings = projectRegistryControllerGetTypedSettings;
|
|
128
|
-
const
|
|
129
|
-
return `/projects/${projectId}/
|
|
128
|
+
const getProjectRegistryControllerUpdateConnectionUrl = (projectId, type) => {
|
|
129
|
+
return `/projects/${projectId}/connections/${type}`;
|
|
130
130
|
};
|
|
131
|
-
exports.
|
|
131
|
+
exports.getProjectRegistryControllerUpdateConnectionUrl = getProjectRegistryControllerUpdateConnectionUrl;
|
|
132
132
|
/**
|
|
133
|
-
* @summary Enable, disable, or update project
|
|
133
|
+
* @summary Enable, disable, or update project connection configuration
|
|
134
134
|
*/
|
|
135
|
-
const
|
|
136
|
-
return (0, custom_fetch_1.customFetch)((0, exports.
|
|
135
|
+
const projectRegistryControllerUpdateConnection = async (projectId, type, updateProjectConnectionDto, options) => {
|
|
136
|
+
return (0, custom_fetch_1.customFetch)((0, exports.getProjectRegistryControllerUpdateConnectionUrl)(projectId, type), {
|
|
137
137
|
...options,
|
|
138
138
|
method: 'PATCH',
|
|
139
139
|
headers: { 'Content-Type': 'application/json', ...options?.headers },
|
|
140
140
|
body: JSON.stringify(updateProjectConnectionDto)
|
|
141
141
|
});
|
|
142
142
|
};
|
|
143
|
-
exports.
|
|
143
|
+
exports.projectRegistryControllerUpdateConnection = projectRegistryControllerUpdateConnection;
|
|
144
144
|
const getProjectRegistryControllerGetPreferredImageVariantUrl = (projectId) => {
|
|
145
145
|
return `/projects/${projectId}/preferred-image-variant`;
|
|
146
146
|
};
|
package/dist/models/index.d.ts
CHANGED
|
@@ -44,9 +44,9 @@ export * from './projectBindingKind';
|
|
|
44
44
|
export * from './projectBindingResponseDto';
|
|
45
45
|
export * from './projectBindingResponseDtoDataArrayEnvelope';
|
|
46
46
|
export * from './projectBindingResponseDtoDataEnvelope';
|
|
47
|
-
export * from './projectEnvResponseDto';
|
|
48
47
|
export * from './projectConnectionResponseDto';
|
|
49
48
|
export * from './projectConnectionResponseDtoConfig';
|
|
49
|
+
export * from './projectEnvResponseDto';
|
|
50
50
|
export * from './projectMembershipResponseDto';
|
|
51
51
|
export * from './projectMembershipResponseDtoDataArrayEnvelope';
|
|
52
52
|
export * from './projectMembershipResponseDtoDataEnvelope';
|
|
@@ -74,9 +74,9 @@ export * from './resolvedWalletsResponseDtoVars';
|
|
|
74
74
|
export * from './resolvedWalletsResponseDtoWalletKeyMap';
|
|
75
75
|
export * from './revokeProjectRoleDto';
|
|
76
76
|
export * from './setPreferredImageVariantDto';
|
|
77
|
-
export * from './updateProjectDto';
|
|
78
77
|
export * from './updateProjectConnectionDto';
|
|
79
78
|
export * from './updateProjectConnectionDtoConfig';
|
|
79
|
+
export * from './updateProjectDto';
|
|
80
80
|
export * from './updateProjectSettingsDto';
|
|
81
81
|
export * from './updateProjectSettingsDtoCloudDetails';
|
|
82
82
|
export * from './updateProjectSettingsDtoCloudProvider';
|
package/dist/models/index.js
CHANGED
|
@@ -61,9 +61,9 @@ __exportStar(require("./projectBindingKind"), exports);
|
|
|
61
61
|
__exportStar(require("./projectBindingResponseDto"), exports);
|
|
62
62
|
__exportStar(require("./projectBindingResponseDtoDataArrayEnvelope"), exports);
|
|
63
63
|
__exportStar(require("./projectBindingResponseDtoDataEnvelope"), exports);
|
|
64
|
-
__exportStar(require("./projectEnvResponseDto"), exports);
|
|
65
64
|
__exportStar(require("./projectConnectionResponseDto"), exports);
|
|
66
65
|
__exportStar(require("./projectConnectionResponseDtoConfig"), exports);
|
|
66
|
+
__exportStar(require("./projectEnvResponseDto"), exports);
|
|
67
67
|
__exportStar(require("./projectMembershipResponseDto"), exports);
|
|
68
68
|
__exportStar(require("./projectMembershipResponseDtoDataArrayEnvelope"), exports);
|
|
69
69
|
__exportStar(require("./projectMembershipResponseDtoDataEnvelope"), exports);
|
|
@@ -91,9 +91,9 @@ __exportStar(require("./resolvedWalletsResponseDtoVars"), exports);
|
|
|
91
91
|
__exportStar(require("./resolvedWalletsResponseDtoWalletKeyMap"), exports);
|
|
92
92
|
__exportStar(require("./revokeProjectRoleDto"), exports);
|
|
93
93
|
__exportStar(require("./setPreferredImageVariantDto"), exports);
|
|
94
|
-
__exportStar(require("./updateProjectDto"), exports);
|
|
95
94
|
__exportStar(require("./updateProjectConnectionDto"), exports);
|
|
96
95
|
__exportStar(require("./updateProjectConnectionDtoConfig"), exports);
|
|
96
|
+
__exportStar(require("./updateProjectDto"), exports);
|
|
97
97
|
__exportStar(require("./updateProjectSettingsDto"), exports);
|
|
98
98
|
__exportStar(require("./updateProjectSettingsDtoCloudDetails"), exports);
|
|
99
99
|
__exportStar(require("./updateProjectSettingsDtoCloudProvider"), exports);
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* Project workspace, repository links, integrations and settings
|
|
6
6
|
* OpenAPI spec version: 0.1.0
|
|
7
7
|
*/
|
|
8
|
-
import type { ProjectEnvResponseDto } from './projectEnvResponseDto.js';
|
|
9
8
|
import type { ProjectConnectionResponseDto } from './projectConnectionResponseDto.js';
|
|
9
|
+
import type { ProjectEnvResponseDto } from './projectEnvResponseDto.js';
|
|
10
10
|
import type { ProjectRepoResponseDto } from './projectRepoResponseDto.js';
|
|
11
11
|
import type { ProjectSettingsResponseDto } from './projectSettingsResponseDto.js';
|
|
12
12
|
export interface ProjectResponseDto {
|
|
@@ -17,7 +17,7 @@ export interface ProjectResponseDto {
|
|
|
17
17
|
status: string;
|
|
18
18
|
repos: ProjectRepoResponseDto[];
|
|
19
19
|
envs: ProjectEnvResponseDto[];
|
|
20
|
-
|
|
20
|
+
connections: ProjectConnectionResponseDto[];
|
|
21
21
|
settings?: ProjectSettingsResponseDto;
|
|
22
22
|
createdAt: string;
|
|
23
23
|
createdBy: string;
|