@explo-tech/fido-api 0.0.10 → 0.0.12
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 +1 -1
- package/models/ComputedView.ts +3 -4
- package/models/DataSource.ts +2 -3
- package/models/Namespace.ts +1 -3
- package/models/Optional.ts +10 -0
- package/models/RequestTelemetry.ts +3 -5
- package/models/TableView.ts +3 -4
- package/models/UUID.ts +1 -1
- package/models/View.ts +3 -4
- package/package.json +1 -1
- package/models/Duration.ts +0 -5
package/index.ts
CHANGED
|
@@ -25,7 +25,6 @@ export type { DatePropertyValue } from './models/DatePropertyValue';
|
|
|
25
25
|
export type { DateTimePropertyValue } from './models/DateTimePropertyValue';
|
|
26
26
|
export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
|
|
27
27
|
export type { DoublePropertyValue } from './models/DoublePropertyValue';
|
|
28
|
-
export type { Duration } from './models/Duration';
|
|
29
28
|
export type { Filter } from './models/Filter';
|
|
30
29
|
export type { IntegerPropertyValue } from './models/IntegerPropertyValue';
|
|
31
30
|
export type { LocalDate } from './models/LocalDate';
|
|
@@ -36,6 +35,7 @@ export type { NamespaceRequest } from './models/NamespaceRequest';
|
|
|
36
35
|
export type { NamespaceResponse } from './models/NamespaceResponse';
|
|
37
36
|
export type { NamespaceResponseMetadata } from './models/NamespaceResponseMetadata';
|
|
38
37
|
export type { OffsetDateTime } from './models/OffsetDateTime';
|
|
38
|
+
export type { Optional } from './models/Optional';
|
|
39
39
|
export type { PagingConfiguration } from './models/PagingConfiguration';
|
|
40
40
|
export type { PasswordAuthentication } from './models/PasswordAuthentication';
|
|
41
41
|
export type { Postgres } from './models/Postgres';
|
package/models/ComputedView.ts
CHANGED
|
@@ -3,14 +3,13 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
5
|
import type { PropertySchema } from './PropertySchema';
|
|
6
|
-
import type { UUID } from './UUID';
|
|
7
6
|
|
|
8
7
|
export type ComputedView = {
|
|
9
8
|
name: string;
|
|
10
|
-
description: string;
|
|
9
|
+
description: string | null;
|
|
11
10
|
columnDefinitions: Array<PropertySchema>;
|
|
12
|
-
id:
|
|
13
|
-
namespaceId:
|
|
11
|
+
readonly id: string;
|
|
12
|
+
readonly namespaceId: string;
|
|
14
13
|
query: string;
|
|
15
14
|
};
|
|
16
15
|
|
package/models/DataSource.ts
CHANGED
|
@@ -3,13 +3,12 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
5
|
import type { DataSourceConfiguration } from './DataSourceConfiguration';
|
|
6
|
-
import type { UUID } from './UUID';
|
|
7
6
|
|
|
8
7
|
export type DataSource = {
|
|
9
8
|
name: string;
|
|
10
9
|
externalId: string;
|
|
11
|
-
id:
|
|
12
|
-
namespaceId:
|
|
10
|
+
id: string | null;
|
|
11
|
+
namespaceId: string | null;
|
|
13
12
|
configuration: DataSourceConfiguration;
|
|
14
13
|
};
|
|
15
14
|
|
package/models/Namespace.ts
CHANGED
|
@@ -2,11 +2,9 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
|
-
import type { Duration } from './Duration';
|
|
6
|
-
|
|
7
5
|
export type RequestTelemetry = {
|
|
8
|
-
requestTime:
|
|
9
|
-
queryTime:
|
|
10
|
-
processingTime:
|
|
6
|
+
requestTime: string | null;
|
|
7
|
+
queryTime: string | null;
|
|
8
|
+
processingTime: string | null;
|
|
11
9
|
};
|
|
12
10
|
|
package/models/TableView.ts
CHANGED
|
@@ -3,14 +3,13 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
5
|
import type { PropertySchema } from './PropertySchema';
|
|
6
|
-
import type { UUID } from './UUID';
|
|
7
6
|
|
|
8
7
|
export type TableView = {
|
|
9
8
|
name: string;
|
|
10
|
-
description: string;
|
|
9
|
+
description: string | null;
|
|
11
10
|
columnDefinitions: Array<PropertySchema>;
|
|
12
|
-
id:
|
|
13
|
-
namespaceId:
|
|
11
|
+
readonly id: string | null;
|
|
12
|
+
readonly namespaceId: string;
|
|
14
13
|
tableName: string;
|
|
15
14
|
};
|
|
16
15
|
|
package/models/UUID.ts
CHANGED
package/models/View.ts
CHANGED
|
@@ -5,13 +5,12 @@
|
|
|
5
5
|
import type { ComputedView } from './ComputedView';
|
|
6
6
|
import type { PropertySchema } from './PropertySchema';
|
|
7
7
|
import type { TableView } from './TableView';
|
|
8
|
-
import type { UUID } from './UUID';
|
|
9
8
|
|
|
10
9
|
export type View = (TableView | ComputedView | {
|
|
11
10
|
name: string;
|
|
12
|
-
description: string;
|
|
11
|
+
description: string | null;
|
|
13
12
|
columnDefinitions: Array<PropertySchema>;
|
|
14
|
-
id:
|
|
15
|
-
namespaceId:
|
|
13
|
+
readonly id: string | null;
|
|
14
|
+
readonly namespaceId: string;
|
|
16
15
|
});
|
|
17
16
|
|
package/package.json
CHANGED