@spytecgps/nova-orm 0.0.92 → 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.
@@ -42,6 +42,7 @@ import { ImeiIccidCarrier } from './imeiIccidCarrier';
42
42
  import { ImeiIccidHistory } from './imeiIccidHistory';
43
43
  import { Industry } from './industry';
44
44
  import { LatestPosition } from './latestPosition';
45
+ import { Magento2Gps } from './magento2Gps';
45
46
  import { MobileNetwork } from './mobileNetwork';
46
47
  import { NotificationRecipient } from './notificationRecipient';
47
48
  import { Organization } from './organization';
@@ -75,4 +76,4 @@ import { UserInvitation } from './userInvitation';
75
76
  import { UserRatingRequest } from './userRatingRequest';
76
77
  import { UserRegistrationAttempt } from './userRegistrationAttempt';
77
78
  import { UserSecurityRole } from './userSecurityRole';
78
- 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, 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
+ }