@leavittsoftware/lg-core-typescript 5.802.0 → 5.803.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/api3.leavitt.com.ts +107 -107
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -2910,6 +2910,113 @@ export interface LogsSearchParametersDto {
|
|
|
2910
2910
|
Type?: LogEntryTypeString | null ;
|
|
2911
2911
|
}
|
|
2912
2912
|
|
|
2913
|
+
export interface Ams360InstancesV2CompaniesDto {
|
|
2914
|
+
Branches: Array<Partial<GLBranchDto>>;
|
|
2915
|
+
DataSource?: string | null ;
|
|
2916
|
+
DivisionName?: string | null ;
|
|
2917
|
+
DivisionShortName?: string | null ;
|
|
2918
|
+
GLDivCode?: string | null ;
|
|
2919
|
+
Id?: number | null ;
|
|
2920
|
+
LogoUrl?: string | null ;
|
|
2921
|
+
MarkUrl?: string | null ;
|
|
2922
|
+
Name?: string | null ;
|
|
2923
|
+
ShortName?: string | null ;
|
|
2924
|
+
}
|
|
2925
|
+
|
|
2926
|
+
export interface AmsSearchDto {
|
|
2927
|
+
AccountName?: string | null ;
|
|
2928
|
+
Address1?: string | null ;
|
|
2929
|
+
Address2?: string | null ;
|
|
2930
|
+
AgencyId?: number | null ;
|
|
2931
|
+
AgencyName?: string | null ;
|
|
2932
|
+
City?: string | null ;
|
|
2933
|
+
ContactFullName?: string | null ;
|
|
2934
|
+
ElasticScore?: number | null ;
|
|
2935
|
+
Email?: string | null ;
|
|
2936
|
+
Id: string;
|
|
2937
|
+
MainPhone?: string | null ;
|
|
2938
|
+
PolicyNumbers: Array<string>;
|
|
2939
|
+
ProducerId?: number | null ;
|
|
2940
|
+
ProducerName?: string | null ;
|
|
2941
|
+
ProducerPhone?: string | null ;
|
|
2942
|
+
ProducerProfilePicture?: string | null ;
|
|
2943
|
+
State?: string | null ;
|
|
2944
|
+
Type?: string | null ;
|
|
2945
|
+
Zip?: string | null ;
|
|
2946
|
+
}
|
|
2947
|
+
|
|
2948
|
+
export interface AmsSearchParametersDto {
|
|
2949
|
+
CompanyId: number;
|
|
2950
|
+
SearchTerm?: string | null ;
|
|
2951
|
+
}
|
|
2952
|
+
|
|
2953
|
+
export interface CrmToAms360CustomerDto {
|
|
2954
|
+
AccountExecShortName?: string | null ;
|
|
2955
|
+
AccountRepShortName?: string | null ;
|
|
2956
|
+
Ams360DataSource: string;
|
|
2957
|
+
CrmAccountId: string;
|
|
2958
|
+
GLBranchShortName?: string | null ;
|
|
2959
|
+
GLDepartmentShortName?: string | null ;
|
|
2960
|
+
GLDivisionShortName?: string | null ;
|
|
2961
|
+
GLGroupShortName?: string | null ;
|
|
2962
|
+
NaicsCode?: string | null ;
|
|
2963
|
+
}
|
|
2964
|
+
|
|
2965
|
+
export interface CrmToAms360SoldAccountDto {
|
|
2966
|
+
AccountName?: string | null ;
|
|
2967
|
+
AccountOwnerId?: number | null ;
|
|
2968
|
+
AccountOwnerName?: string | null ;
|
|
2969
|
+
AccountOwnerProfilePictureCdnFileName?: string | null ;
|
|
2970
|
+
Address?: string | null ;
|
|
2971
|
+
Ams360AccountId?: string | null ;
|
|
2972
|
+
CompanyId?: number | null ;
|
|
2973
|
+
CompanyName?: string | null ;
|
|
2974
|
+
CrmAccountCoreId: number;
|
|
2975
|
+
CrmAccountId: string;
|
|
2976
|
+
Email?: string | null ;
|
|
2977
|
+
Phone1?: string | null ;
|
|
2978
|
+
Phone2?: string | null ;
|
|
2979
|
+
Phone3?: string | null ;
|
|
2980
|
+
SearchablePhone1?: string | null ;
|
|
2981
|
+
SearchablePhone2?: string | null ;
|
|
2982
|
+
SearchablePhone3?: string | null ;
|
|
2983
|
+
SoldDate?: string | null ;
|
|
2984
|
+
}
|
|
2985
|
+
|
|
2986
|
+
export interface GLBranchDto {
|
|
2987
|
+
DataSource?: string | null ;
|
|
2988
|
+
Departments: Array<Partial<GlDepartmentDto>>;
|
|
2989
|
+
GLBrnchCode?: string | null ;
|
|
2990
|
+
GLDivCode?: string | null ;
|
|
2991
|
+
Name?: string | null ;
|
|
2992
|
+
ShortName?: string | null ;
|
|
2993
|
+
}
|
|
2994
|
+
|
|
2995
|
+
export interface GlDepartmentDto {
|
|
2996
|
+
DataSource?: string | null ;
|
|
2997
|
+
GLBrnchCode?: string | null ;
|
|
2998
|
+
GLDeptCode?: string | null ;
|
|
2999
|
+
Groups: Array<Partial<GlGroupDto>>;
|
|
3000
|
+
Name?: string | null ;
|
|
3001
|
+
ShortName?: string | null ;
|
|
3002
|
+
}
|
|
3003
|
+
|
|
3004
|
+
export interface GlDivisionDto {
|
|
3005
|
+
Branches: Array<Partial<GLBranchDto>>;
|
|
3006
|
+
DataSource?: string | null ;
|
|
3007
|
+
GLDivCode?: string | null ;
|
|
3008
|
+
Name?: string | null ;
|
|
3009
|
+
ShortName?: string | null ;
|
|
3010
|
+
}
|
|
3011
|
+
|
|
3012
|
+
export interface GlGroupDto {
|
|
3013
|
+
DataSource?: string | null ;
|
|
3014
|
+
GLDeptCode?: string | null ;
|
|
3015
|
+
GLGrpCode?: string | null ;
|
|
3016
|
+
Name?: string | null ;
|
|
3017
|
+
ShortName?: string | null ;
|
|
3018
|
+
}
|
|
3019
|
+
|
|
2913
3020
|
export interface LifeContactInfoDto {
|
|
2914
3021
|
EmailAddress: string;
|
|
2915
3022
|
PhoneNumber: string;
|
|
@@ -5309,113 +5416,6 @@ export interface CultureClubSiteSettingsUpsertDto {
|
|
|
5309
5416
|
NominateEmployeePageMobileImage?: File | null ;
|
|
5310
5417
|
}
|
|
5311
5418
|
|
|
5312
|
-
export interface CrmToAms360SoldAccountDto {
|
|
5313
|
-
AccountName?: string | null ;
|
|
5314
|
-
AccountOwnerId?: number | null ;
|
|
5315
|
-
AccountOwnerName?: string | null ;
|
|
5316
|
-
AccountOwnerProfilePictureCdnFileName?: string | null ;
|
|
5317
|
-
Address?: string | null ;
|
|
5318
|
-
Ams360AccountId?: string | null ;
|
|
5319
|
-
CompanyId?: number | null ;
|
|
5320
|
-
CompanyName?: string | null ;
|
|
5321
|
-
CrmAccountCoreId: number;
|
|
5322
|
-
CrmAccountId: string;
|
|
5323
|
-
Email?: string | null ;
|
|
5324
|
-
Phone1?: string | null ;
|
|
5325
|
-
Phone2?: string | null ;
|
|
5326
|
-
Phone3?: string | null ;
|
|
5327
|
-
SearchablePhone1?: string | null ;
|
|
5328
|
-
SearchablePhone2?: string | null ;
|
|
5329
|
-
SearchablePhone3?: string | null ;
|
|
5330
|
-
SoldDate?: string | null ;
|
|
5331
|
-
}
|
|
5332
|
-
|
|
5333
|
-
export interface Ams360InstancesV2CompaniesDto {
|
|
5334
|
-
Branches: Array<Partial<GLBranchDto>>;
|
|
5335
|
-
DataSource?: string | null ;
|
|
5336
|
-
DivisionName?: string | null ;
|
|
5337
|
-
DivisionShortName?: string | null ;
|
|
5338
|
-
GLDivCode?: string | null ;
|
|
5339
|
-
Id?: number | null ;
|
|
5340
|
-
LogoUrl?: string | null ;
|
|
5341
|
-
MarkUrl?: string | null ;
|
|
5342
|
-
Name?: string | null ;
|
|
5343
|
-
ShortName?: string | null ;
|
|
5344
|
-
}
|
|
5345
|
-
|
|
5346
|
-
export interface AmsSearchDto {
|
|
5347
|
-
AccountName?: string | null ;
|
|
5348
|
-
Address1?: string | null ;
|
|
5349
|
-
Address2?: string | null ;
|
|
5350
|
-
AgencyId?: number | null ;
|
|
5351
|
-
AgencyName?: string | null ;
|
|
5352
|
-
City?: string | null ;
|
|
5353
|
-
ContactFullName?: string | null ;
|
|
5354
|
-
ElasticScore?: number | null ;
|
|
5355
|
-
Email?: string | null ;
|
|
5356
|
-
Id: string;
|
|
5357
|
-
MainPhone?: string | null ;
|
|
5358
|
-
PolicyNumbers: Array<string>;
|
|
5359
|
-
ProducerId?: number | null ;
|
|
5360
|
-
ProducerName?: string | null ;
|
|
5361
|
-
ProducerPhone?: string | null ;
|
|
5362
|
-
ProducerProfilePicture?: string | null ;
|
|
5363
|
-
State?: string | null ;
|
|
5364
|
-
Type?: string | null ;
|
|
5365
|
-
Zip?: string | null ;
|
|
5366
|
-
}
|
|
5367
|
-
|
|
5368
|
-
export interface AmsSearchParametersDto {
|
|
5369
|
-
CompanyId: number;
|
|
5370
|
-
SearchTerm?: string | null ;
|
|
5371
|
-
}
|
|
5372
|
-
|
|
5373
|
-
export interface CrmToAms360CustomerDto {
|
|
5374
|
-
AccountExecShortName?: string | null ;
|
|
5375
|
-
AccountRepShortName?: string | null ;
|
|
5376
|
-
Ams360DataSource: string;
|
|
5377
|
-
CrmAccountId: string;
|
|
5378
|
-
GLBranchShortName?: string | null ;
|
|
5379
|
-
GLDepartmentShortName?: string | null ;
|
|
5380
|
-
GLDivisionShortName?: string | null ;
|
|
5381
|
-
GLGroupShortName?: string | null ;
|
|
5382
|
-
NaicsCode?: string | null ;
|
|
5383
|
-
}
|
|
5384
|
-
|
|
5385
|
-
export interface GLBranchDto {
|
|
5386
|
-
DataSource?: string | null ;
|
|
5387
|
-
Departments: Array<Partial<GlDepartmentDto>>;
|
|
5388
|
-
GLBrnchCode?: string | null ;
|
|
5389
|
-
GLDivCode?: string | null ;
|
|
5390
|
-
Name?: string | null ;
|
|
5391
|
-
ShortName?: string | null ;
|
|
5392
|
-
}
|
|
5393
|
-
|
|
5394
|
-
export interface GlDepartmentDto {
|
|
5395
|
-
DataSource?: string | null ;
|
|
5396
|
-
GLBrnchCode?: string | null ;
|
|
5397
|
-
GLDeptCode?: string | null ;
|
|
5398
|
-
Groups: Array<Partial<GlGroupDto>>;
|
|
5399
|
-
Name?: string | null ;
|
|
5400
|
-
ShortName?: string | null ;
|
|
5401
|
-
}
|
|
5402
|
-
|
|
5403
|
-
export interface GlDivisionDto {
|
|
5404
|
-
Branches: Array<Partial<GLBranchDto>>;
|
|
5405
|
-
DataSource?: string | null ;
|
|
5406
|
-
GLDivCode?: string | null ;
|
|
5407
|
-
Name?: string | null ;
|
|
5408
|
-
ShortName?: string | null ;
|
|
5409
|
-
}
|
|
5410
|
-
|
|
5411
|
-
export interface GlGroupDto {
|
|
5412
|
-
DataSource?: string | null ;
|
|
5413
|
-
GLDeptCode?: string | null ;
|
|
5414
|
-
GLGrpCode?: string | null ;
|
|
5415
|
-
Name?: string | null ;
|
|
5416
|
-
ShortName?: string | null ;
|
|
5417
|
-
}
|
|
5418
|
-
|
|
5419
5419
|
export interface AccountActivityOverviewDto {
|
|
5420
5420
|
NewProspects: number;
|
|
5421
5421
|
NewProspectsYtd: number;
|