@overmap-ai/core 1.0.78-bulk-identifier-value-support.1 → 1.0.78-bulk-issue-links.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.
Files changed (82) hide show
  1. package/dist/constants/index.d.ts +1 -0
  2. package/dist/constants/workflows.d.ts +4 -0
  3. package/dist/enums/index.d.ts +1 -0
  4. package/dist/enums/workflows.d.ts +18 -0
  5. package/dist/overmap-core.js +9084 -6512
  6. package/dist/overmap-core.umd.cjs +7 -7
  7. package/dist/sdk/services/FormService.d.ts +4 -2
  8. package/dist/sdk/services/IssueAssociationService.d.ts +2 -1
  9. package/dist/sdk/services/IssueUpdateService.d.ts +32 -0
  10. package/dist/sdk/services/WorkflowIssueLinkService.d.ts +27 -0
  11. package/dist/sdk/services/WorkflowService.d.ts +28 -0
  12. package/dist/sdk/services/WorkflowStepAssigneeService.d.ts +29 -0
  13. package/dist/sdk/services/WorkflowStepCommentService.d.ts +28 -0
  14. package/dist/sdk/services/WorkflowStepDefaultAssigneeService.d.ts +27 -0
  15. package/dist/sdk/services/WorkflowStepDefaultReviewerService.d.ts +27 -0
  16. package/dist/sdk/services/WorkflowStepEventService.d.ts +24 -0
  17. package/dist/sdk/services/WorkflowStepFieldValuesAttachmentService.d.ts +31 -0
  18. package/dist/sdk/services/WorkflowStepFieldValuesReviewRequestService.d.ts +27 -0
  19. package/dist/sdk/services/WorkflowStepFieldValuesReviewService.d.ts +28 -0
  20. package/dist/sdk/services/WorkflowStepFieldValuesService.d.ts +28 -0
  21. package/dist/sdk/services/WorkflowStepFieldsAttachmentService.d.ts +30 -0
  22. package/dist/sdk/services/WorkflowStepFieldsService.d.ts +27 -0
  23. package/dist/sdk/services/WorkflowStepReviewerService.d.ts +29 -0
  24. package/dist/sdk/services/WorkflowStepService.d.ts +28 -0
  25. package/dist/sdk/services/WorkflowTypeService.d.ts +28 -0
  26. package/dist/sdk/services/index.d.ts +16 -0
  27. package/dist/store/reducers.d.ts +48 -0
  28. package/dist/store/slices/assetProcedureSlice.d.ts +16 -0
  29. package/dist/store/slices/assetProcedureStepFieldValuesAttachmentSlice.d.ts +16 -0
  30. package/dist/store/slices/assetProcedureStepFieldValuesSlice.d.ts +16 -0
  31. package/dist/store/slices/assetProcedureStepFieldsAttachmentSlice.d.ts +16 -0
  32. package/dist/store/slices/assetProcedureStepFieldsSlice.d.ts +32 -0
  33. package/dist/store/slices/assetProcedureStepSlice.d.ts +16 -0
  34. package/dist/store/slices/assetProcedureTypeAttachmentSlice.d.ts +16 -0
  35. package/dist/store/slices/assetProcedureTypeFieldValuesAttachmentSlice.d.ts +16 -0
  36. package/dist/store/slices/assetProcedureTypeFieldValuesSlice.d.ts +16 -0
  37. package/dist/store/slices/assetProcedureTypeFieldsAttachmentSlice.d.ts +16 -0
  38. package/dist/store/slices/assetSlice.d.ts +16 -0
  39. package/dist/store/slices/assetStageCompletionSlice.d.ts +16 -0
  40. package/dist/store/slices/assetStageSlice.d.ts +16 -0
  41. package/dist/store/slices/assetTypeFieldValuesAttachmentSlice.d.ts +16 -0
  42. package/dist/store/slices/assetTypeFieldValuesSlice.d.ts +16 -0
  43. package/dist/store/slices/assetTypeFieldsAttachmentSlice.d.ts +16 -0
  44. package/dist/store/slices/assetTypeFieldsSlice.d.ts +16 -0
  45. package/dist/store/slices/assetTypeStatusSlice.d.ts +16 -0
  46. package/dist/store/slices/emailDomainsSlice.d.ts +16 -0
  47. package/dist/store/slices/formRevisionAttachmentSlice.d.ts +16 -0
  48. package/dist/store/slices/formRevisionSlice.d.ts +16 -0
  49. package/dist/store/slices/formSlice.d.ts +16 -0
  50. package/dist/store/slices/geoImageSlice.d.ts +16 -0
  51. package/dist/store/slices/index.d.ts +16 -0
  52. package/dist/store/slices/issueAssociationSlice.d.ts +16 -0
  53. package/dist/store/slices/issueTypeFieldValuesAttachmentSlice.d.ts +16 -0
  54. package/dist/store/slices/issueTypeFieldValuesSlice.d.ts +16 -0
  55. package/dist/store/slices/issueTypeFieldsAttachmentSlice.d.ts +16 -0
  56. package/dist/store/slices/issueTypeFieldsSlice.d.ts +16 -0
  57. package/dist/store/slices/issueTypeStatusSlice.d.ts +16 -0
  58. package/dist/store/slices/issueUpdateSlice.d.ts +48 -0
  59. package/dist/store/slices/organizationSlice.d.ts +16 -0
  60. package/dist/store/slices/projectFileSlice.d.ts +16 -0
  61. package/dist/store/slices/projectSlice.d.ts +16 -0
  62. package/dist/store/slices/userSlice.d.ts +16 -0
  63. package/dist/store/slices/workflowIssueLinkSlice.d.ts +130 -0
  64. package/dist/store/slices/workflowSlice.d.ts +23 -0
  65. package/dist/store/slices/workflowStepAssigneeSlice.d.ts +129 -0
  66. package/dist/store/slices/workflowStepCommentSlice.d.ts +129 -0
  67. package/dist/store/slices/workflowStepDefaultAssigneeSlice.d.ts +127 -0
  68. package/dist/store/slices/workflowStepDefaultReviewerSlice.d.ts +127 -0
  69. package/dist/store/slices/workflowStepEventSlice.d.ts +129 -0
  70. package/dist/store/slices/workflowStepFieldValuesAttachmentSlice.d.ts +127 -0
  71. package/dist/store/slices/workflowStepFieldValuesReviewRequestSlice.d.ts +129 -0
  72. package/dist/store/slices/workflowStepFieldValuesReviewSlice.d.ts +130 -0
  73. package/dist/store/slices/workflowStepFieldValuesSlice.d.ts +130 -0
  74. package/dist/store/slices/workflowStepFieldsAttachmentSlice.d.ts +127 -0
  75. package/dist/store/slices/workflowStepFieldsSlice.d.ts +128 -0
  76. package/dist/store/slices/workflowStepReviewerSlice.d.ts +129 -0
  77. package/dist/store/slices/workflowStepSlice.d.ts +22 -0
  78. package/dist/store/slices/workflowTypeSlice.d.ts +22 -0
  79. package/dist/typings/models/forms.d.ts +3 -2
  80. package/dist/typings/models/index.d.ts +1 -0
  81. package/dist/typings/models/workflows.d.ts +91 -0
  82. package/package.json +1 -1
