1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| import { getMetadataArgsStorage } from "../../";
| import { CannotReflectMethodParameterTypeError } from "../../error/CannotReflectMethodParameterTypeError";
| /**
| * Injects transaction's repository into the method wrapped with @Transaction decorator.
| */
| export function TransactionRepository(entityType) {
| return function (object, methodName, index) {
| // get repository type
| var repositoryType;
| try {
| repositoryType = Reflect.getOwnMetadata("design:paramtypes", object, methodName)[index];
| }
| catch (err) {
| throw new CannotReflectMethodParameterTypeError(object.constructor, methodName);
| }
| getMetadataArgsStorage().transactionRepositories.push({
| target: object.constructor,
| methodName: methodName,
| index: index,
| repositoryType: repositoryType,
| entityType: entityType,
| });
| };
| }
|
| //# sourceMappingURL=TransactionRepository.js.map
|
|