test-entity-library-asm 1.1.8 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/entities/Category.d.ts +5 -3
- package/dist/entities/Category.js +38 -13
- package/dist/entities/CategorySchedule.d.ts +10 -0
- package/dist/entities/CategorySchedule.js +67 -0
- package/dist/entities/City.d.ts +3 -2
- package/dist/entities/City.js +35 -10
- package/dist/entities/CodeRedemptionHistoryCompany.d.ts +4 -3
- package/dist/entities/CodeRedemptionHistoryCompany.js +31 -10
- package/dist/entities/CodeRedemptionHistoryUser.js +13 -6
- package/dist/entities/Company.d.ts +2 -1
- package/dist/entities/Company.js +64 -26
- package/dist/entities/Configuration.d.ts +2 -1
- package/dist/entities/Configuration.js +26 -4
- package/dist/entities/Country.d.ts +2 -1
- package/dist/entities/Country.js +33 -11
- package/dist/entities/Day.d.ts +2 -1
- package/dist/entities/Day.js +31 -6
- package/dist/entities/DiscountCodeCompany.d.ts +2 -1
- package/dist/entities/DiscountCodeCompany.js +42 -12
- package/dist/entities/DiscountCodeUser.js +24 -13
- package/dist/entities/Local.d.ts +14 -2
- package/dist/entities/Local.js +73 -13
- package/dist/entities/LocalQualification.d.ts +10 -0
- package/dist/entities/LocalQualification.js +76 -0
- package/dist/entities/Master.d.ts +2 -1
- package/dist/entities/Master.js +26 -4
- package/dist/entities/PaymentMethod.d.ts +13 -0
- package/dist/entities/PaymentMethod.js +102 -0
- package/dist/entities/Permission.d.ts +2 -1
- package/dist/entities/Permission.js +32 -8
- package/dist/entities/Plan.d.ts +2 -1
- package/dist/entities/Plan.js +38 -10
- package/dist/entities/Product.d.ts +8 -1
- package/dist/entities/Product.js +62 -12
- package/dist/entities/ProductGroup.js +16 -8
- package/dist/entities/ProductIngredient.d.ts +12 -0
- package/dist/entities/ProductIngredient.js +84 -0
- package/dist/entities/ProductTopping.d.ts +2 -1
- package/dist/entities/ProductTopping.js +33 -7
- package/dist/entities/Region.d.ts +3 -2
- package/dist/entities/Region.js +40 -10
- package/dist/entities/Request.d.ts +21 -0
- package/dist/entities/Request.js +137 -0
- package/dist/entities/RequestProduct.d.ts +12 -0
- package/dist/entities/RequestProduct.js +85 -0
- package/dist/entities/RequestProductGroupComplement.d.ts +11 -0
- package/dist/entities/RequestProductGroupComplement.js +80 -0
- package/dist/entities/RequestStatus.d.ts +11 -0
- package/dist/entities/RequestStatus.js +85 -0
- package/dist/entities/Role.js +11 -4
- package/dist/entities/RoleVisibleTo.d.ts +2 -1
- package/dist/entities/RoleVisibleTo.js +30 -5
- package/dist/entities/Square.d.ts +13 -0
- package/dist/entities/Square.js +97 -0
- package/dist/entities/Terminal.d.ts +2 -0
- package/dist/entities/Terminal.js +21 -4
- package/dist/entities/TerminalSession.d.ts +3 -2
- package/dist/entities/TerminalSession.js +41 -8
- package/dist/entities/TypeFood.d.ts +2 -1
- package/dist/entities/TypeFood.js +41 -6
- package/dist/entities/TypeMeasureIngredient.d.ts +9 -0
- package/dist/entities/TypeMeasureIngredient.js +73 -0
- package/dist/entities/User.d.ts +17 -7
- package/dist/entities/User.js +104 -25
- package/dist/entities/productGroupComplement.d.ts +4 -1
- package/dist/entities/productGroupComplement.js +35 -8
- package/package.json +1 -1
- package/src/entities/Category.ts +33 -15
- package/src/entities/CategorySchedule.ts +35 -0
- package/src/entities/City.ts +18 -8
- package/src/entities/CodeRedemptionHistoryCompany.ts +17 -9
- package/src/entities/CodeRedemptionHistoryUser.ts +15 -6
- package/src/entities/Company.ts +51 -25
- package/src/entities/Configuration.ts +10 -4
- package/src/entities/Country.ts +23 -11
- package/src/entities/Day.ts +16 -6
- package/src/entities/DiscountCodeCompany.ts +26 -11
- package/src/entities/DiscountCodeUser.ts +25 -12
- package/src/entities/Local.ts +54 -12
- package/src/entities/LocalQualification.ts +45 -0
- package/src/entities/Master.ts +17 -4
- package/src/entities/PaymentMethod.ts +72 -0
- package/src/entities/Permission.ts +16 -7
- package/src/entities/Plan.ts +22 -9
- package/src/entities/Product.ts +47 -11
- package/src/entities/ProductGroup.ts +18 -8
- package/src/entities/ProductIngredient.ts +55 -0
- package/src/entities/ProductTopping.ts +17 -6
- package/src/entities/Region.ts +24 -8
- package/src/entities/Request.ts +107 -0
- package/src/entities/RequestProduct.ts +51 -0
- package/src/entities/RequestProductGroupComplement.ts +55 -0
- package/src/entities/RequestStatus.ts +55 -0
- package/src/entities/Role.ts +12 -4
- package/src/entities/RoleVisibleTo.ts +13 -4
- package/src/entities/Square.ts +56 -0
- package/src/entities/Terminal.ts +24 -4
- package/src/entities/TerminalSession.ts +28 -10
- package/src/entities/TypeFood.ts +26 -5
- package/src/entities/TypeMeasureIngredient.ts +46 -0
- package/src/entities/User.ts +93 -28
- package/src/entities/productGroupComplement.ts +23 -7
- package/src/entities/ScheduleCategory.ts +0 -32
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { BaseEntity } from 'typeorm';
|
|
1
2
|
import { Local } from './Local';
|
|
2
|
-
|
|
3
|
+
import { Product } from './Product';
|
|
4
|
+
export declare class Category extends BaseEntity {
|
|
3
5
|
id: number;
|
|
4
|
-
|
|
6
|
+
local: Local;
|
|
5
7
|
name: string;
|
|
6
8
|
position: number;
|
|
7
|
-
|
|
9
|
+
products: Product[];
|
|
8
10
|
}
|
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
2
17
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
18
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
19
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -12,33 +27,43 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
27
|
exports.Category = void 0;
|
|
13
28
|
var typeorm_1 = require("typeorm");
|
|
14
29
|
var Local_1 = require("./Local");
|
|
15
|
-
var
|
|
30
|
+
var Product_1 = require("./Product");
|
|
31
|
+
var Category = /** @class */ (function (_super) {
|
|
32
|
+
__extends(Category, _super);
|
|
16
33
|
function Category() {
|
|
34
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
17
35
|
}
|
|
18
36
|
__decorate([
|
|
19
|
-
(0, typeorm_1.PrimaryGeneratedColumn)(
|
|
37
|
+
(0, typeorm_1.PrimaryGeneratedColumn)({
|
|
38
|
+
comment: 'Número de identificación (ID) único de cada registro.',
|
|
39
|
+
}),
|
|
20
40
|
__metadata("design:type", Number)
|
|
21
41
|
], Category.prototype, "id", void 0);
|
|
22
42
|
__decorate([
|
|
23
|
-
(0, typeorm_1.
|
|
24
|
-
|
|
25
|
-
|
|
43
|
+
(0, typeorm_1.ManyToOne)(function () { return Local_1.Local; }, function (local) { return local.categories; }, {
|
|
44
|
+
onDelete: 'CASCADE',
|
|
45
|
+
onUpdate: 'NO ACTION',
|
|
46
|
+
}),
|
|
47
|
+
(0, typeorm_1.JoinColumn)({ name: 'local' }),
|
|
48
|
+
__metadata("design:type", Local_1.Local)
|
|
49
|
+
], Category.prototype, "local", void 0);
|
|
26
50
|
__decorate([
|
|
27
|
-
(0, typeorm_1.Column)({ length: 30 }),
|
|
51
|
+
(0, typeorm_1.Column)({ length: 30, comment: 'Nombre de la categoría.' }),
|
|
28
52
|
__metadata("design:type", String)
|
|
29
53
|
], Category.prototype, "name", void 0);
|
|
30
54
|
__decorate([
|
|
31
|
-
(0, typeorm_1.Column)(),
|
|
55
|
+
(0, typeorm_1.Column)({ comment: '¿En qué posición se va a mostrar esta categoría?' }),
|
|
32
56
|
__metadata("design:type", Number)
|
|
33
57
|
], Category.prototype, "position", void 0);
|
|
34
58
|
__decorate([
|
|
35
|
-
(0, typeorm_1.
|
|
36
|
-
(
|
|
37
|
-
|
|
38
|
-
], Category.prototype, "local", void 0);
|
|
59
|
+
(0, typeorm_1.OneToMany)(function () { return Product_1.Product; }, function (product) { return product.category; }),
|
|
60
|
+
__metadata("design:type", Array)
|
|
61
|
+
], Category.prototype, "products", void 0);
|
|
39
62
|
Category = __decorate([
|
|
40
|
-
(0, typeorm_1.Entity)(
|
|
63
|
+
(0, typeorm_1.Entity)({
|
|
64
|
+
comment: 'Lista de categorías que tiene un local en su menú: promos, de la semana, completo...\r\n\r\nEsas categorías será visibles a nivel app como un menu horizontal donde cada categoría tendrá sus productos.',
|
|
65
|
+
})
|
|
41
66
|
], Category);
|
|
42
67
|
return Category;
|
|
43
|
-
}());
|
|
68
|
+
}(typeorm_1.BaseEntity));
|
|
44
69
|
exports.Category = Category;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseEntity } from 'typeorm';
|
|
2
|
+
import { Category } from './Category';
|
|
3
|
+
import { Day } from './Day';
|
|
4
|
+
export declare class ScheduleCategory extends BaseEntity {
|
|
5
|
+
id: number;
|
|
6
|
+
category: Category;
|
|
7
|
+
day: Day;
|
|
8
|
+
start_time: string;
|
|
9
|
+
end_time: string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
+
};
|
|
23
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
24
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
25
|
+
};
|
|
26
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
|
+
exports.ScheduleCategory = void 0;
|
|
28
|
+
var typeorm_1 = require("typeorm");
|
|
29
|
+
var Category_1 = require("./Category");
|
|
30
|
+
var Day_1 = require("./Day");
|
|
31
|
+
var ScheduleCategory = /** @class */ (function (_super) {
|
|
32
|
+
__extends(ScheduleCategory, _super);
|
|
33
|
+
function ScheduleCategory() {
|
|
34
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
35
|
+
}
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.PrimaryGeneratedColumn)({
|
|
38
|
+
comment: 'Número de identificación (ID) único de cada registro.',
|
|
39
|
+
}),
|
|
40
|
+
__metadata("design:type", Number)
|
|
41
|
+
], ScheduleCategory.prototype, "id", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, typeorm_1.ManyToOne)(function () { return Category_1.Category; }, { onDelete: 'CASCADE', onUpdate: 'NO ACTION' }),
|
|
44
|
+
(0, typeorm_1.JoinColumn)({ name: 'category' }),
|
|
45
|
+
__metadata("design:type", Category_1.Category)
|
|
46
|
+
], ScheduleCategory.prototype, "category", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, typeorm_1.ManyToOne)(function () { return Day_1.Day; }, { onDelete: 'RESTRICT', onUpdate: 'NO ACTION' }),
|
|
49
|
+
(0, typeorm_1.JoinColumn)({ name: 'day' }),
|
|
50
|
+
__metadata("design:type", Day_1.Day)
|
|
51
|
+
], ScheduleCategory.prototype, "day", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, typeorm_1.Column)({ comment: 'Hora de inicio.' }),
|
|
54
|
+
__metadata("design:type", String)
|
|
55
|
+
], ScheduleCategory.prototype, "start_time", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, typeorm_1.Column)({ comment: 'Hora de finalización.' }),
|
|
58
|
+
__metadata("design:type", String)
|
|
59
|
+
], ScheduleCategory.prototype, "end_time", void 0);
|
|
60
|
+
ScheduleCategory = __decorate([
|
|
61
|
+
(0, typeorm_1.Entity)('category_schedule', {
|
|
62
|
+
comment: 'Horarios en que se puede ver una categoría, si se desea que una categoría esté los lunes de 7 am a 5 pm se puede hacer.',
|
|
63
|
+
})
|
|
64
|
+
], ScheduleCategory);
|
|
65
|
+
return ScheduleCategory;
|
|
66
|
+
}(typeorm_1.BaseEntity));
|
|
67
|
+
exports.ScheduleCategory = ScheduleCategory;
|
package/dist/entities/City.d.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
|
+
import { BaseEntity } from 'typeorm';
|
|
1
2
|
import { Region } from './Region';
|
|
2
3
|
import { User } from './User';
|
|
3
4
|
import { Company } from './Company';
|
|
4
5
|
import { Local } from './Local';
|
|
5
|
-
export declare class City {
|
|
6
|
+
export declare class City extends BaseEntity {
|
|
6
7
|
id: number;
|
|
7
|
-
name: string;
|
|
8
8
|
region: Region;
|
|
9
|
+
name: string;
|
|
9
10
|
status: number;
|
|
10
11
|
users: User[];
|
|
11
12
|
companies: Company[];
|
package/dist/entities/City.js
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
2
17
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
18
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
19
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -15,24 +30,34 @@ var Region_1 = require("./Region");
|
|
|
15
30
|
var User_1 = require("./User");
|
|
16
31
|
var Company_1 = require("./Company");
|
|
17
32
|
var Local_1 = require("./Local");
|
|
18
|
-
var City = /** @class */ (function () {
|
|
33
|
+
var City = /** @class */ (function (_super) {
|
|
34
|
+
__extends(City, _super);
|
|
19
35
|
function City() {
|
|
36
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
20
37
|
}
|
|
21
38
|
__decorate([
|
|
22
|
-
(0, typeorm_1.PrimaryGeneratedColumn)(
|
|
39
|
+
(0, typeorm_1.PrimaryGeneratedColumn)({
|
|
40
|
+
comment: 'Número de identificación (ID) único de cada registro.',
|
|
41
|
+
}),
|
|
23
42
|
__metadata("design:type", Number)
|
|
24
43
|
], City.prototype, "id", void 0);
|
|
25
44
|
__decorate([
|
|
26
|
-
(0, typeorm_1.
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
(0, typeorm_1.ManyToOne)(function () { return Region_1.Region; }, function (region) { return region.cities; }),
|
|
45
|
+
(0, typeorm_1.ManyToOne)(function () { return Region_1.Region; }, function (region) { return region.cities; }, {
|
|
46
|
+
onDelete: 'RESTRICT',
|
|
47
|
+
onUpdate: 'RESTRICT',
|
|
48
|
+
}),
|
|
31
49
|
(0, typeorm_1.JoinColumn)({ name: 'region' }),
|
|
32
50
|
__metadata("design:type", Region_1.Region)
|
|
33
51
|
], City.prototype, "region", void 0);
|
|
34
52
|
__decorate([
|
|
35
|
-
(0, typeorm_1.Column)({
|
|
53
|
+
(0, typeorm_1.Column)({ length: 50, comment: 'Nombre de la ciudad.' }),
|
|
54
|
+
__metadata("design:type", String)
|
|
55
|
+
], City.prototype, "name", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, typeorm_1.Column)({
|
|
58
|
+
default: 1,
|
|
59
|
+
comment: 'Estado de la ciudad, es decir:\r\n1. Activo: Es visible en la plataforma.\r\n0. Inactivo: No será visible en la plataforma.',
|
|
60
|
+
}),
|
|
36
61
|
__metadata("design:type", Number)
|
|
37
62
|
], City.prototype, "status", void 0);
|
|
38
63
|
__decorate([
|
|
@@ -48,8 +73,8 @@ var City = /** @class */ (function () {
|
|
|
48
73
|
__metadata("design:type", Array)
|
|
49
74
|
], City.prototype, "locals", void 0);
|
|
50
75
|
City = __decorate([
|
|
51
|
-
(0, typeorm_1.Entity)()
|
|
76
|
+
(0, typeorm_1.Entity)({ comment: 'Ciudades donde está visible la plataforma.' })
|
|
52
77
|
], City);
|
|
53
78
|
return City;
|
|
54
|
-
}());
|
|
79
|
+
}(typeorm_1.BaseEntity));
|
|
55
80
|
exports.City = City;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import { BaseEntity } from 'typeorm';
|
|
1
2
|
import { DiscountCodeCompany } from './DiscountCodeCompany';
|
|
2
3
|
import { Company } from './Company';
|
|
3
|
-
export declare class CodeRedemptionHistoryCompany {
|
|
4
|
+
export declare class CodeRedemptionHistoryCompany extends BaseEntity {
|
|
4
5
|
id: number;
|
|
5
6
|
discount_code_company: DiscountCodeCompany;
|
|
6
7
|
company: Company;
|
|
7
|
-
|
|
8
|
-
|
|
8
|
+
date_used: Date;
|
|
9
|
+
discount_applied: string;
|
|
9
10
|
}
|
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
2
17
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
18
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
19
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -13,34 +28,40 @@ exports.CodeRedemptionHistoryCompany = void 0;
|
|
|
13
28
|
var typeorm_1 = require("typeorm");
|
|
14
29
|
var DiscountCodeCompany_1 = require("./DiscountCodeCompany");
|
|
15
30
|
var Company_1 = require("./Company");
|
|
16
|
-
var CodeRedemptionHistoryCompany = /** @class */ (function () {
|
|
31
|
+
var CodeRedemptionHistoryCompany = /** @class */ (function (_super) {
|
|
32
|
+
__extends(CodeRedemptionHistoryCompany, _super);
|
|
17
33
|
function CodeRedemptionHistoryCompany() {
|
|
34
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
18
35
|
}
|
|
19
36
|
__decorate([
|
|
20
|
-
(0, typeorm_1.PrimaryGeneratedColumn)(
|
|
37
|
+
(0, typeorm_1.PrimaryGeneratedColumn)({
|
|
38
|
+
comment: 'Número de identificación (ID) único de cada registro.',
|
|
39
|
+
}),
|
|
21
40
|
__metadata("design:type", Number)
|
|
22
41
|
], CodeRedemptionHistoryCompany.prototype, "id", void 0);
|
|
23
42
|
__decorate([
|
|
24
|
-
(0, typeorm_1.ManyToOne)(function () { return DiscountCodeCompany_1.DiscountCodeCompany; }, function (company) { return company.code_redemptions_history_company; }),
|
|
43
|
+
(0, typeorm_1.ManyToOne)(function () { return DiscountCodeCompany_1.DiscountCodeCompany; }, function (company) { return company.code_redemptions_history_company; }, { onDelete: 'CASCADE', onUpdate: 'NO ACTION' }),
|
|
25
44
|
(0, typeorm_1.JoinColumn)({ name: 'discount_code_company' }),
|
|
26
45
|
__metadata("design:type", DiscountCodeCompany_1.DiscountCodeCompany)
|
|
27
46
|
], CodeRedemptionHistoryCompany.prototype, "discount_code_company", void 0);
|
|
28
47
|
__decorate([
|
|
29
|
-
(0, typeorm_1.ManyToOne)(function () { return Company_1.Company; }, function (company) { return company.code_redemption_history_company; }),
|
|
48
|
+
(0, typeorm_1.ManyToOne)(function () { return Company_1.Company; }, function (company) { return company.code_redemption_history_company; }, { onDelete: 'CASCADE', onUpdate: 'NO ACTION' }),
|
|
30
49
|
(0, typeorm_1.JoinColumn)({ name: 'company' }),
|
|
31
50
|
__metadata("design:type", Company_1.Company)
|
|
32
51
|
], CodeRedemptionHistoryCompany.prototype, "company", void 0);
|
|
33
52
|
__decorate([
|
|
34
|
-
(0, typeorm_1.Column)({ type: 'datetime' }),
|
|
53
|
+
(0, typeorm_1.Column)({ type: 'datetime', comment: 'Fecha cuando se usó el descuento.' }),
|
|
35
54
|
__metadata("design:type", Date)
|
|
36
|
-
], CodeRedemptionHistoryCompany.prototype, "
|
|
55
|
+
], CodeRedemptionHistoryCompany.prototype, "date_used", void 0);
|
|
37
56
|
__decorate([
|
|
38
|
-
(0, typeorm_1.Column)({ length: 10 }),
|
|
57
|
+
(0, typeorm_1.Column)({ length: 10, comment: 'El valor del descuento aplicado.' }),
|
|
39
58
|
__metadata("design:type", String)
|
|
40
|
-
], CodeRedemptionHistoryCompany.prototype, "
|
|
59
|
+
], CodeRedemptionHistoryCompany.prototype, "discount_applied", void 0);
|
|
41
60
|
CodeRedemptionHistoryCompany = __decorate([
|
|
42
|
-
(0, typeorm_1.Entity)('code_redemption_history_company'
|
|
61
|
+
(0, typeorm_1.Entity)('code_redemption_history_company', {
|
|
62
|
+
comment: 'Historial de códigos redimidos por la empresa, si en algún momento cuando una empresa se registre en la plataforma, entonces se le puede dar un descuento o un plan personalizado.',
|
|
63
|
+
})
|
|
43
64
|
], CodeRedemptionHistoryCompany);
|
|
44
65
|
return CodeRedemptionHistoryCompany;
|
|
45
|
-
}());
|
|
66
|
+
}(typeorm_1.BaseEntity));
|
|
46
67
|
exports.CodeRedemptionHistoryCompany = CodeRedemptionHistoryCompany;
|
|
@@ -17,29 +17,36 @@ var CodeRedemptionHistoryUser = /** @class */ (function () {
|
|
|
17
17
|
function CodeRedemptionHistoryUser() {
|
|
18
18
|
}
|
|
19
19
|
__decorate([
|
|
20
|
-
(0, typeorm_1.PrimaryGeneratedColumn)(
|
|
20
|
+
(0, typeorm_1.PrimaryGeneratedColumn)({
|
|
21
|
+
comment: 'Número de identificación (ID) único de cada registro.',
|
|
22
|
+
}),
|
|
21
23
|
__metadata("design:type", Number)
|
|
22
24
|
], CodeRedemptionHistoryUser.prototype, "id", void 0);
|
|
23
25
|
__decorate([
|
|
24
|
-
(0, typeorm_1.ManyToOne)(function () { return DiscountCodeUser_1.DiscountCodeUser; }, function (discountCodeUser) { return discountCodeUser.code_redemptions_history_users; }),
|
|
26
|
+
(0, typeorm_1.ManyToOne)(function () { return DiscountCodeUser_1.DiscountCodeUser; }, function (discountCodeUser) { return discountCodeUser.code_redemptions_history_users; }, { onDelete: 'CASCADE', onUpdate: 'NO ACTION' }),
|
|
25
27
|
(0, typeorm_1.JoinColumn)({ name: 'discount_code_user' }),
|
|
26
28
|
__metadata("design:type", DiscountCodeUser_1.DiscountCodeUser)
|
|
27
29
|
], CodeRedemptionHistoryUser.prototype, "discount_code_user", void 0);
|
|
28
30
|
__decorate([
|
|
29
|
-
(0, typeorm_1.ManyToOne)(function () { return User_1.User; }, function (user) { return user.code_redemption_history_users; }
|
|
31
|
+
(0, typeorm_1.ManyToOne)(function () { return User_1.User; }, function (user) { return user.code_redemption_history_users; }, {
|
|
32
|
+
onDelete: 'CASCADE',
|
|
33
|
+
onUpdate: 'NO ACTION',
|
|
34
|
+
}),
|
|
30
35
|
(0, typeorm_1.JoinColumn)({ name: 'user' }),
|
|
31
36
|
__metadata("design:type", User_1.User)
|
|
32
37
|
], CodeRedemptionHistoryUser.prototype, "user", void 0);
|
|
33
38
|
__decorate([
|
|
34
|
-
(0, typeorm_1.Column)({ type: 'datetime' }),
|
|
39
|
+
(0, typeorm_1.Column)({ type: 'datetime', comment: 'Fecha cuando se usó el descuento.' }),
|
|
35
40
|
__metadata("design:type", Date)
|
|
36
41
|
], CodeRedemptionHistoryUser.prototype, "date_used", void 0);
|
|
37
42
|
__decorate([
|
|
38
|
-
(0, typeorm_1.Column)({ length: 10 }),
|
|
43
|
+
(0, typeorm_1.Column)({ length: 10, comment: 'El valor del descuento aplicado.' }),
|
|
39
44
|
__metadata("design:type", String)
|
|
40
45
|
], CodeRedemptionHistoryUser.prototype, "discount_applied", void 0);
|
|
41
46
|
CodeRedemptionHistoryUser = __decorate([
|
|
42
|
-
(0, typeorm_1.Entity)('code_redemption_history_user'
|
|
47
|
+
(0, typeorm_1.Entity)('code_redemption_history_user', {
|
|
48
|
+
comment: 'Historial de los códigos redimidos por los usuarios, es decir, si un local desea agregar un código de descuento para qué los usuarios puedan tener un descuento, entonces acá van a estar los que lo redimieron.',
|
|
49
|
+
})
|
|
43
50
|
], CodeRedemptionHistoryUser);
|
|
44
51
|
return CodeRedemptionHistoryUser;
|
|
45
52
|
}());
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BaseEntity } from 'typeorm';
|
|
1
2
|
import { City } from './City';
|
|
2
3
|
import { User } from './User';
|
|
3
4
|
import { Plan } from './Plan';
|
|
@@ -6,7 +7,7 @@ import { Local } from './Local';
|
|
|
6
7
|
import { CodeRedemptionHistoryCompany } from './CodeRedemptionHistoryCompany';
|
|
7
8
|
import { DiscountCodeUser } from './DiscountCodeUser';
|
|
8
9
|
import { ProductTopping } from './ProductTopping';
|
|
9
|
-
export declare class Company {
|
|
10
|
+
export declare class Company extends BaseEntity {
|
|
10
11
|
id: number;
|
|
11
12
|
name: string;
|
|
12
13
|
city: City;
|
package/dist/entities/Company.js
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
2
17
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
18
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
19
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -19,24 +34,34 @@ var Local_1 = require("./Local");
|
|
|
19
34
|
var CodeRedemptionHistoryCompany_1 = require("./CodeRedemptionHistoryCompany");
|
|
20
35
|
var DiscountCodeUser_1 = require("./DiscountCodeUser");
|
|
21
36
|
var ProductTopping_1 = require("./ProductTopping");
|
|
22
|
-
var Company = /** @class */ (function () {
|
|
37
|
+
var Company = /** @class */ (function (_super) {
|
|
38
|
+
__extends(Company, _super);
|
|
23
39
|
function Company() {
|
|
40
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
24
41
|
}
|
|
25
42
|
__decorate([
|
|
26
|
-
(0, typeorm_1.PrimaryGeneratedColumn)(
|
|
43
|
+
(0, typeorm_1.PrimaryGeneratedColumn)({
|
|
44
|
+
comment: 'Número de identificación (ID) único de cada empresa.',
|
|
45
|
+
}),
|
|
27
46
|
__metadata("design:type", Number)
|
|
28
47
|
], Company.prototype, "id", void 0);
|
|
29
48
|
__decorate([
|
|
30
|
-
(0, typeorm_1.Column)({ length: 50 }),
|
|
49
|
+
(0, typeorm_1.Column)({ length: 50, comment: 'Nombre de la empresa.' }),
|
|
31
50
|
__metadata("design:type", String)
|
|
32
51
|
], Company.prototype, "name", void 0);
|
|
33
52
|
__decorate([
|
|
34
|
-
(0, typeorm_1.ManyToOne)(function () { return City_1.City; }, function (city) { return city.companies; }
|
|
53
|
+
(0, typeorm_1.ManyToOne)(function () { return City_1.City; }, function (city) { return city.companies; }, {
|
|
54
|
+
onDelete: 'RESTRICT',
|
|
55
|
+
onUpdate: 'NO ACTION',
|
|
56
|
+
}),
|
|
35
57
|
(0, typeorm_1.JoinColumn)({ name: 'city' }),
|
|
36
58
|
__metadata("design:type", City_1.City)
|
|
37
59
|
], Company.prototype, "city", void 0);
|
|
38
60
|
__decorate([
|
|
39
|
-
(0, typeorm_1.ManyToOne)(function () { return User_1.User; }, function (city) { return city.companies; }
|
|
61
|
+
(0, typeorm_1.ManyToOne)(function () { return User_1.User; }, function (city) { return city.companies; }, {
|
|
62
|
+
onDelete: 'CASCADE',
|
|
63
|
+
onUpdate: 'NO ACTION',
|
|
64
|
+
}),
|
|
40
65
|
(0, typeorm_1.JoinColumn)({ name: 'user' }),
|
|
41
66
|
__metadata("design:type", User_1.User)
|
|
42
67
|
], Company.prototype, "user", void 0);
|
|
@@ -44,23 +69,29 @@ var Company = /** @class */ (function () {
|
|
|
44
69
|
(0, typeorm_1.Column)({
|
|
45
70
|
type: 'longtext',
|
|
46
71
|
nullable: true,
|
|
47
|
-
comment: 'Campo de tipo JSON donde se guarda información necesaria para la empresa',
|
|
72
|
+
comment: 'Campo de tipo JSON donde se guarda información necesaria para la empresa.',
|
|
48
73
|
}),
|
|
49
74
|
__metadata("design:type", String)
|
|
50
75
|
], Company.prototype, "profile", void 0);
|
|
51
76
|
__decorate([
|
|
52
|
-
(0, typeorm_1.Column)({
|
|
77
|
+
(0, typeorm_1.Column)({
|
|
78
|
+
default: 1,
|
|
79
|
+
comment: 'Cantidad de locales qué la empresa de comida rápida puede tener por defecto, por defecto es un solo local.',
|
|
80
|
+
}),
|
|
53
81
|
__metadata("design:type", Number)
|
|
54
82
|
], Company.prototype, "quantity_locals", void 0);
|
|
55
83
|
__decorate([
|
|
56
|
-
(0, typeorm_1.Column)({
|
|
84
|
+
(0, typeorm_1.Column)({
|
|
85
|
+
default: 6,
|
|
86
|
+
comment: 'La cantidad de usuarios que puede asociar a la empresa, es decir, si la empresa desea agregar cajeros, administradores para cada punto lo puede hacer. Por defecto, la cantidad de usuarios que puede tener la empresa es de 6.',
|
|
87
|
+
}),
|
|
57
88
|
__metadata("design:type", Number)
|
|
58
89
|
], Company.prototype, "quantity_users", void 0);
|
|
59
90
|
__decorate([
|
|
60
91
|
(0, typeorm_1.Column)({
|
|
61
92
|
type: 'longtext',
|
|
62
93
|
nullable: true,
|
|
63
|
-
comment: 'Información de tipo JSON donde se guarda la información legal de la empresa',
|
|
94
|
+
comment: 'Información de tipo JSON donde se guarda la información legal de la empresa.',
|
|
64
95
|
}),
|
|
65
96
|
__metadata("design:type", String)
|
|
66
97
|
], Company.prototype, "legal_information", void 0);
|
|
@@ -68,43 +99,48 @@ var Company = /** @class */ (function () {
|
|
|
68
99
|
(0, typeorm_1.Column)({
|
|
69
100
|
type: 'longtext',
|
|
70
101
|
nullable: true,
|
|
71
|
-
comment: 'Información de tipo JSON donde se guarda la información del representante legal del representante',
|
|
102
|
+
comment: 'Información de tipo JSON donde se guarda la información del representante legal del representante.',
|
|
72
103
|
}),
|
|
73
104
|
__metadata("design:type", String)
|
|
74
105
|
], Company.prototype, "legal_agent", void 0);
|
|
75
106
|
__decorate([
|
|
76
|
-
(0, typeorm_1.ManyToOne)(function () { return Plan_1.Plan; }, function (plan) { return plan.companies; }
|
|
107
|
+
(0, typeorm_1.ManyToOne)(function () { return Plan_1.Plan; }, function (plan) { return plan.companies; }, {
|
|
108
|
+
onDelete: 'RESTRICT',
|
|
109
|
+
onUpdate: 'RESTRICT',
|
|
110
|
+
}),
|
|
77
111
|
(0, typeorm_1.JoinColumn)({ name: 'plan' }),
|
|
78
112
|
__metadata("design:type", Plan_1.Plan)
|
|
79
113
|
], Company.prototype, "plan", void 0);
|
|
80
114
|
__decorate([
|
|
81
|
-
(0, typeorm_1.Column)({ type: 'datetime' }),
|
|
115
|
+
(0, typeorm_1.Column)({ type: 'datetime', comment: 'Fecha creación de la empresa.' }),
|
|
82
116
|
__metadata("design:type", Date)
|
|
83
117
|
], Company.prototype, "created", void 0);
|
|
84
118
|
__decorate([
|
|
85
|
-
(0, typeorm_1.Column)({
|
|
119
|
+
(0, typeorm_1.Column)({
|
|
120
|
+
type: 'date',
|
|
121
|
+
nullable: true,
|
|
122
|
+
comment: 'Cuándo expira el plan de la empresa.',
|
|
123
|
+
}),
|
|
86
124
|
__metadata("design:type", Date)
|
|
87
125
|
], Company.prototype, "expiration", void 0);
|
|
88
126
|
__decorate([
|
|
89
|
-
(0, typeorm_1.Column)({
|
|
127
|
+
(0, typeorm_1.Column)({
|
|
128
|
+
type: 'datetime',
|
|
129
|
+
comment: 'Fecha de actualización de la empresa.',
|
|
130
|
+
}),
|
|
90
131
|
__metadata("design:type", Date)
|
|
91
132
|
], Company.prototype, "updated", void 0);
|
|
92
133
|
__decorate([
|
|
93
|
-
(0, typeorm_1.Column)({
|
|
134
|
+
(0, typeorm_1.Column)({
|
|
135
|
+
default: 1,
|
|
136
|
+
comment: 'Estado de la empresa, es decir:\r\n1. Activo: Es visible en la plataforma.\r\n0. Inactivo: No será visible en la plataforma.',
|
|
137
|
+
}),
|
|
94
138
|
__metadata("design:type", Number)
|
|
95
139
|
], Company.prototype, "status", void 0);
|
|
96
140
|
__decorate([
|
|
97
|
-
(0, typeorm_1.ManyToMany)(function () { return TypeFood_1.TypeFood; }),
|
|
141
|
+
(0, typeorm_1.ManyToMany)(function () { return TypeFood_1.TypeFood; }, { onDelete: 'CASCADE', onUpdate: 'NO ACTION' }),
|
|
98
142
|
(0, typeorm_1.JoinTable)({
|
|
99
143
|
name: 'type_food_company',
|
|
100
|
-
joinColumn: {
|
|
101
|
-
name: 'company',
|
|
102
|
-
referencedColumnName: 'id',
|
|
103
|
-
},
|
|
104
|
-
inverseJoinColumn: {
|
|
105
|
-
name: 'type_food',
|
|
106
|
-
referencedColumnName: 'id',
|
|
107
|
-
},
|
|
108
144
|
}),
|
|
109
145
|
__metadata("design:type", Array)
|
|
110
146
|
], Company.prototype, "types_food", void 0);
|
|
@@ -125,8 +161,10 @@ var Company = /** @class */ (function () {
|
|
|
125
161
|
__metadata("design:type", Array)
|
|
126
162
|
], Company.prototype, "product_toppings", void 0);
|
|
127
163
|
Company = __decorate([
|
|
128
|
-
(0, typeorm_1.Entity)(
|
|
164
|
+
(0, typeorm_1.Entity)({
|
|
165
|
+
comment: 'Tabla creada para las empresas de comida rápida que deseen registrarse en la plataforma.',
|
|
166
|
+
})
|
|
129
167
|
], Company);
|
|
130
168
|
return Company;
|
|
131
|
-
}());
|
|
169
|
+
}(typeorm_1.BaseEntity));
|
|
132
170
|
exports.Company = Company;
|
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
2
17
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
18
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
19
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -11,11 +26,16 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
26
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
27
|
exports.Configuration = void 0;
|
|
13
28
|
var typeorm_1 = require("typeorm");
|
|
14
|
-
var Configuration = /** @class */ (function () {
|
|
29
|
+
var Configuration = /** @class */ (function (_super) {
|
|
30
|
+
__extends(Configuration, _super);
|
|
15
31
|
function Configuration() {
|
|
32
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
16
33
|
}
|
|
17
34
|
__decorate([
|
|
18
|
-
(0, typeorm_1.PrimaryColumn)({
|
|
35
|
+
(0, typeorm_1.PrimaryColumn)({
|
|
36
|
+
length: 20,
|
|
37
|
+
comment: 'Nombre del perfil que se está usando en la aplicación.',
|
|
38
|
+
}),
|
|
19
39
|
__metadata("design:type", String)
|
|
20
40
|
], Configuration.prototype, "profile", void 0);
|
|
21
41
|
__decorate([
|
|
@@ -26,8 +46,10 @@ var Configuration = /** @class */ (function () {
|
|
|
26
46
|
__metadata("design:type", String)
|
|
27
47
|
], Configuration.prototype, "settings", void 0);
|
|
28
48
|
Configuration = __decorate([
|
|
29
|
-
(0, typeorm_1.Entity)(
|
|
49
|
+
(0, typeorm_1.Entity)({
|
|
50
|
+
comment: 'Esta tabla tiene como fin agregar toda la información de la empresa, logos, urls de documentación, nombres, urls de las páginas... \n\n Esto se se guarda como un string de tipo JSON para que sea fácil almacenarlo y generar nuevos campos si es necesario.',
|
|
51
|
+
})
|
|
30
52
|
], Configuration);
|
|
31
53
|
return Configuration;
|
|
32
|
-
}());
|
|
54
|
+
}(typeorm_1.BaseEntity));
|
|
33
55
|
exports.Configuration = Configuration;
|