@spytecgps/nova-orm 0.0.71 → 0.0.73
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.
- package/dist/entities/billing.d.ts +2 -2
- package/dist/entities/deviceCustomConfiguration.d.ts +1 -0
- package/dist/entities/index.d.ts +2 -1
- package/dist/entities/positionMigrationBatch.d.ts +3 -0
- package/dist/entities/userConfiguration.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/repositories/billing/createBilling.d.ts +5 -0
- package/dist/repositories/billing/getBillings.d.ts +5 -0
- package/dist/repositories/billing/index.d.ts +50 -0
- package/dist/repositories/billing/updateBilling.d.ts +4 -0
- package/dist/repositories/index.d.ts +2 -1
- package/dist/types/billing.d.ts +36 -0
- package/dist/types/index.d.ts +2 -1
- package/dist/types/user.d.ts +1 -0
- package/package.json +1 -1
|
@@ -8,8 +8,8 @@ export declare class Billing {
|
|
|
8
8
|
status: string | null;
|
|
9
9
|
createdAt: Date | null;
|
|
10
10
|
updatedAt: Date | null;
|
|
11
|
-
subscriptionValue:
|
|
11
|
+
subscriptionValue: number | null;
|
|
12
12
|
subscriptionPeriodMonths: number | null;
|
|
13
|
-
subscriptionValueMonthly:
|
|
13
|
+
subscriptionValueMonthly: number | null;
|
|
14
14
|
clientId: number | null;
|
|
15
15
|
}
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ import { Organization } from './organization';
|
|
|
44
44
|
import { Plan } from './plan';
|
|
45
45
|
import { Position } from './position';
|
|
46
46
|
import { PositionMigration } from './positionMigration';
|
|
47
|
+
import { PositionMigrationBatch } from './positionMigrationBatch';
|
|
47
48
|
import { Promotion } from './promotion';
|
|
48
49
|
import { SecurityRole } from './securityRole';
|
|
49
50
|
import { ServiceProvider } from './serviceProvider';
|
|
@@ -70,4 +71,4 @@ import { UserInvitation } from './userInvitation';
|
|
|
70
71
|
import { UserRatingRequest } from './userRatingRequest';
|
|
71
72
|
import { UserRegistrationAttempt } from './userRegistrationAttempt';
|
|
72
73
|
import { UserSecurityRole } from './userSecurityRole';
|
|
73
|
-
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, 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, };
|
|
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, };
|