@leavittsoftware/lg-core-typescript 2.0.443 → 2.0.444
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 +6 -1
- package/api3.leavitt.com.js.map +1 -1
- package/api3.leavitt.com.ts +50 -1
- package/lg.net.core.js.map +1 -1
- package/lg.net.core.ts +56 -45
- package/package.json +1 -1
package/api3.leavitt.com.js
CHANGED
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
export
|
|
1
|
+
export var CompanyRoleType;
|
|
2
|
+
(function (CompanyRoleType) {
|
|
3
|
+
CompanyRoleType[CompanyRoleType["LLCCompanyRole"] = 0] = "LLCCompanyRole";
|
|
4
|
+
CompanyRoleType[CompanyRoleType["AgencyRole"] = 1] = "AgencyRole";
|
|
5
|
+
CompanyRoleType[CompanyRoleType["AuditorCompanyRole"] = 2] = "AuditorCompanyRole";
|
|
6
|
+
})(CompanyRoleType || (CompanyRoleType = {}));
|
|
2
7
|
//# sourceMappingURL=api3.leavitt.com.js.map
|
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":"AA8OA,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,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyOwnership } from './lg.net.core'
|
|
6
|
+
import { SignatureValue,SignatureTemplateToCompany,ServiceToChampion,ServiceToCompany,ConnectedStatusString,Company,CompanyLogo,CompanyOwnership } from './lg.net.core'
|
|
7
7
|
|
|
8
8
|
export interface GetSignaturePrefillDataDto {
|
|
9
9
|
AgencyOrDepartment: string | null;
|
|
@@ -179,6 +179,21 @@ export interface AgencySearchInfo {
|
|
|
179
179
|
RemoteLocationCount: number;
|
|
180
180
|
}
|
|
181
181
|
|
|
182
|
+
export interface CompanyDetailsDto {
|
|
183
|
+
DbaName: string | null;
|
|
184
|
+
Fax: string | null;
|
|
185
|
+
FolderPath: string | null;
|
|
186
|
+
HrName: string | null;
|
|
187
|
+
Id: number;
|
|
188
|
+
LegalName: string | null;
|
|
189
|
+
Logos: Array<Partial<CompanyLogo>> | null;
|
|
190
|
+
MainName: string | null;
|
|
191
|
+
MainPhone: string | null;
|
|
192
|
+
PrimaryEmail: string | null;
|
|
193
|
+
ShortName: string | null;
|
|
194
|
+
Type: string | null;
|
|
195
|
+
}
|
|
196
|
+
|
|
182
197
|
export interface CompanyEmployeeDto {
|
|
183
198
|
FirstName: string | null;
|
|
184
199
|
IsDirectEmployee: boolean;
|
|
@@ -191,7 +206,41 @@ export interface CompanyJobRoleDto {
|
|
|
191
206
|
JobRoleType: string | null;
|
|
192
207
|
}
|
|
193
208
|
|
|
209
|
+
export interface CompanyUpsertDto {
|
|
210
|
+
CompanyRoleType: CompanyRoleTypeString | null;
|
|
211
|
+
DBAName: string | null;
|
|
212
|
+
FaxPhoneAreaCode: string | null;
|
|
213
|
+
FaxPhoneLine: string | null;
|
|
214
|
+
FolderPath: string | null;
|
|
215
|
+
HrName: string | null;
|
|
216
|
+
Id: number | null;
|
|
217
|
+
LegalName: string | null;
|
|
218
|
+
MainName: string | null;
|
|
219
|
+
MainPhoneAreaCode: string | null;
|
|
220
|
+
MainPhoneLine: string | null;
|
|
221
|
+
PrimaryEmail: string | null;
|
|
222
|
+
ShortName: string | null;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
export interface MergerDto {
|
|
226
|
+
DestCompanyId: number;
|
|
227
|
+
Locations: Array<Partial<MergerLocationsDto>> | null;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
export interface MergerLocationsDto {
|
|
231
|
+
CurrLocationId: number;
|
|
232
|
+
DestLocationId: number;
|
|
233
|
+
}
|
|
234
|
+
|
|
194
235
|
export interface UpsertCompanyOwnershipDto {
|
|
195
236
|
CompanyOwnerships: Array<Partial<CompanyOwnership>> | null;
|
|
196
237
|
}
|
|
197
238
|
|
|
239
|
+
export enum CompanyRoleType {
|
|
240
|
+
LLCCompanyRole = 0,
|
|
241
|
+
AgencyRole = 1,
|
|
242
|
+
AuditorCompanyRole = 2
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
export type CompanyRoleTypeString = keyof typeof CompanyRoleType;
|
|
246
|
+
|
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
|
@@ -830,44 +830,6 @@ export interface BuildingToCompanyAddress {
|
|
|
830
830
|
Id: number;
|
|
831
831
|
}
|
|
832
832
|
|
|
833
|
-
export interface Company {
|
|
834
|
-
Addresses: Array<Partial<CompanyAddress>> | null;
|
|
835
|
-
AgencyCommissionRates: Array<Partial<AgencyCommissionRate>> | null;
|
|
836
|
-
AgencyProductionBudgets: Array<Partial<AgencyProductionBudget>> | null;
|
|
837
|
-
Ams360Instance: Partial<Ams360Instance> | null;
|
|
838
|
-
BookOfBusinessChanges: Array<Partial<BookOfBusinessChange>> | null;
|
|
839
|
-
CompanyDivisions: Array<Partial<CompanyDivision>> | null;
|
|
840
|
-
CompanyLogos: Array<Partial<CompanyLogo>> | null;
|
|
841
|
-
CompanyNames: Array<Partial<CompanyName>> | null;
|
|
842
|
-
CompanyOwnerships: Array<Partial<CompanyOwnership>> | null;
|
|
843
|
-
CompanyTeams: Array<Partial<CompanyTeam>> | null;
|
|
844
|
-
CompanyUhcCode: Partial<CompanyUhcCode> | null;
|
|
845
|
-
ContactPersonRoles: Array<Partial<CompanyContactPersonRole>> | null;
|
|
846
|
-
CreatedDate: string;
|
|
847
|
-
CReportComments: Array<Partial<CReportComment>> | null;
|
|
848
|
-
Departments: Array<Partial<Department>> | null;
|
|
849
|
-
EloquaSyncLogEntry: Partial<EloquaSyncLogEntry> | null;
|
|
850
|
-
EmailAddresses: Array<Partial<CompanyEmailAddress>> | null;
|
|
851
|
-
EndDate: string | null;
|
|
852
|
-
ExpenseFormItemBillToAgencies: Array<Partial<ExpenseFormItem>> | null;
|
|
853
|
-
ExpenseFormItemCompanies: Array<Partial<ExpenseFormItem>> | null;
|
|
854
|
-
ExpenseFormItemRequestingAgencies: Array<Partial<ExpenseFormItem>> | null;
|
|
855
|
-
Id: number;
|
|
856
|
-
IsExpired: boolean;
|
|
857
|
-
JobRoles: Array<Partial<JobRole>> | null;
|
|
858
|
-
LastModifiedDate: string;
|
|
859
|
-
ManagementSystems: Array<Partial<ManagementSystem>> | null;
|
|
860
|
-
Name: string | null;
|
|
861
|
-
OwnerCompanies: Array<Partial<CompanyOwnership>> | null;
|
|
862
|
-
PhoneNumbers: Array<Partial<PhoneNumber>> | null;
|
|
863
|
-
Roles: Array<Partial<CompanyRole>> | null;
|
|
864
|
-
Services: Array<Partial<ServiceToCompany>> | null;
|
|
865
|
-
SignatureTemplateToCompanies: Array<Partial<SignatureTemplateToCompany>> | null;
|
|
866
|
-
StartDate: string;
|
|
867
|
-
Stationeries: Array<Partial<Stationery>> | null;
|
|
868
|
-
TimelineTemplateToCompanies: Array<Partial<TimelineTemplateToCompany>> | null;
|
|
869
|
-
}
|
|
870
|
-
|
|
871
833
|
export interface CompanyAddressUltiProAccount {
|
|
872
834
|
CreatedDate: string;
|
|
873
835
|
Id: number;
|
|
@@ -925,13 +887,6 @@ export interface CompanyOwnership {
|
|
|
925
887
|
Percentage: Partial<number>;
|
|
926
888
|
}
|
|
927
889
|
|
|
928
|
-
export interface CompanyRoleClosureType {
|
|
929
|
-
CompanyRole: Partial<CompanyRole> | null;
|
|
930
|
-
Discriminator: string | null;
|
|
931
|
-
Id: number;
|
|
932
|
-
MergedWithId: number | null;
|
|
933
|
-
}
|
|
934
|
-
|
|
935
890
|
export interface CompanyTeam {
|
|
936
891
|
Company: Partial<Company> | null;
|
|
937
892
|
CompanyId: number;
|
|
@@ -4491,6 +4446,44 @@ export interface AuditorPersonRole extends PersonRole {
|
|
|
4491
4446
|
export interface CarrierCompanyRole extends CompanyRole {
|
|
4492
4447
|
}
|
|
4493
4448
|
|
|
4449
|
+
export interface Company {
|
|
4450
|
+
Addresses: Array<Partial<CompanyAddress>> | null;
|
|
4451
|
+
AgencyCommissionRates: Array<Partial<AgencyCommissionRate>> | null;
|
|
4452
|
+
AgencyProductionBudgets: Array<Partial<AgencyProductionBudget>> | null;
|
|
4453
|
+
Ams360Instance: Partial<Ams360Instance> | null;
|
|
4454
|
+
BookOfBusinessChanges: Array<Partial<BookOfBusinessChange>> | null;
|
|
4455
|
+
CompanyDivisions: Array<Partial<CompanyDivision>> | null;
|
|
4456
|
+
CompanyLogos: Array<Partial<CompanyLogo>> | null;
|
|
4457
|
+
CompanyNames: Array<Partial<CompanyName>> | null;
|
|
4458
|
+
CompanyOwnerships: Array<Partial<CompanyOwnership>> | null;
|
|
4459
|
+
CompanyTeams: Array<Partial<CompanyTeam>> | null;
|
|
4460
|
+
CompanyUhcCode: Partial<CompanyUhcCode> | null;
|
|
4461
|
+
ContactPersonRoles: Array<Partial<CompanyContactPersonRole>> | null;
|
|
4462
|
+
CreatedDate: string;
|
|
4463
|
+
CReportComments: Array<Partial<CReportComment>> | null;
|
|
4464
|
+
Departments: Array<Partial<Department>> | null;
|
|
4465
|
+
EloquaSyncLogEntry: Partial<EloquaSyncLogEntry> | null;
|
|
4466
|
+
EmailAddresses: Array<Partial<CompanyEmailAddress>> | null;
|
|
4467
|
+
EndDate: string | null;
|
|
4468
|
+
ExpenseFormItemBillToAgencies: Array<Partial<ExpenseFormItem>> | null;
|
|
4469
|
+
ExpenseFormItemCompanies: Array<Partial<ExpenseFormItem>> | null;
|
|
4470
|
+
ExpenseFormItemRequestingAgencies: Array<Partial<ExpenseFormItem>> | null;
|
|
4471
|
+
Id: number;
|
|
4472
|
+
IsExpired: boolean;
|
|
4473
|
+
JobRoles: Array<Partial<JobRole>> | null;
|
|
4474
|
+
LastModifiedDate: string;
|
|
4475
|
+
ManagementSystems: Array<Partial<ManagementSystem>> | null;
|
|
4476
|
+
Name: string | null;
|
|
4477
|
+
OwnerCompanies: Array<Partial<CompanyOwnership>> | null;
|
|
4478
|
+
PhoneNumbers: Array<Partial<PhoneNumber>> | null;
|
|
4479
|
+
Roles: Array<Partial<CompanyRole>> | null;
|
|
4480
|
+
Services: Array<Partial<ServiceToCompany>> | null;
|
|
4481
|
+
SignatureTemplateToCompanies: Array<Partial<SignatureTemplateToCompany>> | null;
|
|
4482
|
+
StartDate: string;
|
|
4483
|
+
Stationeries: Array<Partial<Stationery>> | null;
|
|
4484
|
+
TimelineTemplateToCompanies: Array<Partial<TimelineTemplateToCompany>> | null;
|
|
4485
|
+
}
|
|
4486
|
+
|
|
4494
4487
|
export interface CompanyAddress extends Address {
|
|
4495
4488
|
Company: Partial<Company> | null;
|
|
4496
4489
|
CompanyId: number;
|
|
@@ -4508,6 +4501,16 @@ export interface CompanyRole extends Role {
|
|
|
4508
4501
|
ClosureType: Partial<CompanyRoleClosureType> | null;
|
|
4509
4502
|
Company: Partial<Company> | null;
|
|
4510
4503
|
CompanyId: number;
|
|
4504
|
+
MergedWithCompanies: Array<Partial<MergerClosureType>> | null;
|
|
4505
|
+
}
|
|
4506
|
+
|
|
4507
|
+
export interface CompanyRoleClosureType {
|
|
4508
|
+
CompanyRole: Partial<CompanyRole> | null;
|
|
4509
|
+
Discriminator: string | null;
|
|
4510
|
+
Id: number;
|
|
4511
|
+
}
|
|
4512
|
+
|
|
4513
|
+
export interface CorporateDisposalClosureType extends CompanyRoleClosureType {
|
|
4511
4514
|
}
|
|
4512
4515
|
|
|
4513
4516
|
export interface CredentialActivationCode {
|
|
@@ -4519,6 +4522,9 @@ export interface CredentialActivationCode {
|
|
|
4519
4522
|
StartDate: string;
|
|
4520
4523
|
}
|
|
4521
4524
|
|
|
4525
|
+
export interface DisaffiliationClosureType extends CompanyRoleClosureType {
|
|
4526
|
+
}
|
|
4527
|
+
|
|
4522
4528
|
export interface IDatabaseAttachment {
|
|
4523
4529
|
CdnFileName: string | null;
|
|
4524
4530
|
CreatedDate: string;
|
|
@@ -4552,6 +4558,11 @@ export interface LLCCompanyRole extends CompanyRole {
|
|
|
4552
4558
|
FolderPath: string | null;
|
|
4553
4559
|
}
|
|
4554
4560
|
|
|
4561
|
+
export interface MergerClosureType extends CompanyRoleClosureType {
|
|
4562
|
+
MergedWith: Partial<CompanyRole> | null;
|
|
4563
|
+
MergedWithId: number | null;
|
|
4564
|
+
}
|
|
4565
|
+
|
|
4555
4566
|
export interface ProfilePictureAttachment extends Attachment {
|
|
4556
4567
|
}
|
|
4557
4568
|
|