@xemahq/scm-connector-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 +36 -0
- package/README.md +62 -0
- package/dist/custom-fetch.d.ts +30 -0
- package/dist/custom-fetch.js +160 -0
- package/dist/endpoints/change-requests/change-requests.d.ts +33 -0
- package/dist/endpoints/change-requests/change-requests.js +80 -0
- package/dist/endpoints/git-content/git-content.d.ts +43 -0
- package/dist/endpoints/git-content/git-content.js +163 -0
- package/dist/endpoints/org-repositories/org-repositories.d.ts +33 -0
- package/dist/endpoints/org-repositories/org-repositories.js +78 -0
- package/dist/endpoints/org-scm-config/org-scm-config.d.ts +58 -0
- package/dist/endpoints/org-scm-config/org-scm-config.js +222 -0
- package/dist/endpoints/project-repositories/project-repositories.d.ts +48 -0
- package/dist/endpoints/project-repositories/project-repositories.js +120 -0
- package/dist/endpoints/project-repository-git/project-repository-git.d.ts +28 -0
- package/dist/endpoints/project-repository-git/project-repository-git.js +117 -0
- package/dist/endpoints/project-repository-lifecycle/project-repository-lifecycle.d.ts +23 -0
- package/dist/endpoints/project-repository-lifecycle/project-repository-lifecycle.js +67 -0
- package/dist/endpoints/repository-snapshots/repository-snapshots.d.ts +23 -0
- package/dist/endpoints/repository-snapshots/repository-snapshots.js +46 -0
- package/dist/endpoints/scm-providers/scm-providers.d.ts +33 -0
- package/dist/endpoints/scm-providers/scm-providers.js +120 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +33 -0
- package/dist/models/bindBranchOpDto.d.ts +15 -0
- package/dist/models/bindBranchOpDto.js +2 -0
- package/dist/models/bindBranchOpKind.d.ts +13 -0
- package/dist/models/bindBranchOpKind.js +15 -0
- package/dist/models/bindBranchOpRejectedBodyDto.d.ts +19 -0
- package/dist/models/bindBranchOpRejectedBodyDto.js +9 -0
- package/dist/models/bindRepositoryToProjectDto.d.ts +24 -0
- package/dist/models/bindRepositoryToProjectDto.js +2 -0
- package/dist/models/bindRepositoryToProjectDtoProvider.d.ts +16 -0
- package/dist/models/bindRepositoryToProjectDtoProvider.js +15 -0
- package/dist/models/bindRepositoryToProjectDtoRole.d.ts +15 -0
- package/dist/models/bindRepositoryToProjectDtoRole.js +14 -0
- package/dist/models/bindingHealthDto.d.ts +19 -0
- package/dist/models/bindingHealthDto.js +9 -0
- package/dist/models/bindingSnapshotResponseDto.d.ts +81 -0
- package/dist/models/bindingSnapshotResponseDto.js +2 -0
- package/dist/models/bindingSnapshotResponseDtoCodebaseMetadata.d.ts +14 -0
- package/dist/models/bindingSnapshotResponseDtoCodebaseMetadata.js +9 -0
- package/dist/models/bindingSnapshotResponseDtoCustomTaxonomy.d.ts +14 -0
- package/dist/models/bindingSnapshotResponseDtoCustomTaxonomy.js +9 -0
- package/dist/models/bindingSnapshotResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/bindingSnapshotResponseDtoDataEnvelope.js +2 -0
- package/dist/models/bindingSnapshotResponseDtoL1ModuleMap.d.ts +14 -0
- package/dist/models/bindingSnapshotResponseDtoL1ModuleMap.js +9 -0
- package/dist/models/bindingSnapshotResponseDtoL2FileTopology.d.ts +14 -0
- package/dist/models/bindingSnapshotResponseDtoL2FileTopology.js +9 -0
- package/dist/models/bindingSnapshotResponseDtoRepositorySummary.d.ts +14 -0
- package/dist/models/bindingSnapshotResponseDtoRepositorySummary.js +9 -0
- package/dist/models/bindingSnapshotResponseDtoRole.d.ts +15 -0
- package/dist/models/bindingSnapshotResponseDtoRole.js +14 -0
- package/dist/models/bindingSnapshotResponseDtoStatus.d.ts +17 -0
- package/dist/models/bindingSnapshotResponseDtoStatus.js +16 -0
- package/dist/models/bindingSnapshotResponseDtoTriggerKind.d.ts +17 -0
- package/dist/models/bindingSnapshotResponseDtoTriggerKind.js +16 -0
- package/dist/models/changeRequestCommentResponseDto.d.ts +16 -0
- package/dist/models/changeRequestCommentResponseDto.js +9 -0
- package/dist/models/changeRequestResponseDto.d.ts +25 -0
- package/dist/models/changeRequestResponseDto.js +2 -0
- package/dist/models/changeRequestResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/changeRequestResponseDtoDataEnvelope.js +2 -0
- package/dist/models/changeRequestResponseDtoMetadataJson.d.ts +10 -0
- package/dist/models/changeRequestResponseDtoMetadataJson.js +9 -0
- package/dist/models/checkoutInstructionResponseDto.d.ts +17 -0
- package/dist/models/checkoutInstructionResponseDto.js +9 -0
- package/dist/models/checkoutInstructionResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/checkoutInstructionResponseDtoDataEnvelope.js +2 -0
- package/dist/models/createBranchDto.d.ts +15 -0
- package/dist/models/createBranchDto.js +9 -0
- package/dist/models/createChangeRequestDto.d.ts +17 -0
- package/dist/models/createChangeRequestDto.js +9 -0
- package/dist/models/createProviderRepoDto.d.ts +21 -0
- package/dist/models/createProviderRepoDto.js +9 -0
- package/dist/models/createRepoRequestDto.d.ts +15 -0
- package/dist/models/createRepoRequestDto.js +2 -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/gitContentControllerGetDiffParams.d.ts +17 -0
- package/dist/models/gitContentControllerGetDiffParams.js +9 -0
- package/dist/models/gitContentControllerGetFileParams.d.ts +17 -0
- package/dist/models/gitContentControllerGetFileParams.js +9 -0
- package/dist/models/gitContentControllerListFilesParams.d.ts +17 -0
- package/dist/models/gitContentControllerListFilesParams.js +9 -0
- package/dist/models/gitDiffFileDto.d.ts +22 -0
- package/dist/models/gitDiffFileDto.js +2 -0
- package/dist/models/gitDiffFileDtoStatus.d.ts +18 -0
- package/dist/models/gitDiffFileDtoStatus.js +17 -0
- package/dist/models/gitDiffResultDto.d.ts +15 -0
- package/dist/models/gitDiffResultDto.js +2 -0
- package/dist/models/gitDiffResultDtoDataEnvelope.d.ts +11 -0
- package/dist/models/gitDiffResultDtoDataEnvelope.js +2 -0
- package/dist/models/gitFileContentDto.d.ts +23 -0
- package/dist/models/gitFileContentDto.js +9 -0
- package/dist/models/gitFileContentDtoDataEnvelope.d.ts +11 -0
- package/dist/models/gitFileContentDtoDataEnvelope.js +2 -0
- package/dist/models/gitHubAppBootstrapDto.d.ts +26 -0
- package/dist/models/gitHubAppBootstrapDto.js +2 -0
- package/dist/models/gitHubAppBootstrapDtoDataEnvelope.d.ts +11 -0
- package/dist/models/gitHubAppBootstrapDtoDataEnvelope.js +2 -0
- package/dist/models/githubAccountType.d.ts +15 -0
- package/dist/models/githubAccountType.js +14 -0
- package/dist/models/githubAppInstallationDto.d.ts +21 -0
- package/dist/models/githubAppInstallationDto.js +2 -0
- package/dist/models/githubAppInstallationDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/githubAppInstallationDtoDataArrayEnvelope.js +2 -0
- package/dist/models/githubAppRepoSyncErrorDto.d.ts +13 -0
- package/dist/models/githubAppRepoSyncErrorDto.js +9 -0
- package/dist/models/githubAppRepoSyncResultDto.d.ts +22 -0
- package/dist/models/githubAppRepoSyncResultDto.js +2 -0
- package/dist/models/githubAppRepoSyncResultDtoDataEnvelope.d.ts +11 -0
- package/dist/models/githubAppRepoSyncResultDtoDataEnvelope.js +2 -0
- package/dist/models/githubRepositorySelection.d.ts +15 -0
- package/dist/models/githubRepositorySelection.js +14 -0
- package/dist/models/inaccessibleReason.d.ts +15 -0
- package/dist/models/inaccessibleReason.js +14 -0
- package/dist/models/index.d.ts +112 -0
- package/dist/models/index.js +129 -0
- package/dist/models/initializeRepositoryDto.d.ts +14 -0
- package/dist/models/initializeRepositoryDto.js +9 -0
- package/dist/models/initializeRepositoryResponseDto.d.ts +13 -0
- package/dist/models/initializeRepositoryResponseDto.js +9 -0
- package/dist/models/initializeRepositoryResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/initializeRepositoryResponseDtoDataEnvelope.js +2 -0
- package/dist/models/mergeBranchDto.d.ts +15 -0
- package/dist/models/mergeBranchDto.js +9 -0
- package/dist/models/orgRepositoryResponseDto.d.ts +26 -0
- package/dist/models/orgRepositoryResponseDto.js +2 -0
- package/dist/models/orgRepositoryResponseDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/orgRepositoryResponseDtoDataArrayEnvelope.js +2 -0
- package/dist/models/orgRepositoryResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/orgRepositoryResponseDtoDataEnvelope.js +2 -0
- package/dist/models/orgRepositoryResponseDtoMetadataJson.d.ts +10 -0
- package/dist/models/orgRepositoryResponseDtoMetadataJson.js +9 -0
- package/dist/models/orgRepositoryResponseDtoProvider.d.ts +13 -0
- package/dist/models/orgRepositoryResponseDtoProvider.js +15 -0
- package/dist/models/orgScmConfigControllerGetGitHubAppBootstrapParams.d.ts +17 -0
- package/dist/models/orgScmConfigControllerGetGitHubAppBootstrapParams.js +9 -0
- package/dist/models/orgScmConfigControllerHandleGitHubAppCallbackParams.d.ts +22 -0
- package/dist/models/orgScmConfigControllerHandleGitHubAppCallbackParams.js +9 -0
- package/dist/models/orgScmConfigControllerListGitHubAppRepositoriesParams.d.ts +13 -0
- package/dist/models/orgScmConfigControllerListGitHubAppRepositoriesParams.js +9 -0
- package/dist/models/orgScmConfigControllerListGitHubAppRepositoryBranchesParams.d.ts +17 -0
- package/dist/models/orgScmConfigControllerListGitHubAppRepositoryBranchesParams.js +9 -0
- package/dist/models/orgScmConfigResponseDto.d.ts +19 -0
- package/dist/models/orgScmConfigResponseDto.js +2 -0
- package/dist/models/orgScmConfigResponseDtoConfigJson.d.ts +10 -0
- package/dist/models/orgScmConfigResponseDtoConfigJson.js +9 -0
- package/dist/models/orgScmConfigResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/orgScmConfigResponseDtoDataEnvelope.js +2 -0
- package/dist/models/orgScmConfigResponseDtoProvider.d.ts +15 -0
- package/dist/models/orgScmConfigResponseDtoProvider.js +17 -0
- package/dist/models/postChangeRequestCommentDto.d.ts +26 -0
- package/dist/models/postChangeRequestCommentDto.js +9 -0
- package/dist/models/projectRepoGitContentControllerGetDiffParams.d.ts +17 -0
- package/dist/models/projectRepoGitContentControllerGetDiffParams.js +9 -0
- package/dist/models/projectRepoGitContentControllerGetFileParams.d.ts +17 -0
- package/dist/models/projectRepoGitContentControllerGetFileParams.js +9 -0
- package/dist/models/projectRepoGitContentControllerListFilesParams.d.ts +17 -0
- package/dist/models/projectRepoGitContentControllerListFilesParams.js +9 -0
- package/dist/models/projectRepoLifecycleControllerGetCheckoutInstructionParams.d.ts +14 -0
- package/dist/models/projectRepoLifecycleControllerGetCheckoutInstructionParams.js +9 -0
- package/dist/models/projectRepositoryBindingResponseDto.d.ts +22 -0
- package/dist/models/projectRepositoryBindingResponseDto.js +2 -0
- package/dist/models/projectRepositoryBindingResponseDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/projectRepositoryBindingResponseDtoDataArrayEnvelope.js +2 -0
- package/dist/models/projectRepositoryBindingResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/projectRepositoryBindingResponseDtoDataEnvelope.js +2 -0
- package/dist/models/projectRepositoryBindingResponseDtoRole.d.ts +12 -0
- package/dist/models/projectRepositoryBindingResponseDtoRole.js +14 -0
- package/dist/models/projectRepositoryBindingResponseDtoStatus.d.ts +12 -0
- package/dist/models/projectRepositoryBindingResponseDtoStatus.js +14 -0
- package/dist/models/projectRepositoryStateResponseDto.d.ts +29 -0
- package/dist/models/projectRepositoryStateResponseDto.js +2 -0
- package/dist/models/projectRepositoryStateResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/projectRepositoryStateResponseDtoDataEnvelope.js +2 -0
- package/dist/models/providerBranchResponseDto.d.ts +17 -0
- package/dist/models/providerBranchResponseDto.js +9 -0
- package/dist/models/providerBranchResponseDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/providerBranchResponseDtoDataArrayEnvelope.js +2 -0
- package/dist/models/providerConnectionDto.d.ts +16 -0
- package/dist/models/providerConnectionDto.js +2 -0
- package/dist/models/providerConnectionDtoProvider.d.ts +17 -0
- package/dist/models/providerConnectionDtoProvider.js +16 -0
- package/dist/models/providerOrgResponseDto.d.ts +18 -0
- package/dist/models/providerOrgResponseDto.js +9 -0
- package/dist/models/providerOrgResponseDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/providerOrgResponseDtoDataArrayEnvelope.js +2 -0
- package/dist/models/providerRepoResponseDto.d.ts +32 -0
- package/dist/models/providerRepoResponseDto.js +9 -0
- package/dist/models/providerRepoResponseDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/providerRepoResponseDtoDataArrayEnvelope.js +2 -0
- package/dist/models/providerRepoResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/providerRepoResponseDtoDataEnvelope.js +2 -0
- package/dist/models/registerOrgRepositoryDto.d.ts +19 -0
- package/dist/models/registerOrgRepositoryDto.js +2 -0
- package/dist/models/registerOrgRepositoryDtoMetadataJson.d.ts +13 -0
- package/dist/models/registerOrgRepositoryDtoMetadataJson.js +9 -0
- package/dist/models/registerOrgRepositoryDtoProvider.d.ts +16 -0
- package/dist/models/registerOrgRepositoryDtoProvider.js +15 -0
- package/dist/models/repositoryStateKind.d.ts +16 -0
- package/dist/models/repositoryStateKind.js +15 -0
- package/dist/models/scmHealthResponseDto.d.ts +15 -0
- package/dist/models/scmHealthResponseDto.js +2 -0
- package/dist/models/scmHealthResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/scmHealthResponseDtoDataEnvelope.js +2 -0
- package/dist/models/scmHealthResponseDtoStatus.d.ts +16 -0
- package/dist/models/scmHealthResponseDtoStatus.js +15 -0
- package/dist/models/scmProvider.d.ts +18 -0
- package/dist/models/scmProvider.js +17 -0
- package/dist/models/scmProviderControllerListBranchesParams.d.ts +17 -0
- package/dist/models/scmProviderControllerListBranchesParams.js +9 -0
- package/dist/models/scmProviderControllerListReposParams.d.ts +13 -0
- package/dist/models/scmProviderControllerListReposParams.js +9 -0
- package/dist/models/scmReadRejectedCode.d.ts +15 -0
- package/dist/models/scmReadRejectedCode.js +14 -0
- package/dist/models/scmReadRejectedResponseDto.d.ts +28 -0
- package/dist/models/scmReadRejectedResponseDto.js +2 -0
- package/dist/models/snapshotRefreshResponseDto.d.ts +15 -0
- package/dist/models/snapshotRefreshResponseDto.js +9 -0
- package/dist/models/snapshotRefreshResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/snapshotRefreshResponseDtoDataEnvelope.js +2 -0
- package/dist/models/updateChangeRequestDto.d.ts +19 -0
- package/dist/models/updateChangeRequestDto.js +2 -0
- package/dist/models/updateChangeRequestDtoMetadataJson.d.ts +13 -0
- package/dist/models/updateChangeRequestDtoMetadataJson.js +9 -0
- package/dist/models/updateChangeRequestDtoStatus.d.ts +16 -0
- package/dist/models/updateChangeRequestDtoStatus.js +15 -0
- package/dist/models/updateOrgRepositoryDto.d.ts +12 -0
- package/dist/models/updateOrgRepositoryDto.js +2 -0
- package/dist/models/updateOrgRepositoryDtoMetadataJson.d.ts +13 -0
- package/dist/models/updateOrgRepositoryDtoMetadataJson.js +9 -0
- package/dist/models/updateProjectRepositoryBindingDto.d.ts +16 -0
- package/dist/models/updateProjectRepositoryBindingDto.js +2 -0
- package/dist/models/updateProjectRepositoryBindingDtoRole.d.ts +15 -0
- package/dist/models/updateProjectRepositoryBindingDtoRole.js +14 -0
- package/dist/models/upsertOrgScmConfigDto.d.ts +19 -0
- package/dist/models/upsertOrgScmConfigDto.js +2 -0
- package/dist/models/upsertOrgScmConfigDtoConfigJson.d.ts +13 -0
- package/dist/models/upsertOrgScmConfigDtoConfigJson.js +9 -0
- package/dist/models/upsertOrgScmConfigDtoProvider.d.ts +18 -0
- package/dist/models/upsertOrgScmConfigDtoProvider.js +17 -0
- package/package.json +28 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { ErrorDetailsDtoDetails } from './errorDetailsDtoDetails.js';
|
|
9
|
+
export interface ErrorDetailsDto {
|
|
10
|
+
/** @nullable */
|
|
11
|
+
details: ErrorDetailsDtoDetails;
|
|
12
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* @nullable
|
|
10
|
+
*/
|
|
11
|
+
export type ErrorDetailsDtoDetails = {
|
|
12
|
+
[key: string]: unknown;
|
|
13
|
+
} | null;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.15.0 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* SCM Integration API
|
|
6
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
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.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { ErrorDetailsDto } from './errorDetailsDto.js';
|
|
9
|
+
export interface ErrorPayloadDto {
|
|
10
|
+
code: string;
|
|
11
|
+
message: string;
|
|
12
|
+
details: ErrorDetailsDto | null;
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { ErrorPayloadDto } from './errorPayloadDto.js';
|
|
9
|
+
export interface ErrorResponseDto {
|
|
10
|
+
error: ErrorPayloadDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export type GitContentControllerGetDiffParams = {
|
|
9
|
+
/**
|
|
10
|
+
* Base ref (branch, tag, or SHA) for the diff
|
|
11
|
+
*/
|
|
12
|
+
base: string;
|
|
13
|
+
/**
|
|
14
|
+
* Head ref (branch, tag, or SHA) for the diff
|
|
15
|
+
*/
|
|
16
|
+
head: string;
|
|
17
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.15.0 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* SCM Integration API
|
|
6
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
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.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export type GitContentControllerGetFileParams = {
|
|
9
|
+
/**
|
|
10
|
+
* File path relative to the repository root
|
|
11
|
+
*/
|
|
12
|
+
path: string;
|
|
13
|
+
/**
|
|
14
|
+
* Git ref (branch, tag, or SHA). Defaults to the default branch.
|
|
15
|
+
*/
|
|
16
|
+
ref?: string;
|
|
17
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.15.0 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* SCM Integration API
|
|
6
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
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.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export type GitContentControllerListFilesParams = {
|
|
9
|
+
/**
|
|
10
|
+
* Subdirectory path to list (defaults to repo root)
|
|
11
|
+
*/
|
|
12
|
+
path?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Git ref (branch, tag, or SHA). Defaults to the default branch.
|
|
15
|
+
*/
|
|
16
|
+
ref?: string;
|
|
17
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.15.0 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* SCM Integration API
|
|
6
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { GitDiffFileDtoStatus } from './gitDiffFileDtoStatus.js';
|
|
9
|
+
export interface GitDiffFileDto {
|
|
10
|
+
/** File path */
|
|
11
|
+
path: string;
|
|
12
|
+
/** Previous file path (for renames) */
|
|
13
|
+
previousPath?: string;
|
|
14
|
+
/** Change status */
|
|
15
|
+
status: GitDiffFileDtoStatus;
|
|
16
|
+
/** Number of added lines */
|
|
17
|
+
additions?: number;
|
|
18
|
+
/** Number of deleted lines */
|
|
19
|
+
deletions?: number;
|
|
20
|
+
/** Unified diff patch text */
|
|
21
|
+
patch?: string;
|
|
22
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Change status
|
|
10
|
+
*/
|
|
11
|
+
export type GitDiffFileDtoStatus = typeof GitDiffFileDtoStatus[keyof typeof GitDiffFileDtoStatus];
|
|
12
|
+
export declare const GitDiffFileDtoStatus: {
|
|
13
|
+
readonly added: "added";
|
|
14
|
+
readonly modified: "modified";
|
|
15
|
+
readonly deleted: "deleted";
|
|
16
|
+
readonly renamed: "renamed";
|
|
17
|
+
readonly copied: "copied";
|
|
18
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.15.0 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* SCM Integration API
|
|
6
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.GitDiffFileDtoStatus = void 0;
|
|
11
|
+
exports.GitDiffFileDtoStatus = {
|
|
12
|
+
added: 'added',
|
|
13
|
+
modified: 'modified',
|
|
14
|
+
deleted: 'deleted',
|
|
15
|
+
renamed: 'renamed',
|
|
16
|
+
copied: 'copied',
|
|
17
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { GitDiffFileDto } from './gitDiffFileDto.js';
|
|
9
|
+
export interface GitDiffResultDto {
|
|
10
|
+
/** Changed files */
|
|
11
|
+
files: GitDiffFileDto[];
|
|
12
|
+
totalAdditions?: number;
|
|
13
|
+
totalDeletions?: number;
|
|
14
|
+
totalChanges?: number;
|
|
15
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { GitDiffResultDto } from './gitDiffResultDto.js';
|
|
9
|
+
export interface GitDiffResultDtoDataEnvelope {
|
|
10
|
+
data: GitDiffResultDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export interface GitFileContentDto {
|
|
9
|
+
/** Full path relative to repo root */
|
|
10
|
+
path: string;
|
|
11
|
+
/** File name */
|
|
12
|
+
name: string;
|
|
13
|
+
/** Decoded text content (empty string for binary files) */
|
|
14
|
+
content: string;
|
|
15
|
+
/** File size in bytes */
|
|
16
|
+
size?: number;
|
|
17
|
+
/** Git object SHA */
|
|
18
|
+
sha?: string;
|
|
19
|
+
/** Whether the file appears to be binary (content will be empty) */
|
|
20
|
+
isBinary: boolean;
|
|
21
|
+
/** MIME type hint based on file extension */
|
|
22
|
+
mimeType?: string;
|
|
23
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.15.0 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* SCM Integration API
|
|
6
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
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.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { GitFileContentDto } from './gitFileContentDto.js';
|
|
9
|
+
export interface GitFileContentDtoDataEnvelope {
|
|
10
|
+
data: GitFileContentDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { GithubAppInstallationDto } from './githubAppInstallationDto.js';
|
|
9
|
+
export interface GitHubAppBootstrapDto {
|
|
10
|
+
/** GitHub App installations already recorded for this organization */
|
|
11
|
+
installations: GithubAppInstallationDto[];
|
|
12
|
+
/** Whether backend has enough config to generate the install URL */
|
|
13
|
+
appConfigured: boolean;
|
|
14
|
+
/** Whether backend has an explicit callback URL configured */
|
|
15
|
+
callbackConfigured: boolean;
|
|
16
|
+
/**
|
|
17
|
+
* GitHub App install URL for adding a new installation; null when app is not configured
|
|
18
|
+
* @nullable
|
|
19
|
+
*/
|
|
20
|
+
installUrl: string | null;
|
|
21
|
+
/**
|
|
22
|
+
* Configured callback URL expected by the GitHub App setup flow, if available
|
|
23
|
+
* @nullable
|
|
24
|
+
*/
|
|
25
|
+
callbackUrl: string | null;
|
|
26
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { GitHubAppBootstrapDto } from './gitHubAppBootstrapDto.js';
|
|
9
|
+
export interface GitHubAppBootstrapDtoDataEnvelope {
|
|
10
|
+
data: GitHubAppBootstrapDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* GitHub account type that owns the installation
|
|
10
|
+
*/
|
|
11
|
+
export type GithubAccountType = typeof GithubAccountType[keyof typeof GithubAccountType];
|
|
12
|
+
export declare const GithubAccountType: {
|
|
13
|
+
readonly ORGANIZATION: "ORGANIZATION";
|
|
14
|
+
readonly USER: "USER";
|
|
15
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.15.0 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* SCM Integration API
|
|
6
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.GithubAccountType = void 0;
|
|
11
|
+
exports.GithubAccountType = {
|
|
12
|
+
ORGANIZATION: 'ORGANIZATION',
|
|
13
|
+
USER: 'USER',
|
|
14
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { GithubAccountType } from './githubAccountType.js';
|
|
9
|
+
import type { GithubRepositorySelection } from './githubRepositorySelection.js';
|
|
10
|
+
export interface GithubAppInstallationDto {
|
|
11
|
+
/** GitHub App installation ID (stable across renames/transfers) */
|
|
12
|
+
installationId: string;
|
|
13
|
+
/** GitHub account login (org/user) that granted the installation */
|
|
14
|
+
accountLogin: string;
|
|
15
|
+
/** GitHub account type that owns the installation */
|
|
16
|
+
accountType: GithubAccountType;
|
|
17
|
+
/** Whether the installation has access to all or a selected set of repositories */
|
|
18
|
+
repositorySelection: GithubRepositorySelection;
|
|
19
|
+
/** When the installation was recorded for this tenant */
|
|
20
|
+
createdAt: string;
|
|
21
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { GithubAppInstallationDto } from './githubAppInstallationDto.js';
|
|
9
|
+
export interface GithubAppInstallationDtoDataArrayEnvelope {
|
|
10
|
+
data: GithubAppInstallationDto[];
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
export interface GithubAppRepoSyncErrorDto {
|
|
9
|
+
/** Installation that produced the error */
|
|
10
|
+
installationId: string;
|
|
11
|
+
/** Human-readable error message */
|
|
12
|
+
message: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.15.0 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* SCM Integration API
|
|
6
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { GithubAppRepoSyncErrorDto } from './githubAppRepoSyncErrorDto.js';
|
|
9
|
+
export interface GithubAppRepoSyncResultDto {
|
|
10
|
+
/** Number of installations covered by this sync run */
|
|
11
|
+
installationCount: number;
|
|
12
|
+
/** Total repositories observed across every installation */
|
|
13
|
+
reposSeen: number;
|
|
14
|
+
/** Repositories inserted as new OrgRepository rows */
|
|
15
|
+
added: number;
|
|
16
|
+
/** Existing repositories whose metadata was refreshed */
|
|
17
|
+
updated: number;
|
|
18
|
+
/** Existing repositories removed because the installation no longer exposes them AND they had no active project bindings */
|
|
19
|
+
pruned: number;
|
|
20
|
+
/** Per-installation errors. Empty on full success. */
|
|
21
|
+
errors: GithubAppRepoSyncErrorDto[];
|
|
22
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { GithubAppRepoSyncResultDto } from './githubAppRepoSyncResultDto.js';
|
|
9
|
+
export interface GithubAppRepoSyncResultDtoDataEnvelope {
|
|
10
|
+
data: GithubAppRepoSyncResultDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Whether the installation has access to all or a selected set of repositories
|
|
10
|
+
*/
|
|
11
|
+
export type GithubRepositorySelection = typeof GithubRepositorySelection[keyof typeof GithubRepositorySelection];
|
|
12
|
+
export declare const GithubRepositorySelection: {
|
|
13
|
+
readonly ALL: "ALL";
|
|
14
|
+
readonly SELECTED: "SELECTED";
|
|
15
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.15.0 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* SCM Integration API
|
|
6
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.GithubRepositorySelection = void 0;
|
|
11
|
+
exports.GithubRepositorySelection = {
|
|
12
|
+
ALL: 'ALL',
|
|
13
|
+
SELECTED: 'SELECTED',
|
|
14
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.15.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SCM Integration API
|
|
5
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Set only when `code === REPO_INACCESSIBLE`. `not_in_app_selection` → repo is not in the GitHub App installation's selected list (fix on github.com, no rebind). `likely_deleted_or_token_revoked` → generic 401/403/404 (rebind / re-auth).
|
|
10
|
+
*/
|
|
11
|
+
export type InaccessibleReason = typeof InaccessibleReason[keyof typeof InaccessibleReason];
|
|
12
|
+
export declare const InaccessibleReason: {
|
|
13
|
+
readonly not_in_app_selection: "not_in_app_selection";
|
|
14
|
+
readonly likely_deleted_or_token_revoked: "likely_deleted_or_token_revoked";
|
|
15
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.15.0 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* SCM Integration API
|
|
6
|
+
* SCM / software-dev domain extracted out of connector-gateway-api (WS-E1). Owns org-scm-config, org-repositories, project-repository-bindings, change-requests, repository snapshots, the GitHub App, and SCM webhook ingestion.
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.InaccessibleReason = void 0;
|
|
11
|
+
exports.InaccessibleReason = {
|
|
12
|
+
not_in_app_selection: 'not_in_app_selection',
|
|
13
|
+
likely_deleted_or_token_revoked: 'likely_deleted_or_token_revoked',
|
|
14
|
+
};
|