Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/publish/netlify/api/models/repoInfo.ts
6468 views
1
// deno-lint-ignore-file
2
/* istanbul ignore file */
3
/* tslint:disable */
4
/* eslint-disable */
5
6
export type repoInfo = {
7
id?: number;
8
provider?: string;
9
deploy_key_id?: string;
10
repo_path?: string;
11
repo_branch?: string;
12
dir?: string;
13
functions_dir?: string;
14
cmd?: string;
15
allowed_branches?: Array<string>;
16
public_repo?: boolean;
17
private_logs?: boolean;
18
repo_url?: string;
19
env?: Record<string, string>;
20
installation_id?: number;
21
stop_builds?: boolean;
22
};
23
24