-
Notifications
You must be signed in to change notification settings - Fork 173
feat: support phone templates #1224
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- src/context/defaults.ts: add phoneTemplatesDefaults function to strip read-only fields - src/context/directory/handlers/index.ts: import phoneTemplates handler - src/context/yaml/handlers/index.ts: import phoneTemplates handler - src/tools/auth0/handlers/index.ts: import phoneTemplates handler - src/tools/constants.ts: add PHONE_TEMPLATES_DIRECTORY constant - src/types.ts: add PhoneTemplate type and update Assets type - src/context/directory/handlers/phoneTemplates.ts: implement phoneTemplatesHandler for directory context - src/context/yaml/handlers/phoneTemplates.ts: implement phoneTemplatesHandler for YAML context - src/tools/auth0/handlers/phoneTemplates.ts: implement PhoneTemplatesHandler class for managing phone templates - .gitignore: ignore .github/agents directory
- docs/resource-specific-documentation.md: Added documentation for phone templates. - examples/yaml/tenant.yaml: Included phone templates configuration example. - src/context/directory/handlers/phoneTemplates.ts: Updated to return null for missing templates. - src/context/yaml/handlers/phoneTemplates.ts: Updated to return null for missing templates. - test/context/yaml/context.test.js: Added tests for phone templates processing. - test/utils.js: Mocked phone templates management functions. - examples/directory/phone-templates/otp_enroll.json: Created OTP enrollment template. - examples/directory/phone-templates/otp_verify.json: Created OTP verification template. - test/context/directory/phoneTemplates.test.ts: Added tests for directory context phone templates. - test/context/yaml/phoneTemplates.test.ts: Added tests for YAML context phone templates. - test/tools/auth0/handlers/phoneTemplates.test.ts: Added tests for phone templates handler.
- src/context/directory/handlers/phoneTemplates.ts: remove comment on read-only fields - test/context/directory/phoneTemplates.test.ts: update verification and enrollment code texts to use keyword markers - test/context/yaml/phoneTemplates.test.ts: update verification and enrollment code texts to use keyword markers - test/tools/auth0/handlers/phoneTemplates.test.ts: update verification and enrollment code texts to use keyword markers
palashgdev
reviewed
Dec 9, 2025
palashgdev
requested changes
Dec 9, 2025
palashgdev
approved these changes
Dec 9, 2025
Contributor
|
@kushalshit27 There are some small type fixes only, other than this it looks fine to me |
Co-authored-by: Palash Gupta <[email protected]>
Co-authored-by: Palash Gupta <[email protected]>
2 tasks
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
🔧 Changes
examples/.Examples
YAML format
JSON format
{ "type": "otp_verify", "disabled": false, "content": { "from": "+12341234567", "body": { "text": "Your verification code is {{ code }}", "voice": "Your verification code is {{ code }}" } } }📚 References
🔬 Testing
TODO📝 Checklist