W-19307418 Implement agent parameters handling #60
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🔒 Add PII Detection and Display Support to API Body Document Component
📋 Overview
This PR adds Personally Identifiable Information (PII) detection and visual indication capabilities to the
api-body-documentcomponent, along with CI/CD improvements.✨ Features Added
🎯 PII Detection & Display
_computeAgentPrivacymethod from AmfHelperMixin🔧 Technical Implementation
New Properties Added:
New Methods:
_computePiiFromSchema(schema)- Computes PII status from schema_computeAgentPrivacyBySchema(schema)- Processes AMF privacy datasetPiiStatus(isPii, agentParams)- Manual PII status override_toggleAgent()- Toggle agent parameters section_getAgentTemplate()- Renders agent parameters UIIntegration with AmfHelperMixin:
Uses the existing
_computeAgentPrivacy(node)method from AmfHelperMixin to extract privacy annotations from AMF models.🛠️ CI/CD Improvements
Fixed GitHub Actions Issues:
web-test-runnercommand not found errorsnpx wtrinstead of deprecatedweb-test-runnerweb-test-runner.config.mjsUpdated Scripts:
{ "start": "npx wds --app-index demo/index.html --node-resolve --open --watch --root-dir .", "test": "npx wtr --coverage --playwright --browsers chromium firefox webkit", "test:watch": "npx wtr --watch --playwright --browsers chromium" }📝 Summary of Files Changed:
src/ApiBodyDocumentElement.js- Main component logic and PII detectionsrc/Styles.js- PII indicator stylingpackage.json- Fixed test scripts.github/workflows/deployment.yml- CI/CD improvements