-
Notifications
You must be signed in to change notification settings - Fork 44
feat(openapi): add dynamic mask schema #3792
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
base: main
Are you sure you want to change the base?
Conversation
|
| Command | Status | Duration | Result |
|---|---|---|---|
nx affected --target=test --collectCoverage --c... |
❌ Failed | 9m 58s | View ↗ |
nx run-many --target=test-e2e |
✅ Succeeded | 2m 8s | View ↗ |
nx run-many --tui=false --target=build --projec... |
✅ Succeeded | 1s | View ↗ |
nx affected --target=lint --configuration ci |
✅ Succeeded | 16m 9s | View ↗ |
nx run-many --target=build,build-swagger |
✅ Succeeded | 15m 45s | View ↗ |
nx run ama-sdk-schematics:build-swagger |
✅ Succeeded | 2m 55s | View ↗ |
nx run-many --target=documentation |
✅ Succeeded | 1m 35s | View ↗ |
nx affected --target=package-github-action |
✅ Succeeded | 2m 3s | View ↗ |
☁️ Nx Cloud last updated this comment at 2026-01-07 06:17:35 UTC
Codecov Report✅ All modified and coverable lines are covered by tests. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
298e0e8 to
829c097
Compare
3d9c8da to
7ceac7c
Compare
packages/@ama-openapi/core/src/schema/mask/generate-mask-from-model.mts
Outdated
Show resolved
Hide resolved
7ceac7c to
36e8608
Compare
| ``` | ||
|
|
||
| > [!NOTE] | ||
| > The repository generated by the [Ama Openapi initializer](https://www.npmjs.com/package/@ama-openapi/create) prepare the project to automatically regenerate the schema on each NPM install. |
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.
| > The repository generated by the [Ama Openapi initializer](https://www.npmjs.com/package/@ama-openapi/create) prepare the project to automatically regenerate the schema on each NPM install. | |
| > The repository generated by the [Ama OpenAPI initializer](https://www.npmjs.com/package/@ama-openapi/create) prepares the project to automatically regenerate the schema on each NPM install. |
packages/@ama-openapi/cli/README.md
Outdated
|
|
||
| | Option | Alias | Description | Default value | | ||
| | --- | --- | --- | --- | | ||
| | `--output` | `-o` | Output directory where generating the schemas | `'./schemas'` | |
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.
| | `--output` | `-o` | Output directory where generating the schemas | `'./schemas'` | | |
| | `--output` | `-o` | Output directory where to generate the schemas | `'./schemas'` | |
packages/@ama-openapi/cli/README.md
Outdated
| | Option | Alias | Description | Default value | | ||
| | --- | --- | --- | --- | | ||
| | `--output` | `-o` | Output directory where generating the schemas | `'./schemas'` | | ||
| | `--keywords` | `-k` | List of the keywords to be listed in the artifact to considered in the schema generation | `['openapi']` | |
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.
| | `--keywords` | `-k` | List of the keywords to be listed in the artifact to considered in the schema generation | `['openapi']` | | |
| | `--keywords` | `-k` | List of the keywords to include in the artifact to be considered in the schema generation | `['openapi']` | |
36e8608 to
bc335bc
Compare
bc335bc to
411e28b
Compare

Proposed change
feat(openapi): add dynamic mask schema to help the writing of Mask
Related issues