@explo-tech/fido-api 0.0.4 → 0.0.5

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.
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  export type BooleanPropertyValue = {
6
- type?: 'boolean';
7
- value?: boolean;
6
+ value: boolean;
8
7
  };
9
8
 
@@ -5,6 +5,6 @@
5
5
  import type { Tunnel } from './Tunnel';
6
6
 
7
7
  export type DataSourceConfiguration = {
8
- tunnel?: Tunnel;
8
+ tunnel: Tunnel;
9
9
  };
10
10
 
@@ -5,7 +5,6 @@
5
5
  import type { LocalDate } from './LocalDate';
6
6
 
7
7
  export type DatePropertyValue = {
8
- type?: 'date';
9
8
  value: LocalDate;
10
9
  };
11
10
 
@@ -5,7 +5,6 @@
5
5
  import type { Instant } from './Instant';
6
6
 
7
7
  export type DateTimePropertyValue = {
8
- type?: 'datetime';
9
8
  value: Instant;
10
9
  };
11
10
 
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  export type DecimalPropertyValue = {
6
- type?: 'decimal';
7
6
  value: number;
8
7
  };
9
8
 
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  export type DoublePropertyValue = {
6
- type?: 'double';
7
- value?: number;
6
+ value: number;
8
7
  };
9
8
 
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  export type IntegerPropertyValue = {
6
- type?: 'integer';
7
- value?: number;
6
+ value: number;
8
7
  };
9
8
 
@@ -10,7 +10,5 @@ import type { DoublePropertyValue } from './DoublePropertyValue';
10
10
  import type { IntegerPropertyValue } from './IntegerPropertyValue';
11
11
  import type { StringPropertyValue } from './StringPropertyValue';
12
12
 
13
- export type PropertyValue = (BooleanPropertyValue | DatePropertyValue | DateTimePropertyValue | DecimalPropertyValue | DoublePropertyValue | IntegerPropertyValue | StringPropertyValue | {
14
- type?: string;
15
- });
13
+ export type PropertyValue = (BooleanPropertyValue | DatePropertyValue | DateTimePropertyValue | DecimalPropertyValue | DoublePropertyValue | IntegerPropertyValue | StringPropertyValue);
16
14
 
@@ -3,7 +3,6 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  export type StringPropertyValue = {
6
- type?: 'poop';
7
6
  value: string;
8
7
  };
9
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explo-tech/fido-api",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Fido api",
5
5
  "homepage": "https://github.com/trust-kaz/fido",
6
6
  "license": "MIT",
package/.tool-versions DELETED
@@ -1 +0,0 @@
1
- nodejs 16.17.1