@spytecgps/nova-orm 1.4.168 → 1.4.169

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.
@@ -1,3 +1,8 @@
1
+ export interface RetailTrainingSetSegment {
2
+ departmentId: string;
3
+ startTime: string;
4
+ endTime: string;
5
+ }
1
6
  export type RetailTrainingSetType = 'full' | 'supplemental';
2
7
  export type RetailTrainingSetStatus = 'in_progress' | 'submitted' | 'processing' | 'completed' | 'failed' | 'archived';
3
8
  export declare class RetailTrainingSet {
@@ -15,6 +20,7 @@ export declare class RetailTrainingSet {
15
20
  segmentCount?: number | null;
16
21
  totalDuration?: number | null;
17
22
  coveredZoneIds?: string[] | null;
23
+ segments?: RetailTrainingSetSegment[] | null;
18
24
  notes?: string | null;
19
25
  createdAt: Date;
20
26
  updatedAt: Date;