@explo-tech/fido-api 0.0.20 → 0.0.21

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.
@@ -10,6 +10,7 @@ export type ComputedView = {
10
10
  columnDefinitions: Array<PropertySchema>;
11
11
  readonly id: string;
12
12
  readonly namespaceId: string;
13
+ '@type': 'computed-view';
13
14
  query: string;
14
15
  };
15
16
 
package/models/Filter.ts CHANGED
@@ -6,8 +6,9 @@ import type { And } from './And';
6
6
  import type { Equal } from './Equal';
7
7
  import type { In } from './In';
8
8
  import type { LateBoundEqual } from './LateBoundEqual';
9
+ import type { LateBoundIn } from './LateBoundIn';
9
10
  import type { Not } from './Not';
10
11
  import type { Or } from './Or';
11
12
 
12
- export type Filter = (And | Or | Not | Equal | LateBoundEqual | In);
13
+ export type Filter = (And | Or | Not | Equal | LateBoundEqual | In | LateBoundIn);
13
14
 
@@ -3,7 +3,7 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  export type LateBoundIn = {
6
- '@type': string;
6
+ '@type': 'in-var-ref';
7
7
  propertyId: string;
8
8
  valueVariableReference: string;
9
9
  };
@@ -10,6 +10,7 @@ export type TableView = {
10
10
  columnDefinitions: Array<PropertySchema>;
11
11
  readonly id: string;
12
12
  readonly namespaceId: string;
13
+ '@type': 'table-view';
13
14
  tableName: string;
14
15
  };
15
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explo-tech/fido-api",
3
- "version": "0.0.20",
3
+ "version": "0.0.21",
4
4
  "description": "Fido api",
5
5
  "homepage": "https://github.com/trust-kaz/fido",
6
6
  "license": "MIT",