@cuby-ui/api 0.0.436 → 0.0.437

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.
Files changed (59) hide show
  1. package/construction/index.d.ts +2 -0
  2. package/construction/models/action-job.d.ts +36 -0
  3. package/construction/models/approval.api.d.ts +14 -0
  4. package/construction/models/holder-acceptance-criterion-wrapper.d.ts +8 -0
  5. package/construction/models/index.d.ts +16 -0
  6. package/construction/models/job-action-type.d.ts +6 -0
  7. package/construction/models/job-api.options.d.ts +97 -0
  8. package/construction/models/main-job.d.ts +21 -0
  9. package/construction/models/modal-header.option.d.ts +8 -0
  10. package/construction/models/operation.model.d.ts +16 -0
  11. package/construction/models/resource.d.ts +27 -0
  12. package/construction/models/skill.model.d.ts +6 -0
  13. package/construction/models/stage-job-information.d.ts +10 -0
  14. package/construction/models/technology.api.options.d.ts +38 -0
  15. package/construction/models/technology.d.ts +46 -0
  16. package/construction/models/utility-api.options.d.ts +3 -0
  17. package/construction/models/utility-component-instruction-structure-api.options.d.ts +20 -0
  18. package/construction/models/utility.d.ts +40 -0
  19. package/construction/services/criterion-api.service.d.ts +9 -0
  20. package/construction/services/frame-api.service.d.ts +18 -0
  21. package/construction/services/index.d.ts +6 -0
  22. package/construction/services/job-api.service.d.ts +32 -0
  23. package/construction/services/utility-api.service.d.ts +21 -0
  24. package/construction/services/utility-component-instruction-structure-api.service.d.ts +17 -0
  25. package/construction/services/utility-instructions-api.service.d.ts +10 -0
  26. package/esm2022/construction/index.mjs +3 -0
  27. package/esm2022/construction/models/action-job.mjs +2 -0
  28. package/esm2022/construction/models/approval.api.mjs +2 -0
  29. package/esm2022/construction/models/holder-acceptance-criterion-wrapper.mjs +2 -0
  30. package/esm2022/construction/models/index.mjs +17 -0
  31. package/esm2022/construction/models/job-action-type.mjs +5 -0
  32. package/esm2022/construction/models/job-api.options.mjs +2 -0
  33. package/esm2022/construction/models/main-job.mjs +2 -0
  34. package/esm2022/construction/models/modal-header.option.mjs +2 -0
  35. package/esm2022/construction/models/operation.model.mjs +2 -0
  36. package/esm2022/construction/models/resource.mjs +7 -0
  37. package/esm2022/construction/models/skill.model.mjs +2 -0
  38. package/esm2022/construction/models/stage-job-information.mjs +2 -0
  39. package/esm2022/construction/models/technology.api.options.mjs +11 -0
  40. package/esm2022/construction/models/technology.mjs +2 -0
  41. package/esm2022/construction/models/utility-api.options.mjs +2 -0
  42. package/esm2022/construction/models/utility-component-instruction-structure-api.options.mjs +2 -0
  43. package/esm2022/construction/models/utility.mjs +2 -0
  44. package/esm2022/construction/services/criterion-api.service.mjs +22 -0
  45. package/esm2022/construction/services/frame-api.service.mjs +44 -0
  46. package/esm2022/construction/services/index.mjs +7 -0
  47. package/esm2022/construction/services/job-api.service.mjs +128 -0
  48. package/esm2022/construction/services/utility-api.service.mjs +49 -0
  49. package/esm2022/construction/services/utility-component-instruction-structure-api.service.mjs +56 -0
  50. package/esm2022/construction/services/utility-instructions-api.service.mjs +25 -0
  51. package/esm2022/index.mjs +2 -1
  52. package/esm2022/shared/models/instruction-type-operations.mjs +1 -1
  53. package/esm2022/shared/models/job.options.mjs +1 -1
  54. package/fesm2022/cuby-ui-api.mjs +322 -2
  55. package/fesm2022/cuby-ui-api.mjs.map +1 -1
  56. package/index.d.ts +1 -0
  57. package/package.json +1 -1
  58. package/shared/models/instruction-type-operations.d.ts +2 -1
  59. package/shared/models/job.options.d.ts +9 -8
@@ -48,15 +48,16 @@ export interface JobContent {
48
48
  readonly type: string;
49
49
  readonly treeStructId: string;
50
50
  }
51
- export interface JobContentComponents {
52
- readonly TASK_EVALUATION_COMPONENT: JobContentPart;
53
- readonly CHECKLIST_ACTIONS_STRUCT_NAVIGATION: JobContentPart;
54
- readonly CHECKLIST_ACTIONS: JobContentPart;
55
- readonly TEAM_COMPONENT: JobContentPart;
56
- readonly PREPARATORY_STEPS: JobContentPart;
57
- readonly QUANTUM: JobContentPart;
58
- readonly CHECKLIST_EVALUATION: JobContentPart;
51
+ export declare const enum JobContentComponentName {
52
+ UtilityComponent = "UTILITY_COMPONENT",
53
+ TaskEvaluationComponent = "TASK_EVALUATION_COMPONENT",
54
+ TeamComponent = "TEAM_COMPONENT",
55
+ ChecklistEvaluation = "CHECKLIST_EVALUATION",
56
+ CheckListActions = "CHECKLIST_ACTIONS",
57
+ Quantum = "QUANTUM",
58
+ PreparatorySteps = "PREPARATORY_STEPS"
59
59
  }
60
+ export type JobContentComponents = Record<JobContentComponentName, JobContentPart>;
60
61
  export interface JobContentPart {
61
62
  readonly id: string;
62
63
  readonly componentId: string;