@admc-go-th/admc-library 1.0.2 → 1.0.3

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.
@@ -0,0 +1,572 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var __decorateClass = (decorators, target, key, kind) => {
20
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
21
+ for (var i = decorators.length - 1, decorator; i >= 0; i--)
22
+ if (decorator = decorators[i])
23
+ result = (kind ? decorator(target, key, result) : decorator(result)) || result;
24
+ if (kind && result) __defProp(target, key, result);
25
+ return result;
26
+ };
27
+
28
+ // src/databases/models/index.ts
29
+ var models_exports = {};
30
+ __export(models_exports, {
31
+ authAssignment: () => authAssignment,
32
+ authItem: () => authItem,
33
+ authItemChild: () => authItemChild,
34
+ authRule: () => authRule,
35
+ mdContent: () => mdContent,
36
+ mdContentGroup: () => mdContentGroup,
37
+ users: () => users
38
+ });
39
+ module.exports = __toCommonJS(models_exports);
40
+
41
+ // src/databases/models/authAssignment.ts
42
+ var import_sequelize_typescript = require("sequelize-typescript");
43
+ var authAssignment = class extends import_sequelize_typescript.Model {
44
+ };
45
+ __decorateClass([
46
+ (0, import_sequelize_typescript.Column)({
47
+ field: "item_name",
48
+ primaryKey: true,
49
+ type: import_sequelize_typescript.DataType.STRING(64)
50
+ })
51
+ ], authAssignment.prototype, "itemName", 2);
52
+ __decorateClass([
53
+ (0, import_sequelize_typescript.Column)({
54
+ field: "user_id",
55
+ primaryKey: true,
56
+ type: import_sequelize_typescript.DataType.INTEGER
57
+ })
58
+ ], authAssignment.prototype, "userId", 2);
59
+ __decorateClass([
60
+ (0, import_sequelize_typescript.Column)({
61
+ field: "created_by",
62
+ allowNull: true,
63
+ type: import_sequelize_typescript.DataType.STRING(60)
64
+ })
65
+ ], authAssignment.prototype, "createdBy", 2);
66
+ __decorateClass([
67
+ (0, import_sequelize_typescript.Column)({
68
+ field: "created_date",
69
+ allowNull: true,
70
+ type: import_sequelize_typescript.DataType.DATE
71
+ })
72
+ ], authAssignment.prototype, "createdDate", 2);
73
+ __decorateClass([
74
+ (0, import_sequelize_typescript.Column)({
75
+ field: "updated_by",
76
+ allowNull: true,
77
+ type: import_sequelize_typescript.DataType.STRING(60)
78
+ })
79
+ ], authAssignment.prototype, "updatedBy", 2);
80
+ __decorateClass([
81
+ (0, import_sequelize_typescript.Column)({
82
+ field: "updated_date",
83
+ allowNull: true,
84
+ type: import_sequelize_typescript.DataType.DATE
85
+ })
86
+ ], authAssignment.prototype, "updatedDate", 2);
87
+ authAssignment = __decorateClass([
88
+ (0, import_sequelize_typescript.Table)({
89
+ tableName: "auth_assignment",
90
+ timestamps: false
91
+ })
92
+ ], authAssignment);
93
+
94
+ // src/databases/models/authItem.ts
95
+ var import_sequelize_typescript2 = require("sequelize-typescript");
96
+ var authItem = class extends import_sequelize_typescript2.Model {
97
+ };
98
+ __decorateClass([
99
+ (0, import_sequelize_typescript2.Column)({
100
+ primaryKey: true,
101
+ type: import_sequelize_typescript2.DataType.STRING(64)
102
+ })
103
+ ], authItem.prototype, "name", 2);
104
+ __decorateClass([
105
+ (0, import_sequelize_typescript2.Column)({
106
+ type: import_sequelize_typescript2.DataType.SMALLINT
107
+ })
108
+ ], authItem.prototype, "type", 2);
109
+ __decorateClass([
110
+ (0, import_sequelize_typescript2.Column)({
111
+ allowNull: true,
112
+ type: import_sequelize_typescript2.DataType.STRING
113
+ })
114
+ ], authItem.prototype, "description", 2);
115
+ __decorateClass([
116
+ (0, import_sequelize_typescript2.Column)({
117
+ field: "rule_name",
118
+ allowNull: true,
119
+ type: import_sequelize_typescript2.DataType.STRING(64)
120
+ })
121
+ ], authItem.prototype, "ruleName", 2);
122
+ __decorateClass([
123
+ (0, import_sequelize_typescript2.Column)({
124
+ allowNull: true,
125
+ type: import_sequelize_typescript2.DataType.BLOB
126
+ })
127
+ ], authItem.prototype, "data", 2);
128
+ __decorateClass([
129
+ (0, import_sequelize_typescript2.Column)({
130
+ allowNull: true,
131
+ type: import_sequelize_typescript2.DataType.INTEGER,
132
+ defaultValue: "1"
133
+ })
134
+ ], authItem.prototype, "status", 2);
135
+ __decorateClass([
136
+ (0, import_sequelize_typescript2.Column)({
137
+ field: "created_by",
138
+ allowNull: true,
139
+ type: import_sequelize_typescript2.DataType.STRING(60)
140
+ })
141
+ ], authItem.prototype, "createdBy", 2);
142
+ __decorateClass([
143
+ (0, import_sequelize_typescript2.Column)({
144
+ field: "created_date",
145
+ allowNull: true,
146
+ type: import_sequelize_typescript2.DataType.DATE
147
+ })
148
+ ], authItem.prototype, "createdDate", 2);
149
+ __decorateClass([
150
+ (0, import_sequelize_typescript2.Column)({
151
+ field: "updated_by",
152
+ allowNull: true,
153
+ type: import_sequelize_typescript2.DataType.STRING(60)
154
+ })
155
+ ], authItem.prototype, "updatedBy", 2);
156
+ __decorateClass([
157
+ (0, import_sequelize_typescript2.Column)({
158
+ field: "updated_date",
159
+ allowNull: true,
160
+ type: import_sequelize_typescript2.DataType.DATE
161
+ })
162
+ ], authItem.prototype, "updatedDate", 2);
163
+ authItem = __decorateClass([
164
+ (0, import_sequelize_typescript2.Table)({
165
+ tableName: "auth_item",
166
+ timestamps: false
167
+ })
168
+ ], authItem);
169
+
170
+ // src/databases/models/authItemChild.ts
171
+ var import_sequelize_typescript3 = require("sequelize-typescript");
172
+ var authItemChild = class extends import_sequelize_typescript3.Model {
173
+ };
174
+ __decorateClass([
175
+ (0, import_sequelize_typescript3.Column)({
176
+ primaryKey: true,
177
+ type: import_sequelize_typescript3.DataType.STRING(64)
178
+ })
179
+ ], authItemChild.prototype, "parent", 2);
180
+ __decorateClass([
181
+ (0, import_sequelize_typescript3.Column)({
182
+ primaryKey: true,
183
+ type: import_sequelize_typescript3.DataType.STRING(64)
184
+ })
185
+ ], authItemChild.prototype, "child", 2);
186
+ authItemChild = __decorateClass([
187
+ (0, import_sequelize_typescript3.Table)({
188
+ tableName: "auth_item_child",
189
+ timestamps: false
190
+ })
191
+ ], authItemChild);
192
+
193
+ // src/databases/models/authRule.ts
194
+ var import_sequelize_typescript4 = require("sequelize-typescript");
195
+ var authRule = class extends import_sequelize_typescript4.Model {
196
+ };
197
+ __decorateClass([
198
+ (0, import_sequelize_typescript4.Column)({
199
+ primaryKey: true,
200
+ type: import_sequelize_typescript4.DataType.STRING(64)
201
+ })
202
+ ], authRule.prototype, "name", 2);
203
+ __decorateClass([
204
+ (0, import_sequelize_typescript4.Column)({
205
+ allowNull: true,
206
+ type: import_sequelize_typescript4.DataType.BLOB
207
+ })
208
+ ], authRule.prototype, "data", 2);
209
+ __decorateClass([
210
+ (0, import_sequelize_typescript4.Column)({
211
+ field: "created_by",
212
+ allowNull: true,
213
+ type: import_sequelize_typescript4.DataType.STRING(60)
214
+ })
215
+ ], authRule.prototype, "createdBy", 2);
216
+ __decorateClass([
217
+ (0, import_sequelize_typescript4.Column)({
218
+ field: "created_date",
219
+ allowNull: true,
220
+ type: import_sequelize_typescript4.DataType.DATE
221
+ })
222
+ ], authRule.prototype, "createdDate", 2);
223
+ __decorateClass([
224
+ (0, import_sequelize_typescript4.Column)({
225
+ field: "updated_by",
226
+ allowNull: true,
227
+ type: import_sequelize_typescript4.DataType.STRING(60)
228
+ })
229
+ ], authRule.prototype, "updatedBy", 2);
230
+ __decorateClass([
231
+ (0, import_sequelize_typescript4.Column)({
232
+ field: "updated_date",
233
+ allowNull: true,
234
+ type: import_sequelize_typescript4.DataType.DATE
235
+ })
236
+ ], authRule.prototype, "updatedDate", 2);
237
+ authRule = __decorateClass([
238
+ (0, import_sequelize_typescript4.Table)({
239
+ tableName: "auth_rule",
240
+ timestamps: false
241
+ })
242
+ ], authRule);
243
+
244
+ // src/databases/models/mdContent.ts
245
+ var import_sequelize_typescript5 = require("sequelize-typescript");
246
+ var mdContent = class extends import_sequelize_typescript5.Model {
247
+ };
248
+ __decorateClass([
249
+ (0, import_sequelize_typescript5.Column)({
250
+ primaryKey: true,
251
+ autoIncrement: true,
252
+ type: import_sequelize_typescript5.DataType.INTEGER
253
+ })
254
+ ], mdContent.prototype, "id", 2);
255
+ __decorateClass([
256
+ (0, import_sequelize_typescript5.Column)({
257
+ type: import_sequelize_typescript5.DataType.INTEGER
258
+ })
259
+ ], mdContent.prototype, "uuid", 2);
260
+ __decorateClass([
261
+ (0, import_sequelize_typescript5.Column)({
262
+ field: "group_id",
263
+ allowNull: true,
264
+ type: import_sequelize_typescript5.DataType.INTEGER
265
+ })
266
+ ], mdContent.prototype, "groupId", 2);
267
+ __decorateClass([
268
+ (0, import_sequelize_typescript5.Column)({
269
+ field: "user_id",
270
+ type: import_sequelize_typescript5.DataType.INTEGER
271
+ })
272
+ ], mdContent.prototype, "userId", 2);
273
+ __decorateClass([
274
+ (0, import_sequelize_typescript5.Column)({
275
+ allowNull: true,
276
+ type: import_sequelize_typescript5.DataType.STRING(255)
277
+ })
278
+ ], mdContent.prototype, "title", 2);
279
+ __decorateClass([
280
+ (0, import_sequelize_typescript5.Column)({
281
+ allowNull: true,
282
+ type: import_sequelize_typescript5.DataType.STRING
283
+ })
284
+ ], mdContent.prototype, "detail", 2);
285
+ __decorateClass([
286
+ (0, import_sequelize_typescript5.Column)({
287
+ field: "meta_title",
288
+ allowNull: true,
289
+ type: import_sequelize_typescript5.DataType.STRING(255)
290
+ })
291
+ ], mdContent.prototype, "metaTitle", 2);
292
+ __decorateClass([
293
+ (0, import_sequelize_typescript5.Column)({
294
+ field: "meta_keyword",
295
+ allowNull: true,
296
+ type: import_sequelize_typescript5.DataType.STRING(255)
297
+ })
298
+ ], mdContent.prototype, "metaKeyword", 2);
299
+ __decorateClass([
300
+ (0, import_sequelize_typescript5.Column)({
301
+ field: "meta_description",
302
+ allowNull: true,
303
+ type: import_sequelize_typescript5.DataType.STRING(255)
304
+ })
305
+ ], mdContent.prototype, "metaDescription", 2);
306
+ __decorateClass([
307
+ (0, import_sequelize_typescript5.Column)({
308
+ field: "image_cover",
309
+ allowNull: true,
310
+ type: import_sequelize_typescript5.DataType.STRING(255)
311
+ })
312
+ ], mdContent.prototype, "imageCover", 2);
313
+ __decorateClass([
314
+ (0, import_sequelize_typescript5.Column)({
315
+ field: "image_gallery",
316
+ allowNull: true,
317
+ type: import_sequelize_typescript5.DataType.STRING
318
+ })
319
+ ], mdContent.prototype, "imageGallery", 2);
320
+ __decorateClass([
321
+ (0, import_sequelize_typescript5.Column)({
322
+ field: "created_by",
323
+ allowNull: true,
324
+ type: import_sequelize_typescript5.DataType.STRING(60)
325
+ })
326
+ ], mdContent.prototype, "createdBy", 2);
327
+ __decorateClass([
328
+ (0, import_sequelize_typescript5.Column)({
329
+ field: "created_date",
330
+ allowNull: true,
331
+ type: import_sequelize_typescript5.DataType.DATE
332
+ })
333
+ ], mdContent.prototype, "createdDate", 2);
334
+ __decorateClass([
335
+ (0, import_sequelize_typescript5.Column)({
336
+ field: "updated_by",
337
+ allowNull: true,
338
+ type: import_sequelize_typescript5.DataType.STRING(60)
339
+ })
340
+ ], mdContent.prototype, "updatedBy", 2);
341
+ __decorateClass([
342
+ (0, import_sequelize_typescript5.Column)({
343
+ field: "updated_date",
344
+ allowNull: true,
345
+ type: import_sequelize_typescript5.DataType.DATE
346
+ })
347
+ ], mdContent.prototype, "updatedDate", 2);
348
+ mdContent = __decorateClass([
349
+ (0, import_sequelize_typescript5.Table)({
350
+ tableName: "md_content",
351
+ timestamps: false
352
+ })
353
+ ], mdContent);
354
+
355
+ // src/databases/models/mdContentGroup.ts
356
+ var import_sequelize_typescript6 = require("sequelize-typescript");
357
+ var mdContentGroup = class extends import_sequelize_typescript6.Model {
358
+ };
359
+ __decorateClass([
360
+ (0, import_sequelize_typescript6.Column)({
361
+ primaryKey: true,
362
+ autoIncrement: true,
363
+ type: import_sequelize_typescript6.DataType.INTEGER
364
+ })
365
+ ], mdContentGroup.prototype, "id", 2);
366
+ __decorateClass([
367
+ (0, import_sequelize_typescript6.Column)({
368
+ allowNull: true,
369
+ type: import_sequelize_typescript6.DataType.STRING(255)
370
+ })
371
+ ], mdContentGroup.prototype, "name", 2);
372
+ __decorateClass([
373
+ (0, import_sequelize_typescript6.Column)({
374
+ allowNull: true,
375
+ type: import_sequelize_typescript6.DataType.STRING(255)
376
+ })
377
+ ], mdContentGroup.prototype, "description", 2);
378
+ __decorateClass([
379
+ (0, import_sequelize_typescript6.Column)({
380
+ field: "created_by",
381
+ allowNull: true,
382
+ type: import_sequelize_typescript6.DataType.STRING(60)
383
+ })
384
+ ], mdContentGroup.prototype, "createdBy", 2);
385
+ __decorateClass([
386
+ (0, import_sequelize_typescript6.Column)({
387
+ field: "created_date",
388
+ allowNull: true,
389
+ type: import_sequelize_typescript6.DataType.DATE
390
+ })
391
+ ], mdContentGroup.prototype, "createdDate", 2);
392
+ __decorateClass([
393
+ (0, import_sequelize_typescript6.Column)({
394
+ field: "updated_by",
395
+ allowNull: true,
396
+ type: import_sequelize_typescript6.DataType.STRING(60)
397
+ })
398
+ ], mdContentGroup.prototype, "updatedBy", 2);
399
+ __decorateClass([
400
+ (0, import_sequelize_typescript6.Column)({
401
+ field: "updated_date",
402
+ allowNull: true,
403
+ type: import_sequelize_typescript6.DataType.DATE
404
+ })
405
+ ], mdContentGroup.prototype, "updatedDate", 2);
406
+ mdContentGroup = __decorateClass([
407
+ (0, import_sequelize_typescript6.Table)({
408
+ tableName: "md_content_group",
409
+ timestamps: false
410
+ })
411
+ ], mdContentGroup);
412
+
413
+ // src/databases/models/users.ts
414
+ var import_sequelize_typescript7 = require("sequelize-typescript");
415
+ var users = class extends import_sequelize_typescript7.Model {
416
+ };
417
+ __decorateClass([
418
+ (0, import_sequelize_typescript7.Column)({
419
+ primaryKey: true,
420
+ autoIncrement: true,
421
+ type: import_sequelize_typescript7.DataType.INTEGER
422
+ })
423
+ ], users.prototype, "id", 2);
424
+ __decorateClass([
425
+ (0, import_sequelize_typescript7.Column)({
426
+ type: import_sequelize_typescript7.DataType.STRING(60)
427
+ })
428
+ ], users.prototype, "uuid", 2);
429
+ __decorateClass([
430
+ (0, import_sequelize_typescript7.Column)({
431
+ allowNull: true,
432
+ type: import_sequelize_typescript7.DataType.STRING(255)
433
+ })
434
+ ], users.prototype, "username", 2);
435
+ __decorateClass([
436
+ (0, import_sequelize_typescript7.Column)({
437
+ field: "password_hash",
438
+ allowNull: true,
439
+ type: import_sequelize_typescript7.DataType.STRING(255)
440
+ })
441
+ ], users.prototype, "passwordHash", 2);
442
+ __decorateClass([
443
+ (0, import_sequelize_typescript7.Column)({
444
+ field: "password_reset_token",
445
+ allowNull: true,
446
+ type: import_sequelize_typescript7.DataType.STRING(255)
447
+ })
448
+ ], users.prototype, "passwordResetToken", 2);
449
+ __decorateClass([
450
+ (0, import_sequelize_typescript7.Column)({
451
+ field: "verification_token",
452
+ allowNull: true,
453
+ type: import_sequelize_typescript7.DataType.STRING(255)
454
+ })
455
+ ], users.prototype, "verificationToken", 2);
456
+ __decorateClass([
457
+ (0, import_sequelize_typescript7.Column)({
458
+ allowNull: true,
459
+ type: import_sequelize_typescript7.DataType.STRING(255)
460
+ })
461
+ ], users.prototype, "email", 2);
462
+ __decorateClass([
463
+ (0, import_sequelize_typescript7.Column)({
464
+ field: "auth_key",
465
+ allowNull: true,
466
+ type: import_sequelize_typescript7.DataType.STRING(32)
467
+ })
468
+ ], users.prototype, "authKey", 2);
469
+ __decorateClass([
470
+ (0, import_sequelize_typescript7.Column)({
471
+ field: "access_token",
472
+ allowNull: true,
473
+ type: import_sequelize_typescript7.DataType.STRING
474
+ })
475
+ ], users.prototype, "accessToken", 2);
476
+ __decorateClass([
477
+ (0, import_sequelize_typescript7.Column)({
478
+ field: "user_level",
479
+ allowNull: true,
480
+ type: import_sequelize_typescript7.DataType.INTEGER
481
+ })
482
+ ], users.prototype, "userLevel", 2);
483
+ __decorateClass([
484
+ (0, import_sequelize_typescript7.Column)({
485
+ field: "user_authen",
486
+ allowNull: true,
487
+ type: import_sequelize_typescript7.DataType.STRING(64)
488
+ })
489
+ ], users.prototype, "userAuthen", 2);
490
+ __decorateClass([
491
+ (0, import_sequelize_typescript7.Column)({
492
+ field: "user_type",
493
+ allowNull: true,
494
+ type: import_sequelize_typescript7.DataType.INTEGER
495
+ })
496
+ ], users.prototype, "userType", 2);
497
+ __decorateClass([
498
+ (0, import_sequelize_typescript7.Column)({
499
+ allowNull: true,
500
+ type: import_sequelize_typescript7.DataType.STRING(10)
501
+ })
502
+ ], users.prototype, "prefix", 2);
503
+ __decorateClass([
504
+ (0, import_sequelize_typescript7.Column)({
505
+ field: "first_name",
506
+ allowNull: true,
507
+ type: import_sequelize_typescript7.DataType.STRING(100)
508
+ })
509
+ ], users.prototype, "firstName", 2);
510
+ __decorateClass([
511
+ (0, import_sequelize_typescript7.Column)({
512
+ field: "last_name",
513
+ allowNull: true,
514
+ type: import_sequelize_typescript7.DataType.STRING(100)
515
+ })
516
+ ], users.prototype, "lastName", 2);
517
+ __decorateClass([
518
+ (0, import_sequelize_typescript7.Column)({
519
+ allowNull: true,
520
+ type: import_sequelize_typescript7.DataType.STRING(20)
521
+ })
522
+ ], users.prototype, "phone", 2);
523
+ __decorateClass([
524
+ (0, import_sequelize_typescript7.Column)({
525
+ allowNull: true,
526
+ type: import_sequelize_typescript7.DataType.SMALLINT
527
+ })
528
+ ], users.prototype, "status", 2);
529
+ __decorateClass([
530
+ (0, import_sequelize_typescript7.Column)({
531
+ field: "created_by",
532
+ allowNull: true,
533
+ type: import_sequelize_typescript7.DataType.STRING(60)
534
+ })
535
+ ], users.prototype, "createdBy", 2);
536
+ __decorateClass([
537
+ (0, import_sequelize_typescript7.Column)({
538
+ field: "created_date",
539
+ allowNull: true,
540
+ type: import_sequelize_typescript7.DataType.DATE
541
+ })
542
+ ], users.prototype, "createdDate", 2);
543
+ __decorateClass([
544
+ (0, import_sequelize_typescript7.Column)({
545
+ field: "updated_by",
546
+ allowNull: true,
547
+ type: import_sequelize_typescript7.DataType.STRING(60)
548
+ })
549
+ ], users.prototype, "updatedBy", 2);
550
+ __decorateClass([
551
+ (0, import_sequelize_typescript7.Column)({
552
+ field: "updated_date",
553
+ allowNull: true,
554
+ type: import_sequelize_typescript7.DataType.DATE
555
+ })
556
+ ], users.prototype, "updatedDate", 2);
557
+ users = __decorateClass([
558
+ (0, import_sequelize_typescript7.Table)({
559
+ tableName: "users",
560
+ timestamps: false
561
+ })
562
+ ], users);
563
+ // Annotate the CommonJS export names for ESM import in node:
564
+ 0 && (module.exports = {
565
+ authAssignment,
566
+ authItem,
567
+ authItemChild,
568
+ authRule,
569
+ mdContent,
570
+ mdContentGroup,
571
+ users
572
+ });
@@ -0,0 +1,38 @@
1
+ import { Model } from 'sequelize-typescript';
2
+
3
+ interface mdContentAttributes {
4
+ id?: number;
5
+ uuid: number;
6
+ groupId?: number;
7
+ userId: number;
8
+ title?: string;
9
+ detail?: string;
10
+ metaTitle?: string;
11
+ metaKeyword?: string;
12
+ metaDescription?: string;
13
+ imageCover?: string;
14
+ imageGallery?: string;
15
+ createdBy?: string;
16
+ createdDate?: Date;
17
+ updatedBy?: string;
18
+ updatedDate?: Date;
19
+ }
20
+ declare class mdContent extends Model<mdContentAttributes, mdContentAttributes> implements mdContentAttributes {
21
+ id?: number;
22
+ uuid: number;
23
+ groupId?: number;
24
+ userId: number;
25
+ title?: string;
26
+ detail?: string;
27
+ metaTitle?: string;
28
+ metaKeyword?: string;
29
+ metaDescription?: string;
30
+ imageCover?: string;
31
+ imageGallery?: string;
32
+ createdBy?: string;
33
+ createdDate?: Date;
34
+ updatedBy?: string;
35
+ updatedDate?: Date;
36
+ }
37
+
38
+ export { mdContent, type mdContentAttributes };