Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@deboxsoft/accounting-api

Package Overview
Dependencies
Maintainers
1
Versions
434
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@deboxsoft/accounting-api - npm Package Compare versions

Comparing version 1.5.0-beta.35 to 1.5.0-beta.36

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc