@explo-tech/fido-api 1.11.4-dan-increase-min-bq-conns.1 → 1.12.0

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,6 +6,7 @@ import type { CalendarInterval } from './CalendarInterval';
6
6
 
7
7
  export type CalendarIntervalGrouping = {
8
8
  propertyId: string;
9
+ targetPropertyId: string | null;
9
10
  '@type': 'calendar-interval';
10
11
  calendarInterval: CalendarInterval;
11
12
  targetTimezone?: string;
@@ -6,6 +6,7 @@ import type { DatePart } from './DatePart';
6
6
 
7
7
  export type DatePartGrouping = {
8
8
  propertyId: string;
9
+ targetPropertyId: string | null;
9
10
  '@type': 'date-part';
10
11
  datePart: DatePart;
11
12
  targetTimezone?: string;
@@ -4,6 +4,7 @@
4
4
 
5
5
  export type DecimalIntervalGrouping = {
6
6
  propertyId: string;
7
+ targetPropertyId: string | null;
7
8
  '@type': 'decimal-interval';
8
9
  interval: number;
9
10
  };
@@ -10,5 +10,6 @@ import type { ValueGrouping } from './ValueGrouping';
10
10
 
11
11
  export type Grouping = (CalendarIntervalGrouping | DatePartGrouping | DecimalIntervalGrouping | IntegerIntervalGrouping | ValueGrouping | {
12
12
  propertyId: string;
13
+ targetPropertyId: string | null;
13
14
  });
14
15
 
@@ -4,6 +4,7 @@
4
4
 
5
5
  export type IntegerIntervalGrouping = {
6
6
  propertyId: string;
7
+ targetPropertyId: string | null;
7
8
  '@type': 'integer-interval';
8
9
  interval: number;
9
10
  };
@@ -4,6 +4,7 @@
4
4
 
5
5
  export type ValueGrouping = {
6
6
  propertyId: string;
7
+ targetPropertyId: string | null;
7
8
  '@type': 'value';
8
9
  };
9
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": "1.11.4-dan-increase-min-bq-conns.1",
5
+ "version": "1.12.0",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/trust-kaz/fido"