@@ -1,3 +1,4 @@
1
1
  export * from './array';
2
2
  export * from './defaults';
3
3
  export * from './offline';
4
+ export * from './workflows';
@@ -0,0 +1,4 @@
1
+ import { WorkflowStatus, WorkflowStepFieldValuesReviewType } from '../enums';
2
+ export declare const WORKFLOW_STEP_FIELD_VALUES_REVIEW_TYPES: WorkflowStepFieldValuesReviewType[];
3
+ export declare const WORKFLOW_STATUSES: WorkflowStatus[];
4
+ export declare const DEFAULT_WORKFLOW_STATUS = WorkflowStatus.ACTIVE;
@@ -3,3 +3,4 @@ export * from './api';
3
3
  export * from './asset';
4
4
  export * from './attachments';
5
5
  export * from './issue';
6
+ export * from './workflows';
@@ -0,0 +1,18 @@
1
+ export declare enum WorkflowStepEventType {
2
+ ADD_ASSIGNEE = 0,
3
+ REMOVE_ASSIGNEE = 2,
4
+ ADD_REVIEWER = 4,
5
+ REMOVE_REVIEWER = 6,
6
+ ADD_REVIEW_REQUEST = 8,
7
+ REMOVE_REVIEW_REQUEST = 10
8
+ }
9
+ export declare enum WorkflowStatus {
10
+ ACTIVE = 0,
11
+ COMPLETED = 2,
12
+ CANCELLED = 4
13
+ }
14
+ export declare enum WorkflowStepFieldValuesReviewType {
15
+ APPROVED = 0,
16
+ REJECTED = 2,
17
+ CHANGES_REQUESTED = 4
18
+ }