@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,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 { UpdateProjectIntegrationDtoConfig } from './updateProjectIntegrationDtoConfig';
|
|
9
|
+
export interface UpdateProjectIntegrationDto {
|
|
10
|
+
enabled: boolean;
|
|
11
|
+
credentialsPointer?: string;
|
|
12
|
+
config?: UpdateProjectIntegrationDtoConfig;
|
|
13
|
+
}
|
|
@@ -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 UpdateProjectIntegrationDtoConfig = {
|
|
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,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 { UpdateProjectSettingsDtoCloudDetails } from './updateProjectSettingsDtoCloudDetails';
|
|
9
|
+
import type { UpdateProjectSettingsDtoCloudProvider } from './updateProjectSettingsDtoCloudProvider';
|
|
10
|
+
import type { UpdateProjectSettingsDtoSettings } from './updateProjectSettingsDtoSettings';
|
|
11
|
+
export interface UpdateProjectSettingsDto {
|
|
12
|
+
settings: UpdateProjectSettingsDtoSettings;
|
|
13
|
+
/** ISO 639-1 language code for all pipeline output. "auto" = LLM auto-detects from context. */
|
|
14
|
+
outputLanguage?: string;
|
|
15
|
+
/** Target cloud provider for architecture decisions. "auto" = LLM infers from project context. */
|
|
16
|
+
cloudProvider?: UpdateProjectSettingsDtoCloudProvider;
|
|
17
|
+
/** Additional cloud-specific configuration details. */
|
|
18
|
+
cloudDetails?: UpdateProjectSettingsDtoCloudDetails;
|
|
19
|
+
/** Target branch for pipeline merges. Defaults to repository defaultBranch if not set. */
|
|
20
|
+
targetBranch?: string;
|
|
21
|
+
}
|
|
@@ -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
|
+
* Additional cloud-specific configuration details.
|
|
10
|
+
*/
|
|
11
|
+
export type UpdateProjectSettingsDtoCloudDetails = {
|
|
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 for architecture decisions. "auto" = LLM infers from project context.
|
|
10
|
+
*/
|
|
11
|
+
export type UpdateProjectSettingsDtoCloudProvider = typeof UpdateProjectSettingsDtoCloudProvider[keyof typeof UpdateProjectSettingsDtoCloudProvider];
|
|
12
|
+
export declare const UpdateProjectSettingsDtoCloudProvider: {
|
|
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.UpdateProjectSettingsDtoCloudProvider = void 0;
|
|
11
|
+
exports.UpdateProjectSettingsDtoCloudProvider = {
|
|
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,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 UpdateProjectSettingsDtoSettings = {
|
|
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
|
+
export interface UpdateVariableDto {
|
|
9
|
+
/** New value (required for secrets, optional for non-secrets) */
|
|
10
|
+
value?: string;
|
|
11
|
+
description?: 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,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 { UpsertSectionEntryDtoEntry } from './upsertSectionEntryDtoEntry';
|
|
9
|
+
export interface UpsertSectionEntryDto {
|
|
10
|
+
/** Full section entry object */
|
|
11
|
+
entry: UpsertSectionEntryDtoEntry;
|
|
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 section entry object
|
|
10
|
+
*/
|
|
11
|
+
export type UpsertSectionEntryDtoEntry = {
|
|
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,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 { ValidateManifestDtoManifest } from './validateManifestDtoManifest';
|
|
9
|
+
export interface ValidateManifestDto {
|
|
10
|
+
/** Manifest JSON to validate without saving */
|
|
11
|
+
manifest: ValidateManifestDtoManifest;
|
|
12
|
+
}
|
|
@@ -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
|
+
* Manifest JSON to validate without saving
|
|
10
|
+
*/
|
|
11
|
+
export type ValidateManifestDtoManifest = {
|
|
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,28 @@
|
|
|
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 VariableResponseDto {
|
|
9
|
+
id: string;
|
|
10
|
+
orgId: string;
|
|
11
|
+
/** @nullable */
|
|
12
|
+
projectId?: string | null;
|
|
13
|
+
walletId: string;
|
|
14
|
+
key: string;
|
|
15
|
+
/**
|
|
16
|
+
* Value (null for secrets — write-only)
|
|
17
|
+
* @nullable
|
|
18
|
+
*/
|
|
19
|
+
value?: string | null;
|
|
20
|
+
isSecret: boolean;
|
|
21
|
+
/** @nullable */
|
|
22
|
+
description?: string | null;
|
|
23
|
+
createdBy: string;
|
|
24
|
+
/** @nullable */
|
|
25
|
+
updatedBy?: string | null;
|
|
26
|
+
createdAt: string;
|
|
27
|
+
updatedAt: string;
|
|
28
|
+
}
|
|
@@ -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 { VariableResponseDto } from './variableResponseDto';
|
|
9
|
+
export interface VariableResponseDtoDataArrayEnvelope {
|
|
10
|
+
data: VariableResponseDto[];
|
|
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 { VariableResponseDto } from './variableResponseDto';
|
|
9
|
+
export interface VariableResponseDtoDataEnvelope {
|
|
10
|
+
data: VariableResponseDto;
|
|
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
|
+
export interface WalletEntryDto {
|
|
9
|
+
key: string;
|
|
10
|
+
isSecret: boolean;
|
|
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,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
|
+
export interface WalletResponseDto {
|
|
9
|
+
id: string;
|
|
10
|
+
orgId: string;
|
|
11
|
+
/** @nullable */
|
|
12
|
+
projectId?: string | null;
|
|
13
|
+
name: string;
|
|
14
|
+
/** @nullable */
|
|
15
|
+
description?: string | null;
|
|
16
|
+
createdBy: string;
|
|
17
|
+
/** @nullable */
|
|
18
|
+
updatedBy?: string | null;
|
|
19
|
+
createdAt: string;
|
|
20
|
+
updatedAt: string;
|
|
21
|
+
}
|
|
@@ -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 { WalletResponseDto } from './walletResponseDto';
|
|
9
|
+
export interface WalletResponseDtoDataArrayEnvelope {
|
|
10
|
+
data: WalletResponseDto[];
|
|
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 { WalletResponseDto } from './walletResponseDto';
|
|
9
|
+
export interface WalletResponseDtoDataEnvelope {
|
|
10
|
+
data: WalletResponseDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
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 { WalletEntryDto } from './walletEntryDto';
|
|
9
|
+
export interface WalletWithEntriesResponseDto {
|
|
10
|
+
id: string;
|
|
11
|
+
orgId: string;
|
|
12
|
+
/** @nullable */
|
|
13
|
+
projectId?: string | null;
|
|
14
|
+
name: string;
|
|
15
|
+
/** @nullable */
|
|
16
|
+
description?: string | null;
|
|
17
|
+
createdBy: string;
|
|
18
|
+
/** @nullable */
|
|
19
|
+
updatedBy?: string | null;
|
|
20
|
+
createdAt: string;
|
|
21
|
+
updatedAt: string;
|
|
22
|
+
entries: WalletEntryDto[];
|
|
23
|
+
}
|
|
@@ -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 { WalletWithEntriesResponseDto } from './walletWithEntriesResponseDto';
|
|
9
|
+
export interface WalletWithEntriesResponseDtoDataEnvelope {
|
|
10
|
+
data: WalletWithEntriesResponseDto;
|
|
11
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xemahq/project-registry-api-client",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"main": "./dist/index.js",
|
|
5
|
+
"types": "./dist/index.d.ts",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"registry": "https://npm.pkg.github.com"
|
|
11
|
+
},
|
|
12
|
+
"devDependencies": {
|
|
13
|
+
"typescript": "5.9.3"
|
|
14
|
+
},
|
|
15
|
+
"xema": {
|
|
16
|
+
"kind": "api-client",
|
|
17
|
+
"surface": "public",
|
|
18
|
+
"service": "project-registry-api",
|
|
19
|
+
"biome": "project-registry",
|
|
20
|
+
"target": "server",
|
|
21
|
+
"generator": "@xemahq/api-client-generator@0.1.0",
|
|
22
|
+
"source": "openapi.public.json"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsc -p tsconfig.json"
|
|
26
|
+
}
|
|
27
|
+
}
|