@deboxsoft/accounting-api
Advanced tools
Comparing version 1.5.0-beta.59 to 1.5.0-beta.60
{ | ||
"name": "@deboxsoft/accounting-api", | ||
"version": "1.5.0-beta.59", | ||
"version": "1.5.0-beta.60", | ||
"license": "SEE LICENSE IN LICENSE.md", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -59,2 +59,3 @@ import { CollectionParams } from "@deboxsoft/module-core"; | ||
name: z.ZodOptional<z.ZodString>; | ||
unit: z.ZodOptional<z.ZodString>; | ||
categoryId: z.ZodOptional<z.ZodString>; | ||
@@ -64,2 +65,3 @@ supplierId: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>; | ||
name?: string | undefined; | ||
unit?: string | undefined; | ||
categoryId?: string | undefined; | ||
@@ -69,2 +71,3 @@ supplierId?: string | null | undefined; | ||
name?: string | undefined; | ||
unit?: string | undefined; | ||
categoryId?: string | undefined; | ||
@@ -71,0 +74,0 @@ supplierId?: string | null | undefined; |
@@ -73,10 +73,10 @@ import { z } from "@deboxsoft/zod"; | ||
datePurchase: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodNumber]>>>; | ||
description: z.ZodNullable<z.ZodOptional<z.ZodString>>; | ||
description: z.ZodString; | ||
cashAccount: z.ZodString; | ||
cashAmount: z.ZodNumber; | ||
}>, "strip", z.ZodTypeAny, { | ||
description?: string | null | undefined; | ||
date?: number | Date | null | undefined; | ||
no?: string | null | undefined; | ||
datePurchase?: number | Date | null | undefined; | ||
description: string; | ||
status: "FAILED" | "UNAPPROVED" | "APPROVED" | "REJECTED" | "FIXED"; | ||
@@ -94,6 +94,6 @@ userId: string; | ||
}, { | ||
description?: string | null | undefined; | ||
date?: number | Date | null | undefined; | ||
no?: string | null | undefined; | ||
datePurchase?: number | Date | null | undefined; | ||
description: string; | ||
status: "FAILED" | "UNAPPROVED" | "APPROVED" | "REJECTED" | "FIXED"; | ||
@@ -196,3 +196,3 @@ userId: string; | ||
datePurchase: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodNumber]>>>>; | ||
description: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>; | ||
description: z.ZodOptional<z.ZodString>; | ||
cashAccount: z.ZodOptional<z.ZodString>; | ||
@@ -224,3 +224,3 @@ cashAmount: z.ZodOptional<z.ZodNumber>; | ||
}>, "strip", z.ZodTypeAny, { | ||
description?: string | null | undefined; | ||
description?: string | undefined; | ||
status?: "FAILED" | "UNAPPROVED" | "APPROVED" | "REJECTED" | "FIXED" | undefined; | ||
@@ -243,3 +243,3 @@ date?: number | Date | null | undefined; | ||
}, { | ||
description?: string | null | undefined; | ||
description?: string | undefined; | ||
status?: "FAILED" | "UNAPPROVED" | "APPROVED" | "REJECTED" | "FIXED" | undefined; | ||
@@ -246,0 +246,0 @@ date?: number | Date | null | undefined; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
7760
297535