oca-shared-model 1.0.57 → 1.0.59
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/company/api_settings/entities/api_setting.entity.d.ts +1 -0
- package/dist/company/api_settings/entities/api_setting.entity.js +4 -0
- package/dist/company/general_settings/entities/general_setting.entity.d.ts +1 -0
- package/dist/company/general_settings/entities/general_setting.entity.js +4 -0
- package/dist/helper/cbt/master-helper.js +5 -0
- package/package.json +1 -1
|
@@ -39,6 +39,10 @@ __decorate([
|
|
|
39
39
|
(0, typeorm_1.Column)(),
|
|
40
40
|
__metadata("design:type", Boolean)
|
|
41
41
|
], ApiSetting.prototype, "status", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, typeorm_1.Column)("jsonb"),
|
|
44
|
+
__metadata("design:type", Object)
|
|
45
|
+
], ApiSetting.prototype, "rotation_urls", void 0);
|
|
42
46
|
exports.ApiSetting = ApiSetting = __decorate([
|
|
43
47
|
(0, typeorm_1.Entity)({
|
|
44
48
|
schema: "company",
|
|
@@ -39,6 +39,10 @@ __decorate([
|
|
|
39
39
|
(0, typeorm_1.Column)("jsonb"),
|
|
40
40
|
__metadata("design:type", Object)
|
|
41
41
|
], GeneralSetting.prototype, "appraisal_setting", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, typeorm_1.Column)(),
|
|
44
|
+
__metadata("design:type", Boolean)
|
|
45
|
+
], GeneralSetting.prototype, "rotation_sync", void 0);
|
|
42
46
|
exports.GeneralSetting = GeneralSetting = __decorate([
|
|
43
47
|
(0, typeorm_1.Entity)({
|
|
44
48
|
schema: "company",
|
|
@@ -92,6 +92,7 @@ exports.mqCode = [
|
|
|
92
92
|
"Landing Craft Tank",
|
|
93
93
|
"Multi Purpose Supply Vessel",
|
|
94
94
|
"ASD Tug",
|
|
95
|
+
"Crew Boat",
|
|
95
96
|
],
|
|
96
97
|
questions: [
|
|
97
98
|
{ type: "General Marine Knowledge", max_question: 25 },
|
|
@@ -133,6 +134,7 @@ exports.mqCode = [
|
|
|
133
134
|
"Tug Boat",
|
|
134
135
|
"Landing Craft Tank",
|
|
135
136
|
"Multi Purpose Supply Vessel",
|
|
137
|
+
"Crew Boat",
|
|
136
138
|
],
|
|
137
139
|
questions: [
|
|
138
140
|
{ type: "General Marine Knowledge", max_question: 25 },
|
|
@@ -153,6 +155,7 @@ exports.mqCode = [
|
|
|
153
155
|
"Landing Craft Tank",
|
|
154
156
|
"Multi Purpose Supply Vessel",
|
|
155
157
|
"ASD Tug",
|
|
158
|
+
"Crew Boat",
|
|
156
159
|
],
|
|
157
160
|
questions: [
|
|
158
161
|
{ type: "General Marine Knowledge", max_question: 25 },
|
|
@@ -233,6 +236,7 @@ exports.mqCode = [
|
|
|
233
236
|
"Tug Boat",
|
|
234
237
|
"Landing Craft Tank",
|
|
235
238
|
"Multi Purpose Supply Vessel",
|
|
239
|
+
"Crew Boat",
|
|
236
240
|
],
|
|
237
241
|
questions: [
|
|
238
242
|
{ type: "General Marine Knowledge", max_question: 25 },
|
|
@@ -252,6 +256,7 @@ exports.mqCode = [
|
|
|
252
256
|
"Tug Boat",
|
|
253
257
|
"Landing Craft Tank",
|
|
254
258
|
"Multi Purpose Supply Vessel",
|
|
259
|
+
"Crew Boat",
|
|
255
260
|
],
|
|
256
261
|
questions: [
|
|
257
262
|
{ type: "General Marine Knowledge", max_question: 40 },
|