Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modified generate's endpoint generate to accept array of events #226

Merged
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
6eb83b3
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Jun 19, 2024
d33c54c
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Jul 2, 2024
1476f2d
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Jul 9, 2024
e58d75b
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Jul 12, 2024
55d720d
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Jul 17, 2024
037c273
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Jul 22, 2024
89b52ef
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Jul 25, 2024
145f2b8
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Jul 26, 2024
dfa1799
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Jul 30, 2024
7ea6195
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Jul 30, 2024
3a3fd1c
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Aug 1, 2024
962cabb
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Aug 2, 2024
dbb2ed3
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Aug 5, 2024
ddca4e6
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Aug 8, 2024
b5ed6b4
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Aug 9, 2024
cd2a736
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Aug 12, 2024
6456f81
Modified generate's endpoint generate to accept array of events
shudhansu-shekhar Aug 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ public final class RemremGenerateServiceConstants {
public static final String NO_TEMPLATE_ERROR = "{\"status_code\": 404, \"result\": \"FAIL\", "
+ "\"message\":\"Requested template is not available\"}";

public static final String TEMPLATE_ERROR = "{\"status_code\": 400, \"result\": \"FAIL\", "
+ "\"message\":\"Template is not correct format or something is missing in the template, please check\"}";

public static final String INTERNAL_SERVER_ERROR = "{\"status_code\": 500, \"result\": \"FAIL\", "
+ "\"message\":\"Internal server error\"}";

Expand Down Expand Up @@ -54,4 +57,14 @@ public final class RemremGenerateServiceConstants {
public static final String LenientValidation = "okToLeaveOutInvalidOptionalFields true will remove the optional "
+ "event fields from the input event data that does not validate successfully, "
+ "and add those removed field information into customData/remremGenerateFailures";

public static final String JSON_STATUS_CODE = "status code";

public static final String JSON_STATUS_RESULT = "result";

public static final String META = "meta";

public static final String JSON_ERROR_STATUS = "FAIL";

public static final String JSON_FATAL_STATUS = "FATAL";
}
Loading