@explo-tech/fido-api 5.17.2 → 5.17.3

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.
@@ -2,4 +2,7 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- export type DefaultSorted = Record<string, any>;
5
+ export type DefaultSorted = {
6
+ '@type': 'default';
7
+ };
8
+
package/models/Sorted.ts CHANGED
@@ -5,6 +5,7 @@
5
5
  import type { Sort } from './Sort';
6
6
 
7
7
  export type Sorted = {
8
+ '@type': 'sorted';
8
9
  sorts: Array<Sort>;
9
10
  };
10
11
 
@@ -2,4 +2,7 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- export type Unsorted = Record<string, any>;
5
+ export type Unsorted = {
6
+ '@type': 'unsorted';
7
+ };
8
+
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@explo-tech/fido-api",
3
3
  "description": "Fido api",
4
4
  "homepage": "https://github.com/trust-kaz/fido",
5
- "version": "5.17.2",
5
+ "version": "5.17.3",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "git+https://github.com/trust-kaz/fido.git"