@explo-tech/fido-api 0.0.11 → 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
@@ -35,6 +35,7 @@ export type { NamespaceRequest } from './models/NamespaceRequest';
35
35
  export type { NamespaceResponse } from './models/NamespaceResponse';
36
36
  export type { NamespaceResponseMetadata } from './models/NamespaceResponseMetadata';
37
37
  export type { OffsetDateTime } from './models/OffsetDateTime';
38
+ export type { Optional } from './models/Optional';
38
39
  export type { PagingConfiguration } from './models/PagingConfiguration';
39
40
  export type { PasswordAuthentication } from './models/PasswordAuthentication';
40
41
  export type { Postgres } from './models/Postgres';
@@ -6,10 +6,10 @@ import type { PropertySchema } from './PropertySchema';
6
6
 
7
7
  export type ComputedView = {
8
8
  name: string;
9
- description: string;
9
+ description: string | null;
10
10
  columnDefinitions: Array<PropertySchema>;
11
- id: string | null;
12
- namespaceId: string | null;
11
+ readonly id: string;
12
+ readonly namespaceId: string;
13
13
  query: string;
14
14
  };
15
15
 
@@ -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
+
@@ -6,10 +6,10 @@ import type { PropertySchema } from './PropertySchema';
6
6
 
7
7
  export type TableView = {
8
8
  name: string;
9
- description: string;
9
+ description: string | null;
10
10
  columnDefinitions: Array<PropertySchema>;
11
- id: string | null;
12
- namespaceId: string | null;
11
+ readonly id: string | null;
12
+ readonly namespaceId: string;
13
13
  tableName: string;
14
14
  };
15
15
 
package/models/View.ts CHANGED
@@ -8,9 +8,9 @@ import type { TableView } from './TableView';
8
8
 
9
9
  export type View = (TableView | ComputedView | {
10
10
  name: string;
11
- description: string;
11
+ description: string | null;
12
12
  columnDefinitions: Array<PropertySchema>;
13
- id: string | null;
14
- namespaceId: string | null;
13
+ readonly id: string | null;
14
+ readonly namespaceId: string;
15
15
  });
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explo-tech/fido-api",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "Fido api",
5
5
  "homepage": "https://github.com/trust-kaz/fido",
6
6
  "license": "MIT",