Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@deboxsoft/module-core

Package Overview
Dependencies
Maintainers
1
Versions
281
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@deboxsoft/module-core - npm Package Compare versions

Comparing version 2.5.19 to 2.5.20

22

libs/index.d.ts

@@ -204,2 +204,10 @@ import { z, ZodType } from 'zod';

declare const RangeDateSchema: ZodType<RangeDate>;
declare const BooleanResponse: z.ZodObject<{
data: z.ZodBoolean;
}, "strip", z.ZodTypeAny, {
data: boolean;
}, {
data: boolean;
}>;
declare type BooleanResponse = z.TypeOf<typeof BooleanResponse>;
declare const StringResponse: z.ZodObject<{

@@ -212,2 +220,3 @@ data: z.ZodString;

}>;
declare type StringResponse = z.TypeOf<typeof StringResponse>;
declare const NumberResponse: z.ZodObject<{

@@ -220,2 +229,3 @@ data: z.ZodNumber;

}>;
declare type NumberResponse = z.TypeOf<typeof NumberResponse>;
declare const CreateResponse: z.ZodObject<{

@@ -228,2 +238,3 @@ data: z.ZodString;

}>;
declare type CreateResponse = z.TypeOf<typeof CreateResponse>;
declare const ImportResponse: z.ZodObject<{

@@ -236,2 +247,3 @@ data: z.ZodArray<z.ZodString, "many">;

}>;
declare type ImportResponse = z.TypeOf<typeof ImportResponse>;
declare const UpdateResponse: z.ZodObject<{

@@ -244,2 +256,3 @@ data: z.ZodBoolean;

}>;
declare type UpdateResponse = z.TypeOf<typeof UpdateResponse>;
declare const RemoveResponse: z.ZodObject<{

@@ -252,10 +265,3 @@ data: z.ZodBoolean;

}>;
declare const BooleanResponse: z.ZodObject<{
data: z.ZodBoolean;
}, "strip", z.ZodTypeAny, {
data: boolean;
}, {
data: boolean;
}>;
declare type BooleanResponse = z.TypeOf<typeof BooleanResponse>;
declare type RemoveResponse = z.TypeOf<typeof RemoveResponse>;

@@ -262,0 +268,0 @@ declare const PaginationOptions: z.ZodObject<{

{
"name": "@deboxsoft/module-core",
"version": "2.5.19",
"version": "2.5.20",
"license": "SEE LICENSE IN LICENSE",

@@ -5,0 +5,0 @@ "maintainers": [

@@ -43,1 +43,7 @@ import { z, ZodType } from "zod";

export type BooleanResponse = z.TypeOf<typeof BooleanResponse>;
export type StringResponse = z.TypeOf<typeof StringResponse>;
export type NumberResponse = z.TypeOf<typeof NumberResponse>;
export type CreateResponse = z.TypeOf<typeof CreateResponse>;
export type ImportResponse = z.TypeOf<typeof ImportResponse>;
export type UpdateResponse = z.TypeOf<typeof UpdateResponse>;
export type RemoveResponse = z.TypeOf<typeof RemoveResponse>;

Sorry, the diff of this file is not supported yet

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