@leavittsoftware/lg-core-typescript 5.1410.0 → 5.1411.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 +68 -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":"AA4jDA,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 } from './lg.net.core'
|
|
8
|
+
import { VehicleReservationStatusString, VehicleUnavailableReasonString, Company, LogoHeightTypeString, QuotingPromptTypeString, PersonalPropertyLineOfBusinessString, PersonalPropertyQuoteTypeString, JobRole, EmployeeChangeTransaction, Person, DistanceUnitTypeString, ApplicationToApplicationTag, EmailTemplateRecipient, EmailTemplateLog, EmploymentTypeString, CarrierAppointmentStatusString } from './lg.net.core'
|
|
9
9
|
|
|
10
10
|
export interface ICompanySelect {
|
|
11
11
|
Id: number;
|
|
@@ -1523,6 +1523,73 @@ export interface WunderiteDataSourceDto {
|
|
|
1523
1523
|
Id: number;
|
|
1524
1524
|
}
|
|
1525
1525
|
|
|
1526
|
+
export interface CarrierAppointmentDocumentDto {
|
|
1527
|
+
AddDocument?: boolean;
|
|
1528
|
+
Document?: File | null ;
|
|
1529
|
+
FileName?: string | null ;
|
|
1530
|
+
Id?: number | null ;
|
|
1531
|
+
RemoveDocument?: boolean;
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
export interface CarrierAppointmentDto {
|
|
1535
|
+
CarrierId?: number | null ;
|
|
1536
|
+
CompanySettingId?: number | null ;
|
|
1537
|
+
EndDate?: string | null ;
|
|
1538
|
+
Id?: number | null ;
|
|
1539
|
+
Lobs: Array<Partial<CarrierAppointmentLobDto>>;
|
|
1540
|
+
StartDate?: string | null ;
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
export interface CarrierAppointmentLobDto {
|
|
1544
|
+
Id?: number | null ;
|
|
1545
|
+
Name?: string | null ;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
export interface CarrierAppointmentUpsertDto {
|
|
1549
|
+
CarrierId?: number | null ;
|
|
1550
|
+
CarrierName?: string | null ;
|
|
1551
|
+
Comments?: string | null ;
|
|
1552
|
+
CompanyContactPersonId?: number | null ;
|
|
1553
|
+
CompanySettingId?: number | null ;
|
|
1554
|
+
Documents: Array<Partial<CarrierAppointmentDocumentDto>>;
|
|
1555
|
+
EndDate?: string | null ;
|
|
1556
|
+
Id?: number | null ;
|
|
1557
|
+
Lobs: Array<Partial<CarrierAppointmentLobDto>>;
|
|
1558
|
+
Reason?: string | null ;
|
|
1559
|
+
StartDate?: string | null ;
|
|
1560
|
+
Status?: CarrierAppointmentStatusString | null ;
|
|
1561
|
+
UpdateDocuments?: boolean;
|
|
1562
|
+
UpdateLobs?: boolean;
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
export interface CarrierDashboardDto {
|
|
1566
|
+
Id?: number | null ;
|
|
1567
|
+
Name?: string | null ;
|
|
1568
|
+
NumberOfActiveAppointments?: number | null ;
|
|
1569
|
+
NumberOfPendingAppointments?: number | null ;
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
export interface CarrierDetailDto {
|
|
1573
|
+
ActiveStates: Array<Partial<CarrierStateDto>>;
|
|
1574
|
+
Appointments: Array<Partial<CarrierAppointmentDto>>;
|
|
1575
|
+
Id?: number | null ;
|
|
1576
|
+
Name?: string | null ;
|
|
1577
|
+
PendingStates: Array<Partial<CarrierStateDto>>;
|
|
1578
|
+
States: Array<Partial<CarrierStateDto>>;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
export interface CarrierStateDto {
|
|
1582
|
+
EndDate?: string | null ;
|
|
1583
|
+
Id?: number | null ;
|
|
1584
|
+
Name?: string | null ;
|
|
1585
|
+
StartDate?: string | null ;
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
export interface GetCarrierAppointmentSiteDataDto {
|
|
1589
|
+
AppointmentsUnderReview: number;
|
|
1590
|
+
IsAdmin?: boolean;
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1526
1593
|
export interface DomoBookedData {
|
|
1527
1594
|
TotalBooked: number;
|
|
1528
1595
|
}
|