{"version":3,"file":"87811.04a4a6bf.js","sources":["webpack://app/./src/docs/CodeReview.md","webpack://app/./src/docs/GenerateAddFlowCodePR.md","webpack://app/./src/docs/GenerateDataweave.md","webpack://app/./src/docs/GenerateDataweaveToDataCreation.md","webpack://app/./src/docs/GenerateDocumentation.md","webpack://app/./src/docs/GenerateFullRepoTechManifestDocumentation.md","webpack://app/./src/docs/GenerateImage.md","webpack://app/./src/docs/GenerateMUnitTestsForFlow.md","webpack://app/./src/docs/GenerateMappingTable.md","webpack://app/./src/docs/GenerateMultiRepoFlowDiagramFlows.md","webpack://app/./src/docs/InputOutputToDWL.md","webpack://app/./src/docs/MulesoftToCamel.md","webpack://app/./src/docs/MulesoftToNodeJS.md","webpack://app/./src/docs/MultiRepoQuestionAnswering.md","webpack://app/./src/docs/MultiRepoQuestionAnsweringDebug.md","webpack://app/./src/docs/QuestionAnswering.md","webpack://app/./src/docs/SimpleCodingTask.md","webpack://app/./src/components/flow-editor/initial-elements.tsx","webpack://app/./src/constants/localstorage.tsx","webpack://app/./src/setup.ts","webpack://app/./src/store/campaignLimitSlice.ts","webpack://app/./src/store/codeSlice.ts","webpack://app/./src/store/errorsSlice.ts","webpack://app/./src/store/fileExplorerSlice.ts","webpack://app/./src/store/flowSlice.ts","webpack://app/./src/store/utils.ts","webpack://app/./src/utils/FileHandleStore.ts","webpack://app/./src/utils/async.ts","webpack://app/../storybook/components/utils.tsx"],"sourcesContent":["export default \"The agent reviews a pull request and provides comments in accordance with the enterprise best guidelines.\\n\";","export default \"> Estimated Time: ~5 mins\\n\\nCurie enables developers to create flow code tailored to specific integration requirements. By defining key details, such as data sources and transformation steps, this tool quickly generates code for complex workflows.\\nYou can provide further feedback on the flow code generated by Curie, allowing for further refinement and customization.\\n\\n## Example Integration Specifications\\n\\nTo create an integration flow that retrieves product data from a MySQL database and order data from Salesforce, use the following specifications:\\n\\n```example\\n## Overview\\nThe flow fetches product information from a mysql database and order information from Salesforce.\\n\\n## Trigger\\nThe flow is invoked when an HTTP GET request is made to the /productsOrders endpoint.\\nThe flow does not require any input payload from the HTTP request.\\n\\n## Connector Configurations\\n\\nMySql Database Config:\\n host: \\\"10.121.1.10\\\"\\n port: \\\"3306\\\"\\n user: \\\"user\\\"\\n password: \\\"password\\\"\\n databaseName: \\\"DEV01\\\"\\n\\n## Detailed Steps\\n1. The flow is invoked when an HTTP GET request is made to the /productsOrders endpoint.\\n2. Fetch data from both the database and Salesforce in parallel.\\n3. Route 1: Fetch product information from the database from products table.\\n4. Transform the product response.\\n5. Route 2: Fetch order information Id, OrderNumber, TotalAmount from order table from Salesforce.\\n6. Transform the order response.\\n7. Combine the transformed responses from both routes by gathering and structure the final JSON response.\\n```\\n\\n## General Template\\n\\n```example\\n## Overview\\n...\\n\\n## Trigger\\n...\\n\\n## Connector Configurations [Optional]\\n...\\n\\n## Detailed Steps [Optional]\\n...\\n\\n## Input Data Description [Optional]\\nIt may contain description or sample data.\\n\\n## Output Data Description [Optional]\\nIt may contain description or sample data.\\n\\n## Other Guidelines [Optional]\\n- Logging:\\n - Add logging at the beginning with the info level to log the input\\n - Add logging at the end with the info level to log the output\\n - ...\\n- Error Handling:\\n - Propagate all errors and log their description\\n - ...\\n- Naming conventions:\\n - use camel case for any variables in the flow\\n - ...\\n- Optimizations:\\n - scatter gather\\n - some optimization regarding batching for bigger payload\\n - ...\\n```\\n\";","export default \"# 1. DataWeave Generator with Mapping Table \\n*(Use this option with Mapping Table)*\\n\\nThe DataWeave Generator, powered by Curie, can create DataWeave transformation code directly from a provided mapping table. Simply upload your mapping sheet in XLSX format, and Curie will generate code based on the specified mappings, making data transformations more streamlined and efficient.\\n\\n> Estimated Time: ~2 mins\\n\\n## Flexible Options for Custom Transformations\\n- **Add Notes**: You can include details like sample input/output data and/or any specific instructions to guide Curie in generating accurate transformations.\\n- **Supported Data Types**: The generator currently supports transformations across these data types: json, ndjson, xml, csv, text, and yaml.\\n\\n\\n## Example Mapping Tables\\nFor reference, you can view sample mapping table formats here:\\n\\n1. [MappingTableFormat1](/examples/MappingTableFormat1.xlsx)\\n2. [MappingTableFormat2](/examples/MappingTableFormat2.xlsx)\\n\\nWith this feature, Curie simplifies the process of translating complex mapping specifications into executable DataWeave code, saving development time and improving transformation accuracy.\\n\\n\\n# 2. DataWeave Generator in other cases\\n*(Used this with No Repository, With Repository or Upload from computer)*\\n\\nThe DataWeave Generator, powered by Curie, produces transformation code that adapts input data structures to match desired output formats. By supplying input and output examples, developers can quickly generate DataWeave code for complex data transformations.\\n\\n> Estimated Time: Few seconds to few minutes (Depends on the complexity of the transformation)\\n\\n## Flexible Configuration for Improved Accuracy [Optional]\\n- **Provide multiple input and output examples**: Supplying a variety of examples helps Curie better understand the desired mappings and account for variations in data.\\n- **Add extra transformation notes**: Specific details or constraints about the transformation guide Curie in generating more precise code.\\n\\n## Example Transformation\\nTo generate DataWeave code that transforms the provided XML input into the specified JSON output, use the following input and output examples:\\n\\n## Sample Input Data\\n\\n```xml\\n\\n
\\n\\n
\\nTo add logs messages to a particular flow/sub-flow, specify the flow name (the specification could closely match the name) and\\na description of where to add the log message, what it should contain and what should be the log level e.g. the following command\\nwould add a debug log message to log the contents of placed orders in the process-orders-flow when the placed orders variable is set\\n
\\n\\n```example\\nAdd debug logs in the process orders flow to log if an order is placed or a canceled order.\\nPrint the value of variables in such cases.\\n```\\n\\n\\nTo add new error codes to an error handler, specify the error handler and the error codes with a short description of those error\\ncodes e.g. the following command adds the http error codes 403 and 408 to the global error handler\\n
\\n\\n```example\\nAdd 403, 408 http error codes to the error handler\\n```\\n\\n\\nTo rename a particular flow(or any other entity), specify the existing name of the flow(or entity) and the new name e.g. the\\nfollowing command changes the renames the order-publish-flow to publish-order-flow\\n
\\n\\n```example\\nRename the order-publish-flow to publish-order-flow\\n```\\n\\n\\nTo rename a particular field in DataWeave, specify enough information to idenitfy the field and what the new name of the field\\nshould be e.g. the following command renames the `email` field in `member-enrollment.dwl` DataWeave file to `email_address`\\n
\\n\\n```example\\nRename \\\"email\\\" field in member-enrollment.dwl to \\\"email_address\\\"\\n```\\n\\n\\nTo change the transformation logic of a particular field, specify enough information to identify the field and also specify\\nthe logic e.g. the following example changes the logic for populating the `enrollmentChannel` field in `member-enrollment.dwl`\\n
\\n\\n```example\\nIn the member-enrollment.dwl file change the logic of enrollmentChannel to be\\n\\\"Pos\\\" if membership number starts with 100 and \\\"Ecom\\\" otherwise.\\n```\\n\\n\\nTo update connectors, specify a small phrase to identify the connector (this could be the exact connector name or a phrase that\\nmatches the connector name) and specify the version number that you want to update the connector to. The version number should\\nhave a major, minor and patch component e.g. the following command would update the mule http connector to version 1.9.2\\n
\\n\\n```example\\nUpdate the mule http connector to version 1.9.2\\n```\\n\\n\\nTo add a new field/fields to an existing transformation, specify enough information to identify the transformation and specify\\nthe object and the fields to be added. Also specify the logic to populate those field e.g. the following example illustrates\\nhow to add fields to the transformation in `member-enrollment.dwl`\\n
\\n\\n```example\\nAdd the following changes to member-enrollment.dwl.\\n\\n- Add memberAddress object and below fields under it, mapping is specified below.\\n\\n - address1, payload.address1\\n - address2, payload.address2\\n - city, payload.city\\n - state, payload.state\\n - zipCode, payload.zipCode.\\n\\n- Add membershipExpirationDate field and the value should be a date which is two years after the enrollmentDate.\\n```\\n\\n