@spytecgps/nova-orm 0.0.90 → 0.0.92

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.
@@ -4,10 +4,10 @@ export declare class BillingSubscriptionBraintree {
4
4
  planId: string | null;
5
5
  createdAt: Date | null;
6
6
  updatedAt: Date | null;
7
- subscriptionStart: string | null;
8
- subscriptionEnd: string | null;
9
- nextBillingDate: string | null;
10
- subscriptionValue: string | null;
7
+ subscriptionStart: Date | null;
8
+ subscriptionEnd: Date | null;
9
+ nextBillingDate: Date | null;
10
+ subscriptionValue: number | null;
11
11
  status: string | null;
12
12
  subscriptionPeriodMonths: number | null;
13
13
  paymentInstrumentType: string | null;
@@ -15,17 +15,17 @@ export declare class BillingSubscriptionBraintree {
15
15
  isPaused: boolean | null;
16
16
  discountDetails: object | null;
17
17
  addons: object | null;
18
- balance: string | null;
18
+ balance: number | null;
19
19
  currentBillingCycle: number | null;
20
20
  daysPastDue: number | null;
21
21
  description: string | null;
22
22
  descriptor: object | null;
23
23
  failureCount: number | null;
24
- firstBillingDate: string | null;
24
+ firstBillingDate: Date | null;
25
25
  merchantAccountId: string | null;
26
- nextBillingPeriodAmount: string | null;
26
+ nextBillingPeriodAmount: number | null;
27
27
  numberOfBillingCycles: number | null;
28
- paidThroughDate: string | null;
28
+ paidThroughDate: Date | null;
29
29
  paymentMethodToken: string | null;
30
30
  statusHistory: object | null;
31
31
  trialDuration: number | null;
@@ -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,6 +37,7 @@ 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';
@@ -74,4 +75,4 @@ import { UserInvitation } from './userInvitation';
74
75
  import { UserRatingRequest } from './userRatingRequest';
75
76
  import { UserRegistrationAttempt } from './userRegistrationAttempt';
76
77
  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, };
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, };