@spytecgps/nova-orm 0.0.23 → 0.0.25

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.
@@ -7,6 +7,7 @@ export declare class Alert {
7
7
  userId: Buffer | null;
8
8
  messageId: Buffer;
9
9
  geofenceId: number | null;
10
+ boundaryId: number | null;
10
11
  deviceId: number | null;
11
12
  imei: string;
12
13
  sendTime: Date;
@@ -1,13 +1,12 @@
1
- /// <reference types="node" />
2
- export declare class Geofence {
1
+ export declare class Boundary {
3
2
  id: number;
4
3
  name: string | null;
5
4
  type: string | null;
6
5
  buffer: string | null;
7
6
  createdAt: Date | null;
8
7
  modifiedAt: Date | null;
9
- createdBy: Buffer | null;
10
- modifiedBy: Buffer | null;
8
+ createdBy: string | null;
9
+ modifiedBy: string | null;
11
10
  clientId: number;
12
11
  location: string | null;
13
12
  status: number;
@@ -1,8 +1,8 @@
1
1
  /// <reference types="node" />
2
- export declare class GeofenceEvent {
2
+ export declare class BoundaryEvent {
3
3
  id: string;
4
4
  deviceId: number;
5
- geofenceId: number;
5
+ boundaryId: number;
6
6
  inDate: Date | null;
7
7
  inLat: number | null;
8
8
  inLon: number | null;
@@ -14,8 +14,6 @@ export declare class Client {
14
14
  modifiedBy: number | null;
15
15
  createdBy: number | null;
16
16
  dataSourceTypeId: number | null;
17
- sievaUserName: string | null;
18
- sievaBatchId: number | null;
19
17
  clientTypeId: number;
20
18
  clientType: Relation<ClientType>;
21
19
  salesforceId: string | null;
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import { Relation } from 'typeorm';
3
2
  import { Client } from './client';
4
3
  import { DeviceType } from './deviceType';
@@ -19,15 +18,13 @@ export declare class Device {
19
18
  status: string | null;
20
19
  iccid: string | null;
21
20
  modifiedAt: Date | null;
22
- createdBy: Buffer | null;
23
- modifiedBy: Buffer | null;
21
+ createdBy: string | null;
22
+ modifiedBy: string | null;
24
23
  forward: boolean | null;
25
24
  color: string | null;
26
25
  icon: string | null;
27
26
  description: string | null;
28
27
  dataSourceTypeId: number | null;
29
- sievaUserName: string | null;
30
- sievaBatchId: number | null;
31
28
  assetCategoryId: number | null;
32
29
  usageRegion: string | null;
33
30
  iccidCarrier?: ImeiIccidCarrier;
@@ -8,6 +8,8 @@ import { BillingStatusHistoryBraintree } from './billingStatusHistoryBraintree';
8
8
  import { BillingSubscriptionBraintree } from './billingSubscriptionBraintree';
9
9
  import { Blacklist } from './blacklist';
10
10
  import { BlacklistType } from './blacklistType';
11
+ import { Boundary } from './boundary';
12
+ import { BoundaryEvent } from './boundaryEvent';
11
13
  import { CellTower } from './cellTower';
12
14
  import { Client } from './client';
13
15
  import { ClientConfiguration } from './clientConfiguration';
@@ -31,8 +33,6 @@ import { EntityType } from './entityType';
31
33
  import { Event } from './event';
32
34
  import { Feature } from './feature';
33
35
  import { FirmwareUpgradeTask } from './firmwareUpgradeTask';
34
- import { Geofence } from './geofence';
35
- import { GeofenceEvent } from './geofenceEvent';
36
36
  import { ImeiIccidCarrier } from './imeiIccidCarrier';
37
37
  import { ImeiIccidHistory } from './imeiIccidHistory';
38
38
  import { Industry } from './industry';
@@ -65,4 +65,4 @@ import { UserInvitation } from './userInvitation';
65
65
  import { UserRatingRequest } from './userRatingRequest';
66
66
  import { UserRegistrationAttempt } from './userRegistrationAttempt';
67
67
  import { UserSecurityRole } from './userSecurityRole';
68
- export { Alert, AlertType, AssetCategory, Billing, BillingCustomerBraintree, BillingDeviceHistory, BillingStatusHistoryBraintree, BillingSubscriptionBraintree, Blacklist, BlacklistType, CellTower, Client, ClientConfiguration, ClientDeviceSetting, ClientType, Country, DataSourceType, Deactivation, DeactivationReason, Device, DeviceBehavior, DeviceHistory, DeviceModelListener, DeviceReplacement, DeviceType, DeviceTypeEvent, DeviceTypeFeature, DeviceTypeFirmware, EntityTag, EntityType, Event, Feature, FirmwareUpgradeTask, Geofence, GeofenceEvent, ImeiIccidCarrier, ImeiIccidHistory, Industry, MobileNetwork, NotificationRecipient, Organization, Plan, Position, SecurityRole, ServiceProvider, ServiceProviderProduct, ServiceProviderProductNetwork, ServiceProviderProductType, Sim, Trip, TripCompletionStatus, TripPosition, User, UserActivation, UserActivationDevice, UserActivationEvent, UserActivationMetric, UserAlertConfiguration, UserAppFeedback, UserAppIncident, UserConfiguration, UserDataDeletionRequest, UserDeviceBehaviorTask, UserInvitation, UserRatingRequest, UserRegistrationAttempt, UserSecurityRole, };
68
+ export { Alert, AlertType, AssetCategory, Billing, BillingCustomerBraintree, BillingDeviceHistory, BillingStatusHistoryBraintree, BillingSubscriptionBraintree, Blacklist, BlacklistType, CellTower, Client, ClientConfiguration, ClientDeviceSetting, ClientType, Country, DataSourceType, Deactivation, DeactivationReason, Device, DeviceBehavior, DeviceHistory, DeviceModelListener, DeviceReplacement, DeviceType, DeviceTypeEvent, DeviceTypeFeature, DeviceTypeFirmware, EntityTag, EntityType, Event, Feature, FirmwareUpgradeTask, Boundary, BoundaryEvent, ImeiIccidCarrier, ImeiIccidHistory, Industry, MobileNetwork, NotificationRecipient, Organization, Plan, Position, SecurityRole, ServiceProvider, ServiceProviderProduct, ServiceProviderProductNetwork, ServiceProviderProductType, Sim, Trip, TripCompletionStatus, TripPosition, User, UserActivation, UserActivationDevice, UserActivationEvent, UserActivationMetric, UserAlertConfiguration, UserAppFeedback, UserAppIncident, UserConfiguration, UserDataDeletionRequest, UserDeviceBehaviorTask, UserInvitation, UserRatingRequest, UserRegistrationAttempt, UserSecurityRole, };