@leavittsoftware/lg-core-typescript 5.881.0 → 5.882.0
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/lg.net.core.ts +12 -12
- package/package.json +1 -1
package/lg.net.core.ts
CHANGED
|
@@ -6395,12 +6395,12 @@ export interface JobRoleChangeLog {
|
|
|
6395
6395
|
}
|
|
6396
6396
|
|
|
6397
6397
|
export interface JobRoleEmployeeChange extends AuditableEmployeeChange {
|
|
6398
|
-
NewJobRoleCompanyName
|
|
6399
|
-
NewJobRoleFte
|
|
6400
|
-
NewJobRoleTitle
|
|
6401
|
-
OriginalJobRoleCompanyName
|
|
6402
|
-
OriginalJobRoleFte
|
|
6403
|
-
OriginalJobRoleTitle
|
|
6398
|
+
NewJobRoleCompanyName?: string | null ;
|
|
6399
|
+
NewJobRoleFte?: string | null ;
|
|
6400
|
+
NewJobRoleTitle?: string | null ;
|
|
6401
|
+
OriginalJobRoleCompanyName?: string | null ;
|
|
6402
|
+
OriginalJobRoleFte?: string | null ;
|
|
6403
|
+
OriginalJobRoleTitle?: string | null ;
|
|
6404
6404
|
}
|
|
6405
6405
|
|
|
6406
6406
|
export interface JobRoleType {
|
|
@@ -7228,18 +7228,18 @@ export interface TerminatedEmployeeChange extends AuditableEmployeeChange {
|
|
|
7228
7228
|
}
|
|
7229
7229
|
|
|
7230
7230
|
export interface TitleEmployeeChange extends AuditableEmployeeChange {
|
|
7231
|
-
NewTitle
|
|
7232
|
-
OriginalTitle
|
|
7231
|
+
NewTitle?: string | null ;
|
|
7232
|
+
OriginalTitle?: string | null ;
|
|
7233
7233
|
}
|
|
7234
7234
|
|
|
7235
7235
|
export interface TransferAgencyEmployeeChange extends AuditableEmployeeChange {
|
|
7236
|
-
NewCompanyName
|
|
7237
|
-
OriginalCompanyName
|
|
7236
|
+
NewCompanyName?: string | null ;
|
|
7237
|
+
OriginalCompanyName?: string | null ;
|
|
7238
7238
|
}
|
|
7239
7239
|
|
|
7240
7240
|
export interface TypesOfInsuranceSoldEmployeeChange extends AuditableEmployeeChange {
|
|
7241
|
-
NewTypes
|
|
7242
|
-
OriginalTypes
|
|
7241
|
+
NewTypes?: string | null ;
|
|
7242
|
+
OriginalTypes?: string | null ;
|
|
7243
7243
|
}
|
|
7244
7244
|
|
|
7245
7245
|
export interface ConnectedActivity {
|