Skip to content

Commit 4f38986

Browse files
author
Sentio Bot
committed
chore: update
1 parent cf9c59c commit 4f38986

File tree

225 files changed

+8052
-7424
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

225 files changed

+8052
-7424
lines changed

doc/index.html

100644100755
Lines changed: 1718 additions & 1640 deletions
Large diffs are not rendered by default.

openapi.json

Lines changed: 5672 additions & 5596 deletions
Large diffs are not rendered by default.

src/apis/DataApi.ts

100644100755
Lines changed: 138 additions & 138 deletions
Large diffs are not rendered by default.

src/apis/DebugAndSimulationApi.ts

100644100755
File mode changed.

src/apis/PriceApi.ts

100644100755
File mode changed.

src/apis/WebApi.ts

100644100755
File mode changed.

src/apis/index.ts

100644100755
File mode changed.

src/index.ts

100644100755
File mode changed.

src/models/AnalyticServiceAnalyticServiceExecuteSQLBody.ts

100644100755
File mode changed.

src/models/AnalyticServiceLogQueryRequestFilter.ts

100644100755
File mode changed.

src/models/AnalyticServiceLogQueryRequestSort.ts

100644100755
File mode changed.

src/models/AnalyticServiceLogQueryResponse.ts

100644100755
File mode changed.

src/models/AnalyticServiceSQLQuery.ts

100644100755
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@
1313
*/
1414

1515
import { mapValues } from '../runtime.js';
16+
import type { CommonRichStruct } from './CommonRichStruct.js';
17+
import {
18+
CommonRichStructFromJSON,
19+
CommonRichStructFromJSONTyped,
20+
CommonRichStructToJSON,
21+
} from './CommonRichStruct.js';
22+
1623
/**
1724
*
1825
* @export
@@ -31,6 +38,18 @@ export interface AnalyticServiceSQLQuery {
3138
* @memberof AnalyticServiceSQLQuery
3239
*/
3340
size?: number;
41+
/**
42+
*
43+
* @type {CommonRichStruct}
44+
* @memberof AnalyticServiceSQLQuery
45+
*/
46+
parameters?: CommonRichStruct;
47+
/**
48+
*
49+
* @type {string}
50+
* @memberof AnalyticServiceSQLQuery
51+
*/
52+
name?: string;
3453
}
3554

3655
/**
@@ -52,6 +71,8 @@ export function AnalyticServiceSQLQueryFromJSONTyped(json: any, ignoreDiscrimina
5271

5372
'sql': json['sql'] == null ? undefined : json['sql'],
5473
'size': json['size'] == null ? undefined : json['size'],
74+
'parameters': json['parameters'] == null ? undefined : CommonRichStructFromJSON(json['parameters']),
75+
'name': json['name'] == null ? undefined : json['name'],
5576
};
5677
}
5778

@@ -63,6 +84,8 @@ export function AnalyticServiceSQLQueryToJSON(value?: AnalyticServiceSQLQuery |
6384

6485
'sql': value['sql'],
6586
'size': value['size'],
87+
'parameters': CommonRichStructToJSON(value['parameters']),
88+
'name': value['name'],
6689
};
6790
}
6891

src/models/AnalyticServiceSearchServiceQueryLogBody.ts

100644100755
File mode changed.

src/models/AnalyticServiceSyncExecuteSQLResponse.ts

100644100755
File mode changed.

src/models/CommonAggregate.ts

100644100755
File mode changed.

src/models/CommonAggregateAggregateOps.ts

100644100755
File mode changed.

src/models/CommonAny.ts

100644100755
File mode changed.

src/models/CommonArgument.ts

100644100755
File mode changed.

src/models/CommonBigDecimal.ts

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
/* tslint:disable */
2+
/* eslint-disable */
3+
/**
4+
* Sentio API
5+
* Sentio Open API for query data
6+
*
7+
* The version of the OpenAPI document: version not set
8+
*
9+
*
10+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11+
* https://openapi-generator.tech
12+
* Do not edit the class manually.
13+
*/
14+
15+
import { mapValues } from '../runtime.js';
16+
import type { CommonBigInteger } from './CommonBigInteger.js';
17+
import {
18+
CommonBigIntegerFromJSON,
19+
CommonBigIntegerFromJSONTyped,
20+
CommonBigIntegerToJSON,
21+
} from './CommonBigInteger.js';
22+
23+
/**
24+
*
25+
* @export
26+
* @interface CommonBigDecimal
27+
*/
28+
export interface CommonBigDecimal {
29+
/**
30+
*
31+
* @type {CommonBigInteger}
32+
* @memberof CommonBigDecimal
33+
*/
34+
value?: CommonBigInteger;
35+
/**
36+
*
37+
* @type {number}
38+
* @memberof CommonBigDecimal
39+
*/
40+
exp?: number;
41+
}
42+
43+
/**
44+
* Check if a given object implements the CommonBigDecimal interface.
45+
*/
46+
export function instanceOfCommonBigDecimal(value: object): boolean {
47+
return true;
48+
}
49+
50+
export function CommonBigDecimalFromJSON(json: any): CommonBigDecimal {
51+
return CommonBigDecimalFromJSONTyped(json, false);
52+
}
53+
54+
export function CommonBigDecimalFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommonBigDecimal {
55+
if (json == null) {
56+
return json;
57+
}
58+
return {
59+
60+
'value': json['value'] == null ? undefined : CommonBigIntegerFromJSON(json['value']),
61+
'exp': json['exp'] == null ? undefined : json['exp'],
62+
};
63+
}
64+
65+
export function CommonBigDecimalToJSON(value?: CommonBigDecimal | null): any {
66+
if (value == null) {
67+
return value;
68+
}
69+
return {
70+
71+
'value': CommonBigIntegerToJSON(value['value']),
72+
'exp': value['exp'],
73+
};
74+
}
75+

