@spytecgps/nova-orm 0.0.167 → 0.0.169
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.
|
@@ -1,13 +1,11 @@
|
|
|
1
|
-
import { EntitySubscriberInterface,
|
|
1
|
+
import { EntitySubscriberInterface, RemoveEvent } from 'typeorm';
|
|
2
2
|
export declare class AllEntitiesSubscriber implements EntitySubscriberInterface<any> {
|
|
3
3
|
/**
|
|
4
4
|
* Called after entity insertion.
|
|
5
5
|
*/
|
|
6
|
-
afterInsert(event: InsertEvent<any>): void;
|
|
7
6
|
/**
|
|
8
7
|
* Called after entity update.
|
|
9
8
|
*/
|
|
10
|
-
afterUpdate(event: UpdateEvent<any>): void;
|
|
11
9
|
/**
|
|
12
10
|
* Called after entity removal.
|
|
13
11
|
*/
|
package/dist/types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import * as Countries from './countries';
|
|
|
9
9
|
import * as Deactivations from './deactivations';
|
|
10
10
|
import * as DeviceBehaviors from './deviceBehaviors';
|
|
11
11
|
import * as Devices from './devices';
|
|
12
|
+
import * as Enums from './enums';
|
|
12
13
|
import * as Firmwares from './firmwares';
|
|
13
14
|
import * as Logger from './logger';
|
|
14
15
|
import * as NotificationRecipients from './notificationRecipients';
|
|
@@ -24,4 +25,4 @@ import * as UserDataDeletionRequests from './userDataDeletionRequests';
|
|
|
24
25
|
import * as UserInvitations from './userInvitations';
|
|
25
26
|
import * as UserRatingRequests from './userRatingRequests';
|
|
26
27
|
import * as UserRegistrationAttempts from './userRegistrationAttempts';
|
|
27
|
-
export { Acumatica, Alerts, AlertTypes, Billing, Blacklist, Boundaries, Clients, Countries, Deactivations, DeviceBehaviors, Devices, Firmwares, Logger, NotificationRecipients, Positions, Security, Trips, Users, UserActivations, UserAppFeedback, UserAppIncidents, UserConfigurations, UserDataDeletionRequests, UserInvitations, UserRatingRequests, UserRegistrationAttempts, };
|
|
28
|
+
export { Acumatica, Alerts, AlertTypes, Billing, Blacklist, Boundaries, Clients, Countries, Deactivations, DeviceBehaviors, Devices, Firmwares, Logger, NotificationRecipients, Positions, Security, Trips, Users, UserActivations, UserAppFeedback, UserAppIncidents, UserConfigurations, UserDataDeletionRequests, UserInvitations, UserRatingRequests, UserRegistrationAttempts, Enums, };
|