@leavittsoftware/lg-core-typescript 2.0.486 → 2.0.489
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/api3.leavitt.com.js +14 -0
- package/api3.leavitt.com.js.map +1 -1
- package/api3.leavitt.com.ts +110 -1
- package/lg.net.core.js.map +1 -1
- package/lg.net.core.ts +12 -1
- package/package.json +1 -1
package/api3.leavitt.com.js
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
export var EmploymentType;
|
|
2
|
+
(function (EmploymentType) {
|
|
3
|
+
EmploymentType[EmploymentType["PaidEmployee"] = 0] = "PaidEmployee";
|
|
4
|
+
EmploymentType[EmploymentType["UnpaidEmployee"] = 1] = "UnpaidEmployee";
|
|
5
|
+
EmploymentType[EmploymentType["Contractor"] = 2] = "Contractor";
|
|
6
|
+
})(EmploymentType || (EmploymentType = {}));
|
|
7
|
+
export var AccountStatus;
|
|
8
|
+
(function (AccountStatus) {
|
|
9
|
+
AccountStatus[AccountStatus["Locked"] = 0] = "Locked";
|
|
10
|
+
AccountStatus[AccountStatus["Disabled"] = 1] = "Disabled";
|
|
11
|
+
AccountStatus[AccountStatus["PasswordExpired"] = 2] = "PasswordExpired";
|
|
12
|
+
AccountStatus[AccountStatus["Active"] = 3] = "Active";
|
|
13
|
+
AccountStatus[AccountStatus["NeverLoggedIn"] = 4] = "NeverLoggedIn";
|
|
14
|
+
})(AccountStatus || (AccountStatus = {}));
|
|
1
15
|
export var SearchSource;
|
|
2
16
|
(function (SearchSource) {
|
|
3
17
|
SearchSource[SearchSource["BenefitPoint"] = 0] = "BenefitPoint";
|
package/api3.leavitt.com.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"api3.leavitt.com.js","sourceRoot":"","sources":["api3.leavitt.com.ts"],"names":[],"mappings":"AAwkBA,MAAM,CAAN,IAAY,cAIX;AAJD,WAAY,cAAc;IACtB,mEAAgB,CAAA;IAChB,uEAAkB,CAAA;IAClB,+DAAc,CAAA;AAClB,CAAC,EAJW,cAAc,KAAd,cAAc,QAIzB;AAID,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,qDAAU,CAAA;IACV,yDAAY,CAAA;IACZ,uEAAmB,CAAA;IACnB,qDAAU,CAAA;IACV,mEAAiB,CAAA;AACrB,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB;AAID,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACpB,+DAAgB,CAAA;IAChB,mDAAU,CAAA;IACV,6CAAO,CAAA;AACX,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB;AAID,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,yEAAkB,CAAA;IAClB,iEAAc,CAAA;IACd,iFAAsB,CAAA;AAC1B,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B"}
|
package/api3.leavitt.com.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// generated using a custom program
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
// ----------------------
|
|
6
|
-
import { SignatureValue,SignatureTemplateToCompany,DocumentType,Document,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership } from './lg.net.core'
|
|
6
|
+
import { Person,CompanyAddress,JobRole,SignatureValue,SignatureTemplateToCompany,DocumentType,Document,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership } from './lg.net.core'
|
|
7
7
|
|
|
8
8
|
export interface FileExplorerDto {
|
|
9
9
|
AllowedFileTypes: string | null;
|
|
@@ -170,6 +170,97 @@ export interface FileExplorerPermissionsDto {
|
|
|
170
170
|
IsViewer: boolean;
|
|
171
171
|
}
|
|
172
172
|
|
|
173
|
+
export interface AuditorDto {
|
|
174
|
+
CompanyId: number;
|
|
175
|
+
Email: string | null;
|
|
176
|
+
ExpirationDate: string;
|
|
177
|
+
FirstName: string | null;
|
|
178
|
+
LastName: string | null;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
export interface GuestDto {
|
|
182
|
+
Description: string | null;
|
|
183
|
+
Email: string | null;
|
|
184
|
+
ExpirationDate: string | null;
|
|
185
|
+
FirstName: string | null;
|
|
186
|
+
Id: number;
|
|
187
|
+
LastName: string | null;
|
|
188
|
+
RequestedByPersonId: number;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
export interface InvestorDto {
|
|
192
|
+
Email: string | null;
|
|
193
|
+
ExpirationDate: string | null;
|
|
194
|
+
FirstName: string | null;
|
|
195
|
+
Id: number;
|
|
196
|
+
LastName: string | null;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
export interface LdapAdObject {
|
|
200
|
+
AccountName: string | null;
|
|
201
|
+
AccountStatus: AccountStatusString;
|
|
202
|
+
CommonName: string | null;
|
|
203
|
+
CompanyName: string | null;
|
|
204
|
+
DisplayName: string | null;
|
|
205
|
+
DistinguishedName: string | null;
|
|
206
|
+
FirstName: string | null;
|
|
207
|
+
Guid: string;
|
|
208
|
+
Id: number | null;
|
|
209
|
+
LastName: string | null;
|
|
210
|
+
MatchingPerson: Partial<Person> | null;
|
|
211
|
+
Path: string | null;
|
|
212
|
+
SchemaClassName: string | null;
|
|
213
|
+
Sid: string | null;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
export interface NewUserResult {
|
|
217
|
+
Id: number;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
export interface RehireDTO {
|
|
221
|
+
AdditionalItInfo: string | null;
|
|
222
|
+
BenefitPoint: boolean;
|
|
223
|
+
Comments: string | null;
|
|
224
|
+
CompanyAddressId: number | null;
|
|
225
|
+
CRMCredentials: string | null;
|
|
226
|
+
DateLicensed: string | null;
|
|
227
|
+
DepartmentId: number | null;
|
|
228
|
+
DomoAuthority: string | null;
|
|
229
|
+
EmploymentType: EmploymentTypeString;
|
|
230
|
+
Extension: string | null;
|
|
231
|
+
HireDate: string;
|
|
232
|
+
HomeAddress: Partial<CompanyAddress> | null;
|
|
233
|
+
IpAddress: string | null;
|
|
234
|
+
IsAcctManagerOrRepOrCSR: boolean;
|
|
235
|
+
IsProducerOrExecutive: boolean;
|
|
236
|
+
JobRoles: Array<Partial<JobRole>> | null;
|
|
237
|
+
ModelAfter: string | null;
|
|
238
|
+
OrderEquipment: boolean;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
export interface TerminateDto {
|
|
242
|
+
Comments: string | null;
|
|
243
|
+
DaysToForwardEmail: number | null;
|
|
244
|
+
EligibleForReHire: boolean;
|
|
245
|
+
EmployeeName: string | null;
|
|
246
|
+
ForwardIncomingMailTo: string | null;
|
|
247
|
+
LastDayWorked: string;
|
|
248
|
+
MailingAddress: string | null;
|
|
249
|
+
MobilePhoneForCompanyEmails: boolean;
|
|
250
|
+
NeedsDomoLicenseRemoved: boolean;
|
|
251
|
+
OpenSuspensesPerson: string | null;
|
|
252
|
+
Phone: string | null;
|
|
253
|
+
Reason: string | null;
|
|
254
|
+
TerminationDate: string;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
export interface TransferDTO {
|
|
258
|
+
CompanyAddressId: number | null;
|
|
259
|
+
DepartmentId: number | null;
|
|
260
|
+
HomeAddress: Partial<CompanyAddress> | null;
|
|
261
|
+
JobRoles: Array<Partial<JobRole>> | null;
|
|
262
|
+
}
|
|
263
|
+
|
|
173
264
|
export interface GetSignaturePrefillDataDto {
|
|
174
265
|
AgencyOrDepartment: string | null;
|
|
175
266
|
City: string | null;
|
|
@@ -491,6 +582,24 @@ export interface IDatabaseAttachment {
|
|
|
491
582
|
Size: number;
|
|
492
583
|
}
|
|
493
584
|
|
|
585
|
+
export enum EmploymentType {
|
|
586
|
+
PaidEmployee = 0,
|
|
587
|
+
UnpaidEmployee = 1,
|
|
588
|
+
Contractor = 2
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
export type EmploymentTypeString = keyof typeof EmploymentType;
|
|
592
|
+
|
|
593
|
+
export enum AccountStatus {
|
|
594
|
+
Locked = 0,
|
|
595
|
+
Disabled = 1,
|
|
596
|
+
PasswordExpired = 2,
|
|
597
|
+
Active = 3,
|
|
598
|
+
NeverLoggedIn = 4
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
export type AccountStatusString = keyof typeof AccountStatus;
|
|
602
|
+
|
|
494
603
|
export enum SearchSource {
|
|
495
604
|
BenefitPoint = 0,
|
|
496
605
|
AMS360 = 1,
|
package/lg.net.core.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lg.net.core.js","sourceRoot":"","sources":["lg.net.core.ts"],"names":[],"mappings":"AAAA,yBAAyB;AACzB,mBAAmB;AACnB,uCAAuC;AACvC,oBAAoB;AACpB,yBAAyB;
|
|
1
|
+
{"version":3,"file":"lg.net.core.js","sourceRoot":"","sources":["lg.net.core.ts"],"names":[],"mappings":"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"}
|
package/lg.net.core.ts
CHANGED
|
@@ -2935,6 +2935,9 @@ export interface AuditorPersonRole extends PersonRole {
|
|
|
2935
2935
|
AuditorCompanyRoleId: number;
|
|
2936
2936
|
}
|
|
2937
2937
|
|
|
2938
|
+
export interface AutomatedUserRole extends PersonRole {
|
|
2939
|
+
}
|
|
2940
|
+
|
|
2938
2941
|
export interface BuildingNickname {
|
|
2939
2942
|
CompanyAddresses: Array<Partial<CompanyAddress>> | null;
|
|
2940
2943
|
Id: number;
|
|
@@ -3115,6 +3118,9 @@ export interface CompanyUltiProAccount {
|
|
|
3115
3118
|
LastModifiedDate: string;
|
|
3116
3119
|
}
|
|
3117
3120
|
|
|
3121
|
+
export interface ConferenceAccountPersonRole extends PersonRole {
|
|
3122
|
+
}
|
|
3123
|
+
|
|
3118
3124
|
export interface CorporateDisposalClosureType extends CompanyRoleClosureType {
|
|
3119
3125
|
}
|
|
3120
3126
|
|
|
@@ -3267,6 +3273,9 @@ export interface GroupToAttachmentPermission {
|
|
|
3267
3273
|
PeopleGroupId: number;
|
|
3268
3274
|
}
|
|
3269
3275
|
|
|
3276
|
+
export interface GuestPersonRole extends PersonRole {
|
|
3277
|
+
}
|
|
3278
|
+
|
|
3270
3279
|
export interface IDatabaseAttachment {
|
|
3271
3280
|
CdnFileName: string | null;
|
|
3272
3281
|
CreatedDate: string;
|
|
@@ -3291,6 +3300,9 @@ export interface InAppNotification {
|
|
|
3291
3300
|
Subject: string | null;
|
|
3292
3301
|
}
|
|
3293
3302
|
|
|
3303
|
+
export interface InvestorPersonRole extends PersonRole {
|
|
3304
|
+
}
|
|
3305
|
+
|
|
3294
3306
|
export interface JobRole extends Role {
|
|
3295
3307
|
AssignmentPercentages: Array<Partial<JobRoleAssignmentPercentage>> | null;
|
|
3296
3308
|
Company: Partial<Company> | null;
|
|
@@ -3955,7 +3967,6 @@ export interface Role {
|
|
|
3955
3967
|
IsSpouse: boolean | null;
|
|
3956
3968
|
IsTeamCapitan: boolean | null;
|
|
3957
3969
|
IsTeamCaptain: boolean | null;
|
|
3958
|
-
JobRoleCompanyId: number | null;
|
|
3959
3970
|
JobRoleToDivisions: Array<Partial<JobRoleToDivision>> | null;
|
|
3960
3971
|
JobRoleToTeams: Array<Partial<JobRoleToTeam>> | null;
|
|
3961
3972
|
LastModifiedBy: Partial<Person> | null;
|