@explo-tech/fido-api 0.0.17 → 0.0.18
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/.tool-versions +1 -0
- package/index.ts +17 -0
- package/models/AggregateProperty.ts +14 -0
- package/models/Aggregation.ts +13 -0
- package/models/AggregationOption.ts +8 -0
- package/models/And.ts +10 -0
- package/models/CalendarInterval.ts +12 -0
- package/models/DatePart.ts +10 -0
- package/models/DatePartGrouping.ts +11 -0
- package/models/DecimalIntervalGrouping.ts +9 -0
- package/models/Equal.ts +11 -0
- package/models/Filter.ts +9 -1
- package/models/Grouping.ts +8 -2
- package/models/In.ts +11 -0
- package/models/IntegerIntervalGrouping.ts +9 -0
- package/models/LateBoundEqual.ts +9 -0
- package/models/LateBoundIn.ts +9 -0
- package/models/Not.ts +10 -0
- package/models/Or.ts +10 -0
- package/models/Property.ts +5 -1
- package/models/SourceProperty.ts +9 -0
- package/models/ValueGrouping.ts +8 -0
- package/package.json +1 -1
package/.tool-versions
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nodejs 16.17.1
|
package/index.ts
CHANGED
|
@@ -6,7 +6,12 @@ export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|
|
6
6
|
export { OpenAPI } from './core/OpenAPI';
|
|
7
7
|
export type { OpenAPIConfig } from './core/OpenAPI';
|
|
8
8
|
|
|
9
|
+
export type { AggregateProperty } from './models/AggregateProperty';
|
|
10
|
+
export { Aggregation } from './models/Aggregation';
|
|
11
|
+
export type { AggregationOption } from './models/AggregationOption';
|
|
12
|
+
export type { And } from './models/And';
|
|
9
13
|
export type { BooleanPropertyValue } from './models/BooleanPropertyValue';
|
|
14
|
+
export { CalendarInterval } from './models/CalendarInterval';
|
|
10
15
|
export type { ClientError } from './models/ClientError';
|
|
11
16
|
export type { Computation } from './models/Computation';
|
|
12
17
|
export type { ComputedView } from './models/ComputedView';
|
|
@@ -19,13 +24,21 @@ export type { DataSource } from './models/DataSource';
|
|
|
19
24
|
export type { DataSourceConfiguration } from './models/DataSourceConfiguration';
|
|
20
25
|
export type { DataSourceRequest } from './models/DataSourceRequest';
|
|
21
26
|
export type { DataSourceResponse } from './models/DataSourceResponse';
|
|
27
|
+
export { DatePart } from './models/DatePart';
|
|
28
|
+
export type { DatePartGrouping } from './models/DatePartGrouping';
|
|
22
29
|
export type { DatePropertyValue } from './models/DatePropertyValue';
|
|
23
30
|
export type { DateTimePropertyValue } from './models/DateTimePropertyValue';
|
|
31
|
+
export type { DecimalIntervalGrouping } from './models/DecimalIntervalGrouping';
|
|
24
32
|
export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
|
|
25
33
|
export type { DoublePropertyValue } from './models/DoublePropertyValue';
|
|
34
|
+
export type { Equal } from './models/Equal';
|
|
26
35
|
export type { Filter } from './models/Filter';
|
|
27
36
|
export type { Grouping } from './models/Grouping';
|
|
37
|
+
export type { In } from './models/In';
|
|
38
|
+
export type { IntegerIntervalGrouping } from './models/IntegerIntervalGrouping';
|
|
28
39
|
export type { IntegerPropertyValue } from './models/IntegerPropertyValue';
|
|
40
|
+
export type { LateBoundEqual } from './models/LateBoundEqual';
|
|
41
|
+
export type { LateBoundIn } from './models/LateBoundIn';
|
|
29
42
|
export type { ListNamespacesResponse } from './models/ListNamespacesResponse';
|
|
30
43
|
export type { ListViewsRequest } from './models/ListViewsRequest';
|
|
31
44
|
export type { ListViewsResponse } from './models/ListViewsResponse';
|
|
@@ -35,6 +48,8 @@ export type { Namespace } from './models/Namespace';
|
|
|
35
48
|
export type { NamespaceRequest } from './models/NamespaceRequest';
|
|
36
49
|
export type { NamespaceResponse } from './models/NamespaceResponse';
|
|
37
50
|
export type { NamespaceResponseMetadata } from './models/NamespaceResponseMetadata';
|
|
51
|
+
export type { Not } from './models/Not';
|
|
52
|
+
export type { Or } from './models/Or';
|
|
38
53
|
export type { PagingConfiguration } from './models/PagingConfiguration';
|
|
39
54
|
export type { PasswordAuthentication } from './models/PasswordAuthentication';
|
|
40
55
|
export type { Postgres } from './models/Postgres';
|
|
@@ -49,6 +64,7 @@ export type { QueryPreviewRequest } from './models/QueryPreviewRequest';
|
|
|
49
64
|
export type { RequestTelemetry } from './models/RequestTelemetry';
|
|
50
65
|
export type { Sort } from './models/Sort';
|
|
51
66
|
export { SortDirection } from './models/SortDirection';
|
|
67
|
+
export type { SourceProperty } from './models/SourceProperty';
|
|
52
68
|
export type { SSHAuthentication } from './models/SSHAuthentication';
|
|
53
69
|
export type { SSHTunnel } from './models/SSHTunnel';
|
|
54
70
|
export type { StringPropertyValue } from './models/StringPropertyValue';
|
|
@@ -58,6 +74,7 @@ export type { TenantPrivateKeyAuthentication } from './models/TenantPrivateKeyAu
|
|
|
58
74
|
export type { TestConnectionResponse } from './models/TestConnectionResponse';
|
|
59
75
|
export type { Tunnel } from './models/Tunnel';
|
|
60
76
|
export type { UUID } from './models/UUID';
|
|
77
|
+
export type { ValueGrouping } from './models/ValueGrouping';
|
|
61
78
|
export type { VendorPrivateKeyAuthentication } from './models/VendorPrivateKeyAuthentication';
|
|
62
79
|
export type { View } from './models/View';
|
|
63
80
|
export type { ViewRequest } from './models/ViewRequest';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Aggregation } from './Aggregation';
|
|
6
|
+
import type { AggregationOption } from './AggregationOption';
|
|
7
|
+
|
|
8
|
+
export type AggregateProperty = {
|
|
9
|
+
propertyId: string | null;
|
|
10
|
+
targetPropertyId: string | null;
|
|
11
|
+
aggregation?: Aggregation;
|
|
12
|
+
aggregationOptions?: Array<AggregationOption>;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
export enum Aggregation {
|
|
6
|
+
AVG = 'AVG',
|
|
7
|
+
COUNT = 'COUNT',
|
|
8
|
+
COUNT_DISTINCT = 'COUNT_DISTINCT',
|
|
9
|
+
MAX = 'MAX',
|
|
10
|
+
MIN = 'MIN',
|
|
11
|
+
PERCENTILE = 'PERCENTILE',
|
|
12
|
+
SUM = 'SUM',
|
|
13
|
+
}
|
package/models/And.ts
ADDED
package/models/Equal.ts
ADDED
package/models/Filter.ts
CHANGED
|
@@ -2,4 +2,12 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
import type { And } from './And';
|
|
6
|
+
import type { Equal } from './Equal';
|
|
7
|
+
import type { In } from './In';
|
|
8
|
+
import type { LateBoundEqual } from './LateBoundEqual';
|
|
9
|
+
import type { Not } from './Not';
|
|
10
|
+
import type { Or } from './Or';
|
|
11
|
+
|
|
12
|
+
export type Filter = (And | Or | Not | Equal | LateBoundEqual | In);
|
|
13
|
+
|
package/models/Grouping.ts
CHANGED
|
@@ -2,7 +2,13 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
import type { CalendarInterval } from './CalendarInterval';
|
|
6
|
+
import type { DatePartGrouping } from './DatePartGrouping';
|
|
7
|
+
import type { DecimalIntervalGrouping } from './DecimalIntervalGrouping';
|
|
8
|
+
import type { IntegerIntervalGrouping } from './IntegerIntervalGrouping';
|
|
9
|
+
import type { ValueGrouping } from './ValueGrouping';
|
|
10
|
+
|
|
11
|
+
export type Grouping = (CalendarInterval | DatePartGrouping | DecimalIntervalGrouping | IntegerIntervalGrouping | ValueGrouping | {
|
|
6
12
|
propertyId: string;
|
|
7
|
-
};
|
|
13
|
+
});
|
|
8
14
|
|
package/models/In.ts
ADDED
package/models/Not.ts
ADDED
package/models/Or.ts
ADDED
package/models/Property.ts
CHANGED
|
@@ -2,4 +2,8 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
import type { AggregateProperty } from './AggregateProperty';
|
|
6
|
+
import type { SourceProperty } from './SourceProperty';
|
|
7
|
+
|
|
8
|
+
export type Property = (AggregateProperty | SourceProperty);
|
|
9
|
+
|