@leavittsoftware/lg-core-typescript 2.131.0 → 2.133.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.js.map +1 -1
- package/api3.leavitt.com.ts +66 -1
- package/package.json +1 -1
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":"AA03DA,MAAM,CAAN,IAAY,UAKX;AALD,WAAY,UAAU;IAClB,2CAAQ,CAAA;IACR,uDAAc,CAAA;IACd,mEAAoB,CAAA;IACpB,mDAAY,CAAA;AAChB,CAAC,EALW,UAAU,KAAV,UAAU,QAKrB;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
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { IDatabaseAttachment } from './lg.net.system'
|
|
7
7
|
import { AutoDriver,AutoVehicle,EducationTypeString,OccupantTypeString,HomeStyleString,ResidenceTypeString,CoApplicantRelationshipToInsuredString,ConstructionTypeString,FoundationTypeString,NumberOfStoriesString,HeatTypeString,RoofTypeString,OverallQualityString,PersonalPropertyLastPageVisitedString,PersonalPropertyLineOfBusinessString,PersonalPropertySiteSeedString,LifeQuoteRequestStatusString,GenderTypeString,ProductTypeString,TobaccoTypeString,HealthRatingTypeString } from './lg.net.leavittlink'
|
|
8
8
|
import { ManualEntryBudget,ManualEntryGeneralLedger,ManualEntryProduction } from './lg.net.ams360datawarehouse'
|
|
9
|
-
import { StationeryPrice,Stationery,AgencyLOBPercentage,Company,CustomerLineOfCoverageString,PLGameScoreboardToPlayerGroup,PrizeDistributionOptionString,PLGamePrize,ApplicationToApplicationTag,Person,PermissionToApplication,EmploymentTypeString,CompanyAddress,JobRole,SignatureValue,SignatureTemplateToCompany,DocumentType,Document,ServiceToChampion,ServiceToCompany,ConnectedStatusString,CompanyLogo,CompanyOwnership,CLGamePoint,CLGameSegment,CLGameScoreboardToPlayerGroup,CLGamePrize } from './lg.net.core'
|
|
9
|
+
import { StationeryPrice,Stationery,Ams360PersonRole,Ams360SupplementalCode,AgencyLOBPercentage,Company,CustomerLineOfCoverageString,PLGameScoreboardToPlayerGroup,PrizeDistributionOptionString,PLGamePrize,ApplicationToApplicationTag,Person,PermissionToApplication,EmploymentTypeString,CompanyAddress,JobRole,SignatureValue,SignatureTemplateToCompany,DocumentType,Document,ServiceToChampion,ServiceToCompany,ConnectedStatusString,CompanyLogo,CompanyOwnership,CLGamePoint,CLGameSegment,CLGameScoreboardToPlayerGroup,CLGamePrize } from './lg.net.core'
|
|
10
10
|
|
|
11
11
|
export interface BookedByPersonId {
|
|
12
12
|
Booked_TTM: Partial<number>;
|
|
@@ -214,6 +214,14 @@ export interface StationeryOrderItemDto {
|
|
|
214
214
|
StationeryId: number;
|
|
215
215
|
}
|
|
216
216
|
|
|
217
|
+
export interface ViewableUsersPersonDto {
|
|
218
|
+
FirstName: string | null;
|
|
219
|
+
LastName: string | null;
|
|
220
|
+
PeopleGroupName: string | null;
|
|
221
|
+
PersonId: number;
|
|
222
|
+
WaysIncluded: string | null;
|
|
223
|
+
}
|
|
224
|
+
|
|
217
225
|
export interface RicochetLeadDto {
|
|
218
226
|
Address1: string | null;
|
|
219
227
|
Address2: string | null;
|
|
@@ -230,6 +238,58 @@ export interface RicochetLeadDto {
|
|
|
230
238
|
ZipCode: string | null;
|
|
231
239
|
}
|
|
232
240
|
|
|
241
|
+
export interface Ams360EmpCodeDto {
|
|
242
|
+
Code: string | null;
|
|
243
|
+
DatabaseId: number;
|
|
244
|
+
DatabaseName: string | null;
|
|
245
|
+
Email: string | null;
|
|
246
|
+
EndDate: string | null;
|
|
247
|
+
FirstName: string | null;
|
|
248
|
+
Id: number;
|
|
249
|
+
IsExpired: boolean;
|
|
250
|
+
IsProd: boolean;
|
|
251
|
+
IsRep: boolean;
|
|
252
|
+
LastName: string | null;
|
|
253
|
+
StartDate: string;
|
|
254
|
+
Status: string | null;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
export interface Ams360EmpCodesDto {
|
|
258
|
+
Agencies: Array<Partial<EmpCodeInstanceDto>> | null;
|
|
259
|
+
Ams360DatabaseId: number;
|
|
260
|
+
Ams360SupplementalCodes: Array<Partial<Ams360SupplementalCodeDto>> | null;
|
|
261
|
+
AssignedRoles: Array<Partial<Ams360PersonRoleDto>> | null;
|
|
262
|
+
Database: string | null;
|
|
263
|
+
EmpCode: Partial<Ams360EmpCodeDto> | null;
|
|
264
|
+
Status: string | null;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
export interface Ams360PersonRoleDto {
|
|
268
|
+
EmpCodeId: number;
|
|
269
|
+
InstanceId: number;
|
|
270
|
+
IsManual: boolean;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
export interface Ams360ProducerCodeTypeDto {
|
|
274
|
+
Id: number;
|
|
275
|
+
Name: string | null;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
export interface Ams360SupplementalCodeDto {
|
|
279
|
+
EmpCodeId: number;
|
|
280
|
+
Id: number;
|
|
281
|
+
InstanceId: number;
|
|
282
|
+
Name: string | null;
|
|
283
|
+
ProducerCodeType: Partial<Ams360ProducerCodeTypeDto> | null;
|
|
284
|
+
ProducerCodeTypeId: number;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
export interface Ams360UpsertDto {
|
|
288
|
+
Ams360PersonRole: Partial<Ams360PersonRole> | null;
|
|
289
|
+
Ams360SupplementalCode: Partial<Ams360SupplementalCode> | null;
|
|
290
|
+
Id: number;
|
|
291
|
+
}
|
|
292
|
+
|
|
233
293
|
export interface BookOfBusinessChangeDto {
|
|
234
294
|
AgencyLOBPercentages: Array<Partial<AgencyLOBPercentage>> | null;
|
|
235
295
|
Amount: Partial<number> | null;
|
|
@@ -240,6 +300,11 @@ export interface BookOfBusinessChangeDto {
|
|
|
240
300
|
Id: number;
|
|
241
301
|
}
|
|
242
302
|
|
|
303
|
+
export interface EmpCodeInstanceDto {
|
|
304
|
+
CompanyName: string | null;
|
|
305
|
+
InstanceId: number | null;
|
|
306
|
+
}
|
|
307
|
+
|
|
243
308
|
export interface ManualEntryBudgetDto extends ManualEntryBudget {
|
|
244
309
|
CompanyId: number;
|
|
245
310
|
CompanyName: string | null;
|