@sentio/api 1.0.2-rc.11 → 1.0.2-rc.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist/src/apis/DataApi.d.ts +40 -40
  2. package/dist/src/apis/DataApi.js +94 -94
  3. package/dist/src/apis/DataApi.js.map +1 -1
  4. package/dist/src/models/AnalyticServiceSQLQuery.d.ts +13 -0
  5. package/dist/src/models/AnalyticServiceSQLQuery.js +5 -0
  6. package/dist/src/models/AnalyticServiceSQLQuery.js.map +1 -1
  7. package/dist/src/models/CommonBigDecimal.d.ts +38 -0
  8. package/dist/src/models/CommonBigDecimal.js +42 -0
  9. package/dist/src/models/CommonBigDecimal.js.map +1 -0
  10. package/dist/src/models/CommonBigInteger.d.ts +37 -0
  11. package/dist/src/models/CommonBigInteger.js +41 -0
  12. package/dist/src/models/CommonBigInteger.js.map +1 -0
  13. package/dist/src/models/CommonRichStruct.d.ts +34 -0
  14. package/dist/src/models/CommonRichStruct.js +41 -0
  15. package/dist/src/models/CommonRichStruct.js.map +1 -0
  16. package/dist/src/models/CommonRichValue.d.ts +96 -0
  17. package/dist/src/models/CommonRichValue.js +64 -0
  18. package/dist/src/models/CommonRichValue.js.map +1 -0
  19. package/dist/src/models/CommonRichValueList.d.ts +32 -0
  20. package/dist/src/models/CommonRichValueList.js +40 -0
  21. package/dist/src/models/CommonRichValueList.js.map +1 -0
  22. package/dist/src/models/CommonRichValueNullValue.d.ts +23 -0
  23. package/dist/src/models/CommonRichValueNullValue.js +33 -0
  24. package/dist/src/models/CommonRichValueNullValue.js.map +1 -0
  25. package/dist/src/models/CommonSelectorOperatorType.d.ts +1 -2
  26. package/dist/src/models/CommonSelectorOperatorType.js +1 -2
  27. package/dist/src/models/CommonSelectorOperatorType.js.map +1 -1
  28. package/dist/src/models/CommonUserInfo.d.ts +1 -1
  29. package/dist/src/models/GoogleApiHttpBody.d.ts +3 -46
  30. package/dist/src/models/GoogleApiHttpBody.js.map +1 -1
  31. package/dist/src/models/index.d.ts +6 -0
  32. package/dist/src/models/index.js +6 -0
  33. package/dist/src/models/index.js.map +1 -1
  34. package/package.json +1 -1
  35. package/src/apis/DataApi.ts +138 -138
  36. package/src/models/AnalyticServiceSQLQuery.ts +23 -0
  37. package/src/models/CommonBigDecimal.ts +75 -0
  38. package/src/models/CommonBigInteger.ts +68 -0
  39. package/src/models/CommonRichStruct.ts +67 -0
  40. package/src/models/CommonRichValue.ts +171 -0
  41. package/src/models/CommonRichValueList.ts +67 -0
  42. package/src/models/CommonRichValueNullValue.ts +41 -0
  43. package/src/models/CommonSelectorOperatorType.ts +1 -2
  44. package/src/models/CommonUserInfo.ts +1 -1
  45. package/src/models/GoogleApiHttpBody.ts +3 -46
  46. package/src/models/index.ts +6 -0
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Sentio API
3
+ * Sentio Open API for query data
4
+ *
5
+ * The version of the OpenAPI document: version not set
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface CommonBigInteger
16
+ */
17
+ export interface CommonBigInteger {
18
+ /**
19
+ *
20
+ * @type {boolean}
21
+ * @memberof CommonBigInteger
22
+ */
23
+ negative?: boolean;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof CommonBigInteger
28
+ */
29
+ data?: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the CommonBigInteger interface.
33
+ */
34
+ export declare function instanceOfCommonBigInteger(value: object): boolean;
35
+ export declare function CommonBigIntegerFromJSON(json: any): CommonBigInteger;
36
+ export declare function CommonBigIntegerFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommonBigInteger;
37
+ export declare function CommonBigIntegerToJSON(value?: CommonBigInteger | null): any;
@@ -0,0 +1,41 @@
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
+ * Check if a given object implements the CommonBigInteger interface.
16
+ */
17
+ export function instanceOfCommonBigInteger(value) {
18
+ return true;
19
+ }
20
+ export function CommonBigIntegerFromJSON(json) {
21
+ return CommonBigIntegerFromJSONTyped(json, false);
22
+ }
23
+ export function CommonBigIntegerFromJSONTyped(json, ignoreDiscriminator) {
24
+ if (json == null) {
25
+ return json;
26
+ }
27
+ return {
28
+ 'negative': json['negative'] == null ? undefined : json['negative'],
29
+ 'data': json['data'] == null ? undefined : json['data'],
30
+ };
31
+ }
32
+ export function CommonBigIntegerToJSON(value) {
33
+ if (value == null) {
34
+ return value;
35
+ }
36
+ return {
37
+ 'negative': value['negative'],
38
+ 'data': value['data'],
39
+ };
40
+ }
41
+ //# sourceMappingURL=CommonBigInteger.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommonBigInteger.js","sourceRoot":"","sources":["../../../src/models/CommonBigInteger.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AAuBH;;GAEG;AACH,MAAM,UAAU,0BAA0B,CAAC,KAAa;IACpD,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,wBAAwB,CAAC,IAAS;IAC9C,OAAO,6BAA6B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACtD,CAAC;AAED,MAAM,UAAU,6BAA6B,CAAC,IAAS,EAAE,mBAA4B;IACjF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC;QACnE,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;KAC1D,CAAC;AACN,CAAC;AAED,MAAM,UAAU,sBAAsB,CAAC,KAA+B;IAClE,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IACD,OAAO;QAEH,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC;QAC7B,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;KACxB,CAAC;AACN,CAAC"}
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Sentio API
3
+ * Sentio Open API for query data
4
+ *
5
+ * The version of the OpenAPI document: version not set
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { CommonRichValue } from './CommonRichValue.js';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CommonRichStruct
17
+ */
18
+ export interface CommonRichStruct {
19
+ /**
20
+ *
21
+ * @type {{ [key: string]: CommonRichValue; }}
22
+ * @memberof CommonRichStruct
23
+ */
24
+ fields?: {
25
+ [key: string]: CommonRichValue;
26
+ };
27
+ }
28
+ /**
29
+ * Check if a given object implements the CommonRichStruct interface.
30
+ */
31
+ export declare function instanceOfCommonRichStruct(value: object): boolean;
32
+ export declare function CommonRichStructFromJSON(json: any): CommonRichStruct;
33
+ export declare function CommonRichStructFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommonRichStruct;
34
+ export declare function CommonRichStructToJSON(value?: CommonRichStruct | null): any;
@@ -0,0 +1,41 @@
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
+ import { mapValues } from '../runtime.js';
15
+ import { CommonRichValueFromJSON, CommonRichValueToJSON, } from './CommonRichValue.js';
16
+ /**
17
+ * Check if a given object implements the CommonRichStruct interface.
18
+ */
19
+ export function instanceOfCommonRichStruct(value) {
20
+ return true;
21
+ }
22
+ export function CommonRichStructFromJSON(json) {
23
+ return CommonRichStructFromJSONTyped(json, false);
24
+ }
25
+ export function CommonRichStructFromJSONTyped(json, ignoreDiscriminator) {
26
+ if (json == null) {
27
+ return json;
28
+ }
29
+ return {
30
+ 'fields': json['fields'] == null ? undefined : (mapValues(json['fields'], CommonRichValueFromJSON)),
31
+ };
32
+ }
33
+ export function CommonRichStructToJSON(value) {
34
+ if (value == null) {
35
+ return value;
36
+ }
37
+ return {
38
+ 'fields': value['fields'] == null ? undefined : (mapValues(value['fields'], CommonRichValueToJSON)),
39
+ };
40
+ }
41
+ //# sourceMappingURL=CommonRichStruct.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommonRichStruct.js","sourceRoot":"","sources":["../../../src/models/CommonRichStruct.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAE1C,OAAO,EACH,uBAAuB,EAEvB,qBAAqB,GACxB,MAAM,sBAAsB,CAAC;AAgB9B;;GAEG;AACH,MAAM,UAAU,0BAA0B,CAAC,KAAa;IACpD,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,wBAAwB,CAAC,IAAS;IAC9C,OAAO,6BAA6B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACtD,CAAC;AAED,MAAM,UAAU,6BAA6B,CAAC,IAAS,EAAE,mBAA4B;IACjF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,uBAAuB,CAAC,CAAC;KACtG,CAAC;AACN,CAAC;AAED,MAAM,UAAU,sBAAsB,CAAC,KAA+B;IAClE,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IACD,OAAO;QAEH,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,KAAK,CAAC,QAAQ,CAAC,EAAE,qBAAqB,CAAC,CAAC;KACtG,CAAC;AACN,CAAC"}
@@ -0,0 +1,96 @@
1
+ /**
2
+ * Sentio API
3
+ * Sentio Open API for query data
4
+ *
5
+ * The version of the OpenAPI document: version not set
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { CommonBigDecimal } from './CommonBigDecimal.js';
13
+ import type { CommonBigInteger } from './CommonBigInteger.js';
14
+ import type { CommonRichStruct } from './CommonRichStruct.js';
15
+ import type { CommonRichValueList } from './CommonRichValueList.js';
16
+ import type { CommonRichValueNullValue } from './CommonRichValueNullValue.js';
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface CommonRichValue
21
+ */
22
+ export interface CommonRichValue {
23
+ /**
24
+ *
25
+ * @type {CommonRichValueNullValue}
26
+ * @memberof CommonRichValue
27
+ */
28
+ nullValue?: CommonRichValueNullValue;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof CommonRichValue
33
+ */
34
+ intValue?: number;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof CommonRichValue
39
+ */
40
+ floatValue?: number;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof CommonRichValue
45
+ */
46
+ bytesValue?: string;
47
+ /**
48
+ *
49
+ * @type {boolean}
50
+ * @memberof CommonRichValue
51
+ */
52
+ boolValue?: boolean;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof CommonRichValue
57
+ */
58
+ stringValue?: string;
59
+ /**
60
+ *
61
+ * @type {Date}
62
+ * @memberof CommonRichValue
63
+ */
64
+ timestampValue?: Date;
65
+ /**
66
+ *
67
+ * @type {CommonBigInteger}
68
+ * @memberof CommonRichValue
69
+ */
70
+ bigintValue?: CommonBigInteger;
71
+ /**
72
+ *
73
+ * @type {CommonBigDecimal}
74
+ * @memberof CommonRichValue
75
+ */
76
+ bigdecimalValue?: CommonBigDecimal;
77
+ /**
78
+ *
79
+ * @type {CommonRichValueList}
80
+ * @memberof CommonRichValue
81
+ */
82
+ listValue?: CommonRichValueList;
83
+ /**
84
+ *
85
+ * @type {CommonRichStruct}
86
+ * @memberof CommonRichValue
87
+ */
88
+ structValue?: CommonRichStruct;
89
+ }
90
+ /**
91
+ * Check if a given object implements the CommonRichValue interface.
92
+ */
93
+ export declare function instanceOfCommonRichValue(value: object): boolean;
94
+ export declare function CommonRichValueFromJSON(json: any): CommonRichValue;
95
+ export declare function CommonRichValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommonRichValue;
96
+ export declare function CommonRichValueToJSON(value?: CommonRichValue | null): any;
@@ -0,0 +1,64 @@
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
+ import { CommonBigDecimalFromJSON, CommonBigDecimalToJSON, } from './CommonBigDecimal.js';
15
+ import { CommonBigIntegerFromJSON, CommonBigIntegerToJSON, } from './CommonBigInteger.js';
16
+ import { CommonRichStructFromJSON, CommonRichStructToJSON, } from './CommonRichStruct.js';
17
+ import { CommonRichValueListFromJSON, CommonRichValueListToJSON, } from './CommonRichValueList.js';
18
+ import { CommonRichValueNullValueFromJSON, CommonRichValueNullValueToJSON, } from './CommonRichValueNullValue.js';
19
+ /**
20
+ * Check if a given object implements the CommonRichValue interface.
21
+ */
22
+ export function instanceOfCommonRichValue(value) {
23
+ return true;
24
+ }
25
+ export function CommonRichValueFromJSON(json) {
26
+ return CommonRichValueFromJSONTyped(json, false);
27
+ }
28
+ export function CommonRichValueFromJSONTyped(json, ignoreDiscriminator) {
29
+ if (json == null) {
30
+ return json;
31
+ }
32
+ return {
33
+ 'nullValue': json['nullValue'] == null ? undefined : CommonRichValueNullValueFromJSON(json['nullValue']),
34
+ 'intValue': json['intValue'] == null ? undefined : json['intValue'],
35
+ 'floatValue': json['floatValue'] == null ? undefined : json['floatValue'],
36
+ 'bytesValue': json['bytesValue'] == null ? undefined : json['bytesValue'],
37
+ 'boolValue': json['boolValue'] == null ? undefined : json['boolValue'],
38
+ 'stringValue': json['stringValue'] == null ? undefined : json['stringValue'],
39
+ 'timestampValue': json['timestampValue'] == null ? undefined : (new Date(json['timestampValue'])),
40
+ 'bigintValue': json['bigintValue'] == null ? undefined : CommonBigIntegerFromJSON(json['bigintValue']),
41
+ 'bigdecimalValue': json['bigdecimalValue'] == null ? undefined : CommonBigDecimalFromJSON(json['bigdecimalValue']),
42
+ 'listValue': json['listValue'] == null ? undefined : CommonRichValueListFromJSON(json['listValue']),
43
+ 'structValue': json['structValue'] == null ? undefined : CommonRichStructFromJSON(json['structValue']),
44
+ };
45
+ }
46
+ export function CommonRichValueToJSON(value) {
47
+ if (value == null) {
48
+ return value;
49
+ }
50
+ return {
51
+ 'nullValue': CommonRichValueNullValueToJSON(value['nullValue']),
52
+ 'intValue': value['intValue'],
53
+ 'floatValue': value['floatValue'],
54
+ 'bytesValue': value['bytesValue'],
55
+ 'boolValue': value['boolValue'],
56
+ 'stringValue': value['stringValue'],
57
+ 'timestampValue': value['timestampValue'] == null ? undefined : ((value['timestampValue']).toISOString()),
58
+ 'bigintValue': CommonBigIntegerToJSON(value['bigintValue']),
59
+ 'bigdecimalValue': CommonBigDecimalToJSON(value['bigdecimalValue']),
60
+ 'listValue': CommonRichValueListToJSON(value['listValue']),
61
+ 'structValue': CommonRichStructToJSON(value['structValue']),
62
+ };
63
+ }
64
+ //# sourceMappingURL=CommonRichValue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommonRichValue.js","sourceRoot":"","sources":["../../../src/models/CommonRichValue.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Sentio API
3
+ * Sentio Open API for query data
4
+ *
5
+ * The version of the OpenAPI document: version not set
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { CommonRichValue } from './CommonRichValue.js';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CommonRichValueList
17
+ */
18
+ export interface CommonRichValueList {
19
+ /**
20
+ *
21
+ * @type {Array<CommonRichValue>}
22
+ * @memberof CommonRichValueList
23
+ */
24
+ values?: Array<CommonRichValue>;
25
+ }
26
+ /**
27
+ * Check if a given object implements the CommonRichValueList interface.
28
+ */
29
+ export declare function instanceOfCommonRichValueList(value: object): boolean;
30
+ export declare function CommonRichValueListFromJSON(json: any): CommonRichValueList;
31
+ export declare function CommonRichValueListFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommonRichValueList;
32
+ export declare function CommonRichValueListToJSON(value?: CommonRichValueList | null): any;
@@ -0,0 +1,40 @@
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
+ import { CommonRichValueFromJSON, CommonRichValueToJSON, } from './CommonRichValue.js';
15
+ /**
16
+ * Check if a given object implements the CommonRichValueList interface.
17
+ */
18
+ export function instanceOfCommonRichValueList(value) {
19
+ return true;
20
+ }
21
+ export function CommonRichValueListFromJSON(json) {
22
+ return CommonRichValueListFromJSONTyped(json, false);
23
+ }
24
+ export function CommonRichValueListFromJSONTyped(json, ignoreDiscriminator) {
25
+ if (json == null) {
26
+ return json;
27
+ }
28
+ return {
29
+ 'values': json['values'] == null ? undefined : (json['values'].map(CommonRichValueFromJSON)),
30
+ };
31
+ }
32
+ export function CommonRichValueListToJSON(value) {
33
+ if (value == null) {
34
+ return value;
35
+ }
36
+ return {
37
+ 'values': value['values'] == null ? undefined : (value['values'].map(CommonRichValueToJSON)),
38
+ };
39
+ }
40
+ //# sourceMappingURL=CommonRichValueList.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommonRichValueList.js","sourceRoot":"","sources":["../../../src/models/CommonRichValueList.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AAIH,OAAO,EACH,uBAAuB,EAEvB,qBAAqB,GACxB,MAAM,sBAAsB,CAAC;AAgB9B;;GAEG;AACH,MAAM,UAAU,6BAA6B,CAAC,KAAa;IACvD,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,2BAA2B,CAAC,IAAS;IACjD,OAAO,gCAAgC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACzD,CAAC;AAED,MAAM,UAAU,gCAAgC,CAAC,IAAS,EAAE,mBAA4B;IACpF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,IAAI,CAAC,QAAQ,CAAgB,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAC;KAC/G,CAAC;AACN,CAAC;AAED,MAAM,UAAU,yBAAyB,CAAC,KAAkC;IACxE,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IACD,OAAO;QAEH,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,KAAK,CAAC,QAAQ,CAAgB,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAC;KAC/G,CAAC;AACN,CAAC"}
@@ -0,0 +1,23 @@
1
+ /**
2
+ * Sentio API
3
+ * Sentio Open API for query data
4
+ *
5
+ * The version of the OpenAPI document: version not set
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ */
16
+ export declare const CommonRichValueNullValue: {
17
+ readonly NullValue: "NULL_VALUE";
18
+ };
19
+ export type CommonRichValueNullValue = typeof CommonRichValueNullValue[keyof typeof CommonRichValueNullValue];
20
+ export declare function instanceOfCommonRichValueNullValue(value: any): boolean;
21
+ export declare function CommonRichValueNullValueFromJSON(json: any): CommonRichValueNullValue;
22
+ export declare function CommonRichValueNullValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommonRichValueNullValue;
23
+ export declare function CommonRichValueNullValueToJSON(value?: CommonRichValueNullValue | null): any;
@@ -0,0 +1,33 @@
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
+ *
16
+ * @export
17
+ */
18
+ export const CommonRichValueNullValue = {
19
+ NullValue: 'NULL_VALUE'
20
+ };
21
+ export function instanceOfCommonRichValueNullValue(value) {
22
+ return Object.values(CommonRichValueNullValue).includes(value);
23
+ }
24
+ export function CommonRichValueNullValueFromJSON(json) {
25
+ return CommonRichValueNullValueFromJSONTyped(json, false);
26
+ }
27
+ export function CommonRichValueNullValueFromJSONTyped(json, ignoreDiscriminator) {
28
+ return json;
29
+ }
30
+ export function CommonRichValueNullValueToJSON(value) {
31
+ return value;
32
+ }
33
+ //# sourceMappingURL=CommonRichValueNullValue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommonRichValueNullValue.js","sourceRoot":"","sources":["../../../src/models/CommonRichValueNullValue.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AAGH;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAG;IACpC,SAAS,EAAE,YAAY;CACjB,CAAC;AAIX,MAAM,UAAU,kCAAkC,CAAC,KAAU;IACzD,OAAO,MAAM,CAAC,MAAM,CAAC,wBAAwB,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;AACnE,CAAC;AAED,MAAM,UAAU,gCAAgC,CAAC,IAAS;IACtD,OAAO,qCAAqC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC9D,CAAC;AAED,MAAM,UAAU,qCAAqC,CAAC,IAAS,EAAE,mBAA4B;IACzF,OAAO,IAAgC,CAAC;AAC5C,CAAC;AAED,MAAM,UAAU,8BAA8B,CAAC,KAAuC;IAClF,OAAO,KAAY,CAAC;AACxB,CAAC"}
@@ -10,8 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * - GT: Numeric operators
14
- * - CONTAINS: String operators
13
+ *
15
14
  * @export
16
15
  */
17
16
  export declare const CommonSelectorOperatorType: {
@@ -12,8 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
  /**
15
- * - GT: Numeric operators
16
- * - CONTAINS: String operators
15
+ *
17
16
  * @export
18
17
  */
19
18
  export const CommonSelectorOperatorType = {
@@ -1 +1 @@
1
- {"version":3,"file":"CommonSelectorOperatorType.js","sourceRoot":"","sources":["../../../src/models/CommonSelectorOperatorType.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG;IACtC,EAAE,EAAE,IAAI;IACR,GAAG,EAAE,KAAK;IACV,MAAM,EAAE,QAAQ;IAChB,SAAS,EAAE,YAAY;IACvB,EAAE,EAAE,IAAI;IACR,GAAG,EAAE,KAAK;IACV,EAAE,EAAE,IAAI;IACR,GAAG,EAAE,KAAK;IACV,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,aAAa;IACzB,QAAQ,EAAE,UAAU;IACpB,WAAW,EAAE,cAAc;IAC3B,SAAS,EAAE,YAAY;IACvB,YAAY,EAAE,gBAAgB;CACxB,CAAC;AAIX,MAAM,UAAU,oCAAoC,CAAC,KAAU;IAC3D,OAAO,MAAM,CAAC,MAAM,CAAC,0BAA0B,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;AACrE,CAAC;AAED,MAAM,UAAU,kCAAkC,CAAC,IAAS;IACxD,OAAO,uCAAuC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAChE,CAAC;AAED,MAAM,UAAU,uCAAuC,CAAC,IAAS,EAAE,mBAA4B;IAC3F,OAAO,IAAkC,CAAC;AAC9C,CAAC;AAED,MAAM,UAAU,gCAAgC,CAAC,KAAyC;IACtF,OAAO,KAAY,CAAC;AACxB,CAAC"}
1
+ {"version":3,"file":"CommonSelectorOperatorType.js","sourceRoot":"","sources":["../../../src/models/CommonSelectorOperatorType.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AAGH;;;GAGG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG;IACtC,EAAE,EAAE,IAAI;IACR,GAAG,EAAE,KAAK;IACV,MAAM,EAAE,QAAQ;IAChB,SAAS,EAAE,YAAY;IACvB,EAAE,EAAE,IAAI;IACR,GAAG,EAAE,KAAK;IACV,EAAE,EAAE,IAAI;IACR,GAAG,EAAE,KAAK;IACV,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,aAAa;IACzB,QAAQ,EAAE,UAAU;IACpB,WAAW,EAAE,cAAc;IAC3B,SAAS,EAAE,YAAY;IACvB,YAAY,EAAE,gBAAgB;CACxB,CAAC;AAIX,MAAM,UAAU,oCAAoC,CAAC,KAAU;IAC3D,OAAO,MAAM,CAAC,MAAM,CAAC,0BAA0B,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;AACrE,CAAC;AAED,MAAM,UAAU,kCAAkC,CAAC,IAAS;IACxD,OAAO,uCAAuC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAChE,CAAC;AAED,MAAM,UAAU,uCAAuC,CAAC,IAAS,EAAE,mBAA4B;IAC3F,OAAO,IAAkC,CAAC;AAC9C,CAAC;AAED,MAAM,UAAU,gCAAgC,CAAC,KAAyC;IACtF,OAAO,KAAY,CAAC;AACxB,CAAC"}
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * The same to user but with sensitive data removed.
13
+ *
14
14
  * @export
15
15
  * @interface CommonUserInfo
16
16
  */
@@ -11,68 +11,25 @@
11
11
  */
12
12
  import type { GoogleProtobufAny } from './GoogleProtobufAny.js';
13
13
  /**
14
- * Message that represents an arbitrary HTTP body. It should only be used for
15
- * payload formats that can't be represented as JSON, such as raw binary or
16
- * an HTML page.
17
14
  *
18
- *
19
- * This message can be used both in streaming and non-streaming API methods in
20
- * the request as well as the response.
21
- *
22
- * It can be used as a top-level request field, which is convenient if one
23
- * wants to extract parameters from either the URL or HTTP template into the
24
- * request fields and also want access to the raw HTTP body.
25
- *
26
- * Example:
27
- *
28
- * message GetResourceRequest {
29
- * // A unique request id.
30
- * string request_id = 1;
31
- *
32
- * // The raw HTTP body is bound to this field.
33
- * google.api.HttpBody http_body = 2;
34
- *
35
- * }
36
- *
37
- * service ResourceService {
38
- * rpc GetResource(GetResourceRequest)
39
- * returns (google.api.HttpBody);
40
- * rpc UpdateResource(google.api.HttpBody)
41
- * returns (google.protobuf.Empty);
42
- *
43
- * }
44
- *
45
- * Example with streaming methods:
46
- *
47
- * service CaldavService {
48
- * rpc GetCalendar(stream google.api.HttpBody)
49
- * returns (stream google.api.HttpBody);
50
- * rpc UpdateCalendar(stream google.api.HttpBody)
51
- * returns (stream google.api.HttpBody);
52
- *
53
- * }
54
- *
55
- * Use of this type only changes how the request and response bodies are
56
- * handled, all other features will continue to work unchanged.
57
15
  * @export
58
16
  * @interface GoogleApiHttpBody
59
17
  */
60
18
  export interface GoogleApiHttpBody {
61
19
  /**
62
- * The HTTP Content-Type header value specifying the content type of the body.
20
+ *
63
21
  * @type {string}
64
22
  * @memberof GoogleApiHttpBody
65
23
  */
66
24
  contentType?: string;
67
25
  /**
68
- * The HTTP request/response body as raw binary.
26
+ *
69
27
  * @type {string}
70
28
  * @memberof GoogleApiHttpBody
71
29
  */
72
30
  data?: string;
73
31
  /**
74
- * Application specific response metadata. Must be set in the first response
75
- * for streaming APIs.
32
+ *
76
33
  * @type {Array<GoogleProtobufAny>}
77
34
  * @memberof GoogleApiHttpBody
78
35
  */
@@ -1 +1 @@
1
- {"version":3,"file":"GoogleApiHttpBody.js","sourceRoot":"","sources":["../../../src/models/GoogleApiHttpBody.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AAIH,OAAO,EACH,yBAAyB,EAEzB,uBAAuB,GAC1B,MAAM,wBAAwB,CAAC;AAuEhC;;GAEG;AACH,MAAM,UAAU,2BAA2B,CAAC,KAAa;IACrD,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,yBAAyB,CAAC,IAAS;IAC/C,OAAO,8BAA8B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACvD,CAAC;AAED,MAAM,UAAU,8BAA8B,CAAC,IAAS,EAAE,mBAA4B;IAClF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC;QAC5E,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;QACvD,YAAY,EAAE,IAAI,CAAC,YAAY,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,IAAI,CAAC,YAAY,CAAgB,CAAC,GAAG,CAAC,yBAAyB,CAAC,CAAC;KAC7H,CAAC;AACN,CAAC;AAED,MAAM,UAAU,uBAAuB,CAAC,KAAgC;IACpE,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IACD,OAAO;QAEH,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC;QACnC,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,YAAY,EAAE,KAAK,CAAC,YAAY,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,KAAK,CAAC,YAAY,CAAgB,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAC;KAC7H,CAAC;AACN,CAAC"}
1
+ {"version":3,"file":"GoogleApiHttpBody.js","sourceRoot":"","sources":["../../../src/models/GoogleApiHttpBody.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AAIH,OAAO,EACH,yBAAyB,EAEzB,uBAAuB,GAC1B,MAAM,wBAAwB,CAAC;AA4BhC;;GAEG;AACH,MAAM,UAAU,2BAA2B,CAAC,KAAa;IACrD,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,yBAAyB,CAAC,IAAS;IAC/C,OAAO,8BAA8B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACvD,CAAC;AAED,MAAM,UAAU,8BAA8B,CAAC,IAAS,EAAE,mBAA4B;IAClF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC;QAC5E,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;QACvD,YAAY,EAAE,IAAI,CAAC,YAAY,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,IAAI,CAAC,YAAY,CAAgB,CAAC,GAAG,CAAC,yBAAyB,CAAC,CAAC;KAC7H,CAAC;AACN,CAAC;AAED,MAAM,UAAU,uBAAuB,CAAC,KAAgC;IACpE,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IACD,OAAO;QAEH,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC;QACnC,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,YAAY,EAAE,KAAK,CAAC,YAAY,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,KAAK,CAAC,YAAY,CAAgB,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAC;KAC7H,CAAC;AACN,CAAC"}
@@ -9,6 +9,8 @@ export * from './CommonAggregate.js';
9
9
  export * from './CommonAggregateAggregateOps.js';
10
10
  export * from './CommonAny.js';
11
11
  export * from './CommonArgument.js';
12
+ export * from './CommonBigDecimal.js';
13
+ export * from './CommonBigInteger.js';
12
14
  export * from './CommonCachePolicy.js';
13
15
  export * from './CommonChannel.js';
14
16
  export * from './CommonChannelType.js';
@@ -60,6 +62,10 @@ export * from './CommonRetentionQueryFilterTimeFilterType.js';
60
62
  export * from './CommonRetentionQueryInterval.js';
61
63
  export * from './CommonRetentionQueryIntervalUnit.js';
62
64
  export * from './CommonRetentionQueryResource.js';
65
+ export * from './CommonRichStruct.js';
66
+ export * from './CommonRichValue.js';
67
+ export * from './CommonRichValueList.js';
68
+ export * from './CommonRichValueNullValue.js';
63
69
  export * from './CommonSegmentParameter.js';
64
70
  export * from './CommonSegmentationQuery.js';
65
71
  export * from './CommonSegmentationQueryAggregation.js';
@@ -11,6 +11,8 @@ export * from './CommonAggregate.js';
11
11
  export * from './CommonAggregateAggregateOps.js';
12
12
  export * from './CommonAny.js';
13
13
  export * from './CommonArgument.js';
14
+ export * from './CommonBigDecimal.js';
15
+ export * from './CommonBigInteger.js';
14
16
  export * from './CommonCachePolicy.js';
15
17
  export * from './CommonChannel.js';
16
18
  export * from './CommonChannelType.js';
@@ -62,6 +64,10 @@ export * from './CommonRetentionQueryFilterTimeFilterType.js';
62
64
  export * from './CommonRetentionQueryInterval.js';
63
65
  export * from './CommonRetentionQueryIntervalUnit.js';
64
66
  export * from './CommonRetentionQueryResource.js';
67
+ export * from './CommonRichStruct.js';
68
+ export * from './CommonRichValue.js';
69
+ export * from './CommonRichValueList.js';
70
+ export * from './CommonRichValueNullValue.js';
65
71
  export * from './CommonSegmentParameter.js';
66
72
  export * from './CommonSegmentationQuery.js';
67
73
  export * from './CommonSegmentationQueryAggregation.js';