@leavittsoftware/lg-core-typescript 5.1417.0 → 5.1418.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/api4.leavitt.com.js.map +1 -1
- package/api4.leavitt.com.ts +93 -1
- package/package.json +1 -1
package/api4.leavitt.com.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api4.leavitt.com.js","sourceRoot":"","sources":["api4.leavitt.com.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"api4.leavitt.com.js","sourceRoot":"","sources":["api4.leavitt.com.ts"],"names":[],"mappings":"AAqqDA,MAAM,CAAN,IAAY,wBAGX;AAHD,WAAY,wBAAwB;IAChC,2FAAkB,CAAA;IAClB,qFAAe,CAAA;AACnB,CAAC,EAHW,wBAAwB,KAAxB,wBAAwB,QAGnC;AAID,MAAM,CAAN,IAAY,qBAOX;AAPD,WAAY,qBAAqB;IAC7B,2EAAa,CAAA;IACb,6EAAc,CAAA;IACd,uEAAW,CAAA;IACX,+EAAe,CAAA;IACf,uEAAW,CAAA;IACX,yEAAY,CAAA;AAChB,CAAC,EAPW,qBAAqB,KAArB,qBAAqB,QAOhC;AAID,MAAM,CAAN,IAAY,qBAKX;AALD,WAAY,qBAAqB;IAC7B,yEAAY,CAAA;IACZ,6EAAc,CAAA;IACd,+EAAe,CAAA;IACf,uEAAW,CAAA;AACf,CAAC,EALW,qBAAqB,KAArB,qBAAqB,QAKhC;AAID,MAAM,CAAN,IAAY,UAOX;AAPD,WAAY,UAAU;IAClB,2CAAQ,CAAA;IACR,uDAAc,CAAA;IACd,mEAAoB,CAAA;IACpB,mDAAY,CAAA;IACZ,6CAAS,CAAA;IACT,yCAAO,CAAA;AACX,CAAC,EAPW,UAAU,KAAV,UAAU,QAOrB;AAID,MAAM,CAAN,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC3B,2DAAO,CAAA;IACP,yDAAM,CAAA;AACV,CAAC,EAHW,mBAAmB,KAAnB,mBAAmB,QAG9B"}
|
package/api4.leavitt.com.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { UnionConcat } from './enum-helpers'
|
|
7
7
|
import { IDatabaseAttachment } from './lg.net.system'
|
|
8
|
-
import { VehicleReservationStatusString, VehicleUnavailableReasonString, Company, LogoHeightTypeString, QuotingPromptTypeString, PersonalPropertyLineOfBusinessString, PersonalPropertyQuoteTypeString, JobRole, EmployeeChangeTransaction, Person, DistanceUnitTypeString, ApplicationToApplicationTag, EmailTemplateRecipient, EmailTemplateLog, EmploymentTypeString, CarrierAppointmentStatusString } from './lg.net.core'
|
|
8
|
+
import { VehicleReservationStatusString, VehicleUnavailableReasonString, Company, LogoHeightTypeString, QuotingPromptTypeString, PersonalPropertyLineOfBusinessString, PersonalPropertyQuoteTypeString, JobRole, EmployeeChangeTransaction, Person, DistanceUnitTypeString, ApplicationToApplicationTag, EmailTemplateRecipient, EmailTemplateLog, EmploymentTypeString, QuoteRequestContactMethodString, CFCQuoteTypeString, CarrierAppointmentStatusString } from './lg.net.core'
|
|
9
9
|
|
|
10
10
|
export interface ICompanySelect {
|
|
11
11
|
Id: number;
|
|
@@ -1534,6 +1534,98 @@ export interface WunderiteDataSourceDto {
|
|
|
1534
1534
|
Id: number;
|
|
1535
1535
|
}
|
|
1536
1536
|
|
|
1537
|
+
export interface CFCCreateDto {
|
|
1538
|
+
City: string;
|
|
1539
|
+
CompanyName: string;
|
|
1540
|
+
County?: string | null ;
|
|
1541
|
+
EffectiveDate: string;
|
|
1542
|
+
IsTest?: boolean;
|
|
1543
|
+
RaterUniqueId: string;
|
|
1544
|
+
RecaptchaUserResponse: string;
|
|
1545
|
+
State: string;
|
|
1546
|
+
Street1: string;
|
|
1547
|
+
Street2?: string | null ;
|
|
1548
|
+
TrackingCode?: string | null ;
|
|
1549
|
+
URL: string;
|
|
1550
|
+
Zip: string;
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
export interface CFCCreateResponseDto {
|
|
1554
|
+
Id: number;
|
|
1555
|
+
QuoteRequest: Partial<CFCQuoteRequestDto>;
|
|
1556
|
+
SessionToken?: string | null ;
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
export interface CFCQuoteRequestDto {
|
|
1560
|
+
ActivityCode?: string | null ;
|
|
1561
|
+
ActivityDisplayName?: string | null ;
|
|
1562
|
+
City?: string | null ;
|
|
1563
|
+
CompanyName?: string | null ;
|
|
1564
|
+
ContactName?: string | null ;
|
|
1565
|
+
County?: string | null ;
|
|
1566
|
+
EffectiveDate?: string | null ;
|
|
1567
|
+
Email?: string | null ;
|
|
1568
|
+
EmployeeCount?: number | null ;
|
|
1569
|
+
ExpirationDate?: string | null ;
|
|
1570
|
+
HasBeenFulfilled?: boolean;
|
|
1571
|
+
HasFulfillBeenRequested?: boolean;
|
|
1572
|
+
HasSelectedQuote?: boolean;
|
|
1573
|
+
Id: number;
|
|
1574
|
+
PhoneNumber?: string | null ;
|
|
1575
|
+
PreferredContactMethod?: QuoteRequestContactMethodString | null ;
|
|
1576
|
+
Quotes: Array<Partial<CFCQuoteDto>>;
|
|
1577
|
+
ScheduleOfInformation?: number | null ;
|
|
1578
|
+
State?: string | null ;
|
|
1579
|
+
Status?: string | null ;
|
|
1580
|
+
Street1?: string | null ;
|
|
1581
|
+
Street2?: string | null ;
|
|
1582
|
+
TotalRevenue?: string | null ;
|
|
1583
|
+
URL?: string | null ;
|
|
1584
|
+
Zip?: string | null ;
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
export interface CFCQuoteDto {
|
|
1588
|
+
Coverages: Array<Partial<CFCQuoteCoverageDto>>;
|
|
1589
|
+
CreatedDate: string;
|
|
1590
|
+
FinancialSummaryFee?: number | null ;
|
|
1591
|
+
FinancialSummaryPremiumBreakdown?: string | null ;
|
|
1592
|
+
FinancialSummaryTax?: number | null ;
|
|
1593
|
+
Id: number;
|
|
1594
|
+
Premium?: number | null ;
|
|
1595
|
+
QuoteReference?: number | null ;
|
|
1596
|
+
QuoteType: CFCQuoteTypeString;
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1599
|
+
export interface CFCQuoteCoverageDto {
|
|
1600
|
+
Category?: string | null ;
|
|
1601
|
+
Deductible?: number | null ;
|
|
1602
|
+
Id: number;
|
|
1603
|
+
Limit?: number | null ;
|
|
1604
|
+
Name?: string | null ;
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
export interface CFCUpsertDto {
|
|
1608
|
+
ActivityCode?: string | null ;
|
|
1609
|
+
City?: string | null ;
|
|
1610
|
+
CompanyName?: string | null ;
|
|
1611
|
+
ContactName?: string | null ;
|
|
1612
|
+
County?: string | null ;
|
|
1613
|
+
EffectiveDate?: string | null ;
|
|
1614
|
+
Email?: string | null ;
|
|
1615
|
+
EmployeeCount?: number | null ;
|
|
1616
|
+
ExpirationDate?: string | null ;
|
|
1617
|
+
Id: number;
|
|
1618
|
+
PhoneNumber?: string | null ;
|
|
1619
|
+
PreferredContactMethod?: QuoteRequestContactMethodString | null ;
|
|
1620
|
+
ScheduleOfInformation?: number | null ;
|
|
1621
|
+
State?: string | null ;
|
|
1622
|
+
Street1?: string | null ;
|
|
1623
|
+
Street2?: string | null ;
|
|
1624
|
+
TotalRevenue?: string | null ;
|
|
1625
|
+
URL?: string | null ;
|
|
1626
|
+
Zip?: string | null ;
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1537
1629
|
export interface CarrierAppointmentDocumentDto {
|
|
1538
1630
|
AddDocument?: boolean;
|
|
1539
1631
|
Document?: File | null ;
|