fix(deep-links): standardize DID parameter name and add route mapping docs

- Change DID schema parameter from 'id' to 'did' for consistency
- Add documentation for deep link route mapping functionality
This commit is contained in:
Matthew Raymer
2025-04-22 06:57:14 +00:00
parent ff605b3676
commit e4bf646e64
2 changed files with 36 additions and 22 deletions

View File

@@ -94,7 +94,7 @@ export const deepLinkSchemas = {
contacts: z.string(), // JSON string of contacts array
}),
did: z.object({
id: z.string(),
did: z.string(),
}),
};