@explo-tech/fido-api 0.0.25 → 0.0.26

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
@@ -12,6 +12,7 @@ export type { AggregationOption } from './models/AggregationOption';
12
12
  export type { And } from './models/And';
13
13
  export type { BooleanPropertyValue } from './models/BooleanPropertyValue';
14
14
  export { CalendarInterval } from './models/CalendarInterval';
15
+ export type { CalendarIntervalGrouping } from './models/CalendarIntervalGrouping';
15
16
  export type { ClientError } from './models/ClientError';
16
17
  export type { Computation } from './models/Computation';
17
18
  export type { ComputedView } from './models/ComputedView';
@@ -0,0 +1,12 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { CalendarInterval } from './CalendarInterval';
6
+
7
+ export type CalendarIntervalGrouping = {
8
+ propertyId: string;
9
+ '@type': 'calendar-interval';
10
+ calendarInterval: CalendarInterval;
11
+ };
12
+
@@ -7,6 +7,6 @@ import type { DatePart } from './DatePart';
7
7
  export type DatePartGrouping = {
8
8
  propertyId: string;
9
9
  '@type': 'date-part';
10
- datePart?: DatePart;
10
+ datePart: DatePart;
11
11
  };
12
12
 
@@ -5,6 +5,6 @@
5
5
  export type DecimalIntervalGrouping = {
6
6
  propertyId: string;
7
7
  '@type': 'decimal-interval';
8
- interval?: number;
8
+ interval: number;
9
9
  };
10
10
 
@@ -2,13 +2,13 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- import type { CalendarInterval } from './CalendarInterval';
5
+ import type { CalendarIntervalGrouping } from './CalendarIntervalGrouping';
6
6
  import type { DatePartGrouping } from './DatePartGrouping';
7
7
  import type { DecimalIntervalGrouping } from './DecimalIntervalGrouping';
8
8
  import type { IntegerIntervalGrouping } from './IntegerIntervalGrouping';
9
9
  import type { ValueGrouping } from './ValueGrouping';
10
10
 
11
- export type Grouping = (CalendarInterval | DatePartGrouping | DecimalIntervalGrouping | IntegerIntervalGrouping | ValueGrouping | {
11
+ export type Grouping = (CalendarIntervalGrouping | DatePartGrouping | DecimalIntervalGrouping | IntegerIntervalGrouping | ValueGrouping | {
12
12
  propertyId: string;
13
13
  });
14
14
 
@@ -5,6 +5,6 @@
5
5
  export type IntegerIntervalGrouping = {
6
6
  propertyId: string;
7
7
  '@type': 'integer-interval';
8
- interval?: number;
8
+ interval: number;
9
9
  };
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explo-tech/fido-api",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "description": "Fido api",
5
5
  "homepage": "https://github.com/trust-kaz/fido",
6
6
  "license": "MIT",