@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 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';
@@ -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: UUID | null;
13
- namespaceId: UUID | null;
11
+ readonly id: string;
12
+ readonly namespaceId: string;
14
13
  query: string;
15
14
  };
16
15
 
@@ -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: UUID | null;
12
- namespaceId: UUID | null;
10
+ id: string | null;
11
+ namespaceId: string | null;
13
12
  configuration: DataSourceConfiguration;
14
13
  };
15
14
 
@@ -2,10 +2,8 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- import type { UUID } from './UUID';
6
-
7
5
  export type Namespace = {
8
6
  name: string;
9
- id: UUID | null;
7
+ id: string | null;
10
8
  };
11
9
 
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type Optional = {
6
+ value?: any;
7
+ present?: boolean;
8
+ empty?: boolean;
9
+ };
10
+
@@ -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: Duration | null;
9
- queryTime: Duration | null;
10
- processingTime: Duration | null;
6
+ requestTime: string | null;
7
+ queryTime: string | null;
8
+ processingTime: string | null;
11
9
  };
12
10
 
@@ -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: UUID | null;
13
- namespaceId: UUID | null;
11
+ readonly id: string | null;
12
+ readonly namespaceId: string;
14
13
  tableName: string;
15
14
  };
16
15
 
package/models/UUID.ts CHANGED
@@ -2,4 +2,4 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- export type UUID = UUID;
5
+ export type UUID = string;
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: UUID | null;
15
- namespaceId: UUID | null;
13
+ readonly id: string | null;
14
+ readonly namespaceId: string;
16
15
  });
17
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explo-tech/fido-api",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "description": "Fido api",
5
5
  "homepage": "https://github.com/trust-kaz/fido",
6
6
  "license": "MIT",
@@ -1,5 +0,0 @@
1
- /* istanbul ignore file */
2
- /* tslint:disable */
3
- /* eslint-disable */
4
-
5
- export type Duration = Duration;