We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
What is in thrift:
enum WorkflowStatus { INACTIVE, ACTIVE, TEST, SIMULATIONSCHEDULED = 10, SIMULATIONACTIVE, SIMULATIONINACTIVE }
Output of thrift2flow: export type WorkflowStatusType = | "ACTIVE" | "INACTIVE" | "SIMULATIONACTIVE" | "SIMULATIONINACTIVE" | "SIMULATIONSCHEDULED" | "TEST"; export const WorkflowStatusValueMap = { ACTIVE: 1, INACTIVE: 0, SIMULATIONACTIVE: 4, <- expect this to be 11 SIMULATIONINACTIVE: 5, <- expect this to be 12 SIMULATIONSCHEDULED: 10, TEST: 2 };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What is in thrift:
enum WorkflowStatus {
INACTIVE,
ACTIVE,
TEST,
SIMULATIONSCHEDULED = 10,
SIMULATIONACTIVE,
SIMULATIONINACTIVE
}
Output of thrift2flow:
export type WorkflowStatusType =
| "ACTIVE"
| "INACTIVE"
| "SIMULATIONACTIVE"
| "SIMULATIONINACTIVE"
| "SIMULATIONSCHEDULED"
| "TEST";
export const WorkflowStatusValueMap = {
ACTIVE: 1,
INACTIVE: 0,
SIMULATIONACTIVE: 4, <- expect this to be 11
SIMULATIONINACTIVE: 5, <- expect this to be 12
SIMULATIONSCHEDULED: 10,
TEST: 2
};
The text was updated successfully, but these errors were encountered: