Skip to content

Commit d9c4b5f

Browse files
author
Sentio Bot
committed
chore: update
1 parent 2d3b6de commit d9c4b5f

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

doc/index.html

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,10 @@
163163
} else {
164164
// Use a for loop instead of forEach to avoid nested functions
165165
// Otherwise "return" will not work properly
166-
for(var propt in currentNode){
167-
if (currentNode.hasOwnProperty(propt)) {
168-
currentChild = currentNode[propt]
169-
if (id == propt) {
166+
for(var property in currentNode){
167+
if (currentNode.hasOwnProperty(property)) {
168+
currentChild = currentNode[property]
169+
if (id == property) {
170170
return currentChild;
171171
} else {
172172
// Search in the current child
@@ -1316,6 +1316,9 @@
13161316
"queueLength" : {
13171317
"type" : "integer",
13181318
"format" : "int32"
1319+
},
1320+
"computeStats" : {
1321+
"$ref" : "#/components/schemas/common.ComputeStats"
13191322
}
13201323
}
13211324
};

openapi.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3124,6 +3124,9 @@
31243124
"queueLength": {
31253125
"type": "integer",
31263126
"format": "int32"
3127+
},
3128+
"computeStats": {
3129+
"$ref": "#/definitions/common.ComputeStats"
31273130
}
31283131
}
31293132
},

src/types.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ export type AnalyticServiceAsyncExecuteSqlResponse = {
159159
queryId?: string;
160160
executionId?: string;
161161
queueLength?: number;
162+
computeStats?: CommonComputeStats;
162163
};
163164

164165
export type AnalyticServiceExecutionInfo = {

0 commit comments

Comments
 (0)