Skip to content

Commit b63cd39

Browse files
fix(update): export update function to be public available
1 parent 6f2f338 commit b63cd39

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/dynamo/expression/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ export * from './logical-operator/and.function'
22
export * from './logical-operator/or.function'
33
export * from './logical-operator/not.function'
44
export * from './logical-operator/attribute.function'
5+
export * from './logical-operator/update.function'
56
export * from './type/condition-operator.type'

src/dynamo/request/update/update.request.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import { BaseRequest } from '../base.request'
2222

2323
export type Bla = { [key in UpdateActionKeyword]: Expression[] }
2424

25+
// TODO add if no operations are defined, don't execute
2526
export class UpdateRequest<T> extends BaseRequest<T, any> {
2627
constructor(
2728
dynamoRx: DynamoRx,

0 commit comments

Comments
 (0)