@spytecgps/nova-orm 0.0.72 → 0.0.74

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.
@@ -0,0 +1,22 @@
1
+ /// <reference types="node" />
2
+ export declare class AlertMigration {
3
+ id: number;
4
+ alertTypeId: number;
5
+ value: string | null;
6
+ createdAt: Date | null;
7
+ userId: Buffer | null;
8
+ messageId: Buffer;
9
+ boundaryId?: number;
10
+ imei: string;
11
+ sendTime: Date;
12
+ lat: number | null;
13
+ lon: number | null;
14
+ address: string | null;
15
+ clientId: number | null;
16
+ isBuffer: boolean | null;
17
+ isNotification: boolean | null;
18
+ gpsUtcTime: Date | null;
19
+ relevantAddress: string | null;
20
+ gpsMessageId: Buffer | null;
21
+ cellTowerRelevantAddress: string | null;
22
+ }
@@ -0,0 +1,3 @@
1
+ export declare class AlertMigrationBatch {
2
+ id: number;
3
+ }
@@ -8,8 +8,8 @@ export declare class Billing {
8
8
  status: string | null;
9
9
  createdAt: Date | null;
10
10
  updatedAt: Date | null;
11
- subscriptionValue: string | null;
11
+ subscriptionValue: number | null;
12
12
  subscriptionPeriodMonths: number | null;
13
- subscriptionValueMonthly: string | null;
13
+ subscriptionValueMonthly: number | null;
14
14
  clientId: number | null;
15
15
  }
@@ -1,4 +1,6 @@
1
1
  import { Alert } from './alert';
2
+ import { AlertMigration } from './alertMigration';
3
+ import { AlertMigrationBatch } from './alertMigrationBatch';
2
4
  import { AlertType } from './alertType';
3
5
  import { AssetCategory } from './assetCategory';
4
6
  import { Billing } from './billing';
@@ -44,6 +46,7 @@ import { Organization } from './organization';
44
46
  import { Plan } from './plan';
45
47
  import { Position } from './position';
46
48
  import { PositionMigration } from './positionMigration';
49
+ import { PositionMigrationBatch } from './positionMigrationBatch';
47
50
  import { Promotion } from './promotion';
48
51
  import { SecurityRole } from './securityRole';
49
52
  import { ServiceProvider } from './serviceProvider';
@@ -70,4 +73,4 @@ import { UserInvitation } from './userInvitation';
70
73
  import { UserRatingRequest } from './userRatingRequest';
71
74
  import { UserRegistrationAttempt } from './userRegistrationAttempt';
72
75
  import { UserSecurityRole } from './userSecurityRole';
73
- export { Alert, AlertType, AssetCategory, Billing, BillingCustomerBraintree, BillingDeviceHistory, BillingStatusHistoryBraintree, BillingSubscriptionBraintree, Blacklist, BlacklistType, CellTower, Client, ClientConfiguration, ClientDeviceSetting, ClientType, Country, DataSourceType, Deactivation, DeactivationReason, Device, DeviceBehavior, DeviceCustomConfiguration, DeviceHistory, DeviceModelListener, DevicePromotion, DeviceReplacement, DeviceType, DeviceTypeEvent, DeviceTypeFeature, DeviceTypeFirmware, EntityTag, EntityType, Event, Feature, FirmwareUpgradeTask, Boundary, BoundaryEvent, ImeiIccidCarrier, ImeiIccidHistory, Industry, MobileNetwork, NotificationRecipient, Organization, Plan, Position, PositionMigration, Promotion, SecurityRole, ServiceProvider, ServiceProviderProduct, ServiceProviderProductNetwork, ServiceProviderProductType, Sim, Trip, TripCompletionStatus, TripPosition, User, UserActivation, UserActivationDevice, UserActivationEvent, UserActivationMetric, UserAlertComplain, UserAlertConfiguration, UserAppFeedback, UserAppIncident, UserConfiguration, UserDataDeletionRequest, UserDeviceBehaviorTask, UserInvitation, UserRatingRequest, UserRegistrationAttempt, UserSecurityRole, };
76
+ export { Alert, AlertMigration, AlertMigrationBatch, AlertType, AssetCategory, Billing, BillingCustomerBraintree, BillingDeviceHistory, BillingStatusHistoryBraintree, BillingSubscriptionBraintree, Blacklist, BlacklistType, CellTower, Client, ClientConfiguration, ClientDeviceSetting, ClientType, Country, DataSourceType, Deactivation, DeactivationReason, Device, DeviceBehavior, DeviceCustomConfiguration, DeviceHistory, DeviceModelListener, DevicePromotion, DeviceReplacement, DeviceType, DeviceTypeEvent, DeviceTypeFeature, DeviceTypeFirmware, EntityTag, EntityType, Event, Feature, FirmwareUpgradeTask, Boundary, BoundaryEvent, ImeiIccidCarrier, ImeiIccidHistory, Industry, MobileNetwork, NotificationRecipient, Organization, Plan, Position, PositionMigration, PositionMigrationBatch, Promotion, SecurityRole, ServiceProvider, ServiceProviderProduct, ServiceProviderProductNetwork, ServiceProviderProductType, Sim, Trip, TripCompletionStatus, TripPosition, User, UserActivation, UserActivationDevice, UserActivationEvent, UserActivationMetric, UserAlertComplain, UserAlertConfiguration, UserAppFeedback, UserAppIncident, UserConfiguration, UserDataDeletionRequest, UserDeviceBehaviorTask, UserInvitation, UserRatingRequest, UserRegistrationAttempt, UserSecurityRole, };
@@ -0,0 +1,3 @@
1
+ export declare class PositionMigrationBatch {
2
+ id: number;
3
+ }
@@ -16,4 +16,5 @@ export declare class UserConfiguration {
16
16
  dataSourceTypeId: number | null;
17
17
  homepage: string | null;
18
18
  temperatureUnits: string | null;
19
+ addressFormat: string | null;
19
20
  }