@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 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';
@@ -3,11 +3,11 @@
3
3
  /* eslint-disable */
4
4
 
5
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',
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 = 'YEAR',
7
- MONTH = 'MONTH',
8
- WEEK = 'WEEK',
9
- DAY = 'DAY',
10
- HOUR = 'HOUR',
11
- MINUTE = '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
 
@@ -3,8 +3,8 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  export enum DatePart {
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',
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
 
@@ -0,0 +1,12 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { PropertyValue } from './PropertyValue';
6
+
7
+ export type GreaterThan = {
8
+ '@type': 'gt';
9
+ propertyId: string;
10
+ value: PropertyValue;
11
+ };
12
+
@@ -0,0 +1,12 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { PropertyValue } from './PropertyValue';
6
+
7
+ export type GreaterThanOrEqual = {
8
+ '@type': 'gte';
9
+ propertyId: string;
10
+ value: PropertyValue;
11
+ };
12
+
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type LateBoundGreaterThan = {
6
+ '@type': 'gt-var-ref';
7
+ propertyId: string;
8
+ valueVariableReference: string;
9
+ };
10
+
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type LateBoundGreaterThanOrEqual = {
6
+ '@type': 'gte-var-ref';
7
+ propertyId: string;
8
+ valueVariableReference: string;
9
+ };
10
+
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type LateBoundLessThan = {
6
+ '@type': 'lt-var-ref';
7
+ propertyId: string;
8
+ valueVariableReference: string;
9
+ };
10
+
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type LateBoundLessThanOrEqual = {
6
+ '@type': 'lte-var-ref';
7
+ propertyId: string;
8
+ valueVariableReference: string;
9
+ };
10
+
@@ -0,0 +1,11 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type LateBoundStringContains = {
6
+ '@type': 'str-ctns-var-ref';
7
+ propertyId: string;
8
+ valueVariableReference: string;
9
+ caseInsensitive: boolean;
10
+ };
11
+
@@ -0,0 +1,12 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { PropertyValue } from './PropertyValue';
6
+
7
+ export type LessThan = {
8
+ '@type': 'lt';
9
+ propertyId: string;
10
+ value: PropertyValue;
11
+ };
12
+
@@ -0,0 +1,12 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { PropertyValue } from './PropertyValue';
6
+
7
+ export type LessThanOrEqual = {
8
+ '@type': 'lte';
9
+ propertyId: string;
10
+ value: PropertyValue;
11
+ };
12
+
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
+
@@ -0,0 +1,8 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { PasswordAuthentication } from './PasswordAuthentication';
6
+
7
+ export type MSSAuthentication = PasswordAuthentication;
8
+
package/models/Null.ts ADDED
@@ -0,0 +1,9 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type Null = {
6
+ '@type': 'null';
7
+ propertyId: string;
8
+ };
9
+
@@ -3,13 +3,13 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  export enum PropertyType {
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',
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
  }
@@ -3,6 +3,6 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  export enum SortDirection {
6
- ASCENDING = 'ASCENDING',
7
- DESCENDING = 'DESCENDING',
6
+ ASC = 'asc',
7
+ DESC = 'desc',
8
8
  }
@@ -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
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explo-tech/fido-api",
3
- "version": "0.0.23",
3
+ "version": "0.0.25",
4
4
  "description": "Fido api",
5
5
  "homepage": "https://github.com/trust-kaz/fido",
6
6
  "license": "MIT",