@eudiplo/sdk-core 1.14.0-main.fd4c0a7 → 1.14.0-main.ff77fcf

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -82,6 +82,158 @@ await waitForCompletion();
82
82
  | `verifyAndWait(options)` | One-liner: create request + wait for result |
83
83
  | `issueAndWait(options)` | One-liner: create offer + wait for result |
84
84
 
85
+ ### Digital Credentials API (Browser Native)
86
+
87
+ The SDK includes utilities for the [Digital Credentials API](https://wicg.github.io/digital-credentials/), enabling browser-native credential presentation without QR codes.
88
+
89
+ ```typescript
90
+ import { isDcApiAvailable, verifyWithDcApi } from '@eudiplo/sdk-core';
91
+
92
+ // Check if browser supports DC API
93
+ if (isDcApiAvailable()) {
94
+ const result = await verifyWithDcApi({
95
+ baseUrl: 'https://eudiplo.example.com',
96
+ clientId: 'my-demo',
97
+ clientSecret: 'secret',
98
+ configId: 'age-over-18',
99
+ });
100
+
101
+ console.log('Verified!', result.session.credentials);
102
+ } else {
103
+ // Fall back to QR code flow
104
+ const session = await verifyAndWait({...});
105
+ }
106
+ ```
107
+
108
+ #### DC API Functions
109
+
110
+ | Function | Description |
111
+ | ---------------------- | --------------------------------------------------- |
112
+ | `isDcApiAvailable()` | Check if browser supports Digital Credentials API |
113
+ | `verifyWithDcApi()` | Complete verification flow using browser-native API |
114
+ | `createDcApiRequest()` | Create a `DigitalCredentialRequestOptions` object |
115
+
116
+ #### Lower-level DC API Usage
117
+
118
+ ```typescript
119
+ import { createDcApiRequest, EudiploClient } from '@eudiplo/sdk-core';
120
+
121
+ const client = new EudiploClient({...});
122
+
123
+ // Create presentation request
124
+ const { uri, sessionId } = await client.createPresentationRequest({
125
+ configId: 'age-over-18',
126
+ responseType: 'dc-api',
127
+ });
128
+
129
+ // Create the browser request object
130
+ const request = createDcApiRequest(uri);
131
+
132
+ // Call the browser API directly
133
+ const credential = await navigator.credentials.get(request);
134
+
135
+ // Submit the response and get verified session
136
+ const session = await client.submitDcApiResponse(sessionId, credential);
137
+ ```
138
+
139
+ #### Secure Server/Client Deployment (Recommended for Production)
140
+
141
+ When deploying to production, you should **never expose your client credentials to the browser**. The SDK provides helper functions to split the DC API flow between your server (where credentials are safe) and the browser (where the DC API runs).
142
+
143
+ **Server-side Functions:**
144
+
145
+ | Function | Description |
146
+ | -------------------------------- | ------------------------------------------------------ |
147
+ | `createDcApiRequestForBrowser()` | Create request on server, return safe data for browser |
148
+ | `submitDcApiWalletResponse()` | Submit wallet response to EUDIPLO from server |
149
+
150
+ **Browser-side Functions:**
151
+
152
+ | Function | Description |
153
+ | ------------- | ------------------------------------------------------ |
154
+ | `callDcApi()` | Call the native DC API with a request from your server |
155
+
156
+ ##### Example: Express.js Backend + Browser Frontend
157
+
158
+ **Server (Express.js / Next.js API route):**
159
+
160
+ ```typescript
161
+ import {
162
+ createDcApiRequestForBrowser,
163
+ submitDcApiWalletResponse,
164
+ } from '@eudiplo/sdk-core';
165
+
166
+ // POST /api/start-verification
167
+ app.post('/api/start-verification', async (req, res) => {
168
+ const requestData = await createDcApiRequestForBrowser({
169
+ baseUrl: process.env.EUDIPLO_URL,
170
+ clientId: process.env.EUDIPLO_CLIENT_ID, // ✅ Safe on server
171
+ clientSecret: process.env.EUDIPLO_SECRET, // ✅ Safe on server
172
+ configId: 'age-over-18',
173
+ });
174
+
175
+ // Only safe data is sent to browser (no secrets)
176
+ res.json(requestData);
177
+ });
178
+
179
+ // POST /api/complete-verification
180
+ app.post('/api/complete-verification', async (req, res) => {
181
+ const { responseUri, walletResponse } = req.body;
182
+
183
+ const result = await submitDcApiWalletResponse({
184
+ responseUri,
185
+ walletResponse,
186
+ sendResponse: true, // Get verified claims back
187
+ });
188
+
189
+ // result.credentials contains the verified data
190
+ res.json(result);
191
+ });
192
+ ```
193
+
194
+ **Browser (React / vanilla JS):**
195
+
196
+ ```typescript
197
+ import { callDcApi, isDcApiAvailable } from '@eudiplo/sdk-core';
198
+
199
+ async function verifyAge() {
200
+ // 1. Get the request from your server (credentials stay on server)
201
+ const requestData = await fetch('/api/start-verification', {
202
+ method: 'POST',
203
+ }).then((r) => r.json());
204
+
205
+ // 2. Check DC API support and call it locally
206
+ if (!isDcApiAvailable()) {
207
+ throw new Error('Digital Credentials API not supported');
208
+ }
209
+
210
+ const walletResponse = await callDcApi(requestData.requestObject);
211
+
212
+ // 3. Send the wallet response back to your server for verification
213
+ const result = await fetch('/api/complete-verification', {
214
+ method: 'POST',
215
+ headers: { 'Content-Type': 'application/json' },
216
+ body: JSON.stringify({
217
+ responseUri: requestData.responseUri,
218
+ walletResponse,
219
+ }),
220
+ }).then((r) => r.json());
221
+
222
+ console.log('Verified!', result.credentials);
223
+ return result;
224
+ }
225
+ ```
226
+
227
+ **What stays where:**
228
+
229
+ | Data | Location | Safe to expose? |
230
+ | ------------------------------ | ---------------- | ------------------- |
231
+ | `clientId` / `clientSecret` | Server only | ❌ Never expose |
232
+ | `requestObject` (signed JWT) | Server → Browser | ✅ Yes |
233
+ | `responseUri` | Server → Browser | ✅ Yes |
234
+ | Wallet response (encrypted VP) | Browser → Server | ✅ Yes |
235
+ | Verified credentials | Server only | Depends on use case |
236
+
85
237
  ### Class-based API (More Control)
86
238
 
87
239
  ```typescript
@@ -175,6 +327,43 @@ const session = await client.waitForSession(sessionId, {
175
327
  });
176
328
  ```
177
329
 
330
+ ### `subscribeToSession(sessionId, options)`
331
+
332
+ Subscribe to real-time session status updates via Server-Sent Events (SSE).
333
+ This is more efficient than polling and provides instant updates.
334
+
335
+ ```typescript
336
+ const subscription = await client.subscribeToSession(sessionId, {
337
+ onStatusChange: (event) => {
338
+ console.log(`Status: ${event.status}`);
339
+ if (['completed', 'expired', 'failed'].includes(event.status)) {
340
+ subscription.close();
341
+ }
342
+ },
343
+ onError: (error) => console.error('SSE error:', error),
344
+ onOpen: () => console.log('Connected'),
345
+ });
346
+
347
+ // Later, to close the connection:
348
+ subscription.close();
349
+ ```
350
+
351
+ ### `waitForSessionWithSse(sessionId, options)`
352
+
353
+ Wait for session completion using SSE instead of polling. Returns a Promise
354
+ that resolves when the session completes.
355
+
356
+ ```typescript
357
+ try {
358
+ const finalStatus = await client.waitForSessionWithSse(sessionId, {
359
+ onStatusChange: (event) => console.log('Status:', event.status),
360
+ });
361
+ console.log('Session completed:', finalStatus);
362
+ } catch (error) {
363
+ console.error('Session failed:', error);
364
+ }
365
+ ```
366
+
178
367
  ## Examples
179
368
 
180
369
  ### Age Verification in a Web Shop
@@ -0,0 +1,5 @@
1
+ import { b as Config, C as Client } from '../../types.gen-D8LjzWc0.mjs';
2
+
3
+ declare const createClient: (config?: Config) => Client;
4
+
5
+ export { createClient };
@@ -0,0 +1,5 @@
1
+ import { b as Config, C as Client } from '../../types.gen-D8LjzWc0.js';
2
+
3
+ declare const createClient: (config?: Config) => Client;
4
+
5
+ export { createClient };