oca-shared-model 1.0.49 → 1.0.50
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.
|
@@ -17,3 +17,13 @@ export declare function FindMqCode(rank: string, vesselType: string): {
|
|
|
17
17
|
max_question: number;
|
|
18
18
|
}[];
|
|
19
19
|
} | undefined;
|
|
20
|
+
export declare const SpecialSkillData: {
|
|
21
|
+
department: string;
|
|
22
|
+
area: string;
|
|
23
|
+
ranks: string[];
|
|
24
|
+
vessel_type: string[];
|
|
25
|
+
questions: {
|
|
26
|
+
type: string;
|
|
27
|
+
max_question: number;
|
|
28
|
+
}[];
|
|
29
|
+
}[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.mqCode = exports.masterCbtOrder = void 0;
|
|
3
|
+
exports.SpecialSkillData = exports.mqCode = exports.masterCbtOrder = void 0;
|
|
4
4
|
exports.FindMqCode = FindMqCode;
|
|
5
5
|
const specialSkills = [
|
|
6
6
|
"Special Skill: DP Basic",
|
|
@@ -278,3 +278,19 @@ function FindMqCode(rank, vesselType) {
|
|
|
278
278
|
find = exports.mqCode.find((x) => x.rank.includes(rank) && x.vessel_type.includes(vesselType));
|
|
279
279
|
return find;
|
|
280
280
|
}
|
|
281
|
+
exports.SpecialSkillData = [
|
|
282
|
+
{
|
|
283
|
+
department: "deck",
|
|
284
|
+
area: "DP Operation",
|
|
285
|
+
ranks: ["DP Operator", "Senior DP Operator"],
|
|
286
|
+
vessel_type: ["Platform Supply Vessel", "Anchor Handling Tug Supply"],
|
|
287
|
+
questions: [{ type: "Specific knowledge", max_question: 60 }],
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
department: "engine",
|
|
291
|
+
area: "DP Maintenance",
|
|
292
|
+
ranks: ["DPVM", "DPM"],
|
|
293
|
+
vessel_type: ["Platform Supply Vessel", "Anchor Handling Tug Supply"],
|
|
294
|
+
questions: [{ type: "Specific knowledge", max_question: 40 }],
|
|
295
|
+
},
|
|
296
|
+
];
|