src/models/CommonBigInteger.ts

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
/* tslint:disable */
2+
/* eslint-disable */
3+
/**
4+
* Sentio API
5+
* Sentio Open API for query data
6+
*
7+
* The version of the OpenAPI document: version not set
8+
*
9+
*
10+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11+
* https://openapi-generator.tech
12+
* Do not edit the class manually.
13+
*/
14+
15+
import { mapValues } from '../runtime.js';
16+
/**
17+
*
18+
* @export
19+
* @interface CommonBigInteger
20+
*/
21+
export interface CommonBigInteger {
22+
/**
23+
*
24+
* @type {boolean}
25+
* @memberof CommonBigInteger
26+
*/
27+
negative?: boolean;
28+
/**
29+
*
30+
* @type {string}
31+
* @memberof CommonBigInteger
32+
*/
33+
data?: string;
34+
}
35+
36+
/**
37+
* Check if a given object implements the CommonBigInteger interface.
38+
*/
39+
export function instanceOfCommonBigInteger(value: object): boolean {
40+
return true;
41+
}
42+
43+
export function CommonBigIntegerFromJSON(json: any): CommonBigInteger {
44+
return CommonBigIntegerFromJSONTyped(json, false);
45+
}
46+
47+
export function CommonBigIntegerFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommonBigInteger {
48+
if (json == null) {
49+
return json;
50+
}
51+
return {
52+
53+
'negative': json['negative'] == null ? undefined : json['negative'],
54+
'data': json['data'] == null ? undefined : json['data'],
55+
};
56+
}
57+
58+
export function CommonBigIntegerToJSON(value?: CommonBigInteger | null): any {
59+
if (value == null) {
60+
return value;
61+
}
62+
return {
63+
64+
'negative': value['negative'],
65+
'data': value['data'],
66+
};
67+
}
68+

src/models/CommonCachePolicy.ts

100644100755
File mode changed.

src/models/CommonChannel.ts

100644100755
File mode changed.

src/models/CommonChannelType.ts

100644100755
File mode changed.

src/models/CommonCohortsFilter.ts

100644100755
File mode changed.

src/models/CommonCohortsFilterAggregation.ts

100644100755
File mode changed.

src/models/CommonCohortsFilterAggregationAggregateProperties.ts

100644100755
File mode changed.

src/models/CommonCohortsFilterAggregationAggregatePropertiesAggregationType.ts

100644100755
File mode changed.

src/models/CommonCohortsFilterAggregationOperatorType.ts

100644100755
File mode changed.

src/models/CommonCohortsGroup.ts

100644100755
File mode changed.

src/models/CommonCohortsQuery.ts

100644100755
File mode changed.

src/models/CommonCoinID.ts

100644100755
File mode changed.

src/models/CommonCoinIDAddressIdentifier.ts

100644100755
File mode changed.

src/models/CommonColumnState.ts

100644100755
File mode changed.

src/models/CommonColumnStateSort.ts

100644100755
File mode changed.

src/models/CommonComputeStats.ts

100644100755
File mode changed.

src/models/CommonDuration.ts

100644100755
File mode changed.

src/models/CommonEventLogColumn.ts

100644100755
File mode changed.

src/models/CommonEventLogConfig.ts

100644100755
File mode changed.

src/models/CommonEventLogEntry.ts

