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

@karmaniverous/entity-manager

Package Overview
Dependencies
Maintainers
0
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@karmaniverous/entity-manager - npm Package Compare versions

Comparing version 6.13.1 to 6.13.2

5

dist/cjs/ParsedConfig.js

@@ -106,3 +106,6 @@ 'use strict';

rangeKey: zod.z.string().min(1),
projections: componentArray.optional(),
projections: zod.z
.array(zod.z.string().min(1))
.superRefine(validateArrayUnique)
.optional(),
}))

@@ -109,0 +112,0 @@ .optional()

14

dist/index.d.ts

@@ -197,11 +197,11 @@ import { EntityMap, TranscodeMap, ConditionalProperty, Exactify, PropertiesOfType, TranscodableProperties, FlattenEntityMap, Transcodes, SortOrder, MutuallyExclusive, NotNever, DefaultTranscodeMap } from '@karmaniverous/entity-tools';

rangeKey: z.ZodString;
projections: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodString, "atleastone">, [string, ...string[]], [string, ...string[]]>>;
projections: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], string[]>>;
}, "strip", z.ZodTypeAny, {
hashKey: string;
rangeKey: string;
projections?: [string, ...string[]] | undefined;
projections?: string[] | undefined;
}, {
hashKey: string;
rangeKey: string;
projections?: [string, ...string[]] | undefined;
projections?: string[] | undefined;
}>>>>;

@@ -245,3 +245,3 @@ generatedKeyDelimiter: z.ZodDefault<z.ZodOptional<z.ZodString>>;

rangeKey: string;
projections?: [string, ...string[]] | undefined;
projections?: string[] | undefined;
}>;

@@ -278,3 +278,3 @@ generatedKeyDelimiter: string;

rangeKey: string;
projections?: [string, ...string[]] | undefined;
projections?: string[] | undefined;
}> | undefined;

@@ -311,3 +311,3 @@ generatedKeyDelimiter?: string | undefined;

rangeKey: string;
projections?: [string, ...string[]] | undefined;
projections?: string[] | undefined;
}>;

@@ -344,3 +344,3 @@ generatedKeyDelimiter: string;

rangeKey: string;
projections?: [string, ...string[]] | undefined;
projections?: string[] | undefined;
}> | undefined;

@@ -347,0 +347,0 @@ generatedKeyDelimiter?: string | undefined;

@@ -104,3 +104,6 @@ import { defaultTranscodes } from '@karmaniverous/entity-tools';

rangeKey: z.string().min(1),
projections: componentArray.optional(),
projections: z
.array(z.string().min(1))
.superRefine(validateArrayUnique)
.optional(),
}))

@@ -107,0 +110,0 @@ .optional()

@@ -135,3 +135,3 @@ {

"types": "dist/index.d.ts",
"version": "6.13.1"
"version": "6.13.2"
}
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