@spytecgps/nova-orm 0.0.73 → 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
|
+
}
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -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';
|
|
@@ -71,4 +73,4 @@ import { UserInvitation } from './userInvitation';
|
|
|
71
73
|
import { UserRatingRequest } from './userRatingRequest';
|
|
72
74
|
import { UserRegistrationAttempt } from './userRegistrationAttempt';
|
|
73
75
|
import { UserSecurityRole } from './userSecurityRole';
|
|
74
|
-
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, 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, };
|
|
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, };
|