/** * @public * @enum */ export declare const ApprovalState: { readonly APPROVE: "APPROVE"; readonly REVOKE: "REVOKE"; }; /** * @public */ export type ApprovalState = (typeof ApprovalState)[keyof typeof ApprovalState]; /** * @public * @enum */ export declare const OverrideStatus: { readonly OVERRIDE: "OVERRIDE"; readonly REVOKE: "REVOKE"; }; /** * @public */ export type OverrideStatus = (typeof OverrideStatus)[keyof typeof OverrideStatus]; /** * @public * @enum */ export declare const ConflictDetailLevelTypeEnum: { readonly FILE_LEVEL: "FILE_LEVEL"; readonly LINE_LEVEL: "LINE_LEVEL"; }; /** * @public */ export type ConflictDetailLevelTypeEnum = (typeof ConflictDetailLevelTypeEnum)[keyof typeof ConflictDetailLevelTypeEnum]; /** * @public * @enum */ export declare const ConflictResolutionStrategyTypeEnum: { readonly ACCEPT_DESTINATION: "ACCEPT_DESTINATION"; readonly ACCEPT_SOURCE: "ACCEPT_SOURCE"; readonly AUTOMERGE: "AUTOMERGE"; readonly NONE: "NONE"; }; /** * @public */ export type ConflictResolutionStrategyTypeEnum = (typeof ConflictResolutionStrategyTypeEnum)[keyof typeof ConflictResolutionStrategyTypeEnum]; /** * @public * @enum */ export declare const MergeOptionTypeEnum: { readonly FAST_FORWARD_MERGE: "FAST_FORWARD_MERGE"; readonly SQUASH_MERGE: "SQUASH_MERGE"; readonly THREE_WAY_MERGE: "THREE_WAY_MERGE"; }; /** * @public */ export type MergeOptionTypeEnum = (typeof MergeOptionTypeEnum)[keyof typeof MergeOptionTypeEnum]; /** * @public * @enum */ export declare const FileModeTypeEnum: { readonly EXECUTABLE: "EXECUTABLE"; readonly NORMAL: "NORMAL"; readonly SYMLINK: "SYMLINK"; }; /** * @public */ export type FileModeTypeEnum = (typeof FileModeTypeEnum)[keyof typeof FileModeTypeEnum]; /** * @public * @enum */ export declare const ChangeTypeEnum: { readonly ADDED: "A"; readonly DELETED: "D"; readonly MODIFIED: "M"; }; /** * @public */ export type ChangeTypeEnum = (typeof ChangeTypeEnum)[keyof typeof ChangeTypeEnum]; /** * @public * @enum */ export declare const ObjectTypeEnum: { readonly DIRECTORY: "DIRECTORY"; readonly FILE: "FILE"; readonly GIT_LINK: "GIT_LINK"; readonly SYMBOLIC_LINK: "SYMBOLIC_LINK"; }; /** * @public */ export type ObjectTypeEnum = (typeof ObjectTypeEnum)[keyof typeof ObjectTypeEnum]; /** * @public * @enum */ export declare const BatchGetRepositoriesErrorCodeEnum: { readonly ENCRYPTION_INTEGRITY_CHECKS_FAILED_EXCEPTION: "EncryptionIntegrityChecksFailedException"; readonly ENCRYPTION_KEY_ACCESS_DENIED_EXCEPTION: "EncryptionKeyAccessDeniedException"; readonly ENCRYPTION_KEY_DISABLED_EXCEPTION: "EncryptionKeyDisabledException"; readonly ENCRYPTION_KEY_NOT_FOUND_EXCEPTION: "EncryptionKeyNotFoundException"; readonly ENCRYPTION_KEY_UNAVAILABLE_EXCEPTION: "EncryptionKeyUnavailableException"; readonly REPOSITORY_DOES_NOT_EXIST_EXCEPTION: "RepositoryDoesNotExistException"; }; /** * @public */ export type BatchGetRepositoriesErrorCodeEnum = (typeof BatchGetRepositoriesErrorCodeEnum)[keyof typeof BatchGetRepositoriesErrorCodeEnum]; /** * @public * @enum */ export declare const PullRequestStatusEnum: { readonly CLOSED: "CLOSED"; readonly OPEN: "OPEN"; }; /** * @public */ export type PullRequestStatusEnum = (typeof PullRequestStatusEnum)[keyof typeof PullRequestStatusEnum]; /** * @public * @enum */ export declare const ReplacementTypeEnum: { readonly KEEP_BASE: "KEEP_BASE"; readonly KEEP_DESTINATION: "KEEP_DESTINATION"; readonly KEEP_SOURCE: "KEEP_SOURCE"; readonly USE_NEW_CONTENT: "USE_NEW_CONTENT"; }; /** * @public */ export type ReplacementTypeEnum = (typeof ReplacementTypeEnum)[keyof typeof ReplacementTypeEnum]; /** * @public * @enum */ export declare const PullRequestEventType: { readonly PULL_REQUEST_APPROVAL_RULE_CREATED: "PULL_REQUEST_APPROVAL_RULE_CREATED"; readonly PULL_REQUEST_APPROVAL_RULE_DELETED: "PULL_REQUEST_APPROVAL_RULE_DELETED"; readonly PULL_REQUEST_APPROVAL_RULE_OVERRIDDEN: "PULL_REQUEST_APPROVAL_RULE_OVERRIDDEN"; readonly PULL_REQUEST_APPROVAL_RULE_UPDATED: "PULL_REQUEST_APPROVAL_RULE_UPDATED"; readonly PULL_REQUEST_APPROVAL_STATE_CHANGED: "PULL_REQUEST_APPROVAL_STATE_CHANGED"; readonly PULL_REQUEST_CREATED: "PULL_REQUEST_CREATED"; readonly PULL_REQUEST_MERGE_STATE_CHANGED: "PULL_REQUEST_MERGE_STATE_CHANGED"; readonly PULL_REQUEST_SOURCE_REFERENCE_UPDATED: "PULL_REQUEST_SOURCE_REFERENCE_UPDATED"; readonly PULL_REQUEST_STATUS_CHANGED: "PULL_REQUEST_STATUS_CHANGED"; }; /** * @public */ export type PullRequestEventType = (typeof PullRequestEventType)[keyof typeof PullRequestEventType]; /** * @public * @enum */ export declare const RelativeFileVersionEnum: { readonly AFTER: "AFTER"; readonly BEFORE: "BEFORE"; }; /** * @public */ export type RelativeFileVersionEnum = (typeof RelativeFileVersionEnum)[keyof typeof RelativeFileVersionEnum]; /** * @public * @enum */ export declare const RepositoryTriggerEventEnum: { readonly ALL: "all"; readonly CREATE_REFERENCE: "createReference"; readonly DELETE_REFERENCE: "deleteReference"; readonly UPDATE_REFERENCE: "updateReference"; }; /** * @public */ export type RepositoryTriggerEventEnum = (typeof RepositoryTriggerEventEnum)[keyof typeof RepositoryTriggerEventEnum]; /** * @public * @enum */ export declare const OrderEnum: { readonly ASCENDING: "ascending"; readonly DESCENDING: "descending"; }; /** * @public */ export type OrderEnum = (typeof OrderEnum)[keyof typeof OrderEnum]; /** * @public * @enum */ export declare const SortByEnum: { readonly MODIFIED_DATE: "lastModifiedDate"; readonly REPOSITORY_NAME: "repositoryName"; }; /** * @public */ export type SortByEnum = (typeof SortByEnum)[keyof typeof SortByEnum];