@deboxsoft/accounting-api
Advanced tools
Comparing version 1.5.0-beta.35 to 1.5.0-beta.36
{ | ||
"name": "@deboxsoft/accounting-api", | ||
"version": "1.5.0-beta.35", | ||
"version": "1.5.0-beta.36", | ||
"license": "SEE LICENSE IN LICENSE.md", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -8,4 +8,3 @@ import { PreferenceAccounting } from "./PreferenceAccounting"; | ||
export declare const BalanceReportEvent: { | ||
currentMonthlyBalanceReportUpdated: string; | ||
fixedMonthlyBalanceReportUpdated: string; | ||
monthlyBalanceReportUpdated: string; | ||
}; | ||
@@ -56,3 +55,7 @@ export interface BalanceClassification { | ||
export declare type MonthBalanceReport = MonthBalance<BalanceReport>; | ||
export declare type MonthlyBalanceReport = { | ||
startBalance: BalanceReport; | ||
data: MonthBalanceReport[]; | ||
}; | ||
export declare type PeriodBalanceReport = PeriodBalance<BalanceReport>; | ||
export declare const seriesRatioNames: string[][]; |
import { MonthBalanceReport } from "../models"; | ||
export interface BalanceReportService { | ||
fixedMonthlyBalanceReport(period?: number): Promise<MonthBalanceReport[]>; | ||
currentMonthlyBalanceReport(period?: number): Promise<MonthBalanceReport[]>; | ||
monthlyBalanceReport(opts?: { | ||
period?: number; | ||
current?: boolean; | ||
}): Promise<MonthBalanceReport[]>; | ||
} |
@@ -16,1 +16,4 @@ import { Account, AccountBalance, BalanceData, BalanceReport, BalanceSheetReport, RatioBalanceReport } from "../models"; | ||
export declare const convertRatioBalanceReportUtils: (balanceReport: BalanceReport) => RatioBalanceReport; | ||
export declare const aggBalanceReportUtils: (balanceReport: BalanceReport, balanceReportResource: BalanceReport, { subtract }?: { | ||
subtract?: boolean | undefined; | ||
}) => void; |
@@ -6,4 +6,16 @@ import dayjsBase, { Dayjs } from "dayjs"; | ||
}; | ||
declare type WeekdayNames = [string, string, string, string, string, string, string]; | ||
declare type MonthNames = [string, string, string, string, string, string, string, string, string, string, string, string]; | ||
interface DateLocaleData { | ||
firstDayOfWeek(): number; | ||
weekdays(instance?: Dayjs): WeekdayNames; | ||
weekdaysShort(instance?: Dayjs): WeekdayNames; | ||
weekdaysMin(instance?: Dayjs): WeekdayNames; | ||
months(instance?: Dayjs): MonthNames; | ||
monthsShort(instance?: Dayjs): MonthNames; | ||
longDateFormat(format: string): string; | ||
meridiem(hour?: number, minute?: number, isLower?: boolean): string; | ||
} | ||
export declare function dayjs(d?: string | number | dayjsBase.Dayjs | Date, { format, timezone }?: Options): Dayjs; | ||
export declare const dateLocaleData: dayjsBase.GlobalLocaleDataReturn; | ||
export declare const dateLocaleData: DateLocaleData; | ||
/** | ||
@@ -10,0 +22,0 @@ * range startDate and endDate |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
413202
8050