@karmaniverous/entity-manager
Advanced tools
Comparing version 6.13.1 to 6.13.2
@@ -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() |
@@ -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" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
180130
3911