@omniumretail/shared-resources 0.3.30 → 0.3.31

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.
@@ -12,6 +12,7 @@ export interface FlowExecution {
12
12
  NotificationUser: boolean;
13
13
  EndDate: number;
14
14
  Stage: string;
15
+ LastExecutionId: string;
15
16
  Parameters: Parameter[];
16
17
  }
17
18
  interface Parameter {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omniumretail/shared-resources",
3
- "version": "0.3.30",
3
+ "version": "0.3.31",
4
4
  "private": false,
5
5
  "description": "Shared Components and services or utils to the frontend versions",
6
6
  "main": "dist/bundle.js",
@@ -8,7 +8,8 @@ export const runFlowExecutionQuery = () => {
8
8
  return postAuth0('/AEXP/Execution/RunExecution?', {
9
9
  pExecutionId: data.Id,
10
10
  pUserId: data.UserId,
11
- pUserEmail: data.UserEmail
11
+ pUserEmail: data.UserEmail,
12
+ pLastExecutionId: data.LastExecutionId
12
13
  }, data);
13
14
  }, {
14
15
  onSuccess: (data: FlowExecution) => {
@@ -12,6 +12,7 @@ export interface FlowExecution {
12
12
  NotificationUser: boolean;
13
13
  EndDate: number;
14
14
  Stage: string;
15
+ LastExecutionId: string;
15
16
  Parameters: Parameter[];
16
17
  }
17
18