@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,21 @@
|
|
|
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 { ManifestHistoryEntryDtoDiff } from './manifestHistoryEntryDtoDiff';
|
|
9
|
+
import type { ManifestHistoryEntryDtoSnapshotJson } from './manifestHistoryEntryDtoSnapshotJson';
|
|
10
|
+
export interface ManifestHistoryEntryDto {
|
|
11
|
+
id: string;
|
|
12
|
+
version: number;
|
|
13
|
+
snapshotJson: ManifestHistoryEntryDtoSnapshotJson;
|
|
14
|
+
changedBy: string;
|
|
15
|
+
changePhase?: string;
|
|
16
|
+
changeReason?: string;
|
|
17
|
+
/** Pipeline run that produced this change */
|
|
18
|
+
pipelineRunId?: string;
|
|
19
|
+
diff?: ManifestHistoryEntryDtoDiff;
|
|
20
|
+
createdAt: string;
|
|
21
|
+
}
|
|
@@ -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 { ManifestHistoryEntryDto } from './manifestHistoryEntryDto';
|
|
9
|
+
export interface ManifestHistoryEntryDtoDataArrayEnvelope {
|
|
10
|
+
data: ManifestHistoryEntryDto[];
|
|
11
|
+
}
|
|
@@ -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 { ManifestHistoryEntryDto } from './manifestHistoryEntryDto';
|
|
9
|
+
export interface ManifestHistoryEntryDtoDataEnvelope {
|
|
10
|
+
data: ManifestHistoryEntryDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
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 ManifestHistoryEntryDtoDiff = {
|
|
9
|
+
[key: string]: unknown;
|
|
10
|
+
};
|
|
@@ -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,10 @@
|
|
|
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 ManifestHistoryEntryDtoSnapshotJson = {
|
|
9
|
+
[key: string]: unknown;
|
|
10
|
+
};
|
|
@@ -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,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 { ManifestResponseDtoManifest } from './manifestResponseDtoManifest';
|
|
9
|
+
export interface ManifestResponseDto {
|
|
10
|
+
id: string;
|
|
11
|
+
projectId: string;
|
|
12
|
+
version: number;
|
|
13
|
+
schemaVersion: string;
|
|
14
|
+
manifest: ManifestResponseDtoManifest;
|
|
15
|
+
lastUpdatedBy: string;
|
|
16
|
+
lastUpdatedPhase?: string;
|
|
17
|
+
createdAt: string;
|
|
18
|
+
updatedAt: string;
|
|
19
|
+
}
|
|
@@ -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 { ManifestResponseDto } from './manifestResponseDto';
|
|
9
|
+
export interface ManifestResponseDtoDataEnvelope {
|
|
10
|
+
data: ManifestResponseDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
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 ManifestResponseDtoManifest = {
|
|
9
|
+
[key: string]: unknown;
|
|
10
|
+
};
|
|
@@ -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,12 @@
|
|
|
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 { ManifestSectionListResponseDtoEntries } from './manifestSectionListResponseDtoEntries';
|
|
9
|
+
export interface ManifestSectionListResponseDto {
|
|
10
|
+
/** Map of section entry names to their objects */
|
|
11
|
+
entries: ManifestSectionListResponseDtoEntries;
|
|
12
|
+
}
|
|
@@ -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 { ManifestSectionListResponseDto } from './manifestSectionListResponseDto';
|
|
9
|
+
export interface ManifestSectionListResponseDtoDataArrayEnvelope {
|
|
10
|
+
data: ManifestSectionListResponseDto[];
|
|
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
|
+
* Map of section entry names to their objects
|
|
10
|
+
*/
|
|
11
|
+
export type ManifestSectionListResponseDtoEntries = {
|
|
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 ManifestValidationResponseDto {
|
|
9
|
+
valid: boolean;
|
|
10
|
+
errors: 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,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 { ManifestValidationResponseDto } from './manifestValidationResponseDto';
|
|
9
|
+
export interface ManifestValidationResponseDtoDataEnvelope {
|
|
10
|
+
data: ManifestValidationResponseDto;
|
|
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 { PatchManifestDtoPatch } from './patchManifestDtoPatch';
|
|
9
|
+
export interface PatchManifestDto {
|
|
10
|
+
/** JSON merge-patch object to apply to current manifest */
|
|
11
|
+
patch: PatchManifestDtoPatch;
|
|
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
|
+
* JSON merge-patch object to apply to current manifest
|
|
10
|
+
*/
|
|
11
|
+
export type PatchManifestDtoPatch = {
|
|
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,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 { PatchSectionEntryDtoPatch } from './patchSectionEntryDtoPatch';
|
|
9
|
+
export interface PatchSectionEntryDto {
|
|
10
|
+
/** JSON merge-patch to apply to section entry */
|
|
11
|
+
patch: PatchSectionEntryDtoPatch;
|
|
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
|
+
* JSON merge-patch to apply to section entry
|
|
10
|
+
*/
|
|
11
|
+
export type PatchSectionEntryDtoPatch = {
|
|
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,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 PreferredImageVariantResponseDto {
|
|
9
|
+
/** Project identifier. */
|
|
10
|
+
projectId: string;
|
|
11
|
+
/**
|
|
12
|
+
* The workspace-image variant slug preferred for this project. Null means no project-level preference; the resolver cascades to the org default.
|
|
13
|
+
* @nullable
|
|
14
|
+
*/
|
|
15
|
+
preferredImageVariantSlug?: 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 });
|
|
@@ -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 { PreferredImageVariantResponseDto } from './preferredImageVariantResponseDto';
|
|
9
|
+
export interface PreferredImageVariantResponseDtoDataEnvelope {
|
|
10
|
+
data: PreferredImageVariantResponseDto;
|
|
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
|
+
export interface PriorRunSummaryDto {
|
|
9
|
+
id: string;
|
|
10
|
+
status: string;
|
|
11
|
+
completedPhases: string[];
|
|
12
|
+
stoppedAtPhase?: string;
|
|
13
|
+
prompt: string;
|
|
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,12 @@
|
|
|
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 ProjectBindingKind = typeof ProjectBindingKind[keyof typeof ProjectBindingKind];
|
|
9
|
+
export declare const ProjectBindingKind: {
|
|
10
|
+
readonly KB_SPACE: "KB_SPACE";
|
|
11
|
+
readonly EXTERNAL_PROJECT: "EXTERNAL_PROJECT";
|
|
12
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
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.ProjectBindingKind = void 0;
|
|
11
|
+
exports.ProjectBindingKind = {
|
|
12
|
+
KB_SPACE: 'KB_SPACE',
|
|
13
|
+
EXTERNAL_PROJECT: 'EXTERNAL_PROJECT',
|
|
14
|
+
};
|
|
@@ -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 { ProjectBindingKind } from './projectBindingKind';
|
|
9
|
+
export interface ProjectBindingResponseDto {
|
|
10
|
+
id: string;
|
|
11
|
+
projectId: string;
|
|
12
|
+
kind: ProjectBindingKind;
|
|
13
|
+
targetId: string;
|
|
14
|
+
label?: string;
|
|
15
|
+
createdAt: string;
|
|
16
|
+
updatedAt: string;
|
|
17
|
+
createdBy: string;
|
|
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 { ProjectBindingResponseDto } from './projectBindingResponseDto';
|
|
9
|
+
export interface ProjectBindingResponseDtoDataArrayEnvelope {
|
|
10
|
+
data: ProjectBindingResponseDto[];
|
|
11
|
+
}
|
|
@@ -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 { ProjectBindingResponseDto } from './projectBindingResponseDto';
|
|
9
|
+
export interface ProjectBindingResponseDtoDataEnvelope {
|
|
10
|
+
data: ProjectBindingResponseDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
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 ProjectEnvResponseDto {
|
|
9
|
+
env: string;
|
|
10
|
+
url?: string;
|
|
11
|
+
notes?: string;
|
|
12
|
+
}
|
|
@@ -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
|
+
import type { ProjectIntegrationResponseDtoConfig } from './projectIntegrationResponseDtoConfig';
|
|
9
|
+
export interface ProjectIntegrationResponseDto {
|
|
10
|
+
type: string;
|
|
11
|
+
enabled: boolean;
|
|
12
|
+
credentialsPointer?: string;
|
|
13
|
+
config?: ProjectIntegrationResponseDtoConfig;
|
|
14
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
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 ProjectIntegrationResponseDtoConfig = {
|
|
9
|
+
[key: string]: unknown;
|
|
10
|
+
};
|
|
@@ -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 ProjectMembershipResponseDto {
|
|
9
|
+
id: string;
|
|
10
|
+
orgId: string;
|
|
11
|
+
projectId: string;
|
|
12
|
+
userId: string;
|
|
13
|
+
roles: string[];
|
|
14
|
+
createdAt: string;
|
|
15
|
+
updatedAt: 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 { ProjectMembershipResponseDto } from './projectMembershipResponseDto';
|
|
9
|
+
export interface ProjectMembershipResponseDtoDataArrayEnvelope {
|
|
10
|
+
data: ProjectMembershipResponseDto[];
|
|
11
|
+
}
|