@deboxsoft/accounting-api
Advanced tools
Comparing version 1.4.0 to 1.4.1-beta.1
@@ -423,5 +423,5 @@ 'use strict'; | ||
name: zod.z.string(), | ||
accumulatedDepreciationAccount: zod.z.string(), | ||
expenseDepreciationAccount: zod.z.string(), | ||
groupDepreciationId: zod.z.string() | ||
accumulatedDepreciationAccount: zod.z.string().nullish(), | ||
expenseDepreciationAccount: zod.z.string().nullish(), | ||
groupDepreciationId: zod.z.string().nullish() | ||
}); | ||
@@ -428,0 +428,0 @@ |
{ | ||
"name": "@deboxsoft/accounting-api", | ||
"version": "1.4.0", | ||
"version": "1.4.1-beta.1", | ||
"license": "SEE LICENSE IN LICENSE.md", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -340,15 +340,15 @@ import { CollectionParams } from "@deboxsoft/module-core"; | ||
name: z.ZodString; | ||
accumulatedDepreciationAccount: z.ZodString; | ||
expenseDepreciationAccount: z.ZodString; | ||
groupDepreciationId: z.ZodString; | ||
accumulatedDepreciationAccount: z.ZodNullable<z.ZodOptional<z.ZodString>>; | ||
expenseDepreciationAccount: z.ZodNullable<z.ZodOptional<z.ZodString>>; | ||
groupDepreciationId: z.ZodNullable<z.ZodOptional<z.ZodString>>; | ||
}, "strip", z.ZodTypeAny, { | ||
accumulatedDepreciationAccount?: string | null | undefined; | ||
expenseDepreciationAccount?: string | null | undefined; | ||
groupDepreciationId?: string | null | undefined; | ||
name: string; | ||
accumulatedDepreciationAccount: string; | ||
expenseDepreciationAccount: string; | ||
groupDepreciationId: string; | ||
}, { | ||
accumulatedDepreciationAccount?: string | null | undefined; | ||
expenseDepreciationAccount?: string | null | undefined; | ||
groupDepreciationId?: string | null | undefined; | ||
name: string; | ||
accumulatedDepreciationAccount: string; | ||
expenseDepreciationAccount: string; | ||
groupDepreciationId: string; | ||
}>; | ||
@@ -398,17 +398,17 @@ export declare const InventoryRemoveInputSchema: z.ZodObject<{ | ||
}, { | ||
debitAccount: z.ZodString; | ||
creditAccount: z.ZodString; | ||
debitAccount: z.ZodNullable<z.ZodOptional<z.ZodString>>; | ||
creditAccount: z.ZodNullable<z.ZodOptional<z.ZodString>>; | ||
description: z.ZodNullable<z.ZodOptional<z.ZodString>>; | ||
}>, "strip", z.ZodTypeAny, { | ||
description?: string | null | undefined; | ||
debitAccount?: string | null | undefined; | ||
creditAccount?: string | null | undefined; | ||
month: string; | ||
amount: number; | ||
debitAccount: string; | ||
creditAccount: string; | ||
}, { | ||
description?: string | null | undefined; | ||
debitAccount?: string | null | undefined; | ||
creditAccount?: string | null | undefined; | ||
month: string; | ||
amount: number; | ||
debitAccount: string; | ||
creditAccount: string; | ||
}>; | ||
@@ -415,0 +415,0 @@ export declare const DepreciationDataInputSchema: z.ZodObject<z.extendShape<{ |
Sorry, the diff of this file is not supported yet
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
203781
63
2