W-19307418 Implement agent parameters handling #60
+5,021
−1,777
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-document
component, along with CI/CD improvements.✨ Features Added
🎯 PII Detection & Display
_computeAgentPrivacy
method 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-runner
command not found errorsnpx wtr
instead of deprecatedweb-test-runner
web-test-runner.config.mjs
Updated Scripts:
📝 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