@explo-tech/fido-api 2.9.13 → 2.10.0-lawrence-delimieter-export-format.1

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.
@@ -6,9 +6,9 @@ import type { Aggregation } from './Aggregation';
6
6
  import type { AggregationOption } from './AggregationOption';
7
7
 
8
8
  export type AggregateProperty = {
9
- targetPropertyId: string | null;
10
9
  '@type': 'aggregate';
11
10
  propertyId: string | null;
11
+ targetPropertyId: string | null;
12
12
  aggregation: Aggregation;
13
13
  aggregationOption?: AggregationOption | null;
14
14
  };
@@ -3,8 +3,8 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  export type FormulaProperty = {
6
- targetPropertyId: string | null;
7
6
  '@type': 'formula';
7
+ targetPropertyId: string | null;
8
8
  formula: string;
9
9
  };
10
10
 
@@ -6,7 +6,5 @@ import type { AggregateProperty } from './AggregateProperty';
6
6
  import type { FormulaProperty } from './FormulaProperty';
7
7
  import type { SourceProperty } from './SourceProperty';
8
8
 
9
- export type Property = (AggregateProperty | SourceProperty | FormulaProperty | {
10
- targetPropertyId: string | null;
11
- });
9
+ export type Property = (AggregateProperty | SourceProperty | FormulaProperty);
12
10
 
@@ -3,8 +3,8 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  export type SourceProperty = {
6
- targetPropertyId: string | null;
7
6
  '@type': 'source';
8
7
  propertyId: string;
8
+ targetPropertyId: string | null;
9
9
  };
10
10
 
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": "2.9.13",
5
+ "version": "2.10.0-lawrence-delimieter-export-format.1",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/trust-kaz/fido"