1 | "use strict";
|
2 | var __assign = (this && this.__assign) || function () {
|
3 | __assign = Object.assign || function(t) {
|
4 | for (var s, i = 1, n = arguments.length; i < n; i++) {
|
5 | s = arguments[i];
|
6 | for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
7 | t[p] = s[p];
|
8 | }
|
9 | return t;
|
10 | };
|
11 | return __assign.apply(this, arguments);
|
12 | };
|
13 | Object.defineProperty(exports, "__esModule", { value: true });
|
14 | exports.IdField = void 0;
|
15 | var utils_1 = require("../utils");
|
16 | var getCombinedDecorator_1 = require("./getCombinedDecorator");
|
17 | function IdField(options) {
|
18 | if (options === void 0) { options = {}; }
|
19 | var nullableOption = options.nullable === true ? { nullable: true } : {};
|
20 | var uniqueOption = options.unique ? { unique: true } : {};
|
21 | var factories = getCombinedDecorator_1.getCombinedDecorator({
|
22 | fieldType: 'id',
|
23 | warthogColumnMeta: options,
|
24 | dbColumnOptions: __assign(__assign({}, nullableOption), uniqueOption)
|
25 | });
|
26 | return utils_1.composeMethodDecorators.apply(void 0, factories);
|
27 | }
|
28 | exports.IdField = IdField;
|
29 |
|
\ | No newline at end of file |