@leavittsoftware/lg-core-typescript 5.1418.0 → 5.1419.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 +5 -0
- package/api4.leavitt.com.js.map +1 -1
- package/api4.leavitt.com.ts +18 -0
- package/package.json +1 -1
package/api4.leavitt.com.js
CHANGED
|
@@ -33,4 +33,9 @@ export var HartfordFulfillType;
|
|
|
33
33
|
HartfordFulfillType[HartfordFulfillType["Bop"] = 1] = "Bop";
|
|
34
34
|
HartfordFulfillType[HartfordFulfillType["Wc"] = 2] = "Wc";
|
|
35
35
|
})(HartfordFulfillType || (HartfordFulfillType = {}));
|
|
36
|
+
export var CarrierAppointmentCarrierStatus;
|
|
37
|
+
(function (CarrierAppointmentCarrierStatus) {
|
|
38
|
+
CarrierAppointmentCarrierStatus[CarrierAppointmentCarrierStatus["InActive"] = 0] = "InActive";
|
|
39
|
+
CarrierAppointmentCarrierStatus[CarrierAppointmentCarrierStatus["Active"] = 1] = "Active";
|
|
40
|
+
})(CarrierAppointmentCarrierStatus || (CarrierAppointmentCarrierStatus = {}));
|
|
36
41
|
//# sourceMappingURL=api4.leavitt.com.js.map
|
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":"AAgrDA,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;AAKD,MAAM,CAAN,IAAY,+BAGX;AAHD,WAAY,+BAA+B;IACvC,6FAAY,CAAA;IACZ,yFAAU,CAAA;AACd,CAAC,EAHW,+BAA+B,KAA/B,+BAA+B,QAG1C"}
|
package/api4.leavitt.com.ts
CHANGED
|
@@ -1668,10 +1668,21 @@ export interface CarrierAppointmentUpsertDto {
|
|
|
1668
1668
|
}
|
|
1669
1669
|
|
|
1670
1670
|
export interface CarrierDashboardDto {
|
|
1671
|
+
ActivePolicyCount?: number | null ;
|
|
1671
1672
|
Id?: number | null ;
|
|
1673
|
+
InactiveDate?: string | null ;
|
|
1674
|
+
IsFavorite?: boolean;
|
|
1675
|
+
LOBs: Array<Partial<CarrierDashboardLOBDto>>;
|
|
1672
1676
|
Name?: string | null ;
|
|
1673
1677
|
NumberOfActiveAppointments?: number | null ;
|
|
1674
1678
|
NumberOfPendingAppointments?: number | null ;
|
|
1679
|
+
Status: CarrierAppointmentCarrierStatusString;
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
export interface CarrierDashboardLOBDto {
|
|
1683
|
+
Id: number;
|
|
1684
|
+
IsArchived?: boolean;
|
|
1685
|
+
Name: string;
|
|
1675
1686
|
}
|
|
1676
1687
|
|
|
1677
1688
|
export interface CarrierDetailDto {
|
|
@@ -1745,3 +1756,10 @@ export enum HartfordFulfillType {
|
|
|
1745
1756
|
export type HartfordFulfillTypeDiscrete = 'Bop' | 'Wc';
|
|
1746
1757
|
export type HartfordFulfillTypeString = UnionConcat<HartfordFulfillTypeDiscrete, ", ">;
|
|
1747
1758
|
|
|
1759
|
+
export enum CarrierAppointmentCarrierStatus {
|
|
1760
|
+
InActive = 0,
|
|
1761
|
+
Active = 1
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1764
|
+
export type CarrierAppointmentCarrierStatusString = keyof typeof CarrierAppointmentCarrierStatus;
|
|
1765
|
+
|