@spytecgps/nova-orm 1.4.204 → 1.4.205

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,20 +1,4 @@
1
1
  export type RetailStoreStatus = 'online' | 'offline' | 'maintenance';
2
- export interface RetailStoreInferenceModelConfidenceMatrixZone {
3
- zoneId: string;
4
- precision: number;
5
- recall: number;
6
- f1Score: number;
7
- }
8
- export interface RetailStoreInferenceModelConfidenceMatrix {
9
- zones: RetailStoreInferenceModelConfidenceMatrixZone[];
10
- }
11
- export interface RetailStoreInferenceModelMetadata {
12
- model: string;
13
- description: string;
14
- threshold?: number;
15
- precision: number;
16
- confidenceMatrix: RetailStoreInferenceModelConfidenceMatrix;
17
- }
18
2
  export declare class RetailStore {
19
3
  id: string;
20
4
  clientId: number;
@@ -31,7 +15,7 @@ export declare class RetailStore {
31
15
  status: RetailStoreStatus;
32
16
  floorplanUrl?: string | null;
33
17
  inferenceModel?: string | null;
34
- inferenceModelMetadata?: RetailStoreInferenceModelMetadata | null;
18
+ inferenceModelMetadata?: Record<string, any> | null;
35
19
  latitude?: number | null;
36
20
  longitude?: number | null;
37
21
  createdAt: Date;
@@ -6,7 +6,7 @@ import { RetailGatewayStatus } from '../entities/retailGateway';
6
6
  import { RetailIncidentSeverity, RetailIncidentStatus, RetailIncidentType } from '../entities/retailIncident';
7
7
  import { RetailItemStatus } from '../entities/retailItem';
8
8
  import { RetailItemEventType } from '../entities/retailItemEvent';
9
- import { RetailStoreInferenceModelMetadata, RetailStoreStatus } from '../entities/retailStore';
9
+ import { RetailStoreStatus } from '../entities/retailStore';
10
10
  import { RetailTrainingSetSegment, RetailTrainingSetStatus, RetailTrainingSetType } from '../entities/retailTrainingSet';
11
11
  import { RetailZoneCategory } from '../entities/retailZone';
12
- export { ExternalRecipientNotificationType, RetailAlertConfigurationStatus, RetailAlertSeverity, RetailAlertStatus, RetailBleTagStatus, RetailGatewayStatus, RetailIncidentSeverity, RetailIncidentStatus, RetailIncidentType, RetailItemEventType, RetailItemStatus, RetailStoreInferenceModelMetadata, RetailStoreStatus, RetailTrainingSetSegment, RetailTrainingSetStatus, RetailTrainingSetType, RetailZoneCategory, };
12
+ export { ExternalRecipientNotificationType, RetailAlertConfigurationStatus, RetailAlertSeverity, RetailAlertStatus, RetailBleTagStatus, RetailGatewayStatus, RetailIncidentSeverity, RetailIncidentStatus, RetailIncidentType, RetailItemEventType, RetailItemStatus, RetailStoreStatus, RetailTrainingSetSegment, RetailTrainingSetStatus, RetailTrainingSetType, RetailZoneCategory, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spytecgps/nova-orm",
3
- "version": "1.4.204",
3
+ "version": "1.4.205",
4
4
  "description": "ORM with PlanetScale",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/schema.sql CHANGED
@@ -1,6 +1,6 @@
1
- -- nova-orm-schema-checksum: f4acb36eb33583df56c52eae9d26cd7b
1
+ -- nova-orm-schema-checksum: ee253c5e496bb3dc8d20ba9d2ead5108
2
2
  -- Nova ORM Schema Dump
3
- -- Generated at: 2026-03-17T08:38:31.603Z
3
+ -- Generated at: 2026-03-17T09:41:23.215Z
4
4
 
5
5
  SET FOREIGN_KEY_CHECKS = 0;
6
6