@explo-tech/fido-api 0.0.17 → 0.0.19

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
@@ -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
+ }
@@ -0,0 +1,8 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type AggregationOption = {
6
+ decimalValue: number;
7
+ };
8
+
package/models/And.ts ADDED
@@ -0,0 +1,11 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { Filter } from './Filter';
6
+
7
+ export type And = {
8
+ readonly '@type': 'and';
9
+ values: Array<Filter>;
10
+ };
11
+
@@ -0,0 +1,12 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export enum CalendarInterval {
6
+ YEAR = 'YEAR',
7
+ MONTH = 'MONTH',
8
+ WEEK = 'WEEK',
9
+ DAY = 'DAY',
10
+ HOUR = 'HOUR',
11
+ MINUTE = 'MINUTE',
12
+ }
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
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',
10
+ }
@@ -0,0 +1,11 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { DatePart } from './DatePart';
6
+
7
+ export type DatePartGrouping = {
8
+ propertyId: string;
9
+ datePart?: DatePart;
10
+ };
11
+
@@ -0,0 +1,9 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type DecimalIntervalGrouping = {
6
+ propertyId: string;
7
+ interval?: number;
8
+ };
9
+
@@ -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 Equal = {
8
+ readonly '@type': 'eq';
9
+ propertyId: string;
10
+ value?: PropertyValue;
11
+ };
12
+
package/models/Filter.ts CHANGED
@@ -2,4 +2,14 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- export type Filter = Record<string, any>;
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
+ readonly '@type': string;
14
+ });
15
+
@@ -2,7 +2,13 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- export type Grouping = {
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
@@ -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 In = {
8
+ readonly '@type': 'in';
9
+ propertyId: string;
10
+ values: Array<PropertyValue>;
11
+ };
12
+
@@ -0,0 +1,9 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type IntegerIntervalGrouping = {
6
+ propertyId: string;
7
+ interval?: number;
8
+ };
9
+
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type LateBoundEqual = {
6
+ readonly '@type': 'eq-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 LateBoundIn = {
6
+ readonly '@type': string;
7
+ propertyId: string;
8
+ valueVariableReference: string;
9
+ };
10
+
package/models/Not.ts ADDED
@@ -0,0 +1,11 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { Filter } from './Filter';
6
+
7
+ export type Not = {
8
+ readonly '@type': 'not';
9
+ value: Filter;
10
+ };
11
+
package/models/Or.ts ADDED
@@ -0,0 +1,11 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { Filter } from './Filter';
6
+
7
+ export type Or = {
8
+ readonly '@type': 'or';
9
+ values: Array<Filter>;
10
+ };
11
+
@@ -2,4 +2,8 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- export type Property = Record<string, any>;
5
+ import type { AggregateProperty } from './AggregateProperty';
6
+ import type { SourceProperty } from './SourceProperty';
7
+
8
+ export type Property = (AggregateProperty | SourceProperty);
9
+
@@ -0,0 +1,9 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type SourceProperty = {
6
+ propertyId: string;
7
+ targetPropertyId: string | null;
8
+ };
9
+
@@ -0,0 +1,8 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type ValueGrouping = {
6
+ propertyId: string;
7
+ };
8
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explo-tech/fido-api",
3
- "version": "0.0.17",
3
+ "version": "0.0.19",
4
4
  "description": "Fido api",
5
5
  "homepage": "https://github.com/trust-kaz/fido",
6
6
  "license": "MIT",