@admc-go-th/admc-library 1.0.95 → 1.0.96

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.
@@ -9,6 +9,7 @@ export interface appQueueTourAttributes {
9
9
  approveDate?: Date;
10
10
  timeSlot?: number;
11
11
  organizationType?: number;
12
+ organizationTypeOther?: string;
12
13
  organizationName?: string;
13
14
  contactPerson?: string;
14
15
  phoneNumber?: string;
@@ -70,6 +71,13 @@ export class appQueueTour extends Model<appQueueTourAttributes, appQueueTourAttr
70
71
  })
71
72
  declare organizationType?: number;
72
73
 
74
+ @Column({
75
+ field: "organization_type_other",
76
+ allowNull: true,
77
+ type: DataType.STRING(255)
78
+ })
79
+ declare organizationTypeOther?: string;
80
+
73
81
  @Column({
74
82
  field: "organization_name",
75
83
  allowNull: true,
@@ -7,6 +7,7 @@ interface appQueueTourAttributes {
7
7
  approveDate?: Date;
8
8
  timeSlot?: number;
9
9
  organizationType?: number;
10
+ organizationTypeOther?: string;
10
11
  organizationName?: string;
11
12
  contactPerson?: string;
12
13
  phoneNumber?: string;
@@ -27,6 +28,7 @@ declare class appQueueTour extends Model<appQueueTourAttributes, appQueueTourAtt
27
28
  approveDate?: Date;
28
29
  timeSlot?: number;
29
30
  organizationType?: number;
31
+ organizationTypeOther?: string;
30
32
  organizationName?: string;
31
33
  contactPerson?: string;
32
34
  phoneNumber?: string;
@@ -75,6 +75,13 @@ __decorateClass([
75
75
  type: import_sequelize_typescript.DataType.INTEGER
76
76
  })
77
77
  ], appQueueTour.prototype, "organizationType", 2);
78
+ __decorateClass([
79
+ (0, import_sequelize_typescript.Column)({
80
+ field: "organization_type_other",
81
+ allowNull: true,
82
+ type: import_sequelize_typescript.DataType.STRING(255)
83
+ })
84
+ ], appQueueTour.prototype, "organizationTypeOther", 2);
78
85
  __decorateClass([
79
86
  (0, import_sequelize_typescript.Column)({
80
87
  field: "organization_name",
@@ -577,6 +577,13 @@ __decorateClass([
577
577
  type: import_sequelize_typescript5.DataType.INTEGER
578
578
  })
579
579
  ], appQueueTour.prototype, "organizationType", 2);
580
+ __decorateClass([
581
+ (0, import_sequelize_typescript5.Column)({
582
+ field: "organization_type_other",
583
+ allowNull: true,
584
+ type: import_sequelize_typescript5.DataType.STRING(255)
585
+ })
586
+ ], appQueueTour.prototype, "organizationTypeOther", 2);
580
587
  __decorateClass([
581
588
  (0, import_sequelize_typescript5.Column)({
582
589
  field: "organization_name",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@admc-go-th/admc-library",
3
- "version": "1.0.95",
3
+ "version": "1.0.96",
4
4
  "description": "",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",