@explo-tech/fido-api 0.0.23 → 0.0.25
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 +13 -0
- package/models/Aggregation.ts +7 -7
- package/models/CalendarInterval.ts +6 -6
- package/models/DataSourceConfiguration.ts +2 -1
- package/models/DatePart.ts +4 -4
- package/models/Filter.ts +12 -1
- package/models/GreaterThan.ts +12 -0
- package/models/GreaterThanOrEqual.ts +12 -0
- package/models/LateBoundGreaterThan.ts +10 -0
- package/models/LateBoundGreaterThanOrEqual.ts +10 -0
- package/models/LateBoundLessThan.ts +10 -0
- package/models/LateBoundLessThanOrEqual.ts +10 -0
- package/models/LateBoundStringContains.ts +11 -0
- package/models/LessThan.ts +12 -0
- package/models/LessThanOrEqual.ts +12 -0
- package/models/MSS.ts +15 -0
- package/models/MSSAuthentication.ts +8 -0
- package/models/Null.ts +9 -0
- package/models/PropertyType.ts +9 -9
- package/models/SortDirection.ts +2 -2
- package/models/StringContains.ts +13 -0
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -33,15 +33,26 @@ export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
|
|
|
33
33
|
export type { DoublePropertyValue } from './models/DoublePropertyValue';
|
|
34
34
|
export type { Equal } from './models/Equal';
|
|
35
35
|
export type { Filter } from './models/Filter';
|
|
36
|
+
export type { GreaterThan } from './models/GreaterThan';
|
|
37
|
+
export type { GreaterThanOrEqual } from './models/GreaterThanOrEqual';
|
|
36
38
|
export type { Grouping } from './models/Grouping';
|
|
37
39
|
export type { In } from './models/In';
|
|
38
40
|
export type { IntegerIntervalGrouping } from './models/IntegerIntervalGrouping';
|
|
39
41
|
export type { IntegerPropertyValue } from './models/IntegerPropertyValue';
|
|
40
42
|
export type { LateBoundEqual } from './models/LateBoundEqual';
|
|
43
|
+
export type { LateBoundGreaterThan } from './models/LateBoundGreaterThan';
|
|
44
|
+
export type { LateBoundGreaterThanOrEqual } from './models/LateBoundGreaterThanOrEqual';
|
|
41
45
|
export type { LateBoundIn } from './models/LateBoundIn';
|
|
46
|
+
export type { LateBoundLessThan } from './models/LateBoundLessThan';
|
|
47
|
+
export type { LateBoundLessThanOrEqual } from './models/LateBoundLessThanOrEqual';
|
|
48
|
+
export type { LateBoundStringContains } from './models/LateBoundStringContains';
|
|
49
|
+
export type { LessThan } from './models/LessThan';
|
|
50
|
+
export type { LessThanOrEqual } from './models/LessThanOrEqual';
|
|
42
51
|
export type { ListNamespacesResponse } from './models/ListNamespacesResponse';
|
|
43
52
|
export type { ListViewsRequest } from './models/ListViewsRequest';
|
|
44
53
|
export type { ListViewsResponse } from './models/ListViewsResponse';
|
|
54
|
+
export type { MSS } from './models/MSS';
|
|
55
|
+
export type { MSSAuthentication } from './models/MSSAuthentication';
|
|
45
56
|
export type { MySql } from './models/MySql';
|
|
46
57
|
export type { MySqlAuthentication } from './models/MySqlAuthentication';
|
|
47
58
|
export type { Namespace } from './models/Namespace';
|
|
@@ -49,6 +60,7 @@ export type { NamespaceRequest } from './models/NamespaceRequest';
|
|
|
49
60
|
export type { NamespaceResponse } from './models/NamespaceResponse';
|
|
50
61
|
export type { NamespaceResponseMetadata } from './models/NamespaceResponseMetadata';
|
|
51
62
|
export type { Not } from './models/Not';
|
|
63
|
+
export type { Null } from './models/Null';
|
|
52
64
|
export type { Or } from './models/Or';
|
|
53
65
|
export type { PagingConfiguration } from './models/PagingConfiguration';
|
|
54
66
|
export type { PasswordAuthentication } from './models/PasswordAuthentication';
|
|
@@ -67,6 +79,7 @@ export { SortDirection } from './models/SortDirection';
|
|
|
67
79
|
export type { SourceProperty } from './models/SourceProperty';
|
|
68
80
|
export type { SSHAuthentication } from './models/SSHAuthentication';
|
|
69
81
|
export type { SSHTunnel } from './models/SSHTunnel';
|
|
82
|
+
export type { StringContains } from './models/StringContains';
|
|
70
83
|
export type { StringPropertyValue } from './models/StringPropertyValue';
|
|
71
84
|
export type { TablePreviewRequest } from './models/TablePreviewRequest';
|
|
72
85
|
export type { TableView } from './models/TableView';
|
package/models/Aggregation.ts
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
5
|
export enum Aggregation {
|
|
6
|
-
AVG = '
|
|
7
|
-
COUNT = '
|
|
8
|
-
COUNT_DISTINCT = '
|
|
9
|
-
MAX = '
|
|
10
|
-
MIN = '
|
|
11
|
-
PERCENTILE = '
|
|
12
|
-
SUM = '
|
|
6
|
+
AVG = 'avg',
|
|
7
|
+
COUNT = 'count',
|
|
8
|
+
COUNT_DISTINCT = 'count-distinct',
|
|
9
|
+
MAX = 'max',
|
|
10
|
+
MIN = 'min',
|
|
11
|
+
PERCENTILE = 'percentile',
|
|
12
|
+
SUM = 'sum',
|
|
13
13
|
}
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
5
|
export enum CalendarInterval {
|
|
6
|
-
YEAR = '
|
|
7
|
-
MONTH = '
|
|
8
|
-
WEEK = '
|
|
9
|
-
DAY = '
|
|
10
|
-
HOUR = '
|
|
11
|
-
MINUTE = '
|
|
6
|
+
YEAR = 'year',
|
|
7
|
+
MONTH = 'month',
|
|
8
|
+
WEEK = 'week',
|
|
9
|
+
DAY = 'day',
|
|
10
|
+
HOUR = 'hour',
|
|
11
|
+
MINUTE = 'minute',
|
|
12
12
|
}
|
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
|
+
import type { MSS } from './MSS';
|
|
5
6
|
import type { MySql } from './MySql';
|
|
6
7
|
import type { Postgres } from './Postgres';
|
|
7
8
|
import type { Tunnel } from './Tunnel';
|
|
8
9
|
|
|
9
|
-
export type DataSourceConfiguration = (Postgres | MySql | {
|
|
10
|
+
export type DataSourceConfiguration = (Postgres | MySql | MSS | {
|
|
10
11
|
tunnel: Tunnel;
|
|
11
12
|
});
|
|
12
13
|
|
package/models/DatePart.ts
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
5
|
export enum DatePart {
|
|
6
|
-
DAY_OF_WEEK = '
|
|
7
|
-
DAY_OF_MONTH = '
|
|
8
|
-
MONTH_OF_YEAR = '
|
|
9
|
-
HOUR_OF_DAY = '
|
|
6
|
+
DAY_OF_WEEK = 'day-of-week',
|
|
7
|
+
DAY_OF_MONTH = 'day-of-month',
|
|
8
|
+
MONTH_OF_YEAR = 'month-of-year',
|
|
9
|
+
HOUR_OF_DAY = 'hour-of-day',
|
|
10
10
|
}
|
package/models/Filter.ts
CHANGED
|
@@ -4,11 +4,22 @@
|
|
|
4
4
|
|
|
5
5
|
import type { And } from './And';
|
|
6
6
|
import type { Equal } from './Equal';
|
|
7
|
+
import type { GreaterThan } from './GreaterThan';
|
|
8
|
+
import type { GreaterThanOrEqual } from './GreaterThanOrEqual';
|
|
7
9
|
import type { In } from './In';
|
|
8
10
|
import type { LateBoundEqual } from './LateBoundEqual';
|
|
11
|
+
import type { LateBoundGreaterThan } from './LateBoundGreaterThan';
|
|
12
|
+
import type { LateBoundGreaterThanOrEqual } from './LateBoundGreaterThanOrEqual';
|
|
9
13
|
import type { LateBoundIn } from './LateBoundIn';
|
|
14
|
+
import type { LateBoundLessThan } from './LateBoundLessThan';
|
|
15
|
+
import type { LateBoundLessThanOrEqual } from './LateBoundLessThanOrEqual';
|
|
16
|
+
import type { LateBoundStringContains } from './LateBoundStringContains';
|
|
17
|
+
import type { LessThan } from './LessThan';
|
|
18
|
+
import type { LessThanOrEqual } from './LessThanOrEqual';
|
|
10
19
|
import type { Not } from './Not';
|
|
20
|
+
import type { Null } from './Null';
|
|
11
21
|
import type { Or } from './Or';
|
|
22
|
+
import type { StringContains } from './StringContains';
|
|
12
23
|
|
|
13
|
-
export type Filter = (And | Or | Not | Equal | LateBoundEqual | In | LateBoundIn);
|
|
24
|
+
export type Filter = (And | Or | Not | Equal | LateBoundEqual | In | LateBoundIn | LessThan | LessThanOrEqual | GreaterThan | GreaterThanOrEqual | LateBoundLessThan | LateBoundLessThanOrEqual | LateBoundGreaterThan | LateBoundGreaterThanOrEqual | Null | StringContains | LateBoundStringContains);
|
|
14
25
|
|
package/models/MSS.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { MSSAuthentication } from './MSSAuthentication';
|
|
6
|
+
import type { Tunnel } from './Tunnel';
|
|
7
|
+
|
|
8
|
+
export type MSS = {
|
|
9
|
+
tunnel: Tunnel;
|
|
10
|
+
authentication: MSSAuthentication;
|
|
11
|
+
database: string;
|
|
12
|
+
host: string;
|
|
13
|
+
port?: number;
|
|
14
|
+
};
|
|
15
|
+
|
package/models/Null.ts
ADDED
package/models/PropertyType.ts
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
5
|
export enum PropertyType {
|
|
6
|
-
BOOLEAN = '
|
|
7
|
-
DATE = '
|
|
8
|
-
DATETIME = '
|
|
9
|
-
DECIMAL = '
|
|
10
|
-
DOUBLE = '
|
|
11
|
-
INTEGER = '
|
|
12
|
-
LONG = '
|
|
13
|
-
STRING = '
|
|
14
|
-
UNSUPPORTED = '
|
|
6
|
+
BOOLEAN = 'boolean',
|
|
7
|
+
DATE = 'date',
|
|
8
|
+
DATETIME = 'datetime',
|
|
9
|
+
DECIMAL = 'decimal',
|
|
10
|
+
DOUBLE = 'double',
|
|
11
|
+
INTEGER = 'integer',
|
|
12
|
+
LONG = 'long',
|
|
13
|
+
STRING = 'string',
|
|
14
|
+
UNSUPPORTED = 'unsupported',
|
|
15
15
|
}
|
package/models/SortDirection.ts
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { StringPropertyValue } from './StringPropertyValue';
|
|
6
|
+
|
|
7
|
+
export type StringContains = {
|
|
8
|
+
'@type': 'str-ctns';
|
|
9
|
+
propertyId: string;
|
|
10
|
+
value: StringPropertyValue;
|
|
11
|
+
caseInsensitive: boolean;
|
|
12
|
+
};
|
|
13
|
+
|