New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.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.30 to 0.1.0-alpha.32

types/services/CompanyService.d.ts

2

jest.config.js

@@ -6,3 +6,3 @@ const base = require("../../jest.base.config");

verbose: true,
name: "type"
name: "api"
};
{
"name": "@deboxsoft/accounting-api",
"version": "0.1.0-alpha.30",
"version": "0.1.0-alpha.32",
"license": "SEE LICENSE IN LICENSE.md",

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

@@ -64,2 +64,3 @@ export declare type Maybe<T> = T | undefined;

findTransactionType?: Maybe<Array<Maybe<TransactionType>>>;
getCompany?: Maybe<Company>;
};

@@ -89,2 +90,3 @@ export declare type QueryChildAccountArgs = {

export declare type Mutation = {
addDivision?: Maybe<Scalars["Boolean"]>;
createAccount?: Maybe<Account>;

@@ -98,2 +100,3 @@ createBankReconciliation?: Maybe<BankReconciliation>;

removeBankReconciliation?: Maybe<Scalars["Boolean"]>;
removeDivision?: Maybe<Scalars["Boolean"]>;
removeInventory?: Maybe<Scalars["Boolean"]>;

@@ -104,2 +107,4 @@ removeStockTransfer?: Maybe<Scalars["Boolean"]>;

updateBankReconciliation?: Maybe<BankReconciliation>;
updateCompany?: Maybe<Company>;
updateDivision?: Maybe<Scalars["Boolean"]>;
updateInventory?: Maybe<Inventory>;

@@ -110,2 +115,6 @@ updateStockIn?: Maybe<StockTransfer>;

};
export declare type MutationAddDivisionArgs = {
code: Scalars["String"];
name: Scalars["String"];
};
export declare type MutationCreateAccountArgs = {

@@ -135,2 +144,5 @@ input: AccountInput;

};
export declare type MutationRemoveDivisionArgs = {
code: Scalars["String"];
};
export declare type MutationRemoveInventoryArgs = {

@@ -153,2 +165,9 @@ id: Scalars["ID"];

};
export declare type MutationUpdateCompanyArgs = {
input: CompanyInput;
};
export declare type MutationUpdateDivisionArgs = {
code: Scalars["String"];
name: Scalars["String"];
};
export declare type MutationUpdateInventoryArgs = {

@@ -197,2 +216,20 @@ id: Scalars["ID"];

};
export declare type Division = {
code: Scalars["String"];
name: Scalars["String"];
};
export declare type Company = {
id: Scalars["ID"];
name: Scalars["String"];
email?: Maybe<Scalars["String"]>;
address?: Maybe<Scalars["String"]>;
phone?: Maybe<Scalars["String"]>;
divisions?: Maybe<Array<Maybe<Division>>>;
};
export declare type CompanyInput = {
name: Scalars["String"];
email?: Maybe<Scalars["String"]>;
address?: Maybe<Scalars["String"]>;
phone?: Maybe<Scalars["String"]>;
};
export declare type GeneralLedger = {

@@ -199,0 +236,0 @@ id?: Maybe<Scalars["ID"]>;

@@ -7,1 +7,2 @@ export * from "./TransactionService";

export * from "./GeneralLedgerService";
export * from "./CompanyService";

@@ -1,1 +0,1 @@

export type { AccountType, Account, AccountInput, BankReconciliation, BankReconciliationInput, BankReconciliationHistory, Transaction, TransactionType, Inventory, InventoryInput, JournalAccount, JournalAccountInput, StockTransferType, StockTransfer, StockInput, GeneralLedger, GeneralLedgerInput, TransactionInput, TransactionFilterInput } from "./_type";
export type { AccountType, Account, AccountInput, BankReconciliation, BankReconciliationInput, BankReconciliationHistory, Company, CompanyInput, Division, Transaction, TransactionType, Inventory, InventoryInput, JournalAccount, JournalAccountInput, StockTransferType, StockTransfer, StockInput, GeneralLedger, GeneralLedgerInput, TransactionInput, TransactionFilterInput } from "./_type";

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