@deboxsoft/accounting-api
Advanced tools
Comparing version 0.1.0-alpha.19 to 0.1.0-alpha.20
{ | ||
"name": "@deboxsoft/accounting-api", | ||
"version": "0.1.0-alpha.19", | ||
"version": "0.1.0-alpha.20", | ||
"license": "SEE LICENSE IN LICENSE.md", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -20,2 +20,4 @@ export declare type Maybe<T> = T | undefined; | ||
Float: number; | ||
DateTime: any; | ||
Timestamp: any; | ||
}; | ||
@@ -106,3 +108,3 @@ export declare type AccountType = "BANK" | "AREC" | "INTR" | "OCAS" | "FASS" | "DEPR" | "OASS" | "APAY" | "OCLY" | "LTLY" | "EQTY" | "REVE" | "COGS" | "EXPS" | "OEXP" | "OINC"; | ||
description?: Maybe<Scalars["String"]>; | ||
date?: Maybe<Scalars["String"]>; | ||
date?: Maybe<Scalars["DateTime"]>; | ||
total?: Maybe<Scalars["Int"]>; | ||
@@ -128,3 +130,3 @@ accounts?: Maybe<Array<Maybe<JournalAccount>>>; | ||
noTransaction: Scalars["String"]; | ||
date: Scalars["String"]; | ||
date: Scalars["DateTime"]; | ||
description?: Maybe<Scalars["String"]>; | ||
@@ -135,5 +137,5 @@ accounts?: Maybe<Array<Maybe<JournalAccountInput>>>; | ||
export declare type TransactionFilterInput = { | ||
startDate?: Maybe<Scalars["String"]>; | ||
endDate?: Maybe<Scalars["String"]>; | ||
startDate?: Maybe<Scalars["DateTime"]>; | ||
endDate?: Maybe<Scalars["DateTime"]>; | ||
type?: Maybe<Scalars["String"]>; | ||
}; |
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
17383
402