100644100755
File mode changed.

src/models/CommonFormula.ts

100644100755
File mode changed.

src/models/CommonFunction.ts

100644100755
File mode changed.

src/models/CommonJoinOperator.ts

100644100755
File mode changed.

src/models/CommonMatrix.ts

100644100755
File mode changed.

src/models/CommonMatrixMetric.ts

100644100755
File mode changed.

src/models/CommonMatrixSample.ts

100644100755
File mode changed.

src/models/CommonMatrixValue.ts

100644100755
File mode changed.

src/models/CommonOrganization.ts

100644100755
File mode changed.

src/models/CommonOrganizationMember.ts

100644100755
File mode changed.

src/models/CommonOrganizationRole.ts

100644100755
File mode changed.

src/models/CommonOwner.ts

100644100755
File mode changed.

src/models/CommonPermission.ts

100644100755
File mode changed.

src/models/CommonPriceSegmentationQuery.ts

100644100755
File mode changed.

src/models/CommonProject.ts

100644100755
File mode changed.

src/models/CommonProjectInfo.ts

100644100755
File mode changed.

src/models/CommonProjectProjectMember.ts

100644100755
File mode changed.

src/models/CommonProjectSuperset.ts

100644100755
File mode changed.

src/models/CommonProjectType.ts

100644100755
File mode changed.

src/models/CommonProjectView.ts

100644100755
File mode changed.

src/models/CommonProjectViewProjectViewConfig.ts

100644100755
File mode changed.

src/models/CommonProjectVisibility.ts

100644100755
File mode changed.

src/models/CommonQuery.ts

100644100755
File mode changed.

src/models/CommonRetentionMatrix.ts

100644100755
File mode changed.

src/models/CommonRetentionMatrixSample.ts

100644100755
File mode changed.

src/models/CommonRetentionQuery.ts

100644100755
File mode changed.

src/models/CommonRetentionQueryCriteria.ts

100644100755
File mode changed.

src/models/CommonRetentionQueryFilter.ts

100644100755
File mode changed.

src/models/CommonRetentionQueryFilterTimeFilter.ts

100644100755
File mode changed.

src/models/CommonRetentionQueryFilterTimeFilterType.ts

100644100755
File mode changed.

src/models/CommonRetentionQueryInterval.ts

100644100755
File mode changed.

src/models/CommonRetentionQueryIntervalUnit.ts

100644100755
File mode changed.

src/models/CommonRetentionQueryResource.ts

100644100755
File mode changed.

src/models/CommonRichStruct.ts

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
/* tslint:disable */
2+
/* eslint-disable */
3+
/**
4+
* Sentio API
5+
* Sentio Open API for query data
6+
*
7+
* The version of the OpenAPI document: version not set
8+
*
9+
*
10+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11+
* https://openapi-generator.tech
12+
* Do not edit the class manually.
13+
*/
14+
15+
import { mapValues } from '../runtime.js';
16+
import type { CommonRichValue } from './CommonRichValue.js';
17+
import {
18+
CommonRichValueFromJSON,
19+
CommonRichValueFromJSONTyped,
20+
CommonRichValueToJSON,
21+
} from './CommonRichValue.js';
22+
23+
/**
24+
*
25+
* @export
26+
* @interface CommonRichStruct
27+
*/
28+
export interface CommonRichStruct {
29+
/**
30+
*
31+
* @type {{ [key: string]: CommonRichValue; }}
32+
* @memberof CommonRichStruct
33+
*/
34+
fields?: { [key: string]: CommonRichValue; };
35+
}
36+
37+
/**
38+
* Check if a given object implements the CommonRichStruct interface.
39+
*/
40+
export function instanceOfCommonRichStruct(value: object): boolean {
41+
return true;
42+
}
43+
44+
export function CommonRichStructFromJSON(json: any): CommonRichStruct {
45+
return CommonRichStructFromJSONTyped(json, false);
46+
}
47+
48+
export function CommonRichStructFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommonRichStruct {
49+
if (json == null) {
50+
return json;
51+
}
52+
return {
53+
54+
'fields': json['fields'] == null ? undefined : (mapValues(json['fields'], CommonRichValueFromJSON)),
55+
};
56+
}
57+
58+
export function CommonRichStructToJSON(value?: CommonRichStruct | null): any {
59+
if (value == null) {
60+
return value;
61+
}
62+
return {
63+
64+
'fields': value['fields'] == null ? undefined : (mapValues(value['fields'], CommonRichValueToJSON)),
65+
};
66+
}
67+

0 commit comments

Comments
 (0)