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 0.1.0-alpha.12 to 0.1.0-alpha.13

2

package.json
{
"name": "@deboxsoft/accounting-api",
"version": "0.1.0-alpha.12",
"version": "0.1.0-alpha.13",
"license": "SEE LICENSE IN LICENSE.md",

@@ -5,0 +5,0 @@ "repository": {

@@ -20,17 +20,32 @@ export declare type Maybe<T> = T | undefined;

Float: number;
Timestamp: any;
};
export declare type Node = {
export declare type AccountType = "BANK" | "AREC" | "INTR" | "OCAS" | "FASS" | "DEPR" | "OASS" | "APAY" | "OCLY" | "LTLY" | "EQTY" | "REVE" | "COGS" | "EXPS" | "OEXP" | "OINC";
export declare type Account = {
id: Scalars["ID"];
code: Scalars["String"];
type: AccountType;
name: Scalars["String"];
parent?: Maybe<Account>;
parentId?: Maybe<Scalars["ID"]>;
active: Scalars["Boolean"];
isParent: Scalars["Boolean"];
memo?: Maybe<Scalars["String"]>;
};
export declare type PageInfo = {
total?: Maybe<Scalars["Int"]>;
hasNextPage?: Maybe<Scalars["Boolean"]>;
hasPreviousPage?: Maybe<Scalars["Boolean"]>;
startCursor?: Maybe<Scalars["ID"]>;
endCursor?: Maybe<Scalars["ID"]>;
export declare type CreateAccountInput = {
code: Scalars["String"];
type: AccountType;
name: Scalars["String"];
parentId?: Maybe<Scalars["ID"]>;
active?: Maybe<Scalars["Boolean"]>;
isParent?: Maybe<Scalars["Boolean"]>;
memo?: Maybe<Scalars["String"]>;
};
export declare type Error = {
code?: Maybe<Scalars["ID"]>;
message?: Maybe<Scalars["String"]>;
export declare type UpdateAccountInput = {
code?: Maybe<Scalars["String"]>;
type?: Maybe<AccountType>;
name?: Maybe<Scalars["String"]>;
parentId?: Maybe<Scalars["ID"]>;
active?: Maybe<Scalars["Boolean"]>;
isParent?: Maybe<Scalars["Boolean"]>;
memo?: Maybe<Scalars["String"]>;
};

@@ -85,38 +100,2 @@ export declare type Query = {

};
export declare type AccountType = "BANK" | "AREC" | "INTR" | "OCAS" | "FASS" | "DEPR" | "OASS" | "APAY" | "OCLY" | "LTLY" | "EQTY" | "REVE" | "COGS" | "EXPS" | "OEXP" | "OINC";
export declare type Account = {
id: Scalars["ID"];
code: Scalars["String"];
type: AccountType;
name: Scalars["String"];
parent?: Maybe<Account>;
parentId?: Maybe<Scalars["ID"]>;
level: Scalars["Int"];
active: Scalars["Boolean"];
isParent: Scalars["Boolean"];
fiscal?: Maybe<Scalars["Boolean"]>;
memo?: Maybe<Scalars["String"]>;
};
export declare type CreateAccountInput = {
code: Scalars["String"];
type: AccountType;
name: Scalars["String"];
parentId?: Maybe<Scalars["ID"]>;
level?: Maybe<Scalars["Int"]>;
active?: Maybe<Scalars["Boolean"]>;
isParent?: Maybe<Scalars["Boolean"]>;
fiscal?: Maybe<Scalars["Boolean"]>;
memo?: Maybe<Scalars["String"]>;
};
export declare type UpdateAccountInput = {
code?: Maybe<Scalars["String"]>;
type?: Maybe<AccountType>;
name?: Maybe<Scalars["String"]>;
parentId?: Maybe<Scalars["ID"]>;
level?: Maybe<Scalars["Int"]>;
active?: Maybe<Scalars["Boolean"]>;
isParent?: Maybe<Scalars["Boolean"]>;
fiscal?: Maybe<Scalars["Boolean"]>;
memo?: Maybe<Scalars["String"]>;
};
export declare type TransactionType = "START_BALANCE" | "JOURNAL" | "EMPLOY_PAYROLL" | "BANK_TRANSFER" | "DEPOSIT" | "EXPENSES" | "PAYMENT" | "DELIVERY_ORDER" | "SALES_DOWN_PAYMENT" | "SALES_INVOICE" | "SALES_RECEIPT" | "SALES_RETURN" | "PURCHASE_PAYMENT" | "PURCHASE_INVOICE" | "PURCHASE_DOWN_PAYMENT" | "PURCHASE_RETURN" | "ITEM_RECEIVE" | "ITEM_TRANSFER" | "FIXED_ASSET" | "INVENTORY_ADJUSTMENT" | "PERIOD_END" | "PERIOD_END_DEPRECIATION";

@@ -123,0 +102,0 @@ export declare type Transaction = {

Sorry, the diff of this file is not supported yet

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