UNPKG

@nerdware/ddb-single-table

Version:

A schema-based DynamoDB modeling tool, high-level API, and type-generator built to supercharge single-table designs!⚡

15 lines 812 B
/** * Union of deprecated SDK command-parameter names. To prevent their use, this * package omits them from all command-input types. */ export type DeprecatedSdkCommandParameters = "AttributesToGet" | "AttributeUpdates" | "ConditionalOperator" | "Expected" | "KeyConditions" | "QueryFilter" | "ScanFilter"; /** * Union of SDK command-parameter names which are internally handled by `DdbClientFieldParser` * methods and are therefore omitted from command-input types. */ export type SdkCommandParametersInternallyHandledByArgParser = "TableName"; /** * Union of SDK command-parameter names which are removed from command-input types. */ export type OmittedSdkParameters = DeprecatedSdkCommandParameters | SdkCommandParametersInternallyHandledByArgParser; //# sourceMappingURL=OmittedSdkParameters.d.ts.map