UNPKG

dynamodb-toolbox

Version:

Lightweight and type-safe query builder for DynamoDB and TypeScript.

233 lines (232 loc) 9 kB
/** * @debt circular "Remove & prevent imports from entity to schema" */ import type { UpdateValueInput } from '../../entity/actions/update/types.js'; import type { Paths, SchemaAction, ValidValue } from '../../schema/index.js'; import type { Transformer } from '../../transformers/index.js'; import type { If, NarrowObject, Overwrite, ValueOrGetter, Writable } from '../../types/index.js'; import type { Always, AtLeastOnce, Never, Schema, SchemaRequiredProp, Validator } from '../types/index.js'; import type { ResolveBinarySchema, ResolvedBinarySchema } from './resolve.js'; import { BinarySchema } from './schema.js'; import type { BinarySchemaProps } from './types.js'; type BinarySchemer = <PROPS extends Omit<BinarySchemaProps, 'enum'> = {}>(props?: NarrowObject<PROPS>) => BinarySchema_<PROPS>; /** * Define a new schema of binary type * * @param props _(optional)_ Schema Props */ export declare const binary: BinarySchemer; /** * Number attribute (warm) */ export declare class BinarySchema_<PROPS extends BinarySchemaProps = BinarySchemaProps> extends BinarySchema<PROPS> { /** * Tag attribute as required. Possible values are: * - `'atLeastOnce'` _(default)_: Required in PUTs, optional in UPDATEs * - `'never'`: Optional in PUTs and UPDATEs * - `'always'`: Required in PUTs and UPDATEs * * @param nextRequired SchemaRequiredProp */ required<NEXT_IS_REQUIRED extends SchemaRequiredProp = AtLeastOnce>(nextRequired?: NEXT_IS_REQUIRED): BinarySchema_<Overwrite<PROPS, { required: NEXT_IS_REQUIRED; }>>; /** * Shorthand for `required('never')` */ optional(): BinarySchema_<Overwrite<PROPS, { required: Never; }>>; /** * Hide attribute after fetch commands and formatting */ hidden<NEXT_HIDDEN extends boolean = true>(nextHidden?: NEXT_HIDDEN): BinarySchema_<Overwrite<PROPS, { hidden: NEXT_HIDDEN; }>>; /** * Tag attribute as a primary key attribute or linked to a primary attribute */ key<NEXT_KEY extends boolean = true>(nextKey?: NEXT_KEY): BinarySchema_<Overwrite<PROPS, { key: NEXT_KEY; required: Always; }>>; /** * Rename attribute before save commands */ savedAs<NEXT_SAVED_AS extends string | undefined>(nextSavedAs: NEXT_SAVED_AS): BinarySchema_<Overwrite<PROPS, { savedAs: NEXT_SAVED_AS; }>>; /** * Provide a finite list of possible values for attribute * (For typing reasons, enums are only available as attribute methods, not as input props) * * @param enum Possible values * @example * string().enum('foo', 'bar') */ enum<const NEXT_ENUM extends readonly ResolveBinarySchema<this>[]>(...nextEnum: NEXT_ENUM): BinarySchema_<Overwrite<PROPS, { enum: Writable<NEXT_ENUM>; }>>; /** * Shorthand for `enum(constantValue).default(constantValue)` * * @param constantValue Constant value * @example * string().const('foo') */ const<CONSTANT extends ResolveBinarySchema<this>>(constant: CONSTANT): If<PROPS['key'], BinarySchema_<Overwrite<PROPS, { enum: [CONSTANT]; keyDefault: unknown; }>>, BinarySchema_<Overwrite<PROPS, { enum: [CONSTANT]; putDefault: unknown; }>>>; /** * Transform the attribute value in PUT commands OR Primary Key computing if attribute is tagged as key */ transform<TRANSFORMER extends Transformer<ResolvedBinarySchema, ResolveBinarySchema<this>>>(transform: TRANSFORMER): BinarySchema_<Overwrite<PROPS, { transform: TRANSFORMER; }>>; /** * Provide a default value for attribute in Primary Key computing * * @param nextKeyDefault `keyAttributeInput | (() => keyAttributeInput)` */ keyDefault(nextKeyDefault: ValueOrGetter<ValidValue<this, { mode: 'key'; }>>): BinarySchema_<Overwrite<PROPS, { keyDefault: unknown; }>>; /** * Provide a default value for attribute in PUT commands * * @param nextPutDefault `putAttributeInput | (() => putAttributeInput)` */ putDefault(nextPutDefault: ValueOrGetter<ValidValue<this>>): BinarySchema_<Overwrite<PROPS, { putDefault: unknown; }>>; /** * Provide a default value for attribute in UPDATE commands * * @param nextUpdateDefault `updateAttributeInput | (() => updateAttributeInput)` */ updateDefault(nextUpdateDefault: ValueOrGetter<UpdateValueInput<this, { filled: true; }>>): BinarySchema_<Overwrite<PROPS, { updateDefault: unknown; }>>; /** * Provide a default value for attribute in PUT commands OR Primary Key computing if attribute is tagged as key * * @param nextDefault `key/putAttributeInput | (() => key/putAttributeInput)` */ default(nextDefault: ValueOrGetter<If<PROPS['key'], ValidValue<this, { mode: 'key'; }>, ValidValue<this>>>): If<PROPS['key'], BinarySchema_<Overwrite<PROPS, { keyDefault: unknown; }>>, BinarySchema_<Overwrite<PROPS, { putDefault: unknown; }>>>; /** * Provide a **linked** default value for attribute in Primary Key computing * * @param nextKeyLink `keyAttributeInput | ((keyInput) => keyAttributeInput)` */ keyLink<SCHEMA extends Schema>(nextKeyLink: (keyInput: ValidValue<SCHEMA, { mode: 'key'; defined: true; }>) => ValidValue<this, { mode: 'key'; }>): BinarySchema_<Overwrite<PROPS, { keyLink: unknown; }>>; /** * Provide a **linked** default value for attribute in PUT commands * * @param nextPutLink `putAttributeInput | ((putItemInput) => putAttributeInput)` */ putLink<SCHEMA extends Schema>(nextPutLink: (putItemInput: ValidValue<SCHEMA, { defined: true; }>) => ValidValue<this>): BinarySchema_<Overwrite<PROPS, { putLink: unknown; }>>; /** * Provide a **linked** default value for attribute in UPDATE commands * * @param nextUpdateLink `unknown | ((updateItemInput) => updateAttributeInput)` */ updateLink<SCHEMA extends Schema>(nextUpdateLink: (updateItemInput: UpdateValueInput<SCHEMA, { defined: true; extended: false; }, Paths<SCHEMA>>) => UpdateValueInput<this, { filled: true; }>): BinarySchema_<Overwrite<PROPS, { updateLink: unknown; }>>; /** * Provide a **linked** default value for attribute in PUT commands OR Primary Key computing if attribute is tagged as key * * @param nextLink `key/putAttributeInput | (() => key/putAttributeInput)` */ link<SCHEMA extends Schema>(nextLink: (keyOrPutItemInput: If<PROPS['key'], ValidValue<SCHEMA, { mode: 'key'; defined: true; }>, ValidValue<SCHEMA, { defined: true; }>>) => If<PROPS['key'], ValidValue<this, { mode: 'key'; }>, ValidValue<this>>): If<PROPS['key'], BinarySchema_<Overwrite<PROPS, { keyLink: unknown; }>>, BinarySchema_<Overwrite<PROPS, { putLink: unknown; }>>>; /** * Provide a custom validator for attribute in Primary Key computing * * @param nextKeyValidator `(keyAttributeInput) => boolean | string` */ keyValidate(nextKeyValidator: Validator<ValidValue<this, { mode: 'key'; defined: true; }>, this>): BinarySchema_<Overwrite<PROPS, { keyValidator: Validator; }>>; /** * Provide a custom validator for attribute in PUT commands * * @param nextPutValidator `(putAttributeInput) => boolean | string` */ putValidate(nextPutValidator: Validator<ValidValue<this, { defined: true; }>, this>): BinarySchema_<Overwrite<PROPS, { putValidator: Validator; }>>; /** * Provide a custom validator for attribute in UPDATE commands * * @param nextUpdateValidator `(updateAttributeInput) => boolean | string` */ updateValidate(nextUpdateValidator: Validator<UpdateValueInput<this, { filled: true; }>, this>): BinarySchema_<Overwrite<PROPS, { updateValidator: Validator; }>>; /** * Provide a custom validator for attribute in PUT commands OR Primary Key computing if attribute is tagged as key * * @param nextValidator `(key/putAttributeInput) => boolean | string` */ validate(nextValidator: Validator<If<PROPS['key'], ValidValue<this, { mode: 'key'; defined: true; }>, ValidValue<this, { defined: true; }>>, this>): If<PROPS['key'], BinarySchema_<Overwrite<PROPS, { keyValidator: Validator; }>>, BinarySchema_<Overwrite<PROPS, { putValidator: Validator; }>>>; clone<NEXT_PROPS extends BinarySchemaProps = {}>(nextProps?: NarrowObject<NEXT_PROPS>): BinarySchema_<Overwrite<PROPS, NEXT_PROPS>>; build<ACTION extends SchemaAction<this> = SchemaAction<this>>(Action: new (schema: this) => ACTION): ACTION; } export {};