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/deploy.ts
6464 views
1
// deno-lint-ignore-file
2
/* istanbul ignore file */
3
/* tslint:disable */
4
/* eslint-disable */
5
6
export type deploy = {
7
id?: string;
8
site_id?: string;
9
user_id?: string;
10
build_id?: string;
11
state?: string;
12
name?: string;
13
url?: string;
14
ssl_url?: string;
15
admin_url?: string;
16
deploy_url?: string;
17
deploy_ssl_url?: string;
18
screenshot_url?: string;
19
review_id?: number;
20
draft?: boolean;
21
required?: Array<string>;
22
required_functions?: Array<string>;
23
error_message?: string;
24
branch?: string;
25
commit_ref?: string;
26
commit_url?: string;
27
skipped?: boolean;
28
created_at?: string;
29
updated_at?: string;
30
published_at?: string;
31
title?: string;
32
context?: string;
33
locked?: boolean;
34
review_url?: string;
35
site_capabilities?: {
36
large_media_enabled?: boolean;
37
};
38
framework?: string;
39
function_schedules?: Array<{
40
name?: string;
41
cron?: string;
42
}>;
43
};
44
45