ca-components 2.1.152 → 2.1.153
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/index.d.ts
CHANGED
|
@@ -3191,6 +3191,64 @@ interface PayrollPeriodDriverResponse {
|
|
|
3191
3191
|
sums?: any | null;
|
|
3192
3192
|
}
|
|
3193
3193
|
|
|
3194
|
+
interface PayrollReportTableResponse {
|
|
3195
|
+
id?: number;
|
|
3196
|
+
description?: string | null;
|
|
3197
|
+
subtotal?: number;
|
|
3198
|
+
date?: string;
|
|
3199
|
+
recurring?: boolean;
|
|
3200
|
+
currentRecurrance?: number | null;
|
|
3201
|
+
reorderItem?: boolean;
|
|
3202
|
+
}
|
|
3203
|
+
|
|
3204
|
+
interface PayrollReport {
|
|
3205
|
+
id?: number;
|
|
3206
|
+
fullName: string;
|
|
3207
|
+
userId: number;
|
|
3208
|
+
avatar: string | null;
|
|
3209
|
+
periodStart?: string;
|
|
3210
|
+
periodEnd?: string;
|
|
3211
|
+
payrollNumber?: string | null;
|
|
3212
|
+
daysUntilPayment: number;
|
|
3213
|
+
mileagePay?: number;
|
|
3214
|
+
earnings?: number;
|
|
3215
|
+
flatPay?: number;
|
|
3216
|
+
salary?: number | null;
|
|
3217
|
+
extraStopPay?: number;
|
|
3218
|
+
extraStopCount?: number;
|
|
3219
|
+
loadCount?: number;
|
|
3220
|
+
payrollDeadLine: {
|
|
3221
|
+
numberOfDays: number;
|
|
3222
|
+
period: string;
|
|
3223
|
+
};
|
|
3224
|
+
perMilesEntity?: {
|
|
3225
|
+
emptyMile: number;
|
|
3226
|
+
loadedMile: number;
|
|
3227
|
+
perStop: number;
|
|
3228
|
+
};
|
|
3229
|
+
includedDeductions?: Array<PayrollReportTableResponse> | null;
|
|
3230
|
+
excludedDeductions?: Array<PayrollReportTableResponse> | null;
|
|
3231
|
+
totalDeduction?: number;
|
|
3232
|
+
includedCredits?: Array<PayrollReportTableResponse> | null;
|
|
3233
|
+
excludedCredits?: Array<PayrollReportTableResponse> | null;
|
|
3234
|
+
totalCredits?: number;
|
|
3235
|
+
includedBonuses?: Array<PayrollReportTableResponse> | null;
|
|
3236
|
+
excludedBonuses?: Array<PayrollReportTableResponse> | null;
|
|
3237
|
+
totalBonus?: number;
|
|
3238
|
+
includedLoads?: Array<PayrollLoadMinimalResponse> | null;
|
|
3239
|
+
excludedLoads?: Array<PayrollLoadMinimalResponse> | null;
|
|
3240
|
+
includedFuels?: Array<PayrollReportTableResponse> | null;
|
|
3241
|
+
excludedFuels?: Array<PayrollReportTableResponse> | null;
|
|
3242
|
+
mapLocations?: Array<any> | null;
|
|
3243
|
+
sums?: any | null;
|
|
3244
|
+
payments?: Array<PayrollReportTableResponse> | null;
|
|
3245
|
+
status: {
|
|
3246
|
+
name: string;
|
|
3247
|
+
id: number;
|
|
3248
|
+
};
|
|
3249
|
+
debt: number;
|
|
3250
|
+
}
|
|
3251
|
+
|
|
3194
3252
|
interface OptionModel {
|
|
3195
3253
|
id?: number;
|
|
3196
3254
|
number?: number;
|
|
@@ -6245,64 +6303,6 @@ declare enum ePeriodTitleType {
|
|
|
6245
6303
|
BONUS = "Bonus"
|
|
6246
6304
|
}
|
|
6247
6305
|
|
|
6248
|
-
interface PayrollReportTableResponse {
|
|
6249
|
-
id?: number;
|
|
6250
|
-
description?: string | null;
|
|
6251
|
-
subtotal?: number;
|
|
6252
|
-
date?: string;
|
|
6253
|
-
recurring?: boolean;
|
|
6254
|
-
currentRecurrance?: number | null;
|
|
6255
|
-
reorderItem?: boolean;
|
|
6256
|
-
}
|
|
6257
|
-
|
|
6258
|
-
interface PayrollReport {
|
|
6259
|
-
id?: number;
|
|
6260
|
-
fullName: string;
|
|
6261
|
-
userId: number;
|
|
6262
|
-
avatar: string | null;
|
|
6263
|
-
periodStart?: string;
|
|
6264
|
-
periodEnd?: string;
|
|
6265
|
-
payrollNumber?: string | null;
|
|
6266
|
-
daysUntilPayment: number;
|
|
6267
|
-
mileagePay?: number;
|
|
6268
|
-
earnings?: number;
|
|
6269
|
-
flatPay?: number;
|
|
6270
|
-
salary?: number | null;
|
|
6271
|
-
extraStopPay?: number;
|
|
6272
|
-
extraStopCount?: number;
|
|
6273
|
-
loadCount?: number;
|
|
6274
|
-
payrollDeadLine: {
|
|
6275
|
-
numberOfDays: number;
|
|
6276
|
-
period: string;
|
|
6277
|
-
};
|
|
6278
|
-
perMilesEntity?: {
|
|
6279
|
-
emptyMile: number;
|
|
6280
|
-
loadedMile: number;
|
|
6281
|
-
perStop: number;
|
|
6282
|
-
};
|
|
6283
|
-
includedDeductions?: Array<PayrollReportTableResponse> | null;
|
|
6284
|
-
excludedDeductions?: Array<PayrollReportTableResponse> | null;
|
|
6285
|
-
totalDeduction?: number;
|
|
6286
|
-
includedCredits?: Array<PayrollReportTableResponse> | null;
|
|
6287
|
-
excludedCredits?: Array<PayrollReportTableResponse> | null;
|
|
6288
|
-
totalCredits?: number;
|
|
6289
|
-
includedBonuses?: Array<PayrollReportTableResponse> | null;
|
|
6290
|
-
excludedBonuses?: Array<PayrollReportTableResponse> | null;
|
|
6291
|
-
totalBonus?: number;
|
|
6292
|
-
includedLoads?: Array<PayrollLoadMinimalResponse> | null;
|
|
6293
|
-
excludedLoads?: Array<PayrollLoadMinimalResponse> | null;
|
|
6294
|
-
includedFuels?: Array<PayrollReportTableResponse> | null;
|
|
6295
|
-
excludedFuels?: Array<PayrollReportTableResponse> | null;
|
|
6296
|
-
mapLocations?: Array<any> | null;
|
|
6297
|
-
sums?: any | null;
|
|
6298
|
-
payments?: Array<PayrollReportTableResponse> | null;
|
|
6299
|
-
status: {
|
|
6300
|
-
name: string;
|
|
6301
|
-
id: number;
|
|
6302
|
-
};
|
|
6303
|
-
debt: number;
|
|
6304
|
-
}
|
|
6305
|
-
|
|
6306
6306
|
declare class CaPeriodContentComponent {
|
|
6307
6307
|
isOpen: boolean;
|
|
6308
6308
|
type: PayrollTypeEnum;
|
|
@@ -9988,4 +9988,4 @@ declare class CaToolbarTabSwitchComponent implements AfterViewInit {
|
|
|
9988
9988
|
}
|
|
9989
9989
|
|
|
9990
9990
|
export { CaActivateModalComponent, CaActivityLogListComponent, CaAppTooltipV2Component, CaChartComponent, CaChartManagerComponent, CaCheckboxComponent, CaCheckboxSelectedCountComponent, CaCommentsComponent, CaComponentsLibModule, CaContactsCardComponent, CaCustomCardComponent, CaCustomScrollbarComponent, CaDeactivateModalComponent, CaDeleteModalComponent, CaDetailsDropdownComponent, CaDetailsTitleCardComponent, CaDropdownMenuComponent, CaFactoringDropdownComponent, CaFilesCountComponent, CaFilterComponent, CaFilterDropdownComponent, CaFilterListDropdownComponent, CaFilterStateDropdownComponent, CaFleetFilterComponent, CaFuelPricesRangeComponent, CaHeatmapUsaComponent, CaIconDropdownComponent, CaInputAddressDropdownComponent, CaInputComponent, CaInputDatetimePickerComponent, CaInputDropdownComponent, CaInputDropdownTestComponent, CaInputNoteComponent, CaInputRadiobuttonsComponent, CaItemsDropdownComponent, CaLastFuelPriceProgressComponent, CaLoadPickupDeliveryComponent, CaLoadStatusComponent, CaLoadStatusLogComponent, CaMainTableComponent, CaMapComponent, CaMapDropdownComponent, CaMapListCardComponent, CaMapListComponent, CaModalButtonComponent, CaModalComponent, CaModalItemsComponent, CaModalSpinnerComponent, CaMoveModalComponent, CaNoteComponent, CaNoteContainerComponent, CaPayrollListSummaryOverviewComponent, CaPayrollListSummaryOverviewTableComponent, CaPeriodContentComponent, CaProfileImageComponent, CaProgressBarV2Component, CaProgressExpirationComponent, CaRangeSliderComponent, CaRatingReviewComponent, CaResetTableModalComponent, CaRightSidePanelCompanyComponent, CaRightSidePanelComponent, CaRightSidePanelMenuComponent, CaRightSidePanelTopBarComponent, CaSearchMultipleStates2Component, CaSearchMultipleStatesComponent, CaSearchMultipleStatesService, CaShowMoreComponent, CaSortDropdownComponent, CaSortingCardDropdownComponent, CaSpinnerComponent, CaStatusChangeDropdownComponent, CaSvgPipe, CaTabSwitchComponent, CaTableCardViewComponent, CaToastMessagesComponent, CaTodoComponent, CaToolbarDropdownComponent, CaToolbarTabSwitchComponent, CaTooltipListComponent, CaTruckTrailerProgresBarComponent, CaUploadFilesComponent, CaVehicleListComponent, CaVoidModalComponent, ChartColorsStringEnum, ChartEventTypesStringEnum, ChartFontPropertiesStringEnum, ChartImagesStringEnum, ChartPluginIdsStringEnum, ConfirmationModalButtonConstants, CubicInterpolationStringEnum, DateFormatPipe, DateFromStringPipe, DateTimeHelper, DateWaitTimePipe, DispatchStatusColorPipe, DropdownLoadStatusColorPipe, DropdownMenuContentConditionalItemsHelper, DropdownMenuContentConstants, DropdownMenuContentHelper, DropdownWidthPipe, EChartAnnotation, EChartAnnotationType, EChartEventProperties, FilterBySearchTermPipe, FormatCityStatePipe, FormatCurrencyPipe, FormatDurationPipe, FuelPricesRangeConstants, FuelPricesRangePipe, GoogleMapEnum, GpsLocationConstants, GpsLocationHelper, GpsType, HighlightSearchPipe, InputTestComponent, LastFuelPriceProgressHelper, LoadStatusBackgroundColorPipe, LoadStatusColorPipe, LoadStatusColorsPipe, MapConstants, MapDropdownSvgRoutes, MapHelper, MapInfoWindowOptionsConstants, MapMarkerIconHelper, MapMarkerIconService, MapMarkerIconsConstants, MapOptionsConstants, MethodsCalculationsHelper, NFormatterPipe, NameInitialsPipe, PayrollDeadlinePeriod, PayrollTypeEnum, PickupDeliveryBlockComponent, PmItemPipe, ProgressBarComponent, ProgressBarLinePipe, SafeHtmlPipe, SearchMultipleStatesConstant, SelectedItemPipe, SortDropdownEnum, SortOrder, TableHighlightSearchTextPipe, ThousandFormatterPipe, ThousandSeparatorPipe, ThousandToShortFormatPipe, TimeFilterHelper, ToLowerCasePipe, ToolbarFilterStringEnum, TruckTrailerColorFinderPipe, TruncatePipe, UnitPositionPipe, UserHelper, UserNameInitialsPipe, eAnimationState, eChartTypesString, eColor, eCommonElement, eDateTimeFormats, eDispatchStatus, eDropZoneFileType, eDropdownMenu$1 as eDropdownMenu, eFileAction, eFileDropZoneAction, eFileSize, eFileType, eFileUploadPage, eFilterColor, eFilterDropdownEnum, eFilterSortingKey, eFilterTime, eFleetFilterItemType, eGeneralActions, eGpsHeadingDirection, eGpsMotionStatus, eLoadFilter, eLoadStatus, eMapMarkerStopType, eMapMarkerString, eModalButtonClassType, eModalButtonSize, eModalItems, ePeriodTitleType, ePlacement, ePosition, eReviewState, eSharedString, eStringPlaceholder, eStyleProperty, eStyling, eTemplateType, eThousandSeparatorFormat, eToastType, eTrailerName, eTruckNameString, eUnit, eVehicleList, emptyValueValidator, userInfoEnum, uuidv4 };
|
|
9991
|
-
export type { AddressData, AddressList, ColumnConfig, CommandProperties, CommandsHandler, ComponentData, DriverInfo, DriverMinimalResponse, DriverShortResponse, ExtraPayments, IBaseDataset, ICaInput, ICaInputDateTimePicker, ICaInputWithDropdown, ICaMapProps, IChartAnnotation, IChartBoundaries, IChartCenterLabel, IChartConfiguration, IChartData, IChartDatasetHover, IChartLegendConfig, IChartLegendProperty, IColumnCheckAction, IComment, ICompanyUser, IConfirmationModalButtons, IContact, IContactDepartment, ICountry, IDocumentReviewInputEvent, IDropBackgroundEvent, IDropZoneConfig, IDropZoneOptionConfig, IDropZoneSettings, IDropdownItem, IDropdownMenuItem, IDropdownMenuOptionEmit, IFactoringCheckboxItem, IFactoringExportItem, IFileConfig, IFileEvent, IFileOptionConfig, IFilterAction, IFilterDropdownConfiguration, IFilterDropdownList, IFleetFilterData, IFleetFilterItemEmit, IFleetFilterTrailer, IFleetFilterTrailerType, IFleetFilterTruck, IFleetFilterTruckType, IGpsCurrentLocation, IGpsHeadingInfo, IGpsProgress, IIconDropdownConfig, IIconDropdownItem, IItemsDropdownConfig, IItemsDropdownList, IItemsRowTemplate, ILineDataset, IMapAreaFilter, IMapBounds, IMapBoundsZoom, IMapColor, IMapDashedRouteIcon, IMapDashedRouteStyle, IMapList, IMapMarkers, IMapMarkersIcon, IMapOptions, IMapPagination, IMapRoutePath, IMapSelectedMarkerData, IMapStyles, IMarkerLabel, IModalData, IModalItemsConfig, IMultipleInput, IProgressBarColorConfig, IProgressBarData, IRangeSliderConfig, IReviewFileConfig, IRouteLocation, IRoutePath, ISearchQueryItem, ISlider, ISortDropdownAction, ISortEmit, IState, ITableColumn, ITimeOptions, IUSerAvatarFile, IUploadFilesConfig, IUser, IVehicleListActionsEmit, IVehicleListConfig, InputAddressCommandsString, LiveTrackingBaseResponse, LoadDelivery, LoadListLoadStopResponse, LoadPickup, LoadStatusHistoryResponse, LoadStopLoadListResponse, LoadType, LongLat$1 as LongLat, MapDropdownClusterItem, MapDropdownContent, MapDropdownContentItem, MilesStopPayrollResponse, MovementResponse, NotificationModel, PaymentComponentData, PaymentSum, PayrollBonusMinimalResponse, PayrollBonusResponse, PayrollCommissionTotalSum, PayrollCreditMinimalResponse, PayrollCreditResponse, PayrollDeadlineShortResponse, PayrollDeductionMinimalResponse, PayrollDeductionResponse, PayrollDriverCommissionByIdResponse, PayrollDriverCommissionResponse, PayrollDriverFlatRateClosedByIdResponse, PayrollDriverMileageResponse, PayrollFlatRateTotalSum, PayrollFuelMinimalResponse, PayrollListSummaryOverview, PayrollLoadMinimalResponse, PayrollLoadStopMinimalResponse, PayrollMapLocation, PayrollOwnerClosedResponse, PayrollOwnerResponse, PayrollPaymentResponse, PayrollPaymentsMinimalResponse, PayrollPeriodDriverResponse, PerMileModel, RepairUnitType, SentAddressData, SortColumn, TableCardBodyActions, Tabs, VehicleListResponse, formattedComponentData };
|
|
9991
|
+
export type { AddressData, AddressList, ColumnConfig, CommandProperties, CommandsHandler, ComponentData, DriverInfo, DriverMinimalResponse, DriverShortResponse, ExtraPayments, IBaseDataset, ICaInput, ICaInputDateTimePicker, ICaInputWithDropdown, ICaMapProps, IChartAnnotation, IChartBoundaries, IChartCenterLabel, IChartConfiguration, IChartData, IChartDatasetHover, IChartLegendConfig, IChartLegendProperty, IColumnCheckAction, IComment, ICompanyUser, IConfirmationModalButtons, IContact, IContactDepartment, ICountry, IDocumentReviewInputEvent, IDropBackgroundEvent, IDropZoneConfig, IDropZoneOptionConfig, IDropZoneSettings, IDropdownItem, IDropdownMenuItem, IDropdownMenuOptionEmit, IFactoringCheckboxItem, IFactoringExportItem, IFileConfig, IFileEvent, IFileOptionConfig, IFilterAction, IFilterDropdownConfiguration, IFilterDropdownList, IFleetFilterData, IFleetFilterItemEmit, IFleetFilterTrailer, IFleetFilterTrailerType, IFleetFilterTruck, IFleetFilterTruckType, IGpsCurrentLocation, IGpsHeadingInfo, IGpsProgress, IIconDropdownConfig, IIconDropdownItem, IItemsDropdownConfig, IItemsDropdownList, IItemsRowTemplate, ILineDataset, IMapAreaFilter, IMapBounds, IMapBoundsZoom, IMapColor, IMapDashedRouteIcon, IMapDashedRouteStyle, IMapList, IMapMarkers, IMapMarkersIcon, IMapOptions, IMapPagination, IMapRoutePath, IMapSelectedMarkerData, IMapStyles, IMarkerLabel, IModalData, IModalItemsConfig, IMultipleInput, IProgressBarColorConfig, IProgressBarData, IRangeSliderConfig, IReviewFileConfig, IRouteLocation, IRoutePath, ISearchQueryItem, ISlider, ISortDropdownAction, ISortEmit, IState, ITableColumn, ITimeOptions, IUSerAvatarFile, IUploadFilesConfig, IUser, IVehicleListActionsEmit, IVehicleListConfig, InputAddressCommandsString, LiveTrackingBaseResponse, LoadDelivery, LoadListLoadStopResponse, LoadPickup, LoadStatusHistoryResponse, LoadStopLoadListResponse, LoadType, LongLat$1 as LongLat, MapDropdownClusterItem, MapDropdownContent, MapDropdownContentItem, MilesStopPayrollResponse, MovementResponse, NotificationModel, PaymentComponentData, PaymentSum, PayrollBonusMinimalResponse, PayrollBonusResponse, PayrollCommissionTotalSum, PayrollCreditMinimalResponse, PayrollCreditResponse, PayrollDeadlineShortResponse, PayrollDeductionMinimalResponse, PayrollDeductionResponse, PayrollDriverCommissionByIdResponse, PayrollDriverCommissionResponse, PayrollDriverFlatRateClosedByIdResponse, PayrollDriverMileageResponse, PayrollFlatRateTotalSum, PayrollFuelMinimalResponse, PayrollListSummaryOverview, PayrollLoadMinimalResponse, PayrollLoadStopMinimalResponse, PayrollMapLocation, PayrollOwnerClosedResponse, PayrollOwnerResponse, PayrollPaymentResponse, PayrollPaymentsMinimalResponse, PayrollPeriodDriverResponse, PayrollReport, PayrollReportTableResponse, PerMileModel, RepairUnitType, SentAddressData, SortColumn, TableCardBodyActions, Tabs, VehicleListResponse, formattedComponentData };
|
|
@@ -30,3 +30,5 @@ export * from './payroll-payment-response';
|
|
|
30
30
|
export * from './payroll-payments-minimal-response';
|
|
31
31
|
export * from './payroll-period-input.type';
|
|
32
32
|
export * from './per-mile-model';
|
|
33
|
+
export * from './payroll-report.type';
|
|
34
|
+
export * from './payroll-report-tables.type';
|