@spytecgps/nova-orm 0.0.195 → 0.0.197
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/appFeatureType.d.ts +6 -0
- package/dist/entities/clientAppFeature.d.ts +9 -0
- package/dist/entities/index.d.ts +3 -1
- package/dist/entities/task.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/repositories/appFeatures/createAppFeatureType.d.ts +5 -0
- package/dist/repositories/appFeatures/createClientAppFeature.d.ts +5 -0
- package/dist/repositories/appFeatures/getClientAppFeatures.d.ts +5 -0
- package/dist/repositories/appFeatures/index.d.ts +37 -0
- package/dist/repositories/index.d.ts +2 -1
- package/dist/repositories/tasks/getTasks.d.ts +5 -0
- package/dist/repositories/tasks/index.d.ts +32 -1
- package/dist/types/appFeatures.d.ts +23 -0
- package/dist/types/index.d.ts +2 -1
- package/dist/types/tasks.d.ts +29 -0
- package/dist/utils/filterTools.d.ts +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Relation } from 'typeorm';
|
|
2
|
+
import { AppFeatureType } from './appFeatureType';
|
|
3
|
+
export declare class ClientAppFeature {
|
|
4
|
+
clientId: number;
|
|
5
|
+
appFeatureTypeId: number;
|
|
6
|
+
appFeatureType: Relation<AppFeatureType>;
|
|
7
|
+
entityId: number;
|
|
8
|
+
statusId: number;
|
|
9
|
+
}
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { AlertMigration } from './alertMigration';
|
|
|
9
9
|
import { AlertMigrationBatch } from './alertMigrationBatch';
|
|
10
10
|
import { AlertTimeWindowConfiguration } from './alertTimeWindowConfiguration';
|
|
11
11
|
import { AlertType } from './alertType';
|
|
12
|
+
import { AppFeatureType } from './appFeatureType';
|
|
12
13
|
import { AssetCategory } from './assetCategory';
|
|
13
14
|
import { Billing } from './billing';
|
|
14
15
|
import { BillingCustomerBraintree } from './billingCustomerBraintree';
|
|
@@ -24,6 +25,7 @@ import { Boundary } from './boundary';
|
|
|
24
25
|
import { BoundaryEvent } from './boundaryEvent';
|
|
25
26
|
import { CellTower } from './cellTower';
|
|
26
27
|
import { Client } from './client';
|
|
28
|
+
import { ClientAppFeature } from './clientAppFeature';
|
|
27
29
|
import { ClientConfiguration } from './clientConfiguration';
|
|
28
30
|
import { ClientDeviceSetting } from './clientDeviceSetting';
|
|
29
31
|
import { ClientType } from './clientType';
|
|
@@ -94,4 +96,4 @@ import { UserInvitation } from './userInvitation';
|
|
|
94
96
|
import { UserRatingRequest } from './userRatingRequest';
|
|
95
97
|
import { UserRegistrationAttempt } from './userRegistrationAttempt';
|
|
96
98
|
import { UserSecurityRole } from './userSecurityRole';
|
|
97
|
-
export { AcumaticaAmazonProduct, AcumaticaImeiIccidData, AcumaticaOrderShipmentDetails, AcumaticaShipment, AcumaticaShipmentAmazon, AempToken, Alert, AlertMigration, AlertMigrationBatch, AlertTimeWindowConfiguration, AlertType, AssetCategory, Billing, BillingCustomerBraintree, BillingDeviceHistory, BillingHubspotPaymentLog, BillingKlarnaCustomer, BillingKlarnaOrder, BillingStatusHistoryBraintree, BillingSubscriptionBraintree, Blacklist, BlacklistType, Boundary, BoundaryEvent, CellTower, Client, ClientConfiguration, ClientDeviceSetting, ClientType, Country, CustomerAttribute, DataSourceType, Deactivation, DeactivationReason, Device, DeviceAlertConfiguration, DeviceBehavior, DeviceCustomConfiguration, DeviceHistory, DeviceModelListener, DevicePairing, DevicePromotion, DeviceReplacement, DeviceTask, DeviceType, DeviceTypeEvent, DeviceTypeFeature, DeviceTypeFirmware, EntityTag, EntityType, Event, Feature, FirmwareAutoUpgradeBlacklist, FirmwareUpgradeTask, IccidStatus, ImeiIccidCarrier, ImeiIccidHistory, Industry, LatestPosition, Magento2Gps, Magento2Plan, MobileNetwork, NotificationRecipient, Organization, Plan, Position, PositionMigration, PositionMigrationBatch, Promotion, SecurityRole, ServiceProvider, ServiceProviderProduct, ServiceProviderProductNetwork, ServiceProviderProductType, Sim, Task, TaskSchedule, Trip, TripCompletionStatus, TripPosition, User, UserActivation, UserActivationDevice, UserActivationEvent, UserActivationMetric, UserAlertComplain, UserAlertConfiguration, UserAppFeedback, UserAppIncident, UserConfiguration, UserDataDeletionRequest, UserDeviceBehaviorTask, UserInvitation, UserRatingRequest, UserRegistrationAttempt, UserSecurityRole, };
|
|
99
|
+
export { AcumaticaAmazonProduct, AcumaticaImeiIccidData, AcumaticaOrderShipmentDetails, AcumaticaShipment, AcumaticaShipmentAmazon, AempToken, Alert, AlertMigration, AlertMigrationBatch, AlertTimeWindowConfiguration, AlertType, AppFeatureType, AssetCategory, Billing, BillingCustomerBraintree, BillingDeviceHistory, BillingHubspotPaymentLog, BillingKlarnaCustomer, BillingKlarnaOrder, BillingStatusHistoryBraintree, BillingSubscriptionBraintree, Blacklist, BlacklistType, Boundary, BoundaryEvent, CellTower, Client, ClientAppFeature, ClientConfiguration, ClientDeviceSetting, ClientType, Country, CustomerAttribute, DataSourceType, Deactivation, DeactivationReason, Device, DeviceAlertConfiguration, DeviceBehavior, DeviceCustomConfiguration, DeviceHistory, DeviceModelListener, DevicePairing, DevicePromotion, DeviceReplacement, DeviceTask, DeviceType, DeviceTypeEvent, DeviceTypeFeature, DeviceTypeFirmware, EntityTag, EntityType, Event, Feature, FirmwareAutoUpgradeBlacklist, FirmwareUpgradeTask, IccidStatus, ImeiIccidCarrier, ImeiIccidHistory, Industry, LatestPosition, Magento2Gps, Magento2Plan, MobileNetwork, NotificationRecipient, Organization, Plan, Position, PositionMigration, PositionMigrationBatch, Promotion, SecurityRole, ServiceProvider, ServiceProviderProduct, ServiceProviderProductNetwork, ServiceProviderProductType, Sim, Task, TaskSchedule, Trip, TripCompletionStatus, TripPosition, User, UserActivation, UserActivationDevice, UserActivationEvent, UserActivationMetric, UserAlertComplain, UserAlertConfiguration, UserAppFeedback, UserAppIncident, UserConfiguration, UserDataDeletionRequest, UserDeviceBehaviorTask, UserInvitation, UserRatingRequest, UserRegistrationAttempt, UserSecurityRole, };
|