File tree Expand file tree Collapse file tree 5 files changed +30
-9
lines changed Expand file tree Collapse file tree 5 files changed +30
-9
lines changed Original file line number Diff line number Diff line change 1
- export * from './logical-operator/and.function'
2
- export * from './logical-operator/or.function'
3
- export * from './logical-operator/not.function'
4
- export * from './logical-operator/attribute.function'
5
- export * from './logical-operator/update.function'
6
- export * from './type/condition-operator.type'
1
+ export * from './logical-operator'
2
+ export * from './type'
Original file line number Diff line number Diff line change
1
+ export * from './and.function'
2
+ export * from './attribute.function'
3
+ export * from './not.function'
4
+ export * from './or.function'
5
+ export * from './update.function'
Original file line number Diff line number Diff line change 6
6
} from '../type/update-expression-definition-chain'
7
7
8
8
/**
9
- * Use this method when accesing a top level attribute of a model
9
+ * Use this method when accessing a top level attribute of a model
10
10
*/
11
11
export function update2 < T , K extends keyof T > (
12
12
modelConstructor : ModelConstructor < T > ,
@@ -16,7 +16,7 @@ export function update2<T, K extends keyof T>(
16
16
}
17
17
18
18
/**
19
- * Use this method when accesing a top level attribute of a model
19
+ * Use this method when accessing a top level attribute of a model
20
20
*/
21
21
export function update < T > ( attributePath : keyof T ) : UpdateExpressionDefinitionChain
22
22
Original file line number Diff line number Diff line change
1
+ export * from './comparator-operator.type'
2
+ export * from './condition-expression-chain'
3
+ export * from './condition-expression-definition-chain'
4
+ export * from './condition-expression-definition-function'
5
+ export * from './condition-operator.type'
6
+ export * from './condition-operator-alias.type'
7
+ export * from './condition-operator-to-alias-map.const'
8
+ export * from './expression.type'
9
+ export * from './expression-type.type'
10
+ export * from './function-operator.type'
11
+ export * from './request-condition-function'
12
+ export * from './sort-key-condition-function'
13
+ export * from './sort-key-condition-function.type'
14
+ export * from './update-action.type'
15
+ export * from './update-action-def'
16
+ export * from './update-action-defs.const'
17
+ export * from './update-expression.type'
18
+ export * from './update-expression-definition-chain'
19
+ export * from './update-expression-definition-function'
Original file line number Diff line number Diff line change
1
+ export * from './batchget'
1
2
export * from './expression'
2
3
export * from './paged'
3
4
export * from './request'
4
5
export * from './dynamo-rx'
5
6
export * from './dynamo-store'
7
+ export * from './primary-key.type'
6
8
export * from './session-validity-ensurer.type'
7
- export * from './batchget'
8
9
export * from './table-name-resolver.type'
You can’t perform that action at this time.
0 commit comments