@overmap-ai/core 1.0.78-workflows-2.1 → 1.0.78-workflows-2.2
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/dist/overmap-core.js +413 -358
- package/dist/overmap-core.umd.cjs +5 -5
- package/dist/store/slices/workflowStepAssigneeSlice.d.ts +1 -0
- package/dist/store/slices/workflowStepCommentSlice.d.ts +1 -0
- package/dist/store/slices/workflowStepFieldValuesSlice.d.ts +1 -0
- package/dist/store/slices/workflowStepReviewerSlice.d.ts +1 -0
- package/package.json +1 -1
|
@@ -122,4 +122,5 @@ export declare const selectWorkflowStepAssigneeById: OvermapSelectorWithArgs<Wor
|
|
|
122
122
|
export declare const selectWorkflowStepAssigneesByIds: (uuids: string[]) => (state: any) => Stored<WorkflowStepAssignee>[];
|
|
123
123
|
export declare const selectWorkflowStepAssigneesOfWorkflow: OvermapSelectorWithArgs<Workflow["uuid"], Stored<WorkflowStepAssignee>[]>;
|
|
124
124
|
export declare const selectWorkflowStepAssigneesOfWorkflowStep: OvermapSelectorWithArgs<WorkflowStep["uuid"], Stored<WorkflowStepAssignee>[]>;
|
|
125
|
+
export declare const selectWorkflowStepAssigneesOfWorkflowAndWorkflowStep: (_workflowId: string, workflowStepId: string) => (state: any) => Stored<WorkflowStepAssignee>[];
|
|
125
126
|
export declare const workflowStepAssigneeReducer: import('redux').Reducer<WorkflowStepAssigneeState>;
|
|
@@ -122,4 +122,5 @@ export declare const selectWorkflowStepCommentById: OvermapSelectorWithArgs<Work
|
|
|
122
122
|
export declare const selectWorkflowStepCommentsByIds: (uuids: string[]) => (state: any) => Stored<WorkflowStepComment>[];
|
|
123
123
|
export declare const selectWorkflowStepCommentsOfWorkflow: OvermapSelectorWithArgs<Workflow["uuid"], Stored<WorkflowStepComment>[]>;
|
|
124
124
|
export declare const selectWorkflowStepCommentsOfWorkflowStep: OvermapSelectorWithArgs<WorkflowStep["uuid"], Stored<WorkflowStepComment>[]>;
|
|
125
|
+
export declare const selectWorkflowStepCommentsOfWorkflowAndWorkflowStep: (_workflowId: string, workflowStepId: string) => (state: any) => Stored<WorkflowStepComment>[];
|
|
125
126
|
export declare const workflowStepCommentReducer: import('redux').Reducer<WorkflowStepCommentState>;
|
|
@@ -122,4 +122,5 @@ export declare const selectWorkflowStepFieldValuesOfWorkflow: OvermapSelectorWit
|
|
|
122
122
|
export declare const selectWorkflowStepFieldValuesOfWorkflowStep: OvermapSelectorWithArgs<WorkflowStep["uuid"], Stored<WorkflowStepFieldValues>[]>;
|
|
123
123
|
export declare const selectWorkflowStepFieldValuesById: OvermapSelectorWithArgs<WorkflowStepFieldValues["uuid"], Stored<WorkflowStepFieldValues> | undefined>;
|
|
124
124
|
export declare const selectWorkflowStepFieldValuesByIds: (uuids: string[]) => (state: any) => Stored<WorkflowStepFieldValues>[];
|
|
125
|
+
export declare const selectWorkflowStepFieldValuesOfWorkflowAndWorkflowStep: (_workflowId: string, workflowStepId: string) => (state: any) => Stored<WorkflowStepFieldValues>[];
|
|
125
126
|
export declare const workflowStepFieldValuesReducer: import('redux').Reducer<WorkflowStepFieldValuesState>;
|
|
@@ -122,4 +122,5 @@ export declare const selectWorkflowStepReviewerById: OvermapSelectorWithArgs<Wor
|
|
|
122
122
|
export declare const selectWorkflowStepReviewersByIds: (uuids: string[]) => (state: any) => Stored<WorkflowStepReviewer>[];
|
|
123
123
|
export declare const selectWorkflowStepReviewersOfWorkflow: OvermapSelectorWithArgs<Workflow["uuid"], Stored<WorkflowStepReviewer>[]>;
|
|
124
124
|
export declare const selectWorkflowStepReviewersOfWorkflowStep: OvermapSelectorWithArgs<WorkflowStep["uuid"], Stored<WorkflowStepReviewer>[]>;
|
|
125
|
+
export declare const selectWorkflowStepReviewersOfWorkflowAndWorkflowStep: (_workflowId: string, workflowStepId: string) => (state: any) => Stored<WorkflowStepReviewer>[];
|
|
125
126
|
export declare const workflowStepReviewerReducer: import('redux').Reducer<WorkflowStepReviewerState>;
|