@admc-go-th/admc-library 1.0.111 → 1.0.112
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.
|
@@ -19,6 +19,7 @@ export interface msWebsiteAttributes {
|
|
|
19
19
|
fax?: string;
|
|
20
20
|
office?: string;
|
|
21
21
|
opened?: string;
|
|
22
|
+
info?: object;
|
|
22
23
|
createdBy?: string;
|
|
23
24
|
createdDate?: Date;
|
|
24
25
|
updatedBy?: string;
|
|
@@ -130,6 +131,12 @@ export class msWebsite extends Model<msWebsiteAttributes, msWebsiteAttributes> i
|
|
|
130
131
|
})
|
|
131
132
|
declare opened?: string;
|
|
132
133
|
|
|
134
|
+
@Column({
|
|
135
|
+
allowNull: true,
|
|
136
|
+
type: DataType.JSON
|
|
137
|
+
})
|
|
138
|
+
declare info?: object;
|
|
139
|
+
|
|
133
140
|
@Column({
|
|
134
141
|
field: "created_by",
|
|
135
142
|
allowNull: true,
|
|
@@ -6558,6 +6558,12 @@ __decorateClass([
|
|
|
6558
6558
|
type: import_sequelize_typescript56.DataType.DATEONLY
|
|
6559
6559
|
})
|
|
6560
6560
|
], msWebsite.prototype, "opened", 2);
|
|
6561
|
+
__decorateClass([
|
|
6562
|
+
(0, import_sequelize_typescript56.Column)({
|
|
6563
|
+
allowNull: true,
|
|
6564
|
+
type: import_sequelize_typescript56.DataType.JSON
|
|
6565
|
+
})
|
|
6566
|
+
], msWebsite.prototype, "info", 2);
|
|
6561
6567
|
__decorateClass([
|
|
6562
6568
|
(0, import_sequelize_typescript56.Column)({
|
|
6563
6569
|
field: "created_by",
|
|
@@ -17,6 +17,7 @@ interface msWebsiteAttributes {
|
|
|
17
17
|
fax?: string;
|
|
18
18
|
office?: string;
|
|
19
19
|
opened?: string;
|
|
20
|
+
info?: object;
|
|
20
21
|
createdBy?: string;
|
|
21
22
|
createdDate?: Date;
|
|
22
23
|
updatedBy?: string;
|
|
@@ -39,6 +40,7 @@ declare class msWebsite extends Model<msWebsiteAttributes, msWebsiteAttributes>
|
|
|
39
40
|
fax?: string;
|
|
40
41
|
office?: string;
|
|
41
42
|
opened?: string;
|
|
43
|
+
info?: object;
|
|
42
44
|
createdBy?: string;
|
|
43
45
|
createdDate?: Date;
|
|
44
46
|
updatedBy?: string;
|
|
@@ -133,6 +133,12 @@ __decorateClass([
|
|
|
133
133
|
type: import_sequelize_typescript.DataType.DATEONLY
|
|
134
134
|
})
|
|
135
135
|
], msWebsite.prototype, "opened", 2);
|
|
136
|
+
__decorateClass([
|
|
137
|
+
(0, import_sequelize_typescript.Column)({
|
|
138
|
+
allowNull: true,
|
|
139
|
+
type: import_sequelize_typescript.DataType.JSON
|
|
140
|
+
})
|
|
141
|
+
], msWebsite.prototype, "info", 2);
|
|
136
142
|
__decorateClass([
|
|
137
143
|
(0, import_sequelize_typescript.Column)({
|
|
138
144
|
field: "created_by",
|