@leavittsoftware/lg-core-typescript 2.0.487 → 2.0.488
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 +8 -0
- package/api3.leavitt.com.js.map +1 -1
- package/api3.leavitt.com.ts +28 -1
- package/package.json +1 -1
package/api3.leavitt.com.js
CHANGED
|
@@ -4,6 +4,14 @@ export var EmploymentType;
|
|
|
4
4
|
EmploymentType[EmploymentType["UnpaidEmployee"] = 1] = "UnpaidEmployee";
|
|
5
5
|
EmploymentType[EmploymentType["Contractor"] = 2] = "Contractor";
|
|
6
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 = {}));
|
|
7
15
|
export var SearchSource;
|
|
8
16
|
(function (SearchSource) {
|
|
9
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 { CompanyAddress,JobRole,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;
|
|
@@ -196,6 +196,23 @@ export interface InvestorDto {
|
|
|
196
196
|
LastName: string | null;
|
|
197
197
|
}
|
|
198
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
|
+
|
|
199
216
|
export interface NewUserResult {
|
|
200
217
|
Id: number;
|
|
201
218
|
}
|
|
@@ -573,6 +590,16 @@ export enum EmploymentType {
|
|
|
573
590
|
|
|
574
591
|
export type EmploymentTypeString = keyof typeof EmploymentType;
|
|
575
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
|
+
|
|
576
603
|
export enum SearchSource {
|
|
577
604
|
BenefitPoint = 0,
|
|
578
605
|
AMS360 = 1,
|