{"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 5\\n MuleSoft Connect 2016\\n \\n 3\\n \\n credit-card\\n USD\\n 1\\n \\n \\n mike@hotmail.com\\n Michael\\n
Koala Boulevard 314
\\n San Diego\\n CA\\n 1345\\n USA\\n
\\n main branch\\n Mathew Chow\\n
\\n```\\n\\n## Sample Output Data\\n\\n```json\\n{\\n \\\"address1\\\": \\\"Koala Boulevard 314\\\",\\n \\\"city\\\": \\\"San Diego\\\",\\n \\\"country\\\": \\\"USA\\\",\\n \\\"email\\\": \\\"mike@hotmail.com\\\",\\n \\\"name\\\": \\\"Michael\\\",\\n \\\"postalCode\\\": \\\"1345\\\",\\n \\\"stateOrProvince\\\": \\\"CA\\\"\\n}\\n```\\n\";","export default \"> Estimated Time: ~30s\\n\\nCurie can generate sample input data for the provided DataWeave script. \\nThe generator will create input data that align with the fields in the DataWeave script, including `payload.orderId`, `payload.items`, and `attributes` properties. The output data will reflect the structure defined by the DataWeave expression, allowing you to simulate realistic scenarios and streamline testing.\\nTo generate sample input data, you can input the DataWeave script:\\n\\n```example\\n%dw 2.0\\noutput application/json\\n---\\n{\\n orderId: payload.orderId,\\n totalCost: payload.items map ((item) -> {\\n itemId: item.itemId,\\n totalItemCost: vars.pricing[item.itemId] * item.quantity\\n }),\\n transactionDetails: {\\n date: attributes.transactionDate,\\n customer: attributes.customerName\\n }\\n}\\n```\\n\";","export default \"The Flow Docs Generator, powered by Curie, produces in-depth documentation for specified flows or API endpoints, capturing all critical information for seamless development and maintenance\\n\\n> Estimated Time: ~1 min\\n\\n## Description\\n\\nTo generate documentation assets, provide a comma-separated list of flows or API endpoints in the prompt. Curie will create a comprehensive set of documentation assets for each specified item, including high-level summaries and visual representations.\\n\\n**Tip**: For best results, include flows or endpoints that are logically grouped together. This approach enhances documentation coherence and makes it easier to understand related operations and dependencies.\\n\\n## Example Usage\\n\\nFor example, to generate documentation for multiple flows or endpoints, you could provide them as comma separated list:\\n\\n```example\\nget:\\\\members, post:\\\\members, get:\\\\members\\\\(memberId) \\n```\\n\\n## Documentation Features\\nThe generated documentation includes:\\n\\n- **High-Level Summary**: An overview of the purpose and scope of each flow or endpoint.\\n- **Sequence Diagram**: Illustrates the order of interactions within flows.\\n- **Flow Diagram**: Visualizes the flow’s structure and operations.\\n- **Detailed Steps**: A breakdown of each part of the flow.\\n- **Security**: Information on security measures associated with each flow or endpoint.\\n- **Constants**: Details on constants used within each flow.\\n- **Mapping Table**: Data mappings employed within each flow.\\n- **Unit Tests**: Information on the tests related to flow.\\n\\nBy grouping logically related flows or endpoints, the Flow Docs Generator produces organized and comprehensive documentation that improves clarity and aids in understanding complex workflows and dependencies.\\n\";","export default \"> Estimated Time: ~3 mins\\n\\nTo generate the documentation of all the flows of a respository.\\n\";","export default \"> Estimated Time: ~1 min\\n\\nThe Sequence Diagram Generator feature allows you to generate sequence and flow diagrams for specified flows or API endpoints. You can specify a single flow, a comma-separated list of flows, or API endpoints to be included in the diagram generation. Grouping flows logically is recommended for better clarity in the output.\\n\\nThis feature generates:\\n1. A single, combined sequence diagram containing all specified flows.\\n2. Individual flow diagrams for each flow listed.\\n\\n## Example Usage\\n\\nFor example, to generate diagrams for multiple flows or endpoints, you could provide them as comma separated list:\\n\\n```example\\nget:\\\\members, post:\\\\members, get:\\\\members\\\\(memberId) \\n```\\n\";","export default \"> Estimated Time: 5-30 mins (Depends on the complexity of the flow)\\n\\nThe MUnit Test Generator creates comprehensive test scenarios, including MUnit test code, sample data, and a coverage report for a specified flow. These tests are fully functional and are designed to verify the accuracy and robustness of the flow’s operations.\\n\\n## Example Usage\\nTo generate MUnit tests for a specific flow, simply provide the flow name:\\n\\n```example\\nFlow name: update-user-flow\\n```\\n**Note**: User will have to provide the vm args if running the test requires the same: `-Denv=dev -Dkey=value ...`\\n\\n## Key Features\\n- **Automated Test Scenarios**: Generates detailed test cases to validate different conditions within the flow.\\n- **Sample Data Generation**: Provides sample data for each test scenario to ensure realistic and effective testing.\\n- **Coverage Report**: Produces a coverage report to highlight tested and untested areas within the flow, enhancing test completeness.\\n- **VM Arguments Support**: If running the test requires VM arguments, users can supply them to ensure the tests execute correctly within the appropriate environment settings.\\n\\nThe MUnit Test Generator simplifies the process of creating and maintaining high-quality tests, ensuring each flow functions as intended and meets coverage requirements.\\n\\n## Some examples of sample extra notes:\\n\\n- Generate only the scenario for successful request. Do not generate scenario for failed or error request.`\\n- Important: For the happy path scenario, in the validation you must must assert the value of all or majority of the fields of final payload that is after the final transformation as it is very critical.\\n- Important: Keep the validations simple, just assert final payload is not null or empty.\\n- You can use following input data to generate MUnit tests:\\n\\n```\\n{\\n \\\"orderId\\\": \\\"123\\\",\\n \\\"items\\\": [\\n {\\n \\\"itemId\\\": \\\"1\\\",\\n \\\"quantity\\\": 2\\n },\\n {\\n \\n}]}\\n```\\n**Note**: In most cases, agent can generate this data for you automatically, but you can be even more precise and provide that some connector like salesforce returns following data and/or you can provide schema, data types like json, xml etc.\\n\\n\\n**Key Tips**\\n- Be assertive in extra notes, and more detailed when you want the agent to perform something that you want. Use keywords like `Important`, `Critical`, `Must` etc., to guide the agent.\\n- In case of failures or if the agents are not following your instructions, try generating tests multiple times and try different prompts.\\n- Make sure you provide `vm args` if running the test requires the same. You can verify this by just running `mvn package` on your command line on the project. If there are failures due to missing keys, environment variables, etc., then you need to provide them in vm args like `-Dmule.env=dev -DsfKey=value -Dkey=value ...`\";","export default \"The Mapping Table Generator, powered by Curie, produces a comprehensive mapping table for a specified DataWeave script. This tool helps developers easily visualize the data transformations defined in the script in the mapping table format.\\n\\n> Estimated Time: ~1 min\\n\\n## Description\\n\\nTo generate the mapping table of a DataWeave script using Curie, please specify the DataWeave script in the input box.\\n\\n## Example Usage\\n\\nFor example, to generate the mapping table for a DataWeave script, you can provide the script as follows:\\n\\n```example\\n%dw 2.0\\noutput application/json\\n---\\n{\\n orderId: payload.orderId,\\n totalCost: payload.items map ((item) -> {\\n itemId: item.itemId,\\n totalItemCost: vars.pricing[item.itemId] * item.quantity\\n }),\\n transactionDetails: {\\n date: attributes.transactionDate,\\n customer: attributes.customerName\\n }\\n}\\n```\\n\";","export default \"> Estimated Time: ~2 mins\\n\\nTo generate the diagram showing the detailed dependencies across different repositories. e.g.\\n\\n1. showing the API dependencies between system, process and experience APIs\\n\";","export default \"# 1. DataWeave Generator with No Repository, With Repository or Upload from computer\\n\\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\\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\\n\\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 5\\n MuleSoft Connect 2016\\n \\n 3\\n \\n credit-card\\n USD\\n 1\\n \\n \\n mike@hotmail.com\\n Michael\\n
Koala Boulevard 314
\\n San Diego\\n CA\\n 1345\\n USA\\n
\\n main branch\\n Mathew Chow\\n
\\n```\\n\\n## Sample Output Data\\n\\n```json\\n{\\n \\\"address1\\\": \\\"Koala Boulevard 314\\\",\\n \\\"city\\\": \\\"San Diego\\\",\\n \\\"country\\\": \\\"USA\\\",\\n \\\"email\\\": \\\"mike@hotmail.com\\\",\\n \\\"name\\\": \\\"Michael\\\",\\n \\\"postalCode\\\": \\\"1345\\\",\\n \\\"stateOrProvince\\\": \\\"CA\\\"\\n}\\n```\\n\\n# 2. DataWeave Generator with Mapping Table\\n\\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\\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## Example Mapping Tables\\n\\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## Generate JSON/XML from EDI\\n\\nCurie can generate DataWeave code to transform EDI documents into JSON or XML formats by providing sample EDI input and JSON/XML output examples.\\n\\n### Sample EDI Input\\n\\n```edi\\nISA*00* *00* *ZZ*NTORETAIL *01*MYTHICAL *200915*0103*U*00401*000000018*0*P*>~\\nGS*PO*NTORETAIL *MYTHICAL *20200915*0103*18*X*004010~\\nST*850*0001~\\nBEG*00*NE*PO-DEMO-20200912-002**20191018~\\nREF*VR*7429271~\\nPER*BD*Tim Brown*EM*tbrown@nto.com~\\nPO1*1*20**34.45****MG*324791~\\nPID*F****8.5″ x 11″ Copy Paper, 20 lbs, 92 Brightness, 5000/Carton (324791)~\\nN1*ST*Salesforce West*92*338~\\nN3*50 Fremont St*Suite 1456~\\nN4*San Francisco*CA*94105*US~\\nPO1*2*80**1.95****MG*2072174~\\nPID*F****Hype Tank Highlighters, Chisel, Yellow, Dozen (29203)~\\nN1*ST*Salesforce East*92*367~\\nN3*350 Mission St*Floor 5~\\nN4*San Francisco*CA*94105*US~\\nPO1*3*65**5.08****MG*163865~\\nPID*F****Notepads, 8.5″ x 11.75″, Wide Ruled, White, 50 Sheets/Pad, 12 Pads/Pack (51295/2~\\nN1*ST*Salesforce Tower*92*587~\\nN3*415 Mission St*Floor 3~\\nN4*San Francisco*CA*94105*US~\\nPO1*4*30*PH*11.77****MG*467951~\\nPID*F****Lightweight Moving & Storage Packing Tape, 1.88″W x 54.6 Yards, Clear, 6 Rolls (~\\nN1*ST*Tableau Palo Alto*92*1564~\\nN3*260 California Ave*Ste 300~\\nN4*Palo Alto*CA*94306*US~\\nCTT*4~\\nSE*26*0001~\\nGE*1*18~\\nIEA*1*000000018~\\n```\\n\\n### Sample JSON Output\\n\\n```json\\n[\\n {\\n \\\"PurchaseOrder\\\": {\\n \\\"POPurpose\\\": \\\"New\\\",\\n \\\"POType\\\": \\\"NE\\\",\\n \\\"PONumber\\\": \\\"PO-DEMO-20200912-002\\\",\\n \\\"CustomerId\\\": \\\"A43836686\\\",\\n \\\"CustomerName\\\": \\\"Ohana Incorporated\\\",\\n \\\"BuyerName\\\": \\\"Tim Brown\\\",\\n \\\"BuyerEmailID\\\": \\\"tbrown@nto.com\\\",\\n \\\"PODate\\\": \\\"2019-10-18T00:00:00-07:00\\\",\\n \\\"POLineItems\\\": [\\n {\\n \\\"PurchaseOrderLineId\\\": \\\"PO-DEMO-20200912-002-0\\\",\\n \\\"LineNum\\\": \\\"1\\\",\\n \\\"Quantity\\\": \\\"20\\\",\\n \\\"UnitPrice\\\": \\\"34.45\\\",\\n \\\"ItemDescription\\\": \\\"8.5″ x 11″ Copy Paper, 20 lbs, 92 Brightness, 5000/Carton (324791)\\\",\\n \\\"SupplierItemNum\\\": \\\"324791\\\",\\n \\\"POLineLocation\\\": {\\n \\\"LineLocationId\\\": \\\"338\\\",\\n \\\"ShipToLocation\\\": {\\n \\\"ShipToLocationCode\\\": \\\"338\\\",\\n \\\"ShipToLocationName\\\": \\\"Salesforce West\\\",\\n \\\"Address\\\": {\\n \\\"AddressLine1\\\": \\\"50 Fremont St\\\",\\n \\\"AddressLine2\\\": \\\"Suite 1456\\\",\\n \\\"City\\\": \\\"San Francisco\\\",\\n \\\"PostalCode\\\": \\\"94105\\\",\\n \\\"State\\\": \\\"CA\\\",\\n \\\"Country\\\": \\\"US\\\"\\n }\\n }\\n }\\n },\\n {\\n \\\"PurchaseOrderLineId\\\": \\\"PO-DEMO-20200912-002-1\\\",\\n \\\"LineNum\\\": \\\"2\\\",\\n \\\"Quantity\\\": \\\"80\\\",\\n \\\"UnitPrice\\\": \\\"1.95\\\",\\n \\\"ItemDescription\\\": \\\"Hype Tank Highlighters, Chisel, Yellow, Dozen (29203)\\\",\\n \\\"SupplierItemNum\\\": \\\"2072174\\\",\\n \\\"POLineLocation\\\": {\\n \\\"LineLocationId\\\": \\\"367\\\",\\n \\\"ShipToLocation\\\": {\\n \\\"ShipToLocationCode\\\": \\\"367\\\",\\n \\\"ShipToLocationName\\\": \\\"Salesforce East\\\",\\n \\\"Address\\\": {\\n \\\"AddressLine1\\\": \\\"350 Mission St\\\",\\n \\\"AddressLine2\\\": \\\"Floor 5\\\",\\n \\\"City\\\": \\\"San Francisco\\\",\\n \\\"PostalCode\\\": \\\"94105\\\",\\n \\\"State\\\": \\\"CA\\\",\\n \\\"Country\\\": \\\"US\\\"\\n }\\n }\\n }\\n },\\n {\\n \\\"PurchaseOrderLineId\\\": \\\"PO-DEMO-20200912-002-2\\\",\\n \\\"LineNum\\\": \\\"3\\\",\\n \\\"Quantity\\\": \\\"65\\\",\\n \\\"UnitPrice\\\": \\\"5.08\\\",\\n \\\"ItemDescription\\\": \\\"Notepads, 8.5″ x 11.75″, Wide Ruled, White, 50 Sheets/Pad, 12 Pads/Pack (51295/2\\\",\\n \\\"SupplierItemNum\\\": \\\"163865\\\",\\n \\\"POLineLocation\\\": {\\n \\\"LineLocationId\\\": \\\"587\\\",\\n \\\"ShipToLocation\\\": {\\n \\\"ShipToLocationCode\\\": \\\"587\\\",\\n \\\"ShipToLocationName\\\": \\\"Salesforce Tower\\\",\\n \\\"Address\\\": {\\n \\\"AddressLine1\\\": \\\"415 Mission St\\\",\\n \\\"AddressLine2\\\": \\\"Floor 3\\\",\\n \\\"City\\\": \\\"San Francisco\\\",\\n \\\"PostalCode\\\": \\\"94105\\\",\\n \\\"State\\\": \\\"CA\\\",\\n \\\"Country\\\": \\\"US\\\"\\n }\\n }\\n }\\n },\\n {\\n \\\"PurchaseOrderLineId\\\": \\\"PO-DEMO-20200912-002-3\\\",\\n \\\"LineNum\\\": \\\"4\\\",\\n \\\"Quantity\\\": \\\"30\\\",\\n \\\"UnitPrice\\\": \\\"11.77\\\",\\n \\\"ItemDescription\\\": \\\"Lightweight Moving & Storage Packing Tape, 1.88″W x 54.6 Yards, Clear, 6 Rolls (\\\",\\n \\\"SupplierItemNum\\\": \\\"467951\\\",\\n \\\"POLineLocation\\\": {\\n \\\"LineLocationId\\\": \\\"1564\\\",\\n \\\"ShipToLocation\\\": {\\n \\\"ShipToLocationCode\\\": \\\"1564\\\",\\n \\\"ShipToLocationName\\\": \\\"Tableau Palo Alto\\\",\\n \\\"Address\\\": {\\n \\\"AddressLine1\\\": \\\"260 California Ave\\\",\\n \\\"AddressLine2\\\": \\\"Ste 300\\\",\\n \\\"City\\\": \\\"Palo Alto\\\",\\n \\\"PostalCode\\\": \\\"94306\\\",\\n \\\"State\\\": \\\"CA\\\",\\n \\\"Country\\\": \\\"US\\\"\\n }\\n }\\n }\\n }\\n ]\\n }\\n }\\n]\\n```\\n\";","export default \"To migrate any Mulesoft flow or api endpoint to Camel. Describe the flow or api endpoint that needs to be migrated and Curie will provide you with the Camel code that can be used to replace the Mulesoft flow or api endpoint.\\n\\n## Example\\n\\n```example\\nMigrate `update-user-flow` to Camel\\n```\\n\";","export default \"To migrate any Mulesoft flow or api endpoint to NodeJS. Describe the flow or api endpoint that needs to be migrated and Curie will provide you with the NodeJS code that can be used to replace the Mulesoft flow or api endpoint.\\n\\n## Example\\n\\n```example\\nMigrate `update-user-flow` to NodeJS\\n```\\n\";","export default \"The Multi Repo Code Lens feature enables users to query and explore information across multiple Git repositories configured and indexed on the platform. This tool provides insights spanning various repositories, making it invaluable for understanding dependencies, API connections, and integrations across projects.\\n\\n## Example Questions\\n\\nSome examples of questions you can ask Curie through the Multi Repo Code Lens include:\\n\\n1. List all APIs in the loyalty-mulesoft repository.\\n2. List all APIs across all repositories.\\n3. How are APIs connected across different repositories?\\n4. Which external APIs does the get-member-id flow call?\\n5. Identify all flows that involve database interactions across repositories.\\n6. What configurations are shared between repo1 and repo2?\\n\\n## Key Benefits\\n\\n- **Cross-Repository Insights**: Gain visibility into APIs, flows, and dependencies spanning multiple repositories.\\n- **Flexible Querying**: Ask questions about both individual repositories and cross-repo relationships.\\n- **Enhanced Dependency Mapping**: Understand how flows, APIs, and services interact across repositories, enabling better management of complex integrations.\\n\\nThe Multi Repo Code Lens makes it easy to track and manage interactions across multiple projects, providing developers with a comprehensive view of their interconnected systems.\\n\";","export default \"To ask any question about the repository/apis/code etc. that spans across multiple git repositories. The questions can be high level or low level.\\n\\n## Examples\\n\\nSome examples of questions that you can ask Curie are as follows:\\n\\n1. Give me all the APIs in loyalty-mulesoft repo\\n2. Give all the apis across all repos\\n3. How are the apis are connected across repos\\n4. Which all external apis does the get-member-id flow call\\n etc.\\n\";","export default \"This provides a powerful way to query and explore details about MuleSoft integrations, DataWeave operations, and code within the repository. This tool allows users to ask both high-level and detailed questions about flows, APIs, configurations, and more, helping streamline development and troubleshooting in MuleSoft environments.\\n\\n## Example Questions\\nSome example questions you can ask Curie through the Single Repo Code Lens include:\\n\\n1. List all APIs in this repository.\\n2. Show me all the flows configured in this repository.\\n3. How is error handling managed in the flow named process-orders-flow?\\n4. What transformations are applied in the process-orders-dataweave.dwl script?\\n5. What is the timeout value set for the HTTP listener in customer-flow?\\n6. Which flows include database operations, and how are they configured?\\n7. How can I optimize code in process_order.dwl?\\n\\n### DataWeave-Specific Examples\\n1. How can I add an XML attribute using DataWeave (DWL)?\\n2. How do I use radians in a DataWeave expression?\\n3. What functions are available in DataWeave for handling date transformations?\\n\\n## Key Benefits\\n- **Comprehensive Insight**s: Gain a full understanding of MuleSoft integrations, DataWeave transformations, and configuration settings.\\n- **Custom Queries**: Ask high-level questions (like listing all APIs or flows) as well as low-level questions (such as retrieving specific timeout values or error-handling mechanisms).\\n- **Simplified Troubleshooting**: Easily identify issues or configurations across flows and code elements within the current Git repository.\\n\";","export default \"> Estimated Time: ~5 mins\\n\\nCurie can create code for many different types of simple coding tasks. These are tasks that are routine maintenence tasks.\\n
\\n\\n

Examples

\\n\\n
\\n

Adding log messages to a flow

\\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
\\n\\n
\\n

Adding error codes

\\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
\\n\\n
\\n

Renaming flows and other top level entities

\\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
\\n\\n
\\n

Renaming data fields in DataWeave

\\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
\\n\\n
\\n

Changing transformation logic for an existing filed

\\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
\\n\\n
\\n

Updating connector/component versions

\\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
\\n\\n
\\n

Adding new fields to a transformation in DataWeave

\\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
\\n\";","import { MarkerType } from '@xyflow/react'\n\nexport const nodes = [\n {\n id: '1',\n type: 'Polygon',\n data: {\n label: 'Diamond',\n points: [\n { x: 50, y: 20 },\n { x: 100, y: 50 },\n { x: 50, y: 80 },\n { x: 0, y: 50 }\n ],\n },\n position: { x: 250, y: 0 },\n },\n {\n id: '2',\n type: 'Polygon',\n data: {\n label: 'Triangle',\n points: [\n { x: 50, y: 20 },\n { x: 90, y: 80 },\n { x: 10, y: 80 },\n ],\n },\n position: { x: 450, y: 0 },\n },\n {\n id: '3',\n type: 'Polygon',\n data: {\n label: 'Pentagon',\n points: [\n { x: 50, y: 10 },\n { x: 90, y: 40 },\n { x: 75, y: 90 },\n { x: 25, y: 90 },\n { x: 10, y: 40 },\n ],\n },\n position: { x: 650, y: 0 },\n },\n {\n id: '4',\n type: 'Polygon',\n data: {\n label: 'Hexagon',\n points: [\n { x: 50, y: 10 },\n { x: 90, y: 30 },\n { x: 90, y: 70 },\n { x: 50, y: 90 },\n { x: 10, y: 70 },\n { x: 10, y: 30 },\n ],\n },\n position: { x: 850, y: 0 },\n },\n {\n id: '5',\n type: 'Polygon',\n data: {\n label: 'Star',\n points: [\n { x: 50, y: 10 },\n { x: 60, y: 35 },\n { x: 85, y: 35 },\n { x: 65, y: 50 },\n { x: 75, y: 75 },\n { x: 50, y: 60 },\n { x: 25, y: 75 },\n { x: 35, y: 50 },\n { x: 15, y: 35 },\n { x: 40, y: 35 },\n ],\n },\n position: { x: 1050, y: 0 },\n },\n]\n\nexport const edges = []\n","export enum LocalStorageKey {\n LANGUAGE = 'LANGUAGE',\n THEME = 'THEME',\n SETTINGS = 'SETTINGS'\n}\n","import { trace } from './services/analyticsService'\n\nconst consoleError = console.error\nconsole.error = function (message, ...args) {\n if (typeof message === 'string') {\n if (message.includes('validateDOMNesting')) return\n if (message.includes('Element already has context attribute:')) return\n }\n consoleError.apply(console, [message, ...args])\n}\n\ndocument.addEventListener('copy', function (e) {\n const selectedText = window.getSelection()?.toString()\n trace({\n event: 'copy_to_clipboard',\n labels: {\n text: selectedText || 'unknown',\n type: 'copy'\n }\n })\n})\n","import { createSlice, PayloadAction } from '@reduxjs/toolkit'\n\ninterface campaignLimitState {\n usedTrials: number\n}\n\nconst initialState: campaignLimitState = {\n usedTrials: 0\n}\n\nexport const campaignLimitSlice = createSlice({\n name: 'campaignLimit',\n initialState,\n reducers: {\n incrementUsedTrials: state => {\n if (!state.usedTrials) {\n state.usedTrials = 1\n } else {\n state.usedTrials++\n }\n }\n }\n})\n\nexport const { incrementUsedTrials } = campaignLimitSlice.actions\n\nexport default campaignLimitSlice.reducer\n","import { createSlice } from '@reduxjs/toolkit'\nimport { INode, flattenTree } from 'react-accessible-treeview'\nimport { IFlatMetadata } from 'react-accessible-treeview/dist/TreeView/utils'\nimport { WorkspaceFile } from '~/services/fileService'\nimport { nodes, edges } from '~/components/flow-editor/initial-elements'\n\nexport const initialState = {\n code: JSON.stringify(\n {\n nodes,\n edges\n },\n null,\n 2\n ),\n selectedIds: [] as number[],\n workspaceFolder: { name: '' } as WorkspaceFile\n}\n\nexport const codeSlice = createSlice({\n name: 'code',\n initialState,\n reducers: {\n setCode: (state, action) => {\n state.code = action.payload\n },\n updatePath: (state, action) => {\n const path = action.payload\n const pathParts = path.split('/')\n let current = state.workspaceFolder\n\n for (let i = 0; i < pathParts.length - 1; i += 1) {\n const folderName = pathParts[i]\n let folder = current.children?.find(file => file.name === folderName)\n\n if (!folder) {\n folder = { name: folderName, children: [] }\n current.children?.push(folder)\n }\n\n current = folder\n }\n\n const fileName = pathParts[pathParts.length - 1]\n if (!current.children?.find(file => file.name === fileName)) {\n current.children?.push({ name: fileName })\n }\n\n const data = flattenTree(state.workspaceFolder)\n const checkPath: (file: INode, pathIndex: number) => boolean = (\n file,\n pathIndex\n ) => {\n if (pathIndex < 0) {\n if (file.parent === null) return true\n return false\n }\n if (pathIndex >= 0 && file.name !== pathParts[pathIndex]) {\n return false\n }\n return checkPath(data.find(f => f.id === file.parent)!, pathIndex - 1)\n }\n const selected = data\n .filter(file => checkPath(file, pathParts.length - 1))\n .map(file => file.id) as number[]\n state.selectedIds = selected\n },\n updateWorkspace: (state, action) => {\n state.workspaceFolder = action.payload\n }\n }\n})\n\nexport const { setCode, updatePath, updateWorkspace } = codeSlice.actions\n\nexport default codeSlice.reducer\n","import { createSlice } from '@reduxjs/toolkit'\n\nconst initialErrors: string[] = []\n\nexport const errorsSlice = createSlice({\n name: 'errors',\n initialState: {\n errors: initialErrors\n },\n reducers: {\n appendError: (state, action) => {\n state.errors.push(action.payload)\n },\n removeError: (state, action) => {\n state.errors = state.errors.filter(error => error !== action.payload)\n }\n }\n})\n\nexport const { appendError, removeError } = errorsSlice.actions\n\nexport default errorsSlice.reducer\n","import { createSlice, PayloadAction } from '@reduxjs/toolkit'\nimport FileExplorer from '../components/file-explorer/FileExplorer';\ninterface FlowState {\n activeFile: string\n}\n\nconst initialState: FlowState = {\n activeFile: ''\n}\n\nconst fileExplorerSlice = createSlice({\n name : 'fileExplorer',\n initialState,\n reducers: {\n setActiveFile(state, action: PayloadAction) {\n state.activeFile = action.payload\n }\n }\n})\n\nexport const { setActiveFile } = fileExplorerSlice.actions\nexport default fileExplorerSlice.reducer","import { createSlice, PayloadAction } from '@reduxjs/toolkit'\nimport { Node, Edge } from '@xyflow/react'\nimport {\n nodes as initialNodes,\n edges as initialEdges\n} from '~/components/flow-editor/initial-elements'\ninterface FlowState {\n nodes: Node[]\n edges: Edge[]\n}\nconst initialState: FlowState = {\n nodes: initialNodes,\n edges: initialEdges\n}\nconst flowSlice = createSlice({\n name: 'flow',\n initialState,\n reducers: {\n setNodes(state, action: PayloadAction) {\n state.nodes = action.payload\n },\n setEdges(state, action: PayloadAction) {\n state.edges = action.payload\n }\n }\n})\nexport const { setNodes, setEdges } = flowSlice.actions\nexport default flowSlice.reducer\n","export const localStorageMiddleware =\n (reducerKey: string) => (store: any) => (next: any) => (action: any) => {\n const ret = next(action)\n if (action.type?.startsWith(`${reducerKey}/`)) {\n const state = store.getState()[reducerKey]\n const stateToBeStored = {} as Record\n for (const key in state) {\n // skip keys that start with _\n if (key.startsWith('_')) {\n continue\n }\n stateToBeStored[key] = state[key]\n }\n localStorage.setItem(reducerKey, JSON.stringify(stateToBeStored))\n }\n return ret\n }\n\nexport const loadStateFromLocalStorage = (reducerKey: string) => {\n const storedState = localStorage.getItem(reducerKey)\n return storedState ? JSON.parse(storedState) : {}\n}\n\nexport const initialConversationUUID = () => {\n const { pathname } = new URL(window.location.href)\n return pathname.split('/').pop()!\n}\n","export interface StoredHandle {\n id: string\n handle: FileSystemDirectoryHandle\n}\n\nexport class FileHandleStore {\n private db: IDBDatabase | null = null\n private readonly dbName: string\n private readonly storeName: string\n\n constructor(dbName = 'FileHandleDB', storeName = 'handles') {\n this.dbName = dbName\n this.storeName = storeName\n }\n\n async init(): Promise {\n if (this.db) return\n return new Promise((resolve, reject) => {\n const request = indexedDB.open(this.dbName, 1)\n request.onerror = () => reject(request.error)\n request.onsuccess = () => {\n this.db = request.result\n resolve()\n }\n request.onupgradeneeded = event => {\n const db = (event.target as IDBOpenDBRequest).result\n if (!db.objectStoreNames.contains(this.storeName)) {\n db.createObjectStore(this.storeName, { keyPath: 'id' })\n }\n }\n })\n }\n\n private async getAllHandles(): Promise {\n if (!this.db) throw new Error('Database not initialized')\n return new Promise((resolve, reject) => {\n const transaction = this.db!.transaction(this.storeName, 'readonly')\n const store = transaction.objectStore(this.storeName)\n const request = store.getAll()\n request.onerror = () => reject(request.error)\n request.onsuccess = () => resolve(request.result || [])\n })\n }\n\n private async getIdByHandle(newHandle: FileSystemDirectoryHandle): Promise {\n const existingHandles = await this.getAllHandles()\n for (const stored of existingHandles) {\n try {\n if (await stored.handle.isSameEntry(newHandle)) {\n return stored.id\n }\n } catch (error) {\n console.error('Error checking handle:', error)\n }\n }\n return null\n }\n\n async saveHandle(dirHandle: FileSystemDirectoryHandle): Promise {\n if (!this.db) throw new Error('Database not initialized')\n const existingId = await this.getIdByHandle(dirHandle)\n\n if (existingId) {\n return existingId\n }\n\n const id = Math.random().toString(36).substring(2)\n const storedHandle: StoredHandle = { id, handle: dirHandle }\n\n return new Promise((resolve, reject) => {\n const transaction = this.db!.transaction(this.storeName, 'readwrite')\n const store = transaction.objectStore(this.storeName)\n const request = store.add(storedHandle)\n request.onerror = () => reject(request.error)\n request.onsuccess = () => resolve(id)\n })\n }\n\n async removeHandle(id: string): Promise {\n if (!this.db) throw new Error('Database not initialized')\n return new Promise((resolve, reject) => {\n const transaction = this.db!.transaction(this.storeName, 'readwrite')\n const store = transaction.objectStore(this.storeName)\n const request = store.delete(id)\n request.onerror = () => reject(request.error)\n request.onsuccess = () => resolve()\n })\n }\n\n async getHandleById(id: string): Promise {\n if (!this.db) throw new Error('Database not initialized')\n return new Promise((resolve, reject) => {\n const transaction = this.db!.transaction(this.storeName, 'readonly')\n const store = transaction.objectStore(this.storeName)\n const request = store.get(id)\n request.onerror = () => reject(request.error)\n request.onsuccess = () => resolve(request.result || null)\n })\n }\n\n public async isFolderExists(id: string): Promise {\n try {\n const storedHandle = await this.getHandleById(id)\n if (!storedHandle) return false\n\n // Try to access the directory contents to verify it exists\n try {\n // Try to read at least one entry to confirm the directory is accessible\n const iterator = (storedHandle.handle as any).values()\n await iterator.next()\n\n // If we can get any entry (even if the directory is empty), the directory exists\n // In case of empty directory, done will be true but the folder still exists\n return true\n } catch (error) {\n console.warn(`Directory for handle ${id} appears to be inaccessible:`, error)\n return false\n }\n } catch (error) {\n console.error(`Error checking if folder exists for handle ${id}:`, error)\n return false\n }\n }\n}\n\nexport async function listFilesAndFolders(directoryHandle: FileSystemDirectoryHandle) {\n try {\n const entries = []\n\n for await (const entry of (directoryHandle as any).values()) {\n const entryData = {\n name: entry.name,\n kind: entry.kind,\n handle: entry\n }\n\n entries.push(entryData)\n }\n\n return entries\n } catch (error) {\n console.error('Error listing files and folders:', error)\n throw error\n }\n}\n","// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.\n// TODO(ry) It'd be better to make Deferred a class that inherits from\n// Promise, rather than an interface. This is possible in ES2016, however\n// typescript produces broken code when targeting ES5 code.\n// See https://github.com/Microsoft/TypeScript/issues/15202\n// At the time of writing, the github issue is closed but the problem remains.\nexport interface Deferred extends Promise {\n resolve: (value?: T | PromiseLike) => void\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n reject: (reason?: any) => void\n}\n\n/** Creates a Promise with the `reject` and `resolve` functions\n * placed as methods on the promise object itself. It allows you to do:\n *\n * const p = deferred();\n * // ...\n * p.resolve(42);\n */\nexport function deferred(): Deferred {\n let methods\n const promise = new Promise((resolve, reject): void => {\n methods = { resolve, reject }\n })\n return Object.assign(promise, methods) as Deferred\n}\n","import { cn } from '@nextui-org/react'\nimport { twMerge } from 'tailwind-merge'\n\nexport function cm(...inputs: (string | undefined)[]) {\n return twMerge(cn(inputs))\n}\n"],"names":["nodes","edges","LocalStorageKey","consoleError","console","message","args","document","e","selectedText","window","trace","campaignLimitSlice","createSlice","initialState","state","incrementUsedTrials","JSON","codeSlice","action","pathParts","path","current","i","folderName","folder","file","fileName","data","flattenTree","checkPath","pathIndex","f","selected","setCode","updatePath","updateWorkspace","errorsSlice","error","appendError","removeError","fileExplorerSlice","setActiveFile","initialNodes","initialEdges","flowSlice","setNodes","setEdges","localStorageMiddleware","reducerKey","store","next","ret","stateToBeStored","key","localStorage","loadStateFromLocalStorage","storedState","initialConversationUUID","pathname","URL","FileHandleStore","dbName","storeName","Promise","resolve","reject","request","indexedDB","event","db","Error","transaction","newHandle","stored","dirHandle","existingId","id","Math","storedHandle","iterator","deferred","methods","Object","cm","inputs","twMerge","cn"],"mappings":"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"}