@leavittsoftware/lg-core-typescript 2.153.0 → 2.155.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 +17 -0
- 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":"AAsiEA,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,kBAIX;AAJD,WAAY,kBAAkB;IAC1B,mEAAY,CAAA;IACZ,uEAAc,CAAA;IACd,6EAAiB,CAAA;AACrB,CAAC,EAJW,kBAAkB,KAAlB,kBAAkB,QAI7B;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
|
@@ -326,6 +326,7 @@ export interface BenefitPointCarrier {
|
|
|
326
326
|
}
|
|
327
327
|
|
|
328
328
|
export interface CustomerQuoteDto {
|
|
329
|
+
Attachment: File | null;
|
|
329
330
|
CarrierName: string | null;
|
|
330
331
|
Id: number | null;
|
|
331
332
|
LineOfCoverage: CustomerLineOfCoverageString;
|
|
@@ -1240,6 +1241,7 @@ export interface ExpenseCashItemDto {
|
|
|
1240
1241
|
ExpenseCategoryId: number | null;
|
|
1241
1242
|
ExpenseFormId: number | null;
|
|
1242
1243
|
Id: number | null;
|
|
1244
|
+
Image: File | null;
|
|
1243
1245
|
Merchant: string | null;
|
|
1244
1246
|
RequestingCompanyId: number | null;
|
|
1245
1247
|
UpdateAttachment: boolean;
|
|
@@ -1304,6 +1306,7 @@ export interface HireDTO {
|
|
|
1304
1306
|
IpAddress: string | null;
|
|
1305
1307
|
IsAcctManagerOrRepOrCSR: boolean;
|
|
1306
1308
|
IsProducerOrExecutive: boolean;
|
|
1309
|
+
JobOfferLetter: File | null;
|
|
1307
1310
|
JobRoles: Array<Partial<JobRole>> | null;
|
|
1308
1311
|
LastName: string | null;
|
|
1309
1312
|
MiddleName: string | null;
|
|
@@ -1372,6 +1375,7 @@ export interface RehireDTO {
|
|
|
1372
1375
|
IpAddress: string | null;
|
|
1373
1376
|
IsAcctManagerOrRepOrCSR: boolean;
|
|
1374
1377
|
IsProducerOrExecutive: boolean;
|
|
1378
|
+
JobOfferLetter: File | null;
|
|
1375
1379
|
JobRoles: Array<Partial<JobRole>> | null;
|
|
1376
1380
|
ModelAfter: string | null;
|
|
1377
1381
|
OrderEquipment: boolean;
|
|
@@ -1455,6 +1459,19 @@ export interface ReorderEducationSequenceDto {
|
|
|
1455
1459
|
NewOrder: Array<Partial<SequenceDto>> | null;
|
|
1456
1460
|
}
|
|
1457
1461
|
|
|
1462
|
+
export interface UpsertCourseDto {
|
|
1463
|
+
CategoryId: number | null;
|
|
1464
|
+
Certificate: File | null;
|
|
1465
|
+
Description: string | null;
|
|
1466
|
+
Id: number | null;
|
|
1467
|
+
Image: File | null;
|
|
1468
|
+
Reviewable: boolean;
|
|
1469
|
+
ShortDescription: string | null;
|
|
1470
|
+
Title: string | null;
|
|
1471
|
+
UpdateCertificate: boolean;
|
|
1472
|
+
UpdateImage: boolean;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1458
1475
|
export interface UpsertQuestionsDto {
|
|
1459
1476
|
Questions: Array<Partial<EducationQuestion>> | null;
|
|
1460
1477
|
}
|