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 1.4.0 to 1.4.1-beta.1

.bic_cache

6

index.js

@@ -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

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