@overmap-ai/core 1.0.78-workflows.0 → 1.0.78-workflows.1

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 (58) hide show
  1. package/dist/enums/workflows.d.ts +8 -0
  2. package/dist/overmap-core.js +5074 -4803
  3. package/dist/overmap-core.umd.cjs +7 -7
  4. package/dist/sdk/services/IssueUpdateService.d.ts +4 -0
  5. package/dist/sdk/services/WorkflowStepEventService.d.ts +109 -0
  6. package/dist/sdk/services/WorkflowStepReviewerService.d.ts +28 -0
  7. package/dist/sdk/services/index.d.ts +2 -0
  8. package/dist/store/reducers.d.ts +6 -0
  9. package/dist/store/slices/assetProcedureSlice.d.ts +2 -0
  10. package/dist/store/slices/assetProcedureStepFieldValuesAttachmentSlice.d.ts +2 -0
  11. package/dist/store/slices/assetProcedureStepFieldValuesSlice.d.ts +2 -0
  12. package/dist/store/slices/assetProcedureStepFieldsAttachmentSlice.d.ts +2 -0
  13. package/dist/store/slices/assetProcedureStepFieldsSlice.d.ts +4 -0
  14. package/dist/store/slices/assetProcedureStepSlice.d.ts +2 -0
  15. package/dist/store/slices/assetProcedureTypeAttachmentSlice.d.ts +2 -0
  16. package/dist/store/slices/assetProcedureTypeFieldValuesAttachmentSlice.d.ts +2 -0
  17. package/dist/store/slices/assetProcedureTypeFieldValuesSlice.d.ts +2 -0
  18. package/dist/store/slices/assetProcedureTypeFieldsAttachmentSlice.d.ts +2 -0
  19. package/dist/store/slices/assetSlice.d.ts +2 -0
  20. package/dist/store/slices/assetStageCompletionSlice.d.ts +2 -0
  21. package/dist/store/slices/assetStageSlice.d.ts +2 -0
  22. package/dist/store/slices/assetTypeFieldValuesAttachmentSlice.d.ts +2 -0
  23. package/dist/store/slices/assetTypeFieldValuesSlice.d.ts +2 -0
  24. package/dist/store/slices/assetTypeFieldsAttachmentSlice.d.ts +2 -0
  25. package/dist/store/slices/assetTypeFieldsSlice.d.ts +2 -0
  26. package/dist/store/slices/assetTypeStatusSlice.d.ts +2 -0
  27. package/dist/store/slices/categorySlice.d.ts +2 -0
  28. package/dist/store/slices/emailDomainsSlice.d.ts +2 -0
  29. package/dist/store/slices/formRevisionAttachmentSlice.d.ts +2 -0
  30. package/dist/store/slices/formRevisionSlice.d.ts +2 -0
  31. package/dist/store/slices/formSlice.d.ts +2 -0
  32. package/dist/store/slices/geoImageSlice.d.ts +2 -0
  33. package/dist/store/slices/index.d.ts +2 -0
  34. package/dist/store/slices/issueAssociationSlice.d.ts +2 -0
  35. package/dist/store/slices/issueTypeFieldValuesAttachmentSlice.d.ts +2 -0
  36. package/dist/store/slices/issueTypeFieldValuesSlice.d.ts +2 -0
  37. package/dist/store/slices/issueTypeFieldsAttachmentSlice.d.ts +2 -0
  38. package/dist/store/slices/issueTypeFieldsSlice.d.ts +2 -0
  39. package/dist/store/slices/issueTypeStatusSlice.d.ts +2 -0
  40. package/dist/store/slices/issueUpdateSlice.d.ts +6 -0
  41. package/dist/store/slices/organizationSlice.d.ts +2 -0
  42. package/dist/store/slices/projectFileSlice.d.ts +2 -0
  43. package/dist/store/slices/projectSlice.d.ts +2 -0
  44. package/dist/store/slices/userSlice.d.ts +2 -0
  45. package/dist/store/slices/workflowStepAssigneeSlice.d.ts +2 -0
  46. package/dist/store/slices/workflowStepCommentSlice.d.ts +2 -0
  47. package/dist/store/slices/workflowStepCompletionSlice.d.ts +2 -0
  48. package/dist/store/slices/workflowStepEventSlice.d.ts +108 -0
  49. package/dist/store/slices/workflowStepFieldValuesAttachmentSlice.d.ts +2 -0
  50. package/dist/store/slices/workflowStepFieldValuesSlice.d.ts +2 -0
  51. package/dist/store/slices/workflowStepFieldsAttachmentSlice.d.ts +2 -0
  52. package/dist/store/slices/workflowStepFieldsSlice.d.ts +4 -0
  53. package/dist/store/slices/workflowStepReviewRequestSlice.d.ts +2 -0
  54. package/dist/store/slices/workflowStepReviewSlice.d.ts +2 -0
  55. package/dist/store/slices/workflowStepReviewerSlice.d.ts +129 -0
  56. package/dist/store/slices/workflowStepSlice.d.ts +2 -0
  57. package/dist/typings/models/workflows.d.ts +23 -2
  58. package/package.json +1 -1
@@ -3,3 +3,11 @@ export declare enum WorkflowReviewType {
3
3
  APPROVE = 2,
4
4
  DENY = 4
5
5
  }
6
+ export declare enum WorkflowStepEventType {
7
+ ADD_ASSIGNEE = 0,
8
+ REMOVE_ASSIGNEE = 1,
9
+ ADD_REVIEWER = 2,
10
+ REMOVE_REVIEWER = 3,
11
+ ADD_REVIEW_REQUEST = 4,
12
+ REMOVE_REVIEW_REQUEST = 5
13
+ }