@spytecgps/nova-orm 0.0.91 → 0.0.93

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,7 @@
1
+ export declare class IccidStatus {
2
+ iccid: string;
3
+ status: string | null;
4
+ processing: boolean | null;
5
+ carrierFound: number | null;
6
+ modifiedAt: Date | null;
7
+ }
@@ -37,10 +37,12 @@ import { EntityType } from './entityType';
37
37
  import { Event } from './event';
38
38
  import { Feature } from './feature';
39
39
  import { FirmwareUpgradeTask } from './firmwareUpgradeTask';
40
+ import { IccidStatus } from './iccidStatus';
40
41
  import { ImeiIccidCarrier } from './imeiIccidCarrier';
41
42
  import { ImeiIccidHistory } from './imeiIccidHistory';
42
43
  import { Industry } from './industry';
43
44
  import { LatestPosition } from './latestPosition';
45
+ import { Magento2Gps } from './magento2Gps';
44
46
  import { MobileNetwork } from './mobileNetwork';
45
47
  import { NotificationRecipient } from './notificationRecipient';
46
48
  import { Organization } from './organization';
@@ -74,4 +76,4 @@ import { UserInvitation } from './userInvitation';
74
76
  import { UserRatingRequest } from './userRatingRequest';
75
77
  import { UserRegistrationAttempt } from './userRegistrationAttempt';
76
78
  import { UserSecurityRole } from './userSecurityRole';
77
- 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, LatestPosition, 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, };
79
+ 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, IccidStatus, ImeiIccidCarrier, ImeiIccidHistory, Industry, LatestPosition, Magento2Gps, 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,50 @@
1
+ export declare class Magento2Gps {
2
+ id: number;
3
+ customerId: string | null;
4
+ email: string | null;
5
+ customerUpdatedAt: string | null;
6
+ createdIn: string | null;
7
+ firstName: string | null;
8
+ lastName: string | null;
9
+ middleName: string | null;
10
+ postcode: string | null;
11
+ prefix: string | null;
12
+ region: string | null;
13
+ street: string | null;
14
+ city: string | null;
15
+ telephone: string | null;
16
+ countryId: string | null;
17
+ company: string | null;
18
+ btAccountId: string | null;
19
+ phoneCode: string | null;
20
+ phoneCodeCountryId: string | null;
21
+ pinCode: string | null;
22
+ stripeCustomerId: string | null;
23
+ activationCreated: string | null;
24
+ imei: string | null;
25
+ deviceId: string | null;
26
+ deviceType: string | null;
27
+ deviceColor: string | null;
28
+ btSubscriptionId: string | null;
29
+ servicePlanId: string | null;
30
+ billingInterval: string | null;
31
+ status: string | null;
32
+ orderId: string | null;
33
+ deviceUpdatedAt: string | null;
34
+ deviceCreatedAt: string | null;
35
+ importedDevice: string | null;
36
+ trackerName: string | null;
37
+ trackerUse: string | null;
38
+ deviceStatus: string | null;
39
+ planCode: string | null;
40
+ platformCode: string | null;
41
+ platformName: string | null;
42
+ stripeCreatedAt: string | null;
43
+ stripeUpdatedAt: string | null;
44
+ dateCaptured: string | null;
45
+ cancelationReason: string | null;
46
+ cancelationCreated: string | null;
47
+ cancelationReactivated: string | null;
48
+ clientId: string | null;
49
+ itemsForRecovery: string | null;
50
+ }