File tree 3 files changed +34
-0
lines changed
3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 2087
2087
"type" : "boolean"
2088
2088
}
2089
2089
}
2090
+ };
2091
+ defs["common.CommunityProject"] = {
2092
+ "type" : "object",
2093
+ "properties" : {
2094
+ "dashAlias" : {
2095
+ "type" : "string"
2096
+ },
2097
+ "curated" : {
2098
+ "type" : "boolean"
2099
+ }
2100
+ }
2090
2101
};
2091
2102
defs["common.ComputeStats"] = {
2092
2103
"type" : "object",
2572
2583
},
2573
2584
"defaultTimerange" : {
2574
2585
"$ref" : "#/components/schemas/common.TimeRangeLite"
2586
+ },
2587
+ "communityProject" : {
2588
+ "$ref" : "#/components/schemas/common.CommunityProject"
2575
2589
}
2576
2590
}
2577
2591
};
Original file line number Diff line number Diff line change 4135
4135
}
4136
4136
}
4137
4137
},
4138
+ "common.CommunityProject" : {
4139
+ "type" : " object" ,
4140
+ "properties" : {
4141
+ "dashAlias" : {
4142
+ "type" : " string"
4143
+ },
4144
+ "curated" : {
4145
+ "type" : " boolean"
4146
+ }
4147
+ }
4148
+ },
4138
4149
"common.ComputeStats" : {
4139
4150
"type" : " object" ,
4140
4151
"properties" : {
4640
4651
},
4641
4652
"defaultTimerange" : {
4642
4653
"$ref" : " #/definitions/common.TimeRangeLite"
4654
+ },
4655
+ "communityProject" : {
4656
+ "$ref" : " #/definitions/common.CommunityProject"
4643
4657
}
4644
4658
}
4645
4659
},
Original file line number Diff line number Diff line change @@ -448,6 +448,11 @@ export type CommonColumnStateSort = {
448
448
desc ?: boolean ;
449
449
} ;
450
450
451
+ export type CommonCommunityProject = {
452
+ dashAlias ?: string ;
453
+ curated ?: boolean ;
454
+ } ;
455
+
451
456
export type CommonComputeStats = {
452
457
computedAt ?: string ;
453
458
computeCostMs ?: string ;
@@ -616,6 +621,7 @@ export type CommonProject = {
616
621
enableDisk ?: boolean ;
617
622
enableMaterializedView ?: boolean ;
618
623
defaultTimerange ?: CommonTimeRangeLite ;
624
+ communityProject ?: CommonCommunityProject ;
619
625
} ;
620
626
621
627
export type CommonProjectProjectMember = {
You can’t perform that action at this time.
0 commit comments