From 0eacb0babaf1d0aca9771662bcba6aef3f795eaa Mon Sep 17 00:00:00 2001 From: Pawel Zelawski Date: Thu, 10 Apr 2025 16:11:37 +0200 Subject: docs: update terminology in documentation - Update documentation to use "Digi-ID" instead of "DigiID" in user-facing text - Maintain internal code using 'DigiID' for consistency with original implementation The changes improve documentation clarity while maintaining full functionality. --- examples/generate-uri.ts | 7 +++++++ examples/verify-callback.ts | 12 ++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 examples/verify-callback.ts (limited to 'examples') diff --git a/examples/generate-uri.ts b/examples/generate-uri.ts index 9aee864..fbf4bb1 100644 --- a/examples/generate-uri.ts +++ b/examples/generate-uri.ts @@ -1,5 +1,12 @@ // examples/generate-uri.ts +/** + * Example: Generating a Digi-ID URI + * + * This example demonstrates how to generate a Digi-ID URI that can be displayed as a QR code + * for users to scan with their Digi-ID compatible wallet. + */ + // Import directly from src for running locally before publishing // In a real project, you'd import from 'digiid-ts' after installing // Revert extension, ts-node should handle this when configured diff --git a/examples/verify-callback.ts b/examples/verify-callback.ts new file mode 100644 index 0000000..a1df685 --- /dev/null +++ b/examples/verify-callback.ts @@ -0,0 +1,12 @@ +/** + * Example: Verifying a Digi-ID Callback + * + * This example demonstrates how to verify a callback from a Digi-ID compatible wallet. + * The callback contains a signature that needs to be verified against the original challenge. + */ + +// Import directly from src for running locally before publishing +// In a real project, you'd import from 'digiid-ts' after installing +import { verifyDigiIDCallback, DigiIDError } from '../src/index'; + +// ... existing code ... \ No newline at end of file -- cgit v1.2.3