@xemahq/project-registry-api-client 0.1.0
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/LICENSE +201 -0
- package/dist/custom-fetch.d.ts +52 -0
- package/dist/custom-fetch.js +152 -0
- package/dist/endpoints/health/health.d.ts +15 -0
- package/dist/endpoints/health/health.js +53 -0
- package/dist/endpoints/manifest/manifest.d.ts +118 -0
- package/dist/endpoints/manifest/manifest.js +349 -0
- package/dist/endpoints/mcp/mcp.d.ts +6 -0
- package/dist/endpoints/mcp/mcp.js +44 -0
- package/dist/endpoints/onboarding/onboarding.d.ts +13 -0
- package/dist/endpoints/onboarding/onboarding.js +20 -0
- package/dist/endpoints/project-bindings/project-bindings.d.ts +23 -0
- package/dist/endpoints/project-bindings/project-bindings.js +48 -0
- package/dist/endpoints/project-registry/project-registry.d.ts +68 -0
- package/dist/endpoints/project-registry/project-registry.js +205 -0
- package/dist/endpoints/project-roles/project-roles.d.ts +23 -0
- package/dist/endpoints/project-roles/project-roles.js +50 -0
- package/dist/endpoints/variables/variables.d.ts +28 -0
- package/dist/endpoints/variables/variables.js +64 -0
- package/dist/endpoints/wallets/wallets.d.ts +48 -0
- package/dist/endpoints/wallets/wallets.js +124 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +31 -0
- package/dist/models/bootstrapAnalyzeDto.d.ts +14 -0
- package/dist/models/bootstrapAnalyzeDto.js +2 -0
- package/dist/models/bootstrapAnalyzeDtoOptions.d.ts +13 -0
- package/dist/models/bootstrapAnalyzeDtoOptions.js +9 -0
- package/dist/models/bootstrapDecisionDto.d.ts +22 -0
- package/dist/models/bootstrapDecisionDto.js +2 -0
- package/dist/models/bootstrapDecisionDtoDataEnvelope.d.ts +11 -0
- package/dist/models/bootstrapDecisionDtoDataEnvelope.js +2 -0
- package/dist/models/bootstrapDecisionDtoMode.d.ts +14 -0
- package/dist/models/bootstrapDecisionDtoMode.js +16 -0
- package/dist/models/bootstrapOptionDto.d.ts +13 -0
- package/dist/models/bootstrapOptionDto.js +9 -0
- package/dist/models/bootstrapProjectDto.d.ts +11 -0
- package/dist/models/bootstrapProjectDto.js +2 -0
- package/dist/models/bootstrapProjectDtoOptions.d.ts +10 -0
- package/dist/models/bootstrapProjectDtoOptions.js +9 -0
- package/dist/models/createProjectBindingDto.d.ts +13 -0
- package/dist/models/createProjectBindingDto.js +2 -0
- package/dist/models/createProjectDto.d.ts +13 -0
- package/dist/models/createProjectDto.js +2 -0
- package/dist/models/createProjectRepoDto.d.ts +13 -0
- package/dist/models/createProjectRepoDto.js +9 -0
- package/dist/models/createVariableDto.d.ts +17 -0
- package/dist/models/createVariableDto.js +9 -0
- package/dist/models/createWalletDto.d.ts +13 -0
- package/dist/models/createWalletDto.js +9 -0
- package/dist/models/errorDetailsDto.d.ts +12 -0
- package/dist/models/errorDetailsDto.js +2 -0
- package/dist/models/errorDetailsDtoDetails.d.ts +13 -0
- package/dist/models/errorDetailsDtoDetails.js +9 -0
- package/dist/models/errorPayloadDto.d.ts +13 -0
- package/dist/models/errorPayloadDto.js +2 -0
- package/dist/models/errorResponseDto.d.ts +11 -0
- package/dist/models/errorResponseDto.js +2 -0
- package/dist/models/existingAssetsDto.d.ts +12 -0
- package/dist/models/existingAssetsDto.js +9 -0
- package/dist/models/grantProjectRoleDto.d.ts +11 -0
- package/dist/models/grantProjectRoleDto.js +9 -0
- package/dist/models/index.d.ts +98 -0
- package/dist/models/index.js +115 -0
- package/dist/models/manifestControllerGetHistoryParams.d.ts +17 -0
- package/dist/models/manifestControllerGetHistoryParams.js +9 -0
- package/dist/models/manifestDiffResponseDto.d.ts +13 -0
- package/dist/models/manifestDiffResponseDto.js +9 -0
- package/dist/models/manifestDiffResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/manifestDiffResponseDtoDataEnvelope.js +2 -0
- package/dist/models/manifestHistoryEntryDto.d.ts +21 -0
- package/dist/models/manifestHistoryEntryDto.js +2 -0
- package/dist/models/manifestHistoryEntryDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/manifestHistoryEntryDtoDataArrayEnvelope.js +2 -0
- package/dist/models/manifestHistoryEntryDtoDataEnvelope.d.ts +11 -0
- package/dist/models/manifestHistoryEntryDtoDataEnvelope.js +2 -0
- package/dist/models/manifestHistoryEntryDtoDiff.d.ts +10 -0
- package/dist/models/manifestHistoryEntryDtoDiff.js +9 -0
- package/dist/models/manifestHistoryEntryDtoSnapshotJson.d.ts +10 -0
- package/dist/models/manifestHistoryEntryDtoSnapshotJson.js +9 -0
- package/dist/models/manifestResponseDto.d.ts +19 -0
- package/dist/models/manifestResponseDto.js +2 -0
- package/dist/models/manifestResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/manifestResponseDtoDataEnvelope.js +2 -0
- package/dist/models/manifestResponseDtoManifest.d.ts +10 -0
- package/dist/models/manifestResponseDtoManifest.js +9 -0
- package/dist/models/manifestSectionListResponseDto.d.ts +12 -0
- package/dist/models/manifestSectionListResponseDto.js +2 -0
- package/dist/models/manifestSectionListResponseDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/manifestSectionListResponseDtoDataArrayEnvelope.js +2 -0
- package/dist/models/manifestSectionListResponseDtoEntries.d.ts +13 -0
- package/dist/models/manifestSectionListResponseDtoEntries.js +9 -0
- package/dist/models/manifestValidationResponseDto.d.ts +11 -0
- package/dist/models/manifestValidationResponseDto.js +9 -0
- package/dist/models/manifestValidationResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/manifestValidationResponseDtoDataEnvelope.js +2 -0
- package/dist/models/patchManifestDto.d.ts +14 -0
- package/dist/models/patchManifestDto.js +2 -0
- package/dist/models/patchManifestDtoPatch.d.ts +13 -0
- package/dist/models/patchManifestDtoPatch.js +9 -0
- package/dist/models/patchSectionEntryDto.d.ts +14 -0
- package/dist/models/patchSectionEntryDto.js +2 -0
- package/dist/models/patchSectionEntryDtoPatch.d.ts +13 -0
- package/dist/models/patchSectionEntryDtoPatch.js +9 -0
- package/dist/models/preferredImageVariantResponseDto.d.ts +16 -0
- package/dist/models/preferredImageVariantResponseDto.js +9 -0
- package/dist/models/preferredImageVariantResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/preferredImageVariantResponseDtoDataEnvelope.js +2 -0
- package/dist/models/priorRunSummaryDto.d.ts +14 -0
- package/dist/models/priorRunSummaryDto.js +9 -0
- package/dist/models/projectBindingKind.d.ts +12 -0
- package/dist/models/projectBindingKind.js +14 -0
- package/dist/models/projectBindingResponseDto.d.ts +18 -0
- package/dist/models/projectBindingResponseDto.js +2 -0
- package/dist/models/projectBindingResponseDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/projectBindingResponseDtoDataArrayEnvelope.js +2 -0
- package/dist/models/projectBindingResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/projectBindingResponseDtoDataEnvelope.js +2 -0
- package/dist/models/projectEnvResponseDto.d.ts +12 -0
- package/dist/models/projectEnvResponseDto.js +9 -0
- package/dist/models/projectIntegrationResponseDto.d.ts +14 -0
- package/dist/models/projectIntegrationResponseDto.js +2 -0
- package/dist/models/projectIntegrationResponseDtoConfig.d.ts +10 -0
- package/dist/models/projectIntegrationResponseDtoConfig.js +9 -0
- package/dist/models/projectMembershipResponseDto.d.ts +16 -0
- package/dist/models/projectMembershipResponseDto.js +9 -0
- package/dist/models/projectMembershipResponseDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/projectMembershipResponseDtoDataArrayEnvelope.js +2 -0
- package/dist/models/projectMembershipResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/projectMembershipResponseDtoDataEnvelope.js +2 -0
- package/dist/models/projectRegistryControllerListProjectsParams.d.ts +17 -0
- package/dist/models/projectRegistryControllerListProjectsParams.js +9 -0
- package/dist/models/projectRepoResponseDto.d.ts +13 -0
- package/dist/models/projectRepoResponseDto.js +9 -0
- package/dist/models/projectResponseDto.d.ts +24 -0
- package/dist/models/projectResponseDto.js +2 -0
- package/dist/models/projectResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/projectResponseDtoDataEnvelope.js +2 -0
- package/dist/models/projectSettingsResponseDto.d.ts +19 -0
- package/dist/models/projectSettingsResponseDto.js +2 -0
- package/dist/models/projectSettingsResponseDtoCloudDetails.d.ts +13 -0
- package/dist/models/projectSettingsResponseDtoCloudDetails.js +9 -0
- package/dist/models/projectSettingsResponseDtoCloudProvider.d.ts +20 -0
- package/dist/models/projectSettingsResponseDtoCloudProvider.js +19 -0
- package/dist/models/projectSummaryResponseDto.d.ts +16 -0
- package/dist/models/projectSummaryResponseDto.js +9 -0
- package/dist/models/projectSummaryResponseDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/projectSummaryResponseDtoDataArrayEnvelope.js +2 -0
- package/dist/models/promptClassificationDto.d.ts +13 -0
- package/dist/models/promptClassificationDto.js +2 -0
- package/dist/models/promptClassificationDtoClassification.d.ts +13 -0
- package/dist/models/promptClassificationDtoClassification.js +15 -0
- package/dist/models/provisionOnboardingRequestDto.d.ts +19 -0
- package/dist/models/provisionOnboardingRequestDto.js +9 -0
- package/dist/models/provisionOnboardingResponseDto.d.ts +17 -0
- package/dist/models/provisionOnboardingResponseDto.js +9 -0
- package/dist/models/provisionOnboardingResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/provisionOnboardingResponseDtoDataEnvelope.js +2 -0
- package/dist/models/putManifestDto.d.ts +14 -0
- package/dist/models/putManifestDto.js +2 -0
- package/dist/models/putManifestDtoManifest.d.ts +13 -0
- package/dist/models/putManifestDtoManifest.js +9 -0
- package/dist/models/resolveWalletsRequestDto.d.ts +11 -0
- package/dist/models/resolveWalletsRequestDto.js +9 -0
- package/dist/models/resolvedWalletsResponseDto.d.ts +18 -0
- package/dist/models/resolvedWalletsResponseDto.js +2 -0
- package/dist/models/resolvedWalletsResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/resolvedWalletsResponseDtoDataEnvelope.js +2 -0
- package/dist/models/resolvedWalletsResponseDtoSecrets.d.ts +13 -0
- package/dist/models/resolvedWalletsResponseDtoSecrets.js +9 -0
- package/dist/models/resolvedWalletsResponseDtoVars.d.ts +13 -0
- package/dist/models/resolvedWalletsResponseDtoVars.js +9 -0
- package/dist/models/resolvedWalletsResponseDtoWalletKeyMap.d.ts +13 -0
- package/dist/models/resolvedWalletsResponseDtoWalletKeyMap.js +9 -0
- package/dist/models/revokeProjectRoleDto.d.ts +11 -0
- package/dist/models/revokeProjectRoleDto.js +9 -0
- package/dist/models/setPreferredImageVariantDto.d.ts +14 -0
- package/dist/models/setPreferredImageVariantDto.js +9 -0
- package/dist/models/updateProjectDto.d.ts +16 -0
- package/dist/models/updateProjectDto.js +9 -0
- package/dist/models/updateProjectIntegrationDto.d.ts +13 -0
- package/dist/models/updateProjectIntegrationDto.js +2 -0
- package/dist/models/updateProjectIntegrationDtoConfig.d.ts +10 -0
- package/dist/models/updateProjectIntegrationDtoConfig.js +9 -0
- package/dist/models/updateProjectSettingsDto.d.ts +21 -0
- package/dist/models/updateProjectSettingsDto.js +2 -0
- package/dist/models/updateProjectSettingsDtoCloudDetails.d.ts +13 -0
- package/dist/models/updateProjectSettingsDtoCloudDetails.js +9 -0
- package/dist/models/updateProjectSettingsDtoCloudProvider.d.ts +20 -0
- package/dist/models/updateProjectSettingsDtoCloudProvider.js +19 -0
- package/dist/models/updateProjectSettingsDtoSettings.d.ts +10 -0
- package/dist/models/updateProjectSettingsDtoSettings.js +9 -0
- package/dist/models/updateVariableDto.d.ts +12 -0
- package/dist/models/updateVariableDto.js +9 -0
- package/dist/models/updateWalletDto.d.ts +10 -0
- package/dist/models/updateWalletDto.js +9 -0
- package/dist/models/upsertSectionEntryDto.d.ts +14 -0
- package/dist/models/upsertSectionEntryDto.js +2 -0
- package/dist/models/upsertSectionEntryDtoEntry.d.ts +13 -0
- package/dist/models/upsertSectionEntryDtoEntry.js +9 -0
- package/dist/models/validateManifestDto.d.ts +12 -0
- package/dist/models/validateManifestDto.js +2 -0
- package/dist/models/validateManifestDtoManifest.d.ts +13 -0
- package/dist/models/validateManifestDtoManifest.js +9 -0
- package/dist/models/variableResponseDto.d.ts +28 -0
- package/dist/models/variableResponseDto.js +9 -0
- package/dist/models/variableResponseDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/variableResponseDtoDataArrayEnvelope.js +2 -0
- package/dist/models/variableResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/variableResponseDtoDataEnvelope.js +2 -0
- package/dist/models/walletEntryDto.d.ts +11 -0
- package/dist/models/walletEntryDto.js +9 -0
- package/dist/models/walletResponseDto.d.ts +21 -0
- package/dist/models/walletResponseDto.js +9 -0
- package/dist/models/walletResponseDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/walletResponseDtoDataArrayEnvelope.js +2 -0
- package/dist/models/walletResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/walletResponseDtoDataEnvelope.js +2 -0
- package/dist/models/walletWithEntriesResponseDto.d.ts +23 -0
- package/dist/models/walletWithEntriesResponseDto.js +2 -0
- package/dist/models/walletWithEntriesResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/walletWithEntriesResponseDtoDataEnvelope.js +2 -0
- package/package.json +27 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { ProjectMembershipResponseDto } from './projectMembershipResponseDto';
|
|
9
|
+
export interface ProjectMembershipResponseDtoDataEnvelope {
|
|
10
|
+
data: ProjectMembershipResponseDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export type ProjectRegistryControllerListProjectsParams = {
|
|
9
|
+
/**
|
|
10
|
+
* Page number (default: 1)
|
|
11
|
+
*/
|
|
12
|
+
page?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Items per page (default: 20, max: 100)
|
|
15
|
+
*/
|
|
16
|
+
limit?: string;
|
|
17
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export interface ProjectRepoResponseDto {
|
|
9
|
+
provider: string;
|
|
10
|
+
repoFullName: string;
|
|
11
|
+
defaultBranch?: string;
|
|
12
|
+
installationId?: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { ProjectEnvResponseDto } from './projectEnvResponseDto';
|
|
9
|
+
import type { ProjectIntegrationResponseDto } from './projectIntegrationResponseDto';
|
|
10
|
+
import type { ProjectRepoResponseDto } from './projectRepoResponseDto';
|
|
11
|
+
import type { ProjectSettingsResponseDto } from './projectSettingsResponseDto';
|
|
12
|
+
export interface ProjectResponseDto {
|
|
13
|
+
id: string;
|
|
14
|
+
orgId: string;
|
|
15
|
+
name: string;
|
|
16
|
+
description?: string;
|
|
17
|
+
status: string;
|
|
18
|
+
repos: ProjectRepoResponseDto[];
|
|
19
|
+
envs: ProjectEnvResponseDto[];
|
|
20
|
+
integrations: ProjectIntegrationResponseDto[];
|
|
21
|
+
settings?: ProjectSettingsResponseDto;
|
|
22
|
+
createdAt: string;
|
|
23
|
+
createdBy: string;
|
|
24
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { ProjectResponseDto } from './projectResponseDto';
|
|
9
|
+
export interface ProjectResponseDtoDataEnvelope {
|
|
10
|
+
data: ProjectResponseDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { ProjectSettingsResponseDtoCloudDetails } from './projectSettingsResponseDtoCloudDetails';
|
|
9
|
+
import type { ProjectSettingsResponseDtoCloudProvider } from './projectSettingsResponseDtoCloudProvider';
|
|
10
|
+
export interface ProjectSettingsResponseDto {
|
|
11
|
+
/** ISO 639-1 language code or "auto" */
|
|
12
|
+
outputLanguage?: string;
|
|
13
|
+
/** Target cloud provider */
|
|
14
|
+
cloudProvider?: ProjectSettingsResponseDtoCloudProvider;
|
|
15
|
+
/** Cloud-specific configuration details */
|
|
16
|
+
cloudDetails?: ProjectSettingsResponseDtoCloudDetails;
|
|
17
|
+
/** Default target branch for merges */
|
|
18
|
+
targetBranch?: string;
|
|
19
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Cloud-specific configuration details
|
|
10
|
+
*/
|
|
11
|
+
export type ProjectSettingsResponseDtoCloudDetails = {
|
|
12
|
+
[key: string]: unknown;
|
|
13
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Target cloud provider
|
|
10
|
+
*/
|
|
11
|
+
export type ProjectSettingsResponseDtoCloudProvider = typeof ProjectSettingsResponseDtoCloudProvider[keyof typeof ProjectSettingsResponseDtoCloudProvider];
|
|
12
|
+
export declare const ProjectSettingsResponseDtoCloudProvider: {
|
|
13
|
+
readonly auto: "auto";
|
|
14
|
+
readonly azure: "azure";
|
|
15
|
+
readonly aws: "aws";
|
|
16
|
+
readonly gcp: "gcp";
|
|
17
|
+
readonly self_hosted: "self_hosted";
|
|
18
|
+
readonly hybrid: "hybrid";
|
|
19
|
+
readonly undecided: "undecided";
|
|
20
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.ProjectSettingsResponseDtoCloudProvider = void 0;
|
|
11
|
+
exports.ProjectSettingsResponseDtoCloudProvider = {
|
|
12
|
+
auto: 'auto',
|
|
13
|
+
azure: 'azure',
|
|
14
|
+
aws: 'aws',
|
|
15
|
+
gcp: 'gcp',
|
|
16
|
+
self_hosted: 'self_hosted',
|
|
17
|
+
hybrid: 'hybrid',
|
|
18
|
+
undecided: 'undecided',
|
|
19
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export interface ProjectSummaryResponseDto {
|
|
9
|
+
id: string;
|
|
10
|
+
orgId: string;
|
|
11
|
+
name: string;
|
|
12
|
+
description?: string;
|
|
13
|
+
status: string;
|
|
14
|
+
createdAt: string;
|
|
15
|
+
createdBy: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { ProjectSummaryResponseDto } from './projectSummaryResponseDto';
|
|
9
|
+
export interface ProjectSummaryResponseDtoDataArrayEnvelope {
|
|
10
|
+
data: ProjectSummaryResponseDto[];
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { PromptClassificationDtoClassification } from './promptClassificationDtoClassification';
|
|
9
|
+
export interface PromptClassificationDto {
|
|
10
|
+
classification: PromptClassificationDtoClassification;
|
|
11
|
+
/** Jaccard similarity score 0-1 */
|
|
12
|
+
similarity: number;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export type PromptClassificationDtoClassification = typeof PromptClassificationDtoClassification[keyof typeof PromptClassificationDtoClassification];
|
|
9
|
+
export declare const PromptClassificationDtoClassification: {
|
|
10
|
+
readonly same_scope: "same_scope";
|
|
11
|
+
readonly evolution: "evolution";
|
|
12
|
+
readonly new_direction: "new_direction";
|
|
13
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.PromptClassificationDtoClassification = void 0;
|
|
11
|
+
exports.PromptClassificationDtoClassification = {
|
|
12
|
+
same_scope: 'same_scope',
|
|
13
|
+
evolution: 'evolution',
|
|
14
|
+
new_direction: 'new_direction',
|
|
15
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export interface ProvisionOnboardingRequestDto {
|
|
9
|
+
/** Org the wizard is provisioning for. Must match the JWT context. */
|
|
10
|
+
orgId: string;
|
|
11
|
+
/** Project the wizard is provisioning for. Must exist within `orgId`. */
|
|
12
|
+
projectId: string;
|
|
13
|
+
/** Catalog provider id for the source-code resource (e.g. `XEMA_GITEA`, `GITHUB`). Must map to category `source-code`. */
|
|
14
|
+
sourceCodeProviderId: string;
|
|
15
|
+
/** Catalog provider id for the packages resource (e.g. `XEMA_NPM_REGISTRY`, `NPMJS`). Must map to category `packages`. */
|
|
16
|
+
packagesProviderId: string;
|
|
17
|
+
/** When true, persists "Don't ask again before creating platform-managed resources" as the durable org preference. Source of truth lives in `OrgOnboardingPreferences`; localStorage is best-effort UX state. */
|
|
18
|
+
alwaysAllowResourceCreation: boolean;
|
|
19
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export interface ProvisionOnboardingResponseDto {
|
|
9
|
+
/** Org the wizard provisioned for. */
|
|
10
|
+
orgId: string;
|
|
11
|
+
/** Project the wizard provisioned for. */
|
|
12
|
+
projectId: string;
|
|
13
|
+
/** Active `OrgIntegration.id` for the chosen source-code provider. Omitted when the provider is system-shareable (no per-org row). */
|
|
14
|
+
sourceCodeIntegrationId?: string;
|
|
15
|
+
/** Active `OrgIntegration.id` for the chosen packages provider. Omitted when the provider is system-shareable (no per-org row). */
|
|
16
|
+
packagesIntegrationId?: string;
|
|
17
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { ProvisionOnboardingResponseDto } from './provisionOnboardingResponseDto';
|
|
9
|
+
export interface ProvisionOnboardingResponseDtoDataEnvelope {
|
|
10
|
+
data: ProvisionOnboardingResponseDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { PutManifestDtoManifest } from './putManifestDtoManifest';
|
|
9
|
+
export interface PutManifestDto {
|
|
10
|
+
/** Full manifest JSON object conforming to ProjectManifest schema */
|
|
11
|
+
manifest: PutManifestDtoManifest;
|
|
12
|
+
/** Reason for this change (for audit trail) */
|
|
13
|
+
changeReason?: string;
|
|
14
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Full manifest JSON object conforming to ProjectManifest schema
|
|
10
|
+
*/
|
|
11
|
+
export type PutManifestDtoManifest = {
|
|
12
|
+
[key: string]: unknown;
|
|
13
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export interface ResolveWalletsRequestDto {
|
|
9
|
+
/** Wallet names to resolve. Must all exist within the project/org scope; missing names fail-fast with WORKFLOW_WALLET_NOT_FOUND. */
|
|
10
|
+
names: string[];
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { ResolvedWalletsResponseDtoSecrets } from './resolvedWalletsResponseDtoSecrets';
|
|
9
|
+
import type { ResolvedWalletsResponseDtoVars } from './resolvedWalletsResponseDtoVars';
|
|
10
|
+
import type { ResolvedWalletsResponseDtoWalletKeyMap } from './resolvedWalletsResponseDtoWalletKeyMap';
|
|
11
|
+
export interface ResolvedWalletsResponseDto {
|
|
12
|
+
/** Non-secret variables resolved from the requested wallets. Project-scoped wallets override org-scoped wallets sharing the same key. */
|
|
13
|
+
vars: ResolvedWalletsResponseDtoVars;
|
|
14
|
+
/** Secret variables resolved from the requested wallets, decrypted. Treat as sensitive — consumers must redact in logs. */
|
|
15
|
+
secrets: ResolvedWalletsResponseDtoSecrets;
|
|
16
|
+
/** Provenance map: variable key → wallet name that contributed the value. Lets the engine/audit show which wallet served each key. */
|
|
17
|
+
walletKeyMap: ResolvedWalletsResponseDtoWalletKeyMap;
|
|
18
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { ResolvedWalletsResponseDto } from './resolvedWalletsResponseDto';
|
|
9
|
+
export interface ResolvedWalletsResponseDtoDataEnvelope {
|
|
10
|
+
data: ResolvedWalletsResponseDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Secret variables resolved from the requested wallets, decrypted. Treat as sensitive — consumers must redact in logs.
|
|
10
|
+
*/
|
|
11
|
+
export type ResolvedWalletsResponseDtoSecrets = {
|
|
12
|
+
[key: string]: string;
|
|
13
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Non-secret variables resolved from the requested wallets. Project-scoped wallets override org-scoped wallets sharing the same key.
|
|
10
|
+
*/
|
|
11
|
+
export type ResolvedWalletsResponseDtoVars = {
|
|
12
|
+
[key: string]: string;
|
|
13
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Provenance map: variable key → wallet name that contributed the value. Lets the engine/audit show which wallet served each key.
|
|
10
|
+
*/
|
|
11
|
+
export type ResolvedWalletsResponseDtoWalletKeyMap = {
|
|
12
|
+
[key: string]: string;
|
|
13
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export interface RevokeProjectRoleDto {
|
|
9
|
+
userId: string;
|
|
10
|
+
role: string;
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export interface SetPreferredImageVariantDto {
|
|
9
|
+
/**
|
|
10
|
+
* Workspace-image variant slug to prefer for this project. Set null to clear the preference and let the resolver cascade to the org default.
|
|
11
|
+
* @nullable
|
|
12
|
+
*/
|
|
13
|
+
preferredImageVariantSlug?: string | null;
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.6.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Project Registry API
|
|
5
|
+
* Project workspace, repository links, integrations and settings
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export interface UpdateProjectDto {
|
|
9
|
+
/** Human-readable project name. */
|
|
10
|
+
name?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Optional project description. Set null to clear the existing description.
|
|
13
|
+
* @nullable
|
|
14
|
+
*/
|
|
15
|
+
description?: string | null;
|
|
16
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.6.2 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* Project Registry API
|
|
6
|
+
* Project workspace, repository links, integrations and settings
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|