@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 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';
@@ -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
  }
@@ -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
+
@@ -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
  }
@@ -7,6 +7,6 @@ import type { DatePart } from './DatePart';
7
7
  export type DatePartGrouping = {
8
8
  propertyId: string;
9
9
  '@type': 'date-part';
10
- datePart?: DatePart;
10
+ datePart: DatePart;
11
11
  };
12
12
 
@@ -5,6 +5,6 @@
5
5
  export type DecimalIntervalGrouping = {
6
6
  propertyId: string;
7
7
  '@type': 'decimal-interval';
8
- interval?: number;
8
+ interval: number;
9
9
  };
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
+
@@ -2,13 +2,13 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- import type { CalendarInterval } from './CalendarInterval';
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 = (CalendarInterval | DatePartGrouping | DecimalIntervalGrouping | IntegerIntervalGrouping | ValueGrouping | {
11
+ export type Grouping = (CalendarIntervalGrouping | DatePartGrouping | DecimalIntervalGrouping | IntegerIntervalGrouping | ValueGrouping | {
12
12
  propertyId: string;
13
13
  });
14
14
 
@@ -5,6 +5,6 @@
5
5
  export type IntegerIntervalGrouping = {
6
6
  propertyId: string;
7
7
  '@type': 'integer-interval';
8
- interval?: number;
8
+ interval: number;
9
9
  };
10
10
 
@@ -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/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.24",
3
+ "version": "0.0.26",
4
4
  "description": "Fido api",
5
5
  "homepage": "https://github.com/trust-kaz/fido",
6
6
  "license": "MIT",