@spytecgps/nova-orm 1.3.57 → 1.3.58
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/assetProfile.d.ts +23 -0
- package/dist/entities/assetProfileCategory.d.ts +4 -0
- package/dist/entities/assetProfileCustomField.d.ts +10 -0
- package/dist/entities/assetProfileNote.d.ts +12 -0
- package/dist/entities/assetProfilePicture.d.ts +10 -0
- package/dist/entities/assetProfileType.d.ts +5 -0
- package/dist/entities/index.d.ts +7 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Relation } from 'typeorm';
|
|
2
|
+
import { AssetProfileCustomField } from './assetProfileCustomField';
|
|
3
|
+
import { AssetProfileNote } from './assetProfileNote';
|
|
4
|
+
import { AssetProfilePicture } from './assetProfilePicture';
|
|
5
|
+
import { AssetProfileType } from './assetProfileType';
|
|
6
|
+
import { Device } from './device';
|
|
7
|
+
export declare class AssetProfile {
|
|
8
|
+
id: number;
|
|
9
|
+
name: string;
|
|
10
|
+
clientId: number;
|
|
11
|
+
deviceId: number;
|
|
12
|
+
device: Relation<Device>;
|
|
13
|
+
assetProfileTypeId: number;
|
|
14
|
+
assetProfileType: Relation<AssetProfileType>;
|
|
15
|
+
make: string | null;
|
|
16
|
+
model: string | null;
|
|
17
|
+
serialNumber: string | null;
|
|
18
|
+
createdAt: Date | null;
|
|
19
|
+
modifiedAt: Date | null;
|
|
20
|
+
pictures: Relation<AssetProfilePicture>[];
|
|
21
|
+
notes: Relation<AssetProfileNote>[];
|
|
22
|
+
customFields: Relation<AssetProfileCustomField>[];
|
|
23
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Relation } from 'typeorm';
|
|
2
|
+
import { AssetProfile } from './assetProfile';
|
|
3
|
+
export declare class AssetProfileCustomField {
|
|
4
|
+
id: number;
|
|
5
|
+
assetProfileId: number;
|
|
6
|
+
assetProfile: Relation<AssetProfile>;
|
|
7
|
+
name: string;
|
|
8
|
+
value: string;
|
|
9
|
+
createdAt: Date | null;
|
|
10
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Relation } from 'typeorm';
|
|
2
|
+
import { AssetProfile } from './assetProfile';
|
|
3
|
+
import { User } from './user';
|
|
4
|
+
export declare class AssetProfileNote {
|
|
5
|
+
id: number;
|
|
6
|
+
assetProfileId: number;
|
|
7
|
+
assetProfile: Relation<AssetProfile>;
|
|
8
|
+
note: string;
|
|
9
|
+
userId: string;
|
|
10
|
+
user: Relation<User>;
|
|
11
|
+
createdAt: Date | null;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Relation } from 'typeorm';
|
|
2
|
+
import { AssetProfile } from './assetProfile';
|
|
3
|
+
export declare class AssetProfilePicture {
|
|
4
|
+
id: number;
|
|
5
|
+
assetProfileId: number;
|
|
6
|
+
assetProfile: Relation<AssetProfile>;
|
|
7
|
+
fileName: string;
|
|
8
|
+
s3FilesPath: string | null;
|
|
9
|
+
createdAt: Date | null;
|
|
10
|
+
}
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -9,6 +9,12 @@ import { AlertType } from './alertType';
|
|
|
9
9
|
import { AppFeatureType } from './appFeatureType';
|
|
10
10
|
import { AsinPromotion } from './asinPromotion';
|
|
11
11
|
import { AssetCategory } from './assetCategory';
|
|
12
|
+
import { AssetProfile } from './assetProfile';
|
|
13
|
+
import { AssetProfileCategory } from './assetProfileCategory';
|
|
14
|
+
import { AssetProfileCustomField } from './assetProfileCustomField';
|
|
15
|
+
import { AssetProfileNote } from './assetProfileNote';
|
|
16
|
+
import { AssetProfilePicture } from './assetProfilePicture';
|
|
17
|
+
import { AssetProfileType } from './assetProfileType';
|
|
12
18
|
import { AvalaraExemptCert } from './avalaraExemptCert';
|
|
13
19
|
import { BeaconBleMesh } from './beaconBleMesh';
|
|
14
20
|
import { Billing } from './billing';
|
|
@@ -126,4 +132,4 @@ import { UserRatingRequest } from './userRatingRequest';
|
|
|
126
132
|
import { UserRegistrationAttempt } from './userRegistrationAttempt';
|
|
127
133
|
import { UserSecurityRole } from './userSecurityRole';
|
|
128
134
|
export * from './customerAttribute';
|
|
129
|
-
export { AcumaticaAmazonProduct, AcumaticaImeiIccidData, AcumaticaOrderShipmentDetails, AcumaticaShipment, AcumaticaShipmentAmazon, AempToken, Alert, AlertType, AppFeatureType, AsinPromotion, AssetCategory, BeaconBleMesh, Billing, BillingCustomerAmazon, BillingCustomerBraintree, BillingDeviceHistory, BillingDeviceTypePlan, BillingHubspotPaymentLog, BillingKlarnaCustomer, BillingKlarnaOrder, BillingPlanFeatures, BillingPlans, BillingStatusHistoryBraintree, BillingSubscriptionAmazon, BillingSubscriptionBraintree, Blacklist, BlacklistType, BLEMesh, BLEMeshConfiguration, Boundary, BoundaryEvent, CellTower, Client, ClientAlertConfiguration, ClientAlertRecipient, ClientAppFeature, ClientConfiguration, ClientDeviceSetting, ClientIngestorConfiguration, ClientType, Country, DataExport, DataSourceType, Deactivation, DeactivationReason, Device, DeviceBehavior, DeviceBleMesh, DeviceBleMeshUpdateTask, DeviceCameraMedia, DeviceCameraMediaEventType, DeviceCameraRequestedVideoData, DeviceCameraMediaSyncStatus, DeviceChangesHistory, DeviceCustomConfiguration, DeviceEventsTriggerConfiguration, DeviceHistory, DeviceModelListener, DevicePairing, DevicePromotion, DeviceReplacement, DeviceStatus, DeviceTask, DeviceType, DeviceTypeFeature, DeviceTypeFirmware, DeviceTypePromotion, EmailDomain, EntityTag, EntityType, Feature, FirmwareAutoUpgradeBlacklist, FirmwareUpgradeTask, HistoricalBillingPlan, IccidStatus, ImeiIccidCarrier, ImeiIccidHistory, ImeiIccidImport, Industry, LatestPosition, LatestUserAppInfo, LiveLink, Magento2Gps, Magento2Plan, MarketplacePromotion, MobileNetwork, NotificationRecipient, OrderShipmentInternational, Organization, Plan, Position, Promotion, PromotionHistory, SecurityRole, ServiceProvider, ServiceProviderProduct, ServiceProviderProductNetwork, ServiceProviderProductType, Sim, Tag, Task, TaskSchedule, Trip, TripCompletionStatus, TripPosition, User, UserActivation, UserActivationDevice, UserActivationEvent, UserActivationMetric, UserAlertComplain, UserAlertConfiguration, UserAlertNotificationsConfig, UserAppFeedback, UserAppIncident, UserAuthorizedBoundary, UserAuthorizedDevice, UserConfiguration, UserDataDeletionRequest, UserDeviceBehaviorTask, UserInvitation, UserRatingRequest, UserRegistrationAttempt, UserSecurityRole, Region, AvalaraExemptCert, M2Sync, };
|
|
135
|
+
export { AcumaticaAmazonProduct, AcumaticaImeiIccidData, AcumaticaOrderShipmentDetails, AcumaticaShipment, AcumaticaShipmentAmazon, AempToken, Alert, AlertType, AppFeatureType, AsinPromotion, AssetCategory, AssetProfile, AssetProfileCategory, AssetProfileCustomField, AssetProfileNote, AssetProfilePicture, AssetProfileType, BeaconBleMesh, Billing, BillingCustomerAmazon, BillingCustomerBraintree, BillingDeviceHistory, BillingDeviceTypePlan, BillingHubspotPaymentLog, BillingKlarnaCustomer, BillingKlarnaOrder, BillingPlanFeatures, BillingPlans, BillingStatusHistoryBraintree, BillingSubscriptionAmazon, BillingSubscriptionBraintree, Blacklist, BlacklistType, BLEMesh, BLEMeshConfiguration, Boundary, BoundaryEvent, CellTower, Client, ClientAlertConfiguration, ClientAlertRecipient, ClientAppFeature, ClientConfiguration, ClientDeviceSetting, ClientIngestorConfiguration, ClientType, Country, DataExport, DataSourceType, Deactivation, DeactivationReason, Device, DeviceBehavior, DeviceBleMesh, DeviceBleMeshUpdateTask, DeviceCameraMedia, DeviceCameraMediaEventType, DeviceCameraRequestedVideoData, DeviceCameraMediaSyncStatus, DeviceChangesHistory, DeviceCustomConfiguration, DeviceEventsTriggerConfiguration, DeviceHistory, DeviceModelListener, DevicePairing, DevicePromotion, DeviceReplacement, DeviceStatus, DeviceTask, DeviceType, DeviceTypeFeature, DeviceTypeFirmware, DeviceTypePromotion, EmailDomain, EntityTag, EntityType, Feature, FirmwareAutoUpgradeBlacklist, FirmwareUpgradeTask, HistoricalBillingPlan, IccidStatus, ImeiIccidCarrier, ImeiIccidHistory, ImeiIccidImport, Industry, LatestPosition, LatestUserAppInfo, LiveLink, Magento2Gps, Magento2Plan, MarketplacePromotion, MobileNetwork, NotificationRecipient, OrderShipmentInternational, Organization, Plan, Position, Promotion, PromotionHistory, SecurityRole, ServiceProvider, ServiceProviderProduct, ServiceProviderProductNetwork, ServiceProviderProductType, Sim, Tag, Task, TaskSchedule, Trip, TripCompletionStatus, TripPosition, User, UserActivation, UserActivationDevice, UserActivationEvent, UserActivationMetric, UserAlertComplain, UserAlertConfiguration, UserAlertNotificationsConfig, UserAppFeedback, UserAppIncident, UserAuthorizedBoundary, UserAuthorizedDevice, UserConfiguration, UserDataDeletionRequest, UserDeviceBehaviorTask, UserInvitation, UserRatingRequest, UserRegistrationAttempt, UserSecurityRole, Region, AvalaraExemptCert, M2Sync, };
|