@01-edu/shared 1.2.8 → 1.2.10
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/attrs-defs.js +4 -6
- package/package.json +1 -1
package/attrs-defs.js
CHANGED
|
@@ -2447,7 +2447,6 @@ types.levelDefinition = TypeObject({
|
|
|
2447
2447
|
instruction: 'Items to be succeeded',
|
|
2448
2448
|
},
|
|
2449
2449
|
},
|
|
2450
|
-
required: true,
|
|
2451
2450
|
instruction: 'Conditions to access this level',
|
|
2452
2451
|
}),
|
|
2453
2452
|
},
|
|
@@ -3652,14 +3651,14 @@ types.timelineChunk = TypeObject({
|
|
|
3652
3651
|
check: level => checkIntegerInBetween(level, 0, MAX_LEVEL),
|
|
3653
3652
|
}),
|
|
3654
3653
|
checkpointLevel: Literal(0, {
|
|
3655
|
-
label: '
|
|
3654
|
+
label: 'Checkpoint level',
|
|
3656
3655
|
editable: true,
|
|
3657
3656
|
required: true,
|
|
3658
3657
|
instruction: 'Recommended checkpoint level the user should achieve',
|
|
3659
3658
|
check: level => checkIntegerInBetween(level, 0, 100),
|
|
3660
3659
|
}),
|
|
3661
3660
|
rank: Literal('', {
|
|
3662
|
-
label: '
|
|
3661
|
+
label: 'Rank',
|
|
3663
3662
|
editable: true,
|
|
3664
3663
|
instruction: 'Recommended rank the user should achieve',
|
|
3665
3664
|
options: object => object.attrs.ranksDefinitions?.map(item => item.name),
|
|
@@ -3683,10 +3682,9 @@ types.timelineChunk = TypeObject({
|
|
|
3683
3682
|
},
|
|
3684
3683
|
}),
|
|
3685
3684
|
skills: TypeObject({
|
|
3686
|
-
label: '
|
|
3685
|
+
label: 'Skills',
|
|
3687
3686
|
instruction: 'Recommended skills the user should get',
|
|
3688
3687
|
editable: true,
|
|
3689
|
-
required: true,
|
|
3690
3688
|
value: {},
|
|
3691
3689
|
type: mapValues(
|
|
3692
3690
|
skillsSet,
|
|
@@ -3703,7 +3701,7 @@ types.timelineChunk = TypeObject({
|
|
|
3703
3701
|
),
|
|
3704
3702
|
}),
|
|
3705
3703
|
notes: Literal('', {
|
|
3706
|
-
label: 'Other
|
|
3704
|
+
label: 'Other notes',
|
|
3707
3705
|
instruction:
|
|
3708
3706
|
'Write any other notes or expectations the user should aim for',
|
|
3709
3707
|
editable: true,
|