@explo-tech/fido-api 2.5.0 → 2.7.0
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.
- package/index.ts +20 -0
- package/models/And1.ts +11 -0
- package/models/Computation.ts +2 -0
- package/models/EmailConfiguration.ts +10 -0
- package/models/Equal1.ts +13 -0
- package/models/GreaterThan1.ts +13 -0
- package/models/GreaterThanOrEqual1.ts +13 -0
- package/models/Having.ts +25 -0
- package/models/In1.ts +13 -0
- package/models/LateBoundEqual1.ts +12 -0
- package/models/LateBoundGreaterThan1.ts +12 -0
- package/models/LateBoundGreaterThanOrEqual1.ts +12 -0
- package/models/LateBoundIn1.ts +12 -0
- package/models/LateBoundLessThan1.ts +12 -0
- package/models/LateBoundLessThanOrEqual1.ts +12 -0
- package/models/LateBoundStringContains1.ts +13 -0
- package/models/LessThan1.ts +13 -0
- package/models/LessThanOrEqual1.ts +13 -0
- package/models/Not1.ts +11 -0
- package/models/Null1.ts +11 -0
- package/models/Or1.ts +11 -0
- package/models/StringContains1.ts +14 -0
- package/models/ViewExportRequest.ts +2 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -10,6 +10,7 @@ export type { AggregateProperty } from './models/AggregateProperty';
|
|
|
10
10
|
export { Aggregation } from './models/Aggregation';
|
|
11
11
|
export type { AggregationOption } from './models/AggregationOption';
|
|
12
12
|
export type { And } from './models/And';
|
|
13
|
+
export type { And1 } from './models/And1';
|
|
13
14
|
export type { BigQuery } from './models/BigQuery';
|
|
14
15
|
export type { BigQueryAuthentication } from './models/BigQueryAuthentication';
|
|
15
16
|
export type { BooleanPropertyValue } from './models/BooleanPropertyValue';
|
|
@@ -36,7 +37,9 @@ export type { DateTimePropertyValue } from './models/DateTimePropertyValue';
|
|
|
36
37
|
export type { DecimalIntervalGrouping } from './models/DecimalIntervalGrouping';
|
|
37
38
|
export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
|
|
38
39
|
export type { DoublePropertyValue } from './models/DoublePropertyValue';
|
|
40
|
+
export type { EmailConfiguration } from './models/EmailConfiguration';
|
|
39
41
|
export type { Equal } from './models/Equal';
|
|
42
|
+
export type { Equal1 } from './models/Equal1';
|
|
40
43
|
export type { EvictionPolicy } from './models/EvictionPolicy';
|
|
41
44
|
export type { ExportColumnOptions } from './models/ExportColumnOptions';
|
|
42
45
|
export { ExportFormat } from './models/ExportFormat';
|
|
@@ -44,21 +47,34 @@ export type { ExportTargetConfiguration } from './models/ExportTargetConfigurati
|
|
|
44
47
|
export type { Filter } from './models/Filter';
|
|
45
48
|
export type { FormulaProperty } from './models/FormulaProperty';
|
|
46
49
|
export type { GreaterThan } from './models/GreaterThan';
|
|
50
|
+
export type { GreaterThan1 } from './models/GreaterThan1';
|
|
47
51
|
export type { GreaterThanOrEqual } from './models/GreaterThanOrEqual';
|
|
52
|
+
export type { GreaterThanOrEqual1 } from './models/GreaterThanOrEqual1';
|
|
48
53
|
export type { Grouping } from './models/Grouping';
|
|
54
|
+
export type { Having } from './models/Having';
|
|
49
55
|
export type { In } from './models/In';
|
|
56
|
+
export type { In1 } from './models/In1';
|
|
50
57
|
export type { IntegerIntervalGrouping } from './models/IntegerIntervalGrouping';
|
|
51
58
|
export type { IntegerPropertyValue } from './models/IntegerPropertyValue';
|
|
52
59
|
export type { JdbcAuthentication } from './models/JdbcAuthentication';
|
|
53
60
|
export type { LateBoundEqual } from './models/LateBoundEqual';
|
|
61
|
+
export type { LateBoundEqual1 } from './models/LateBoundEqual1';
|
|
54
62
|
export type { LateBoundGreaterThan } from './models/LateBoundGreaterThan';
|
|
63
|
+
export type { LateBoundGreaterThan1 } from './models/LateBoundGreaterThan1';
|
|
55
64
|
export type { LateBoundGreaterThanOrEqual } from './models/LateBoundGreaterThanOrEqual';
|
|
65
|
+
export type { LateBoundGreaterThanOrEqual1 } from './models/LateBoundGreaterThanOrEqual1';
|
|
56
66
|
export type { LateBoundIn } from './models/LateBoundIn';
|
|
67
|
+
export type { LateBoundIn1 } from './models/LateBoundIn1';
|
|
57
68
|
export type { LateBoundLessThan } from './models/LateBoundLessThan';
|
|
69
|
+
export type { LateBoundLessThan1 } from './models/LateBoundLessThan1';
|
|
58
70
|
export type { LateBoundLessThanOrEqual } from './models/LateBoundLessThanOrEqual';
|
|
71
|
+
export type { LateBoundLessThanOrEqual1 } from './models/LateBoundLessThanOrEqual1';
|
|
59
72
|
export type { LateBoundStringContains } from './models/LateBoundStringContains';
|
|
73
|
+
export type { LateBoundStringContains1 } from './models/LateBoundStringContains1';
|
|
60
74
|
export type { LessThan } from './models/LessThan';
|
|
75
|
+
export type { LessThan1 } from './models/LessThan1';
|
|
61
76
|
export type { LessThanOrEqual } from './models/LessThanOrEqual';
|
|
77
|
+
export type { LessThanOrEqual1 } from './models/LessThanOrEqual1';
|
|
62
78
|
export type { ListNamespacesResponse } from './models/ListNamespacesResponse';
|
|
63
79
|
export type { ListViewsRequest } from './models/ListViewsRequest';
|
|
64
80
|
export type { ListViewsResponse } from './models/ListViewsResponse';
|
|
@@ -69,8 +85,11 @@ export type { NamespaceRequest } from './models/NamespaceRequest';
|
|
|
69
85
|
export type { NamespaceResponse } from './models/NamespaceResponse';
|
|
70
86
|
export type { NamespaceResponseMetadata } from './models/NamespaceResponseMetadata';
|
|
71
87
|
export type { Not } from './models/Not';
|
|
88
|
+
export type { Not1 } from './models/Not1';
|
|
72
89
|
export type { Null } from './models/Null';
|
|
90
|
+
export type { Null1 } from './models/Null1';
|
|
73
91
|
export type { Or } from './models/Or';
|
|
92
|
+
export type { Or1 } from './models/Or1';
|
|
74
93
|
export type { PagingConfiguration } from './models/PagingConfiguration';
|
|
75
94
|
export type { PasswordAuthentication } from './models/PasswordAuthentication';
|
|
76
95
|
export type { Postgres } from './models/Postgres';
|
|
@@ -99,6 +118,7 @@ export type { SourceProperty } from './models/SourceProperty';
|
|
|
99
118
|
export type { SSHAuthentication } from './models/SSHAuthentication';
|
|
100
119
|
export type { SSHTunnel } from './models/SSHTunnel';
|
|
101
120
|
export type { StringContains } from './models/StringContains';
|
|
121
|
+
export type { StringContains1 } from './models/StringContains1';
|
|
102
122
|
export type { StringPropertyValue } from './models/StringPropertyValue';
|
|
103
123
|
export type { TablePreviewRequest } from './models/TablePreviewRequest';
|
|
104
124
|
export type { TableView } from './models/TableView';
|
package/models/And1.ts
ADDED
package/models/Computation.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
import type { Filter } from './Filter';
|
|
6
6
|
import type { Grouping } from './Grouping';
|
|
7
|
+
import type { Having } from './Having';
|
|
7
8
|
import type { Property } from './Property';
|
|
8
9
|
import type { Sort } from './Sort';
|
|
9
10
|
|
|
@@ -12,6 +13,7 @@ export type Computation = {
|
|
|
12
13
|
properties: Array<Property>;
|
|
13
14
|
groupings: Array<Grouping>;
|
|
14
15
|
sorts: Array<Sort>;
|
|
16
|
+
having: Having | null;
|
|
15
17
|
includeRollup?: boolean;
|
|
16
18
|
};
|
|
17
19
|
|
package/models/Equal1.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Property } from './Property';
|
|
6
|
+
import type { PropertyValue } from './PropertyValue';
|
|
7
|
+
|
|
8
|
+
export type Equal1 = {
|
|
9
|
+
'@type': 'eq';
|
|
10
|
+
property: Property;
|
|
11
|
+
value: PropertyValue;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Property } from './Property';
|
|
6
|
+
import type { PropertyValue } from './PropertyValue';
|
|
7
|
+
|
|
8
|
+
export type GreaterThan1 = {
|
|
9
|
+
'@type': 'gt';
|
|
10
|
+
property: Property;
|
|
11
|
+
value: PropertyValue;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Property } from './Property';
|
|
6
|
+
import type { PropertyValue } from './PropertyValue';
|
|
7
|
+
|
|
8
|
+
export type GreaterThanOrEqual1 = {
|
|
9
|
+
'@type': 'gte';
|
|
10
|
+
property: Property;
|
|
11
|
+
value: PropertyValue;
|
|
12
|
+
};
|
|
13
|
+
|
package/models/Having.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { And1 } from './And1';
|
|
6
|
+
import type { Equal1 } from './Equal1';
|
|
7
|
+
import type { GreaterThan1 } from './GreaterThan1';
|
|
8
|
+
import type { GreaterThanOrEqual1 } from './GreaterThanOrEqual1';
|
|
9
|
+
import type { In1 } from './In1';
|
|
10
|
+
import type { LateBoundEqual1 } from './LateBoundEqual1';
|
|
11
|
+
import type { LateBoundGreaterThan1 } from './LateBoundGreaterThan1';
|
|
12
|
+
import type { LateBoundGreaterThanOrEqual1 } from './LateBoundGreaterThanOrEqual1';
|
|
13
|
+
import type { LateBoundIn1 } from './LateBoundIn1';
|
|
14
|
+
import type { LateBoundLessThan1 } from './LateBoundLessThan1';
|
|
15
|
+
import type { LateBoundLessThanOrEqual1 } from './LateBoundLessThanOrEqual1';
|
|
16
|
+
import type { LateBoundStringContains1 } from './LateBoundStringContains1';
|
|
17
|
+
import type { LessThan1 } from './LessThan1';
|
|
18
|
+
import type { LessThanOrEqual1 } from './LessThanOrEqual1';
|
|
19
|
+
import type { Not1 } from './Not1';
|
|
20
|
+
import type { Null1 } from './Null1';
|
|
21
|
+
import type { Or1 } from './Or1';
|
|
22
|
+
import type { StringContains1 } from './StringContains1';
|
|
23
|
+
|
|
24
|
+
export type Having = (And1 | Or1 | Not1 | Equal1 | LateBoundEqual1 | In1 | LateBoundIn1 | LessThan1 | LessThanOrEqual1 | GreaterThan1 | GreaterThanOrEqual1 | LateBoundLessThan1 | LateBoundLessThanOrEqual1 | LateBoundGreaterThan1 | LateBoundGreaterThanOrEqual1 | Null1 | StringContains1 | LateBoundStringContains1);
|
|
25
|
+
|
package/models/In1.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Property } from './Property';
|
|
6
|
+
import type { PropertyValue } from './PropertyValue';
|
|
7
|
+
|
|
8
|
+
export type In1 = {
|
|
9
|
+
'@type': 'in';
|
|
10
|
+
property: Property;
|
|
11
|
+
values: Array<PropertyValue>;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Property } from './Property';
|
|
6
|
+
|
|
7
|
+
export type LateBoundGreaterThanOrEqual1 = {
|
|
8
|
+
'@type': 'gte-var-ref';
|
|
9
|
+
property: Property;
|
|
10
|
+
valueVariableReference: string;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Property } from './Property';
|
|
6
|
+
|
|
7
|
+
export type LateBoundLessThanOrEqual1 = {
|
|
8
|
+
'@type': 'lte-var-ref';
|
|
9
|
+
property: Property;
|
|
10
|
+
valueVariableReference: string;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Property } from './Property';
|
|
6
|
+
|
|
7
|
+
export type LateBoundStringContains1 = {
|
|
8
|
+
'@type': 'str-ctns-var-ref';
|
|
9
|
+
property: Property;
|
|
10
|
+
valueVariableReference: string;
|
|
11
|
+
caseInsensitive: boolean;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Property } from './Property';
|
|
6
|
+
import type { PropertyValue } from './PropertyValue';
|
|
7
|
+
|
|
8
|
+
export type LessThan1 = {
|
|
9
|
+
'@type': 'lt';
|
|
10
|
+
property: Property;
|
|
11
|
+
value: PropertyValue;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Property } from './Property';
|
|
6
|
+
import type { PropertyValue } from './PropertyValue';
|
|
7
|
+
|
|
8
|
+
export type LessThanOrEqual1 = {
|
|
9
|
+
'@type': 'lte';
|
|
10
|
+
property: Property;
|
|
11
|
+
value: PropertyValue;
|
|
12
|
+
};
|
|
13
|
+
|
package/models/Not1.ts
ADDED
package/models/Null1.ts
ADDED
package/models/Or1.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Property } from './Property';
|
|
6
|
+
import type { StringPropertyValue } from './StringPropertyValue';
|
|
7
|
+
|
|
8
|
+
export type StringContains1 = {
|
|
9
|
+
'@type': 'str-ctns';
|
|
10
|
+
property: Property;
|
|
11
|
+
value: StringPropertyValue;
|
|
12
|
+
caseInsensitive: boolean;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
5
|
import type { Computation } from './Computation';
|
|
6
|
+
import type { EmailConfiguration } from './EmailConfiguration';
|
|
6
7
|
import type { ExportTargetConfiguration } from './ExportTargetConfiguration';
|
|
7
8
|
|
|
8
9
|
export type ViewExportRequest = {
|
|
@@ -12,6 +13,6 @@ export type ViewExportRequest = {
|
|
|
12
13
|
/**
|
|
13
14
|
* If present, then the export will be sent to the provided emails. Otherwise, a URL pointing to the export will be returned in the response
|
|
14
15
|
*/
|
|
15
|
-
|
|
16
|
+
emailConfiguration: EmailConfiguration | null;
|
|
16
17
|
};
|
|
17
18
|
|