@explo-tech/fido-api 5.8.0 → 5.8.1-jordan-api.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.
package/index.ts CHANGED
@@ -70,6 +70,7 @@ export type { DateTimeColumnExportFormat } from './models/DateTimeColumnExportFo
70
70
  export type { DateTimeColumnVisualizationFormat } from './models/DateTimeColumnVisualizationFormat';
71
71
  export type { DateTimeColumnVisualizationFormatPattern } from './models/DateTimeColumnVisualizationFormatPattern';
72
72
  export type { DateTimePropertyValue } from './models/DateTimePropertyValue';
73
+ export { DayOfWeek } from './models/DayOfWeek';
73
74
  export type { DecimalColumnExportFormat } from './models/DecimalColumnExportFormat';
74
75
  export type { DecimalColumnVisualizationFormat } from './models/DecimalColumnVisualizationFormat';
75
76
  export type { DecimalIntervalGrouping } from './models/DecimalIntervalGrouping';
@@ -3,6 +3,7 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  import type { CalendarInterval } from './CalendarInterval';
6
+ import type { DayOfWeek } from './DayOfWeek';
6
7
 
7
8
  export type CalendarIntervalGrouping = {
8
9
  propertyId: string;
@@ -10,9 +11,6 @@ export type CalendarIntervalGrouping = {
10
11
  '@type': 'calendar-interval';
11
12
  calendarInterval: CalendarInterval;
12
13
  targetTimezone?: string;
13
- /**
14
- * Ignored if calendarInterval is not "week"
15
- */
16
- startOfWeek: Record<string, any> | null;
14
+ startOfWeek: DayOfWeek;
17
15
  };
18
16
 
@@ -0,0 +1,13 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export enum DayOfWeek {
6
+ MONDAY = 'monday',
7
+ TUESDAY = 'tuesday',
8
+ WEDNESDAY = 'wednesday',
9
+ THURSDAY = 'thursday',
10
+ FRIDAY = 'friday',
11
+ SATURDAY = 'saturday',
12
+ SUNDAY = 'sunday',
13
+ }
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.8.0",
5
+ "version": "5.8.1-jordan-api.1",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "git+https://github.com/trust-kaz/fido.git"