-
Notifications
You must be signed in to change notification settings - Fork 48
[2201.12.x] Index the Alfresco module for connector search #887
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
[2201.12.x] Index the Alfresco module for connector search #887
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates and reindexes connector configurations with changes spanning version bumps, icon URL updates, and label/module renaming. Key changes include:
- Updating the medcom JSON types to version 1.0.1 with corresponding icon URL modifications.
- Adding new entries in health and regex configurations and updating several function connector definitions.
- Renaming and reordering connectors across default, database, and log configuration files, plus the addition of a new Alfresco connector.
Reviewed Changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/types/medcom.json | Updated medcom type version (1.0.0 -> 1.0.1) and icon URLs across multiple entries. |
| flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/types/health.json | Added new health configuration items for ccda modules. |
| flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/functions/regex.json | Introduced new ETL functions and updated the regex function configurations. |
| flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/functions/log.json | Changed edifact module references from mDGRECA/mSANCRT to mIFTMIN/mTANSTA. |
| flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/functions/json_to_xml.json | Updated icon and version numbers for the json-to-xml conversion function. |
| flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/connectors/default.json | Renamed and reordered connectors (e.g., HTTP → UDP, Websocket → FTP, etc.) with updated module and version details. |
| flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/connectors/database.json | Reconfigured database connectors by swapping labels and updating module mappings, including changes for Snowflake and Pinecone connectors. |
| flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/connectors/alfresco.json | Added a new Alfresco connector configuration for indexing purposes. |
Comments suppressed due to low confidence (7)
flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/types/health.json:38
- New health connector configuration items have been added; consider adding corresponding tests to verify their behavior and integration.
"items": [
flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/functions/regex.json:269
- New regex ETL functions have been introduced; please add tests to validate these functionalities to ensure reliable operation.
{
flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/connectors/default.json:179
- The connector for Pinecone is now labeled 'Vector' and uses the 'pinecone.vector' module; verify that this aligns with the current API semantics and documentation.
"label": "Vector",
flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/connectors/default.json:200
- The connector labeled 'Index' now utilizes the 'pinecone.index' module; ensure that this reordering is consistent with the intended design and that related documentation is updated.
"label": "Index",
flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/connectors/default.json:22
- The connector label and details in this section have been changed from 'HTTP' to 'UDP'; please confirm that these updates accurately reflect the intended functionality and that all dependent configurations are updated accordingly.
"label": "UDP",
flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/functions/log.json:237
- The edifact module has been renamed from 'mDGRECA' to 'mIFTMIN'; please verify that this change is properly reflected throughout related configurations and documentation.
"module": "edifact.d03a.logistics.mIFTMIN",
flow-model-generator/modules/flow-model-generator-ls-extension/src/test/resources/search/config/connectors/database.json:128
- The Snowflake connector's object definition was altered from 'AdvancedClient' to 'Client'; ensure that any API usages and integrations referencing this connector are updated accordingly.
"object": "Client",
Purpose
$title
Fixes wso2/product-ballerina-integrator#472