@deboxsoft/accounting-api
Advanced tools
Comparing version 0.1.0-alpha.12 to 0.1.0-alpha.13
{ | ||
"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
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
17277
400