Skip to content

Commit 2435344

Browse files
author
Sentio Bot
committed
chore: update
1 parent 1dfa071 commit 2435344

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

doc/index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2087,6 +2087,17 @@
20872087
"type" : "boolean"
20882088
}
20892089
}
2090+
};
2091+
defs["common.CommunityProject"] = {
2092+
"type" : "object",
2093+
"properties" : {
2094+
"dashAlias" : {
2095+
"type" : "string"
2096+
},
2097+
"curated" : {
2098+
"type" : "boolean"
2099+
}
2100+
}
20902101
};
20912102
defs["common.ComputeStats"] = {
20922103
"type" : "object",
@@ -2572,6 +2583,9 @@
25722583
},
25732584
"defaultTimerange" : {
25742585
"$ref" : "#/components/schemas/common.TimeRangeLite"
2586+
},
2587+
"communityProject" : {
2588+
"$ref" : "#/components/schemas/common.CommunityProject"
25752589
}
25762590
}
25772591
};

openapi.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4135,6 +4135,17 @@
41354135
}
41364136
}
41374137
},
4138+
"common.CommunityProject": {
4139+
"type": "object",
4140+
"properties": {
4141+
"dashAlias": {
4142+
"type": "string"
4143+
},
4144+
"curated": {
4145+
"type": "boolean"
4146+
}
4147+
}
4148+
},
41384149
"common.ComputeStats": {
41394150
"type": "object",
41404151
"properties": {
@@ -4640,6 +4651,9 @@
46404651
},
46414652
"defaultTimerange": {
46424653
"$ref": "#/definitions/common.TimeRangeLite"
4654+
},
4655+
"communityProject": {
4656+
"$ref": "#/definitions/common.CommunityProject"
46434657
}
46444658
}
46454659
},

src/types.gen.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,11 @@ export type CommonColumnStateSort = {
448448
desc?: boolean;
449449
};
450450

451+
export type CommonCommunityProject = {
452+
dashAlias?: string;
453+
curated?: boolean;
454+
};
455+
451456
export type CommonComputeStats = {
452457
computedAt?: string;
453458
computeCostMs?: string;
@@ -616,6 +621,7 @@ export type CommonProject = {
616621
enableDisk?: boolean;
617622
enableMaterializedView?: boolean;
618623
defaultTimerange?: CommonTimeRangeLite;
624+
communityProject?: CommonCommunityProject;
619625
};
620626

621627
export type CommonProjectProjectMember = {

0 commit comments

Comments
 (0)