@dirayaah/assessment-module 1.0.0
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/.prettierrc +4 -0
- package/README copy.md +93 -0
- package/README.md +93 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +26 -0
- package/dist/index.js.map +1 -0
- package/dist/jest.config.d.ts +0 -0
- package/dist/jest.config.js +10 -0
- package/dist/jest.config.js.map +1 -0
- package/dist/src/constants/assessments-options.d.ts +1 -0
- package/dist/src/constants/assessments-options.js +5 -0
- package/dist/src/constants/assessments-options.js.map +1 -0
- package/dist/src/constants/index.d.ts +3 -0
- package/dist/src/constants/index.js +10 -0
- package/dist/src/constants/index.js.map +1 -0
- package/dist/src/constants/predefined-assessments/disc.d.ts +3 -0
- package/dist/src/constants/predefined-assessments/disc.js +184 -0
- package/dist/src/constants/predefined-assessments/disc.js.map +1 -0
- package/dist/src/constants/predefined-assessments/holland.d.ts +3 -0
- package/dist/src/constants/predefined-assessments/holland.js +208 -0
- package/dist/src/constants/predefined-assessments/holland.js.map +1 -0
- package/dist/src/constants/predefined-assessments/index.d.ts +4 -0
- package/dist/src/constants/predefined-assessments/index.js +10 -0
- package/dist/src/constants/predefined-assessments/index.js.map +1 -0
- package/dist/src/constants/predefined-assessments/leadership.d.ts +3 -0
- package/dist/src/constants/predefined-assessments/leadership.js +211 -0
- package/dist/src/constants/predefined-assessments/leadership.js.map +1 -0
- package/dist/src/dto/assessment.dto.d.ts +14 -0
- package/dist/src/dto/assessment.dto.js +88 -0
- package/dist/src/dto/assessment.dto.js.map +1 -0
- package/dist/src/dto/base.dto.d.ts +7 -0
- package/dist/src/dto/base.dto.js +7 -0
- package/dist/src/dto/base.dto.js.map +1 -0
- package/dist/src/dto/index.d.ts +3 -0
- package/dist/src/dto/index.js +8 -0
- package/dist/src/dto/index.js.map +1 -0
- package/dist/src/dto/predefined-assessment.dto.d.ts +12 -0
- package/dist/src/dto/predefined-assessment.dto.js +74 -0
- package/dist/src/dto/predefined-assessment.dto.js.map +1 -0
- package/dist/src/entities/assessment.entity.d.ts +15 -0
- package/dist/src/entities/assessment.entity.js +69 -0
- package/dist/src/entities/assessment.entity.js.map +1 -0
- package/dist/src/entities/base.entity.d.ts +7 -0
- package/dist/src/entities/base.entity.js +37 -0
- package/dist/src/entities/base.entity.js.map +1 -0
- package/dist/src/entities/index.d.ts +3 -0
- package/dist/src/entities/index.js +8 -0
- package/dist/src/entities/index.js.map +1 -0
- package/dist/src/entities/pagination.d.ts +19 -0
- package/dist/src/entities/pagination.js +58 -0
- package/dist/src/entities/pagination.js.map +1 -0
- package/dist/src/entities/predefined-assessment.entity.d.ts +13 -0
- package/dist/src/entities/predefined-assessment.entity.js +55 -0
- package/dist/src/entities/predefined-assessment.entity.js.map +1 -0
- package/dist/src/enums/index.d.ts +3 -0
- package/dist/src/enums/index.js +8 -0
- package/dist/src/enums/index.js.map +1 -0
- package/dist/src/enums/language.d.ts +5 -0
- package/dist/src/enums/language.js +10 -0
- package/dist/src/enums/language.js.map +1 -0
- package/dist/src/enums/predefined-assessment-type.d.ts +5 -0
- package/dist/src/enums/predefined-assessment-type.js +10 -0
- package/dist/src/enums/predefined-assessment-type.js.map +1 -0
- package/dist/src/interfaces/assessments-options.interface.d.ts +6 -0
- package/dist/src/interfaces/assessments-options.interface.js +3 -0
- package/dist/src/interfaces/assessments-options.interface.js.map +1 -0
- package/dist/src/mappers/assessment.mapper.d.ts +6 -0
- package/dist/src/mappers/assessment.mapper.js +31 -0
- package/dist/src/mappers/assessment.mapper.js.map +1 -0
- package/dist/src/mappers/predefined-assessment.mapper.d.ts +6 -0
- package/dist/src/mappers/predefined-assessment.mapper.js +31 -0
- package/dist/src/mappers/predefined-assessment.mapper.js.map +1 -0
- package/dist/src/migrations/1767108782301-CreateAssessmentTable.d.ts +5 -0
- package/dist/src/migrations/1767108782301-CreateAssessmentTable.js +83 -0
- package/dist/src/migrations/1767108782301-CreateAssessmentTable.js.map +1 -0
- package/dist/src/migrations/1767200020161-CreatePredefinedAssessmentTable.d.ts +6 -0
- package/dist/src/migrations/1767200020161-CreatePredefinedAssessmentTable.js +70 -0
- package/dist/src/migrations/1767200020161-CreatePredefinedAssessmentTable.js.map +1 -0
- package/dist/src/migrations/1767204696509-SeedPredefinedAssessments.d.ts +6 -0
- package/dist/src/migrations/1767204696509-SeedPredefinedAssessments.js +29 -0
- package/dist/src/migrations/1767204696509-SeedPredefinedAssessments.js.map +1 -0
- package/dist/src/migrations/1767651698587-AddMetaFieldsToAssessmentTable.d.ts +7 -0
- package/dist/src/migrations/1767651698587-AddMetaFieldsToAssessmentTable.js +60 -0
- package/dist/src/migrations/1767651698587-AddMetaFieldsToAssessmentTable.js.map +1 -0
- package/dist/src/migrations/index.d.ts +6 -0
- package/dist/src/migrations/index.js +18 -0
- package/dist/src/migrations/index.js.map +1 -0
- package/dist/src/modules/assessment.module.d.ts +5 -0
- package/dist/src/modules/assessment.module.js +34 -0
- package/dist/src/modules/assessment.module.js.map +1 -0
- package/dist/src/repositories/assessment.repository.d.ts +4 -0
- package/dist/src/repositories/assessment.repository.js +19 -0
- package/dist/src/repositories/assessment.repository.js.map +1 -0
- package/dist/src/repositories/base.repository.d.ts +10 -0
- package/dist/src/repositories/base.repository.js +29 -0
- package/dist/src/repositories/base.repository.js.map +1 -0
- package/dist/src/repositories/index.d.ts +3 -0
- package/dist/src/repositories/index.js +8 -0
- package/dist/src/repositories/index.js.map +1 -0
- package/dist/src/repositories/predefined-assessment.repository.d.ts +4 -0
- package/dist/src/repositories/predefined-assessment.repository.js +19 -0
- package/dist/src/repositories/predefined-assessment.repository.js.map +1 -0
- package/dist/src/services/assessment.service.d.ts +23 -0
- package/dist/src/services/assessment.service.js +108 -0
- package/dist/src/services/assessment.service.js.map +1 -0
- package/dist/src/services/index.d.ts +3 -0
- package/dist/src/services/index.js +8 -0
- package/dist/src/services/index.js.map +1 -0
- package/dist/src/services/predefined-assessment.service.d.ts +21 -0
- package/dist/src/services/predefined-assessment.service.js +95 -0
- package/dist/src/services/predefined-assessment.service.js.map +1 -0
- package/dist/src/utilities/migrations/get-base-columns.d.ts +2 -0
- package/dist/src/utilities/migrations/get-base-columns.js +34 -0
- package/dist/src/utilities/migrations/get-base-columns.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/index.ts +26 -0
- package/jest.config.ts +10 -0
- package/nest-cli.json +8 -0
- package/package.json +53 -0
- package/src/constants/assessments-options.ts +1 -0
- package/src/constants/index.ts +12 -0
- package/src/constants/predefined-assessments/disc.ts +205 -0
- package/src/constants/predefined-assessments/holland.ts +235 -0
- package/src/constants/predefined-assessments/index.ts +5 -0
- package/src/constants/predefined-assessments/leadership.ts +242 -0
- package/src/dto/assessment.dto.ts +69 -0
- package/src/dto/base.dto.ts +11 -0
- package/src/dto/index.ts +4 -0
- package/src/dto/predefined-assessment.dto.ts +59 -0
- package/src/entities/assessment.entity.ts +41 -0
- package/src/entities/base.entity.ts +23 -0
- package/src/entities/index.ts +4 -0
- package/src/entities/pagination.ts +42 -0
- package/src/entities/predefined-assessment.entity.ts +31 -0
- package/src/enums/index.ts +4 -0
- package/src/enums/language.ts +5 -0
- package/src/enums/predefined-assessment-type.ts +5 -0
- package/src/interfaces/assessments-options.interface.ts +6 -0
- package/src/mappers/assessment.mapper.ts +34 -0
- package/src/mappers/predefined-assessment.mapper.ts +36 -0
- package/src/migrations/1767108782301-CreateAssessmentTable.ts +88 -0
- package/src/migrations/1767200020161-CreatePredefinedAssessmentTable.ts +77 -0
- package/src/migrations/1767204696509-SeedPredefinedAssessments.ts +32 -0
- package/src/migrations/1767651698587-AddMetaFieldsToAssessmentTable.ts +88 -0
- package/src/migrations/index.ts +20 -0
- package/src/modules/assessment.module.ts +22 -0
- package/src/repositories/assessment.repository.ts +6 -0
- package/src/repositories/base.repository.ts +39 -0
- package/src/repositories/index.ts +4 -0
- package/src/repositories/predefined-assessment.repository.ts +6 -0
- package/src/services/assessment.service.ts +144 -0
- package/src/services/index.ts +4 -0
- package/src/services/predefined-assessment.service.ts +121 -0
- package/src/utilities/migrations/get-base-columns.ts +32 -0
- package/tsconfig.build.json +4 -0
- package/tsconfig.json +21 -0
package/.prettierrc
ADDED
package/README copy.md
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
# assessments
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Getting started
|
|
6
|
+
|
|
7
|
+
To make it easy for you to get started with GitLab, here's a list of recommended next steps.
|
|
8
|
+
|
|
9
|
+
Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
|
|
10
|
+
|
|
11
|
+
## Add your files
|
|
12
|
+
|
|
13
|
+
- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
|
|
14
|
+
- [ ] [Add files using the command line](https://docs.gitlab.com/topics/git/add_files/#add-files-to-a-git-repository) or push an existing Git repository with the following command:
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
cd existing_repo
|
|
18
|
+
git remote add origin https://gitlab.zadapps.info/dirayaah/packages/assessments.git
|
|
19
|
+
git branch -M master
|
|
20
|
+
git push -uf origin master
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Integrate with your tools
|
|
24
|
+
|
|
25
|
+
- [ ] [Set up project integrations](https://gitlab.zadapps.info/dirayaah/packages/assessments/-/settings/integrations)
|
|
26
|
+
|
|
27
|
+
## Collaborate with your team
|
|
28
|
+
|
|
29
|
+
- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
|
|
30
|
+
- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
|
|
31
|
+
- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
|
|
32
|
+
- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
|
|
33
|
+
- [ ] [Set auto-merge](https://docs.gitlab.com/user/project/merge_requests/auto_merge/)
|
|
34
|
+
|
|
35
|
+
## Test and Deploy
|
|
36
|
+
|
|
37
|
+
Use the built-in continuous integration in GitLab.
|
|
38
|
+
|
|
39
|
+
- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/)
|
|
40
|
+
- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
|
|
41
|
+
- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
|
|
42
|
+
- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
|
|
43
|
+
- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
|
|
44
|
+
|
|
45
|
+
***
|
|
46
|
+
|
|
47
|
+
# Editing this README
|
|
48
|
+
|
|
49
|
+
When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thanks to [makeareadme.com](https://www.makeareadme.com/) for this template.
|
|
50
|
+
|
|
51
|
+
## Suggestions for a good README
|
|
52
|
+
|
|
53
|
+
Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
|
|
54
|
+
|
|
55
|
+
## Name
|
|
56
|
+
Choose a self-explaining name for your project.
|
|
57
|
+
|
|
58
|
+
## Description
|
|
59
|
+
Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
|
|
60
|
+
|
|
61
|
+
## Badges
|
|
62
|
+
On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
|
|
63
|
+
|
|
64
|
+
## Visuals
|
|
65
|
+
Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
|
|
66
|
+
|
|
67
|
+
## Installation
|
|
68
|
+
Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
|
|
69
|
+
|
|
70
|
+
## Usage
|
|
71
|
+
Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
|
|
72
|
+
|
|
73
|
+
## Support
|
|
74
|
+
Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
|
|
75
|
+
|
|
76
|
+
## Roadmap
|
|
77
|
+
If you have ideas for releases in the future, it is a good idea to list them in the README.
|
|
78
|
+
|
|
79
|
+
## Contributing
|
|
80
|
+
State if you are open to contributions and what your requirements are for accepting them.
|
|
81
|
+
|
|
82
|
+
For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
|
|
83
|
+
|
|
84
|
+
You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
|
|
85
|
+
|
|
86
|
+
## Authors and acknowledgment
|
|
87
|
+
Show your appreciation to those who have contributed to the project.
|
|
88
|
+
|
|
89
|
+
## License
|
|
90
|
+
For open source projects, say how it is licensed.
|
|
91
|
+
|
|
92
|
+
## Project status
|
|
93
|
+
If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
|
package/README.md
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
# assessments
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Getting started
|
|
6
|
+
|
|
7
|
+
To make it easy for you to get started with GitLab, here's a list of recommended next steps.
|
|
8
|
+
|
|
9
|
+
Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
|
|
10
|
+
|
|
11
|
+
## Add your files
|
|
12
|
+
|
|
13
|
+
* [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
|
|
14
|
+
* [Add files using the command line](https://docs.gitlab.com/topics/git/add_files/#add-files-to-a-git-repository) or push an existing Git repository with the following command:
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
cd existing_repo
|
|
18
|
+
git remote add origin https://gitlab.zadapps.info/dirayaah/packages/assessments.git
|
|
19
|
+
git branch -M master
|
|
20
|
+
git push -uf origin master
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Integrate with your tools
|
|
24
|
+
|
|
25
|
+
* [Set up project integrations](https://gitlab.zadapps.info/dirayaah/packages/assessments/-/settings/integrations)
|
|
26
|
+
|
|
27
|
+
## Collaborate with your team
|
|
28
|
+
|
|
29
|
+
* [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
|
|
30
|
+
* [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
|
|
31
|
+
* [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
|
|
32
|
+
* [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
|
|
33
|
+
* [Set auto-merge](https://docs.gitlab.com/user/project/merge_requests/auto_merge/)
|
|
34
|
+
|
|
35
|
+
## Test and Deploy
|
|
36
|
+
|
|
37
|
+
Use the built-in continuous integration in GitLab.
|
|
38
|
+
|
|
39
|
+
* [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/)
|
|
40
|
+
* [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
|
|
41
|
+
* [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
|
|
42
|
+
* [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
|
|
43
|
+
* [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
|
|
44
|
+
|
|
45
|
+
***
|
|
46
|
+
|
|
47
|
+
# Editing this README
|
|
48
|
+
|
|
49
|
+
When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thanks to [makeareadme.com](https://www.makeareadme.com/) for this template.
|
|
50
|
+
|
|
51
|
+
## Suggestions for a good README
|
|
52
|
+
|
|
53
|
+
Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
|
|
54
|
+
|
|
55
|
+
## Name
|
|
56
|
+
Choose a self-explaining name for your project.
|
|
57
|
+
|
|
58
|
+
## Description
|
|
59
|
+
Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
|
|
60
|
+
|
|
61
|
+
## Badges
|
|
62
|
+
On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
|
|
63
|
+
|
|
64
|
+
## Visuals
|
|
65
|
+
Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
|
|
66
|
+
|
|
67
|
+
## Installation
|
|
68
|
+
Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
|
|
69
|
+
|
|
70
|
+
## Usage
|
|
71
|
+
Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
|
|
72
|
+
|
|
73
|
+
## Support
|
|
74
|
+
Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
|
|
75
|
+
|
|
76
|
+
## Roadmap
|
|
77
|
+
If you have ideas for releases in the future, it is a good idea to list them in the README.
|
|
78
|
+
|
|
79
|
+
## Contributing
|
|
80
|
+
State if you are open to contributions and what your requirements are for accepting them.
|
|
81
|
+
|
|
82
|
+
For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
|
|
83
|
+
|
|
84
|
+
You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
|
|
85
|
+
|
|
86
|
+
## Authors and acknowledgment
|
|
87
|
+
Show your appreciation to those who have contributed to the project.
|
|
88
|
+
|
|
89
|
+
## License
|
|
90
|
+
For open source projects, say how it is licensed.
|
|
91
|
+
|
|
92
|
+
## Project status
|
|
93
|
+
If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './src/modules/assessment.module';
|
|
2
|
+
export * from './src/interfaces/assessments-options.interface';
|
|
3
|
+
export * from './src/services';
|
|
4
|
+
export * from './src/entities';
|
|
5
|
+
export * from './src/dto';
|
|
6
|
+
export * from './src/constants';
|
|
7
|
+
export * from './src/migrations';
|
|
8
|
+
export * from './src/repositories';
|
|
9
|
+
export * from './src/enums';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./src/modules/assessment.module"), exports);
|
|
18
|
+
__exportStar(require("./src/interfaces/assessments-options.interface"), exports);
|
|
19
|
+
__exportStar(require("./src/services"), exports);
|
|
20
|
+
__exportStar(require("./src/entities"), exports);
|
|
21
|
+
__exportStar(require("./src/dto"), exports);
|
|
22
|
+
__exportStar(require("./src/constants"), exports);
|
|
23
|
+
__exportStar(require("./src/migrations"), exports);
|
|
24
|
+
__exportStar(require("./src/repositories"), exports);
|
|
25
|
+
__exportStar(require("./src/enums"), exports);
|
|
26
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AACA,kEAAgD;AAGhD,iFAA+D;AAG/D,iDAA+B;AAG/B,iDAA+B;AAG/B,4CAA0B;AAG1B,kDAAgC;AAGhC,mDAAiC;AAGjC,qDAAmC;AAGnC,8CAA4B"}
|
|
File without changes
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
preset: 'ts-jest',
|
|
3
|
+
testEnvironment: 'node',
|
|
4
|
+
moduleFileExtensions: ['ts', 'tsx', 'js'],
|
|
5
|
+
testMatch: ['src/test/?(*.)+(spec|test).[jt]s?(x)'],
|
|
6
|
+
transform: {
|
|
7
|
+
'^.+\\.tsx?$': 'ts-jest',
|
|
8
|
+
},
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=jest.config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"jest.config.js","sourceRoot":"","sources":["../jest.config.ts"],"names":[],"mappings":"AACA,MAAM,CAAC,OAAO,GAAG;IACf,MAAM,EAAE,SAAS;IACjB,eAAe,EAAE,MAAM;IACvB,oBAAoB,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,CAAC;IACzC,SAAS,EAAE,CAAC,sCAAsC,CAAC;IACnD,SAAS,EAAE;QACT,aAAa,EAAE,SAAS;KACzB;CACF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ASSESSMENTS_OPTIONS = "ASSESSMENTS_OPTIONS";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"assessments-options.js","sourceRoot":"","sources":["../../../src/constants/assessments-options.ts"],"names":[],"mappings":";;;AAAa,QAAA,mBAAmB,GAAG,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LEADERSHIP_ASSESSMENT = exports.HOLLAND_ASSESSMENT = exports.DISC_ASSESSMENT = exports.ASSESSMENTS_OPTIONS = void 0;
|
|
4
|
+
const assessments_options_1 = require("./assessments-options");
|
|
5
|
+
Object.defineProperty(exports, "ASSESSMENTS_OPTIONS", { enumerable: true, get: function () { return assessments_options_1.ASSESSMENTS_OPTIONS; } });
|
|
6
|
+
const predefined_assessments_1 = require("./predefined-assessments");
|
|
7
|
+
Object.defineProperty(exports, "DISC_ASSESSMENT", { enumerable: true, get: function () { return predefined_assessments_1.DISC_ASSESSMENT; } });
|
|
8
|
+
Object.defineProperty(exports, "HOLLAND_ASSESSMENT", { enumerable: true, get: function () { return predefined_assessments_1.HOLLAND_ASSESSMENT; } });
|
|
9
|
+
Object.defineProperty(exports, "LEADERSHIP_ASSESSMENT", { enumerable: true, get: function () { return predefined_assessments_1.LEADERSHIP_ASSESSMENT; } });
|
|
10
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/constants/index.ts"],"names":[],"mappings":";;;AAAA,+DAA4D;AAO1D,oGAPO,yCAAmB,OAOP;AANrB,qEAIkC;AAGhC,gGANA,wCAAe,OAMA;AACf,mGANA,2CAAkB,OAMA;AAClB,sGANA,8CAAqB,OAMA"}
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const enums_1 = require("../../enums");
|
|
4
|
+
const DISC_ASSESSMENT = [
|
|
5
|
+
{
|
|
6
|
+
title: 'مقياس ديسك (DISC) للشخصية',
|
|
7
|
+
description: 'مقياس ديسك (DISC) هو أداة تحليل سلوكي تساعد الأفراد على فهم أنماط شخصياتهم وطريقة تفاعلهم مع الآخرين. يركز المقياس على السلوكيات وليس الذكاء أو المهارات، ويُستخدم على نطاق واسع في التطوير المهني والشخصي.',
|
|
8
|
+
language: enums_1.AssessmentDetailsLanguage.AR,
|
|
9
|
+
category: 'شخصية',
|
|
10
|
+
type: enums_1.PredefinedAssessmentType.DISC,
|
|
11
|
+
backgroundImageUrl: null,
|
|
12
|
+
details: {
|
|
13
|
+
overview: {
|
|
14
|
+
title: 'مقياس ديسك (DISC) للشخصية',
|
|
15
|
+
description: 'مقياس ديسك (DISC) هو أداة تحليل سلوكي تساعد الأفراد على فهم أنماط شخصياتهم وطريقة تفاعلهم مع الآخرين. يركز المقياس على السلوكيات وليس الذكاء أو المهارات، ويُستخدم على نطاق واسع في التطوير المهني والشخصي.',
|
|
16
|
+
},
|
|
17
|
+
behavioralPatterns: {
|
|
18
|
+
title: 'الأنماط السلوكية في مقياس DISC',
|
|
19
|
+
patterns: [
|
|
20
|
+
{
|
|
21
|
+
title: 'النمط القيادي (D-Dominance)',
|
|
22
|
+
description: 'يعكس طريقة تعامل الشخص مع التحديات والمشكلات وتحقيق النتائج. يتميز أصحاب هذا النمط بالحزم والثقة والتركيز على الإنجاز.',
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
title: 'النمط التأثيري (I-Influence)',
|
|
26
|
+
description: 'يعبر عن طريقة تفاعل الشخص مع الآخرين وقدرته على التأثير فيهم. يتميز أصحاب هذا النمط بالحيوية والاجتماعية والقدرة على الإقناع.',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
title: 'النمط الثابت (S- Steadiness)',
|
|
30
|
+
description: 'يمثل طريقة تعامل الشخص مع التغيير والاستقرار. يتميز أصحاب هذا النمط بالهدوء والصبر والموثوقية.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
title: 'النمط الدقيق (C-Conscientiousness)',
|
|
34
|
+
description: 'يعكس مدى التزام الشخص بالقواعد والدقة والتنظيم. يتميز أصحاب هذا النمط بالتحليل والتركيز على التفاصيل والجودة.',
|
|
35
|
+
},
|
|
36
|
+
],
|
|
37
|
+
},
|
|
38
|
+
howItWorks: {
|
|
39
|
+
title: 'كيف يعمل مقياس DISC',
|
|
40
|
+
description: 'يتضمن المقياس مجموعة من الأسئلة السلوكية، ويتم تحليل الإجابات لتحديد النمط السلوكي الأساسي والأنماط الثانوية، مما ينتج عنه ملف شخصي مفصل.',
|
|
41
|
+
},
|
|
42
|
+
outputs: {
|
|
43
|
+
title: 'مخرجات التقييم',
|
|
44
|
+
items: [
|
|
45
|
+
'ملف شخصي سلوكي',
|
|
46
|
+
'نقاط القوة والتحديات',
|
|
47
|
+
'أسلوب التواصل المناسب',
|
|
48
|
+
'تحليل السلوك في بيئة العمل',
|
|
49
|
+
],
|
|
50
|
+
},
|
|
51
|
+
useCases: {
|
|
52
|
+
title: 'استخدامات مقياس DISC',
|
|
53
|
+
items: [
|
|
54
|
+
'التوظيف والاختيار',
|
|
55
|
+
'بناء فرق العمل',
|
|
56
|
+
'تطوير القيادات',
|
|
57
|
+
'تحسين التواصل والمبيعات',
|
|
58
|
+
'التطوير الذاتي',
|
|
59
|
+
],
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
configuration: undefined,
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
title: 'DISC Personality Assessment',
|
|
66
|
+
description: 'The DISC Personality Assessment is a behavioral analysis tool that helps individuals understand their personality styles and how they interact with others. It focuses on behaviors rather than intelligence or skills and is widely used in professional and personal development.',
|
|
67
|
+
language: enums_1.AssessmentDetailsLanguage.EN,
|
|
68
|
+
category: 'Personality',
|
|
69
|
+
type: enums_1.PredefinedAssessmentType.DISC,
|
|
70
|
+
backgroundImageUrl: null,
|
|
71
|
+
details: {
|
|
72
|
+
overview: {
|
|
73
|
+
title: 'DISC Personality Assessment',
|
|
74
|
+
description: 'The DISC Personality Assessment is a behavioral analysis tool that helps individuals understand their personality styles and how they interact with others. It focuses on behaviors rather than intelligence or skills and is widely used in professional and personal development.',
|
|
75
|
+
},
|
|
76
|
+
behavioralPatterns: {
|
|
77
|
+
title: 'Behavioral Patterns in the DISC Assessment',
|
|
78
|
+
patterns: [
|
|
79
|
+
{
|
|
80
|
+
title: 'Dominance Style (D – Dominance)',
|
|
81
|
+
description: 'Represents how a person deals with challenges, problems, and achieving results. Individuals with this style are assertive, confident, and focused on outcomes.',
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
title: 'Influence Style (I – Influence)',
|
|
85
|
+
description: 'Reflects how a person interacts with others and influences their environment. Individuals with this style are energetic, social, and persuasive.',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
title: 'Steadiness Style (S – Steadiness)',
|
|
89
|
+
description: 'Represents how a person responds to change and stability. Individuals with this style are calm, patient, and reliable.',
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
title: 'Conscientious Style (C – Conscientiousness)',
|
|
93
|
+
description: 'Reflects a person’s commitment to rules, accuracy, and organization. Individuals with this style are analytical, detail-oriented, and quality-focused.',
|
|
94
|
+
},
|
|
95
|
+
],
|
|
96
|
+
},
|
|
97
|
+
howItWorks: {
|
|
98
|
+
title: 'How the DISC Assessment Works',
|
|
99
|
+
description: 'The assessment consists of a set of behavioral questions. Responses are analyzed to identify primary and secondary behavioral styles, resulting in a detailed personal profile.',
|
|
100
|
+
},
|
|
101
|
+
outputs: {
|
|
102
|
+
title: 'Assessment Outputs',
|
|
103
|
+
items: [
|
|
104
|
+
'Behavioral personality profile',
|
|
105
|
+
'Strengths and challenges',
|
|
106
|
+
'Preferred communication style',
|
|
107
|
+
'Workplace behavior analysis',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
useCases: {
|
|
111
|
+
title: 'DISC Assessment Use Cases',
|
|
112
|
+
items: [
|
|
113
|
+
'Recruitment and selection',
|
|
114
|
+
'Team building',
|
|
115
|
+
'Leadership development',
|
|
116
|
+
'Improving communication and sales',
|
|
117
|
+
'Personal development',
|
|
118
|
+
],
|
|
119
|
+
},
|
|
120
|
+
},
|
|
121
|
+
configuration: null,
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
title: 'Evaluación de Personalidad DISC',
|
|
125
|
+
description: 'La Evaluación de Personalidad DISC es una herramienta de análisis conductual que ayuda a las personas a comprender sus estilos de personalidad y la forma en que interactúan con los demás. Se centra en el comportamiento y se utiliza ampliamente en el desarrollo profesional y personal.',
|
|
126
|
+
language: enums_1.AssessmentDetailsLanguage.ES,
|
|
127
|
+
category: 'Personalidad',
|
|
128
|
+
type: enums_1.PredefinedAssessmentType.DISC,
|
|
129
|
+
backgroundImageUrl: null,
|
|
130
|
+
details: {
|
|
131
|
+
overview: {
|
|
132
|
+
title: 'Evaluación de Personalidad DISC',
|
|
133
|
+
description: 'La Evaluación de Personalidad DISC es una herramienta de análisis conductual que ayuda a las personas a comprender sus estilos de personalidad y la forma en que interactúan con los demás. Se centra en el comportamiento y se utiliza ampliamente en el desarrollo profesional y personal.',
|
|
134
|
+
},
|
|
135
|
+
behavioralPatterns: {
|
|
136
|
+
title: 'Patrones de Comportamiento en la Evaluación DISC',
|
|
137
|
+
patterns: [
|
|
138
|
+
{
|
|
139
|
+
title: 'Estilo Dominante (D – Dominancia)',
|
|
140
|
+
description: 'Representa cómo una persona enfrenta los desafíos, los problemas y el logro de resultados. Las personas con este estilo son decididas, seguras y orientadas a objetivos.',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
title: 'Estilo Influyente (I – Influencia)',
|
|
144
|
+
description: 'Refleja cómo una persona interactúa e influye en los demás. Las personas con este estilo son enérgicas, sociables y persuasivas.',
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
title: 'Estilo Estable (S – Estabilidad)',
|
|
148
|
+
description: 'Representa cómo una persona responde al cambio y a la estabilidad. Las personas con este estilo son tranquilas, pacientes y confiables.',
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
title: 'Estilo Concienzudo (C – Conciencia)',
|
|
152
|
+
description: 'Refleja el compromiso de una persona con las reglas, la precisión y la organización. Las personas con este estilo son analíticas, detallistas y enfocadas en la calidad.',
|
|
153
|
+
},
|
|
154
|
+
],
|
|
155
|
+
},
|
|
156
|
+
howItWorks: {
|
|
157
|
+
title: 'Cómo Funciona la Evaluación DISC',
|
|
158
|
+
description: 'La evaluación incluye un conjunto de preguntas conductuales. Las respuestas se analizan para identificar los estilos conductuales primarios y secundarios, generando un perfil personal detallado.',
|
|
159
|
+
},
|
|
160
|
+
outputs: {
|
|
161
|
+
title: 'Resultados de la Evaluación',
|
|
162
|
+
items: [
|
|
163
|
+
'Perfil de personalidad conductual',
|
|
164
|
+
'Fortalezas y áreas de mejora',
|
|
165
|
+
'Estilo de comunicación preferido',
|
|
166
|
+
'Análisis del comportamiento en el entorno laboral',
|
|
167
|
+
],
|
|
168
|
+
},
|
|
169
|
+
useCases: {
|
|
170
|
+
title: 'Casos de Uso de la Evaluación DISC',
|
|
171
|
+
items: [
|
|
172
|
+
'Reclutamiento y selección',
|
|
173
|
+
'Trabajo en equipo',
|
|
174
|
+
'Desarrollo de liderazgo',
|
|
175
|
+
'Mejora de la comunicación y ventas',
|
|
176
|
+
'Desarrollo personal',
|
|
177
|
+
],
|
|
178
|
+
},
|
|
179
|
+
},
|
|
180
|
+
configuration: null,
|
|
181
|
+
},
|
|
182
|
+
];
|
|
183
|
+
exports.default = DISC_ASSESSMENT;
|
|
184
|
+
//# sourceMappingURL=disc.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"disc.js","sourceRoot":"","sources":["../../../../src/constants/predefined-assessments/disc.ts"],"names":[],"mappings":"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"}
|