@explo-tech/fido-api 0.0.24 → 0.0.26
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 +12 -0
- package/models/Aggregation.ts +7 -7
- package/models/CalendarInterval.ts +6 -6
- package/models/CalendarIntervalGrouping.ts +12 -0
- package/models/DatePart.ts +4 -4
- package/models/DatePartGrouping.ts +1 -1
- package/models/DecimalIntervalGrouping.ts +1 -1
- package/models/Filter.ts +12 -1
- package/models/GreaterThan.ts +12 -0
- package/models/GreaterThanOrEqual.ts +12 -0
- package/models/Grouping.ts +2 -2
- package/models/IntegerIntervalGrouping.ts +1 -1
- 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/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/.tool-versions
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nodejs 16.17.1
|
package/index.ts
CHANGED
|
@@ -12,6 +12,7 @@ export type { AggregationOption } from './models/AggregationOption';
|
|
|
12
12
|
export type { And } from './models/And';
|
|
13
13
|
export type { BooleanPropertyValue } from './models/BooleanPropertyValue';
|
|
14
14
|
export { CalendarInterval } from './models/CalendarInterval';
|
|
15
|
+
export type { CalendarIntervalGrouping } from './models/CalendarIntervalGrouping';
|
|
15
16
|
export type { ClientError } from './models/ClientError';
|
|
16
17
|
export type { Computation } from './models/Computation';
|
|
17
18
|
export type { ComputedView } from './models/ComputedView';
|
|
@@ -33,12 +34,21 @@ export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
|
|
|
33
34
|
export type { DoublePropertyValue } from './models/DoublePropertyValue';
|
|
34
35
|
export type { Equal } from './models/Equal';
|
|
35
36
|
export type { Filter } from './models/Filter';
|
|
37
|
+
export type { GreaterThan } from './models/GreaterThan';
|
|
38
|
+
export type { GreaterThanOrEqual } from './models/GreaterThanOrEqual';
|
|
36
39
|
export type { Grouping } from './models/Grouping';
|
|
37
40
|
export type { In } from './models/In';
|
|
38
41
|
export type { IntegerIntervalGrouping } from './models/IntegerIntervalGrouping';
|
|
39
42
|
export type { IntegerPropertyValue } from './models/IntegerPropertyValue';
|
|
40
43
|
export type { LateBoundEqual } from './models/LateBoundEqual';
|
|
44
|
+
export type { LateBoundGreaterThan } from './models/LateBoundGreaterThan';
|
|
45
|
+
export type { LateBoundGreaterThanOrEqual } from './models/LateBoundGreaterThanOrEqual';
|
|
41
46
|
export type { LateBoundIn } from './models/LateBoundIn';
|
|
47
|
+
export type { LateBoundLessThan } from './models/LateBoundLessThan';
|
|
48
|
+
export type { LateBoundLessThanOrEqual } from './models/LateBoundLessThanOrEqual';
|
|
49
|
+
export type { LateBoundStringContains } from './models/LateBoundStringContains';
|
|
50
|
+
export type { LessThan } from './models/LessThan';
|
|
51
|
+
export type { LessThanOrEqual } from './models/LessThanOrEqual';
|
|
42
52
|
export type { ListNamespacesResponse } from './models/ListNamespacesResponse';
|
|
43
53
|
export type { ListViewsRequest } from './models/ListViewsRequest';
|
|
44
54
|
export type { ListViewsResponse } from './models/ListViewsResponse';
|
|
@@ -51,6 +61,7 @@ export type { NamespaceRequest } from './models/NamespaceRequest';
|
|
|
51
61
|
export type { NamespaceResponse } from './models/NamespaceResponse';
|
|
52
62
|
export type { NamespaceResponseMetadata } from './models/NamespaceResponseMetadata';
|
|
53
63
|
export type { Not } from './models/Not';
|
|
64
|
+
export type { Null } from './models/Null';
|
|
54
65
|
export type { Or } from './models/Or';
|
|
55
66
|
export type { PagingConfiguration } from './models/PagingConfiguration';
|
|
56
67
|
export type { PasswordAuthentication } from './models/PasswordAuthentication';
|
|
@@ -69,6 +80,7 @@ export { SortDirection } from './models/SortDirection';
|
|
|
69
80
|
export type { SourceProperty } from './models/SourceProperty';
|
|
70
81
|
export type { SSHAuthentication } from './models/SSHAuthentication';
|
|
71
82
|
export type { SSHTunnel } from './models/SSHTunnel';
|
|
83
|
+
export type { StringContains } from './models/StringContains';
|
|
72
84
|
export type { StringPropertyValue } from './models/StringPropertyValue';
|
|
73
85
|
export type { TablePreviewRequest } from './models/TablePreviewRequest';
|
|
74
86
|
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
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { CalendarInterval } from './CalendarInterval';
|
|
6
|
+
|
|
7
|
+
export type CalendarIntervalGrouping = {
|
|
8
|
+
propertyId: string;
|
|
9
|
+
'@type': 'calendar-interval';
|
|
10
|
+
calendarInterval: CalendarInterval;
|
|
11
|
+
};
|
|
12
|
+
|
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/Grouping.ts
CHANGED
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
|
-
import type {
|
|
5
|
+
import type { CalendarIntervalGrouping } from './CalendarIntervalGrouping';
|
|
6
6
|
import type { DatePartGrouping } from './DatePartGrouping';
|
|
7
7
|
import type { DecimalIntervalGrouping } from './DecimalIntervalGrouping';
|
|
8
8
|
import type { IntegerIntervalGrouping } from './IntegerIntervalGrouping';
|
|
9
9
|
import type { ValueGrouping } from './ValueGrouping';
|
|
10
10
|
|
|
11
|
-
export type Grouping = (
|
|
11
|
+
export type Grouping = (CalendarIntervalGrouping | DatePartGrouping | DecimalIntervalGrouping | IntegerIntervalGrouping | ValueGrouping | {
|
|
12
12
|
propertyId: string;
|
|
13
13
|
});
|
|
14
14
|
|
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
|
+
|