@learncard/types 5.5.0 → 5.5.2

Sign up to get free protection for your applications and to get access to all the features.
package/dist/lcn.d.ts CHANGED
@@ -2,26 +2,38 @@ import { z } from 'zod';
2
2
  export declare const LCNProfileValidator: z.ZodObject<{
3
3
  profileId: z.ZodString;
4
4
  displayName: z.ZodDefault<z.ZodString>;
5
+ shortBio: z.ZodDefault<z.ZodString>;
5
6
  bio: z.ZodDefault<z.ZodString>;
6
7
  did: z.ZodString;
7
8
  email: z.ZodOptional<z.ZodString>;
8
9
  image: z.ZodOptional<z.ZodString>;
10
+ heroImage: z.ZodOptional<z.ZodString>;
11
+ websiteLink: z.ZodOptional<z.ZodString>;
9
12
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
13
+ type: z.ZodOptional<z.ZodString>;
10
14
  notificationsWebhook: z.ZodOptional<z.ZodString>;
11
15
  }, "strip", z.ZodTypeAny, {
16
+ type?: string | undefined;
12
17
  image?: string | undefined;
13
18
  email?: string | undefined;
19
+ heroImage?: string | undefined;
20
+ websiteLink?: string | undefined;
14
21
  isServiceProfile?: boolean | undefined;
15
22
  notificationsWebhook?: string | undefined;
16
23
  profileId: string;
17
24
  displayName: string;
25
+ shortBio: string;
18
26
  bio: string;
19
27
  did: string;
20
28
  }, {
29
+ type?: string | undefined;
21
30
  image?: string | undefined;
22
31
  email?: string | undefined;
23
32
  displayName?: string | undefined;
33
+ shortBio?: string | undefined;
24
34
  bio?: string | undefined;
35
+ heroImage?: string | undefined;
36
+ websiteLink?: string | undefined;
25
37
  isServiceProfile?: boolean | undefined;
26
38
  notificationsWebhook?: string | undefined;
27
39
  profileId: string;
@@ -35,26 +47,38 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
35
47
  records: z.ZodArray<z.ZodObject<{
36
48
  profileId: z.ZodString;
37
49
  displayName: z.ZodDefault<z.ZodString>;
50
+ shortBio: z.ZodDefault<z.ZodString>;
38
51
  bio: z.ZodDefault<z.ZodString>;
39
52
  did: z.ZodString;
40
53
  email: z.ZodOptional<z.ZodString>;
41
54
  image: z.ZodOptional<z.ZodString>;
55
+ heroImage: z.ZodOptional<z.ZodString>;
56
+ websiteLink: z.ZodOptional<z.ZodString>;
42
57
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
58
+ type: z.ZodOptional<z.ZodString>;
43
59
  notificationsWebhook: z.ZodOptional<z.ZodString>;
44
60
  }, "strip", z.ZodTypeAny, {
61
+ type?: string | undefined;
45
62
  image?: string | undefined;
46
63
  email?: string | undefined;
64
+ heroImage?: string | undefined;
65
+ websiteLink?: string | undefined;
47
66
  isServiceProfile?: boolean | undefined;
48
67
  notificationsWebhook?: string | undefined;
49
68
  profileId: string;
50
69
  displayName: string;
70
+ shortBio: string;
51
71
  bio: string;
52
72
  did: string;
53
73
  }, {
74
+ type?: string | undefined;
54
75
  image?: string | undefined;
55
76
  email?: string | undefined;
56
77
  displayName?: string | undefined;
78
+ shortBio?: string | undefined;
57
79
  bio?: string | undefined;
80
+ heroImage?: string | undefined;
81
+ websiteLink?: string | undefined;
58
82
  isServiceProfile?: boolean | undefined;
59
83
  notificationsWebhook?: string | undefined;
60
84
  profileId: string;
@@ -64,12 +88,16 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
64
88
  cursor?: string | undefined;
65
89
  hasMore: boolean;
66
90
  records: {
91
+ type?: string | undefined;
67
92
  image?: string | undefined;
68
93
  email?: string | undefined;
94
+ heroImage?: string | undefined;
95
+ websiteLink?: string | undefined;
69
96
  isServiceProfile?: boolean | undefined;
70
97
  notificationsWebhook?: string | undefined;
71
98
  profileId: string;
72
99
  displayName: string;
100
+ shortBio: string;
73
101
  bio: string;
74
102
  did: string;
75
103
  }[];
@@ -77,10 +105,14 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
77
105
  cursor?: string | undefined;
78
106
  hasMore: boolean;
79
107
  records: {
108
+ type?: string | undefined;
80
109
  image?: string | undefined;
81
110
  email?: string | undefined;
82
111
  displayName?: string | undefined;
112
+ shortBio?: string | undefined;
83
113
  bio?: string | undefined;
114
+ heroImage?: string | undefined;
115
+ websiteLink?: string | undefined;
84
116
  isServiceProfile?: boolean | undefined;
85
117
  notificationsWebhook?: string | undefined;
86
118
  profileId: string;
@@ -135,30 +167,92 @@ export declare const BoostValidator: z.ZodObject<{
135
167
  uri: string;
136
168
  }>;
137
169
  export type Boost = z.infer<typeof BoostValidator>;
170
+ export declare const PaginatedBoostsValidator: z.ZodObject<z.extendShape<{
171
+ cursor: z.ZodOptional<z.ZodString>;
172
+ hasMore: z.ZodBoolean;
173
+ }, {
174
+ records: z.ZodArray<z.ZodObject<{
175
+ uri: z.ZodString;
176
+ name: z.ZodOptional<z.ZodString>;
177
+ type: z.ZodOptional<z.ZodString>;
178
+ category: z.ZodOptional<z.ZodString>;
179
+ status: z.ZodOptional<z.ZodEnum<["DRAFT", "LIVE"]>>;
180
+ autoConnectRecipients: z.ZodOptional<z.ZodBoolean>;
181
+ }, "strip", z.ZodTypeAny, {
182
+ type?: string | undefined;
183
+ status?: "DRAFT" | "LIVE" | undefined;
184
+ name?: string | undefined;
185
+ category?: string | undefined;
186
+ autoConnectRecipients?: boolean | undefined;
187
+ uri: string;
188
+ }, {
189
+ type?: string | undefined;
190
+ status?: "DRAFT" | "LIVE" | undefined;
191
+ name?: string | undefined;
192
+ category?: string | undefined;
193
+ autoConnectRecipients?: boolean | undefined;
194
+ uri: string;
195
+ }>, "many">;
196
+ }>, "strip", z.ZodTypeAny, {
197
+ cursor?: string | undefined;
198
+ hasMore: boolean;
199
+ records: {
200
+ type?: string | undefined;
201
+ status?: "DRAFT" | "LIVE" | undefined;
202
+ name?: string | undefined;
203
+ category?: string | undefined;
204
+ autoConnectRecipients?: boolean | undefined;
205
+ uri: string;
206
+ }[];
207
+ }, {
208
+ cursor?: string | undefined;
209
+ hasMore: boolean;
210
+ records: {
211
+ type?: string | undefined;
212
+ status?: "DRAFT" | "LIVE" | undefined;
213
+ name?: string | undefined;
214
+ category?: string | undefined;
215
+ autoConnectRecipients?: boolean | undefined;
216
+ uri: string;
217
+ }[];
218
+ }>;
219
+ export type PaginatedBoostsType = z.infer<typeof PaginatedBoostsValidator>;
138
220
  export declare const BoostRecipientValidator: z.ZodObject<{
139
221
  to: z.ZodObject<{
140
222
  profileId: z.ZodString;
141
223
  displayName: z.ZodDefault<z.ZodString>;
224
+ shortBio: z.ZodDefault<z.ZodString>;
142
225
  bio: z.ZodDefault<z.ZodString>;
143
226
  did: z.ZodString;
144
227
  email: z.ZodOptional<z.ZodString>;
145
228
  image: z.ZodOptional<z.ZodString>;
229
+ heroImage: z.ZodOptional<z.ZodString>;
230
+ websiteLink: z.ZodOptional<z.ZodString>;
146
231
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
232
+ type: z.ZodOptional<z.ZodString>;
147
233
  notificationsWebhook: z.ZodOptional<z.ZodString>;
148
234
  }, "strip", z.ZodTypeAny, {
235
+ type?: string | undefined;
149
236
  image?: string | undefined;
150
237
  email?: string | undefined;
238
+ heroImage?: string | undefined;
239
+ websiteLink?: string | undefined;
151
240
  isServiceProfile?: boolean | undefined;
152
241
  notificationsWebhook?: string | undefined;
153
242
  profileId: string;
154
243
  displayName: string;
244
+ shortBio: string;
155
245
  bio: string;
156
246
  did: string;
157
247
  }, {
248
+ type?: string | undefined;
158
249
  image?: string | undefined;
159
250
  email?: string | undefined;
160
251
  displayName?: string | undefined;
252
+ shortBio?: string | undefined;
161
253
  bio?: string | undefined;
254
+ heroImage?: string | undefined;
255
+ websiteLink?: string | undefined;
162
256
  isServiceProfile?: boolean | undefined;
163
257
  notificationsWebhook?: string | undefined;
164
258
  profileId: string;
@@ -169,12 +263,16 @@ export declare const BoostRecipientValidator: z.ZodObject<{
169
263
  }, "strip", z.ZodTypeAny, {
170
264
  received?: string | undefined;
171
265
  to: {
266
+ type?: string | undefined;
172
267
  image?: string | undefined;
173
268
  email?: string | undefined;
269
+ heroImage?: string | undefined;
270
+ websiteLink?: string | undefined;
174
271
  isServiceProfile?: boolean | undefined;
175
272
  notificationsWebhook?: string | undefined;
176
273
  profileId: string;
177
274
  displayName: string;
275
+ shortBio: string;
178
276
  bio: string;
179
277
  did: string;
180
278
  };
@@ -182,10 +280,14 @@ export declare const BoostRecipientValidator: z.ZodObject<{
182
280
  }, {
183
281
  received?: string | undefined;
184
282
  to: {
283
+ type?: string | undefined;
185
284
  image?: string | undefined;
186
285
  email?: string | undefined;
187
286
  displayName?: string | undefined;
287
+ shortBio?: string | undefined;
188
288
  bio?: string | undefined;
289
+ heroImage?: string | undefined;
290
+ websiteLink?: string | undefined;
189
291
  isServiceProfile?: boolean | undefined;
190
292
  notificationsWebhook?: string | undefined;
191
293
  profileId: string;
@@ -194,258 +296,197 @@ export declare const BoostRecipientValidator: z.ZodObject<{
194
296
  from: string;
195
297
  }>;
196
298
  export type BoostRecipientInfo = z.infer<typeof BoostRecipientValidator>;
197
- export declare const LCNNotificationTypeEnumValidator: z.ZodEnum<["CONNECTION_REQUEST", "CONNECTION_ACCEPTED", "CREDENTIAL_RECEIVED", "CREDENTIAL_ACCEPTED", "BOOST_RECEIVED", "BOOST_ACCEPTED", "PRESENTATION_REQUEST", "PRESENTATION_RECEIVED"]>;
198
- export type LCNNotificationTypeEnum = z.infer<typeof LCNNotificationTypeEnumValidator>;
199
- export declare const LCNNotificationMessageValidator: z.ZodObject<{
200
- title: z.ZodOptional<z.ZodString>;
201
- body: z.ZodOptional<z.ZodString>;
299
+ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShape<{
300
+ cursor: z.ZodOptional<z.ZodString>;
301
+ hasMore: z.ZodBoolean;
302
+ }, {
303
+ records: z.ZodArray<z.ZodObject<{
304
+ to: z.ZodObject<{
305
+ profileId: z.ZodString;
306
+ displayName: z.ZodDefault<z.ZodString>;
307
+ shortBio: z.ZodDefault<z.ZodString>;
308
+ bio: z.ZodDefault<z.ZodString>;
309
+ did: z.ZodString;
310
+ email: z.ZodOptional<z.ZodString>;
311
+ image: z.ZodOptional<z.ZodString>;
312
+ heroImage: z.ZodOptional<z.ZodString>;
313
+ websiteLink: z.ZodOptional<z.ZodString>;
314
+ isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
315
+ type: z.ZodOptional<z.ZodString>;
316
+ notificationsWebhook: z.ZodOptional<z.ZodString>;
317
+ }, "strip", z.ZodTypeAny, {
318
+ type?: string | undefined;
319
+ image?: string | undefined;
320
+ email?: string | undefined;
321
+ heroImage?: string | undefined;
322
+ websiteLink?: string | undefined;
323
+ isServiceProfile?: boolean | undefined;
324
+ notificationsWebhook?: string | undefined;
325
+ profileId: string;
326
+ displayName: string;
327
+ shortBio: string;
328
+ bio: string;
329
+ did: string;
330
+ }, {
331
+ type?: string | undefined;
332
+ image?: string | undefined;
333
+ email?: string | undefined;
334
+ displayName?: string | undefined;
335
+ shortBio?: string | undefined;
336
+ bio?: string | undefined;
337
+ heroImage?: string | undefined;
338
+ websiteLink?: string | undefined;
339
+ isServiceProfile?: boolean | undefined;
340
+ notificationsWebhook?: string | undefined;
341
+ profileId: string;
342
+ did: string;
343
+ }>;
344
+ from: z.ZodString;
345
+ received: z.ZodOptional<z.ZodString>;
346
+ }, "strip", z.ZodTypeAny, {
347
+ received?: string | undefined;
348
+ to: {
349
+ type?: string | undefined;
350
+ image?: string | undefined;
351
+ email?: string | undefined;
352
+ heroImage?: string | undefined;
353
+ websiteLink?: string | undefined;
354
+ isServiceProfile?: boolean | undefined;
355
+ notificationsWebhook?: string | undefined;
356
+ profileId: string;
357
+ displayName: string;
358
+ shortBio: string;
359
+ bio: string;
360
+ did: string;
361
+ };
362
+ from: string;
363
+ }, {
364
+ received?: string | undefined;
365
+ to: {
366
+ type?: string | undefined;
367
+ image?: string | undefined;
368
+ email?: string | undefined;
369
+ displayName?: string | undefined;
370
+ shortBio?: string | undefined;
371
+ bio?: string | undefined;
372
+ heroImage?: string | undefined;
373
+ websiteLink?: string | undefined;
374
+ isServiceProfile?: boolean | undefined;
375
+ notificationsWebhook?: string | undefined;
376
+ profileId: string;
377
+ did: string;
378
+ };
379
+ from: string;
380
+ }>, "many">;
381
+ }>, "strip", z.ZodTypeAny, {
382
+ cursor?: string | undefined;
383
+ hasMore: boolean;
384
+ records: {
385
+ received?: string | undefined;
386
+ to: {
387
+ type?: string | undefined;
388
+ image?: string | undefined;
389
+ email?: string | undefined;
390
+ heroImage?: string | undefined;
391
+ websiteLink?: string | undefined;
392
+ isServiceProfile?: boolean | undefined;
393
+ notificationsWebhook?: string | undefined;
394
+ profileId: string;
395
+ displayName: string;
396
+ shortBio: string;
397
+ bio: string;
398
+ did: string;
399
+ };
400
+ from: string;
401
+ }[];
402
+ }, {
403
+ cursor?: string | undefined;
404
+ hasMore: boolean;
405
+ records: {
406
+ received?: string | undefined;
407
+ to: {
408
+ type?: string | undefined;
409
+ image?: string | undefined;
410
+ email?: string | undefined;
411
+ displayName?: string | undefined;
412
+ shortBio?: string | undefined;
413
+ bio?: string | undefined;
414
+ heroImage?: string | undefined;
415
+ websiteLink?: string | undefined;
416
+ isServiceProfile?: boolean | undefined;
417
+ notificationsWebhook?: string | undefined;
418
+ profileId: string;
419
+ did: string;
420
+ };
421
+ from: string;
422
+ }[];
423
+ }>;
424
+ export type PaginatedBoostRecipientsType = z.infer<typeof PaginatedBoostRecipientsValidator>;
425
+ export declare const LCNBoostClaimLinkSigningAuthorityValidator: z.ZodObject<{
426
+ endpoint: z.ZodString;
427
+ name: z.ZodString;
428
+ did: z.ZodOptional<z.ZodString>;
202
429
  }, "strip", z.ZodTypeAny, {
203
- title?: string | undefined;
204
- body?: string | undefined;
430
+ did?: string | undefined;
431
+ name: string;
432
+ endpoint: string;
205
433
  }, {
206
- title?: string | undefined;
207
- body?: string | undefined;
434
+ did?: string | undefined;
435
+ name: string;
436
+ endpoint: string;
208
437
  }>;
209
- export type LCNNotificationMessage = z.infer<typeof LCNNotificationMessageValidator>;
210
- export declare const LCNNotificationDataValidator: z.ZodObject<{
211
- vcUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
212
- vpUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
438
+ export type LCNBoostClaimLinkSigningAuthorityType = z.infer<typeof LCNBoostClaimLinkSigningAuthorityValidator>;
439
+ export declare const LCNBoostClaimLinkOptionsValidator: z.ZodObject<{
440
+ ttlSeconds: z.ZodOptional<z.ZodNumber>;
441
+ totalUses: z.ZodOptional<z.ZodNumber>;
213
442
  }, "strip", z.ZodTypeAny, {
214
- vcUris?: string[] | undefined;
215
- vpUris?: string[] | undefined;
443
+ ttlSeconds?: number | undefined;
444
+ totalUses?: number | undefined;
216
445
  }, {
217
- vcUris?: string[] | undefined;
218
- vpUris?: string[] | undefined;
446
+ ttlSeconds?: number | undefined;
447
+ totalUses?: number | undefined;
219
448
  }>;
220
- export type LCNNotificationData = z.infer<typeof LCNNotificationDataValidator>;
221
- export declare const LCNNotificationValidator: z.ZodObject<{
222
- type: z.ZodEnum<["CONNECTION_REQUEST", "CONNECTION_ACCEPTED", "CREDENTIAL_RECEIVED", "CREDENTIAL_ACCEPTED", "BOOST_RECEIVED", "BOOST_ACCEPTED", "PRESENTATION_REQUEST", "PRESENTATION_RECEIVED"]>;
223
- to: z.ZodIntersection<z.ZodObject<{
224
- profileId: z.ZodOptional<z.ZodString>;
225
- displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
226
- bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
227
- did: z.ZodOptional<z.ZodString>;
228
- email: z.ZodOptional<z.ZodOptional<z.ZodString>>;
229
- image: z.ZodOptional<z.ZodOptional<z.ZodString>>;
230
- isServiceProfile: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodBoolean>>>;
231
- notificationsWebhook: z.ZodOptional<z.ZodOptional<z.ZodString>>;
449
+ export type LCNBoostClaimLinkOptionsType = z.infer<typeof LCNBoostClaimLinkOptionsValidator>;
450
+ export declare const LCNSigningAuthorityValidator: z.ZodObject<{
451
+ endpoint: z.ZodString;
452
+ }, "strip", z.ZodTypeAny, {
453
+ endpoint: string;
454
+ }, {
455
+ endpoint: string;
456
+ }>;
457
+ export type LCNSigningAuthorityType = z.infer<typeof LCNSigningAuthorityValidator>;
458
+ export declare const LCNSigningAuthorityForUserValidator: z.ZodObject<{
459
+ signingAuthority: z.ZodObject<{
460
+ endpoint: z.ZodString;
232
461
  }, "strip", z.ZodTypeAny, {
233
- image?: string | undefined;
234
- email?: string | undefined;
235
- profileId?: string | undefined;
236
- displayName?: string | undefined;
237
- bio?: string | undefined;
238
- did?: string | undefined;
239
- isServiceProfile?: boolean | undefined;
240
- notificationsWebhook?: string | undefined;
462
+ endpoint: string;
241
463
  }, {
242
- image?: string | undefined;
243
- email?: string | undefined;
244
- profileId?: string | undefined;
245
- displayName?: string | undefined;
246
- bio?: string | undefined;
247
- did?: string | undefined;
248
- isServiceProfile?: boolean | undefined;
249
- notificationsWebhook?: string | undefined;
250
- }>, z.ZodObject<{
464
+ endpoint: string;
465
+ }>;
466
+ relationship: z.ZodObject<{
467
+ name: z.ZodString;
251
468
  did: z.ZodString;
252
469
  }, "strip", z.ZodTypeAny, {
470
+ name: string;
253
471
  did: string;
254
472
  }, {
473
+ name: string;
255
474
  did: string;
256
- }>>;
257
- from: z.ZodIntersection<z.ZodObject<{
258
- profileId: z.ZodOptional<z.ZodString>;
259
- displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
260
- bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
261
- did: z.ZodOptional<z.ZodString>;
262
- email: z.ZodOptional<z.ZodOptional<z.ZodString>>;
263
- image: z.ZodOptional<z.ZodOptional<z.ZodString>>;
264
- isServiceProfile: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodBoolean>>>;
265
- notificationsWebhook: z.ZodOptional<z.ZodOptional<z.ZodString>>;
266
- }, "strip", z.ZodTypeAny, {
267
- image?: string | undefined;
268
- email?: string | undefined;
269
- profileId?: string | undefined;
270
- displayName?: string | undefined;
271
- bio?: string | undefined;
272
- did?: string | undefined;
273
- isServiceProfile?: boolean | undefined;
274
- notificationsWebhook?: string | undefined;
275
- }, {
276
- image?: string | undefined;
277
- email?: string | undefined;
278
- profileId?: string | undefined;
279
- displayName?: string | undefined;
280
- bio?: string | undefined;
281
- did?: string | undefined;
282
- isServiceProfile?: boolean | undefined;
283
- notificationsWebhook?: string | undefined;
284
- }>, z.ZodObject<{
285
- did: z.ZodString;
286
- }, "strip", z.ZodTypeAny, {
475
+ }>;
476
+ }, "strip", z.ZodTypeAny, {
477
+ signingAuthority: {
478
+ endpoint: string;
479
+ };
480
+ relationship: {
481
+ name: string;
287
482
  did: string;
288
- }, {
289
- did: string;
290
- }>>;
291
- message: z.ZodOptional<z.ZodObject<{
292
- title: z.ZodOptional<z.ZodString>;
293
- body: z.ZodOptional<z.ZodString>;
294
- }, "strip", z.ZodTypeAny, {
295
- title?: string | undefined;
296
- body?: string | undefined;
297
- }, {
298
- title?: string | undefined;
299
- body?: string | undefined;
300
- }>>;
301
- data: z.ZodOptional<z.ZodObject<{
302
- vcUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
303
- vpUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
304
- }, "strip", z.ZodTypeAny, {
305
- vcUris?: string[] | undefined;
306
- vpUris?: string[] | undefined;
307
- }, {
308
- vcUris?: string[] | undefined;
309
- vpUris?: string[] | undefined;
310
- }>>;
311
- sent: z.ZodOptional<z.ZodString>;
312
- }, "strip", z.ZodTypeAny, {
313
- message?: {
314
- title?: string | undefined;
315
- body?: string | undefined;
316
- } | undefined;
317
- data?: {
318
- vcUris?: string[] | undefined;
319
- vpUris?: string[] | undefined;
320
- } | undefined;
321
- sent?: string | undefined;
322
- type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED";
323
- to: {
324
- image?: string | undefined;
325
- email?: string | undefined;
326
- profileId?: string | undefined;
327
- displayName?: string | undefined;
328
- bio?: string | undefined;
329
- did?: string | undefined;
330
- isServiceProfile?: boolean | undefined;
331
- notificationsWebhook?: string | undefined;
332
- } & {
333
- did: string;
334
- };
335
- from: {
336
- image?: string | undefined;
337
- email?: string | undefined;
338
- profileId?: string | undefined;
339
- displayName?: string | undefined;
340
- bio?: string | undefined;
341
- did?: string | undefined;
342
- isServiceProfile?: boolean | undefined;
343
- notificationsWebhook?: string | undefined;
344
- } & {
345
- did: string;
346
- };
347
- }, {
348
- message?: {
349
- title?: string | undefined;
350
- body?: string | undefined;
351
- } | undefined;
352
- data?: {
353
- vcUris?: string[] | undefined;
354
- vpUris?: string[] | undefined;
355
- } | undefined;
356
- sent?: string | undefined;
357
- type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED";
358
- to: {
359
- image?: string | undefined;
360
- email?: string | undefined;
361
- profileId?: string | undefined;
362
- displayName?: string | undefined;
363
- bio?: string | undefined;
364
- did?: string | undefined;
365
- isServiceProfile?: boolean | undefined;
366
- notificationsWebhook?: string | undefined;
367
- } & {
368
- did: string;
369
- };
370
- from: {
371
- image?: string | undefined;
372
- email?: string | undefined;
373
- profileId?: string | undefined;
374
- displayName?: string | undefined;
375
- bio?: string | undefined;
376
- did?: string | undefined;
377
- isServiceProfile?: boolean | undefined;
378
- notificationsWebhook?: string | undefined;
379
- } & {
380
- did: string;
381
- };
382
- }>;
383
- export type LCNNotification = z.infer<typeof LCNNotificationValidator>;
384
- export declare const LCNBoostClaimLinkSigningAuthorityValidator: z.ZodObject<{
385
- endpoint: z.ZodString;
386
- name: z.ZodString;
387
- did: z.ZodOptional<z.ZodString>;
388
- }, "strip", z.ZodTypeAny, {
389
- did?: string | undefined;
390
- name: string;
391
- endpoint: string;
392
- }, {
393
- did?: string | undefined;
394
- name: string;
395
- endpoint: string;
396
- }>;
397
- export type LCNBoostClaimLinkSigningAuthorityType = z.infer<typeof LCNBoostClaimLinkSigningAuthorityValidator>;
398
- export declare const LCNBoostClaimLinkOptionsValidator: z.ZodObject<{
399
- ttlSeconds: z.ZodOptional<z.ZodNumber>;
400
- totalUses: z.ZodOptional<z.ZodNumber>;
401
- }, "strip", z.ZodTypeAny, {
402
- ttlSeconds?: number | undefined;
403
- totalUses?: number | undefined;
404
- }, {
405
- ttlSeconds?: number | undefined;
406
- totalUses?: number | undefined;
407
- }>;
408
- export type LCNBoostClaimLinkOptionsType = z.infer<typeof LCNBoostClaimLinkOptionsValidator>;
409
- export declare const LCNSigningAuthorityValidator: z.ZodObject<{
410
- endpoint: z.ZodString;
411
- }, "strip", z.ZodTypeAny, {
412
- endpoint: string;
413
- }, {
414
- endpoint: string;
415
- }>;
416
- export type LCNSigningAuthorityType = z.infer<typeof LCNSigningAuthorityValidator>;
417
- export declare const LCNSigningAuthorityForUserValidator: z.ZodObject<{
418
- signingAuthority: z.ZodObject<{
419
- endpoint: z.ZodString;
420
- }, "strip", z.ZodTypeAny, {
421
- endpoint: string;
422
- }, {
423
- endpoint: string;
424
- }>;
425
- relationship: z.ZodObject<{
426
- name: z.ZodString;
427
- did: z.ZodString;
428
- }, "strip", z.ZodTypeAny, {
429
- name: string;
430
- did: string;
431
- }, {
432
- name: string;
433
- did: string;
434
- }>;
435
- }, "strip", z.ZodTypeAny, {
436
- signingAuthority: {
437
- endpoint: string;
438
- };
439
- relationship: {
440
- name: string;
441
- did: string;
442
- };
443
- }, {
444
- signingAuthority: {
445
- endpoint: string;
446
- };
447
- relationship: {
448
- name: string;
483
+ };
484
+ }, {
485
+ signingAuthority: {
486
+ endpoint: string;
487
+ };
488
+ relationship: {
489
+ name: string;
449
490
  did: string;
450
491
  };
451
492
  }>;
@@ -732,26 +773,38 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
732
773
  owner: z.ZodObject<{
733
774
  profileId: z.ZodString;
734
775
  displayName: z.ZodDefault<z.ZodString>;
776
+ shortBio: z.ZodDefault<z.ZodString>;
735
777
  bio: z.ZodDefault<z.ZodString>;
736
778
  did: z.ZodString;
737
779
  email: z.ZodOptional<z.ZodString>;
738
780
  image: z.ZodOptional<z.ZodString>;
781
+ heroImage: z.ZodOptional<z.ZodString>;
782
+ websiteLink: z.ZodOptional<z.ZodString>;
739
783
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
784
+ type: z.ZodOptional<z.ZodString>;
740
785
  notificationsWebhook: z.ZodOptional<z.ZodString>;
741
786
  }, "strip", z.ZodTypeAny, {
787
+ type?: string | undefined;
742
788
  image?: string | undefined;
743
789
  email?: string | undefined;
790
+ heroImage?: string | undefined;
791
+ websiteLink?: string | undefined;
744
792
  isServiceProfile?: boolean | undefined;
745
793
  notificationsWebhook?: string | undefined;
746
794
  profileId: string;
747
795
  displayName: string;
796
+ shortBio: string;
748
797
  bio: string;
749
798
  did: string;
750
799
  }, {
800
+ type?: string | undefined;
751
801
  image?: string | undefined;
752
802
  email?: string | undefined;
753
803
  displayName?: string | undefined;
804
+ shortBio?: string | undefined;
754
805
  bio?: string | undefined;
806
+ heroImage?: string | undefined;
807
+ websiteLink?: string | undefined;
755
808
  isServiceProfile?: boolean | undefined;
756
809
  notificationsWebhook?: string | undefined;
757
810
  profileId: string;
@@ -799,12 +852,16 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
799
852
  };
800
853
  };
801
854
  owner: {
855
+ type?: string | undefined;
802
856
  image?: string | undefined;
803
857
  email?: string | undefined;
858
+ heroImage?: string | undefined;
859
+ websiteLink?: string | undefined;
804
860
  isServiceProfile?: boolean | undefined;
805
861
  notificationsWebhook?: string | undefined;
806
862
  profileId: string;
807
863
  displayName: string;
864
+ shortBio: string;
808
865
  bio: string;
809
866
  did: string;
810
867
  };
@@ -842,10 +899,14 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
842
899
  } | undefined;
843
900
  };
844
901
  owner: {
902
+ type?: string | undefined;
845
903
  image?: string | undefined;
846
904
  email?: string | undefined;
847
905
  displayName?: string | undefined;
906
+ shortBio?: string | undefined;
848
907
  bio?: string | undefined;
908
+ heroImage?: string | undefined;
909
+ websiteLink?: string | undefined;
849
910
  isServiceProfile?: boolean | undefined;
850
911
  notificationsWebhook?: string | undefined;
851
912
  profileId: string;
@@ -1000,26 +1061,38 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
1000
1061
  owner: z.ZodObject<{
1001
1062
  profileId: z.ZodString;
1002
1063
  displayName: z.ZodDefault<z.ZodString>;
1064
+ shortBio: z.ZodDefault<z.ZodString>;
1003
1065
  bio: z.ZodDefault<z.ZodString>;
1004
1066
  did: z.ZodString;
1005
1067
  email: z.ZodOptional<z.ZodString>;
1006
1068
  image: z.ZodOptional<z.ZodString>;
1069
+ heroImage: z.ZodOptional<z.ZodString>;
1070
+ websiteLink: z.ZodOptional<z.ZodString>;
1007
1071
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1072
+ type: z.ZodOptional<z.ZodString>;
1008
1073
  notificationsWebhook: z.ZodOptional<z.ZodString>;
1009
1074
  }, "strip", z.ZodTypeAny, {
1075
+ type?: string | undefined;
1010
1076
  image?: string | undefined;
1011
1077
  email?: string | undefined;
1078
+ heroImage?: string | undefined;
1079
+ websiteLink?: string | undefined;
1012
1080
  isServiceProfile?: boolean | undefined;
1013
1081
  notificationsWebhook?: string | undefined;
1014
1082
  profileId: string;
1015
1083
  displayName: string;
1084
+ shortBio: string;
1016
1085
  bio: string;
1017
1086
  did: string;
1018
1087
  }, {
1088
+ type?: string | undefined;
1019
1089
  image?: string | undefined;
1020
1090
  email?: string | undefined;
1021
1091
  displayName?: string | undefined;
1092
+ shortBio?: string | undefined;
1022
1093
  bio?: string | undefined;
1094
+ heroImage?: string | undefined;
1095
+ websiteLink?: string | undefined;
1023
1096
  isServiceProfile?: boolean | undefined;
1024
1097
  notificationsWebhook?: string | undefined;
1025
1098
  profileId: string;
@@ -1250,6 +1323,23 @@ export declare const PaginatedConsentFlowDataValidator: z.ZodObject<z.extendShap
1250
1323
  }[];
1251
1324
  }>;
1252
1325
  export type PaginatedConsentFlowData = z.infer<typeof PaginatedConsentFlowDataValidator>;
1326
+ export declare const ConsentFlowTermValidator: z.ZodObject<{
1327
+ sharing: z.ZodOptional<z.ZodBoolean>;
1328
+ shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1329
+ shareAll: z.ZodOptional<z.ZodBoolean>;
1330
+ shareUntil: z.ZodOptional<z.ZodString>;
1331
+ }, "strip", z.ZodTypeAny, {
1332
+ sharing?: boolean | undefined;
1333
+ shared?: string[] | undefined;
1334
+ shareAll?: boolean | undefined;
1335
+ shareUntil?: string | undefined;
1336
+ }, {
1337
+ sharing?: boolean | undefined;
1338
+ shared?: string[] | undefined;
1339
+ shareAll?: boolean | undefined;
1340
+ shareUntil?: string | undefined;
1341
+ }>;
1342
+ export type ConsentFlowTerm = z.infer<typeof ConsentFlowTermValidator>;
1253
1343
  export declare const ConsentFlowTermsValidator: z.ZodObject<{
1254
1344
  read: z.ZodDefault<z.ZodObject<{
1255
1345
  anonymize: z.ZodOptional<z.ZodBoolean>;
@@ -1260,42 +1350,48 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
1260
1350
  sharing: z.ZodOptional<z.ZodBoolean>;
1261
1351
  shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1262
1352
  shareAll: z.ZodOptional<z.ZodBoolean>;
1353
+ shareUntil: z.ZodOptional<z.ZodString>;
1263
1354
  }, "strip", z.ZodTypeAny, {
1264
- shareAll?: boolean | undefined;
1265
1355
  sharing?: boolean | undefined;
1266
1356
  shared?: string[] | undefined;
1267
- }, {
1268
1357
  shareAll?: boolean | undefined;
1358
+ shareUntil?: string | undefined;
1359
+ }, {
1269
1360
  sharing?: boolean | undefined;
1270
1361
  shared?: string[] | undefined;
1362
+ shareAll?: boolean | undefined;
1363
+ shareUntil?: string | undefined;
1271
1364
  }>>>;
1272
1365
  }, "strip", z.ZodTypeAny, {
1273
- shareAll?: boolean | undefined;
1274
1366
  sharing?: boolean | undefined;
1367
+ shareAll?: boolean | undefined;
1275
1368
  categories: Record<string, {
1276
- shareAll?: boolean | undefined;
1277
1369
  sharing?: boolean | undefined;
1278
1370
  shared?: string[] | undefined;
1371
+ shareAll?: boolean | undefined;
1372
+ shareUntil?: string | undefined;
1279
1373
  }>;
1280
1374
  }, {
1281
1375
  categories?: Record<string, {
1282
- shareAll?: boolean | undefined;
1283
1376
  sharing?: boolean | undefined;
1284
1377
  shared?: string[] | undefined;
1378
+ shareAll?: boolean | undefined;
1379
+ shareUntil?: string | undefined;
1285
1380
  }> | undefined;
1286
- shareAll?: boolean | undefined;
1287
1381
  sharing?: boolean | undefined;
1382
+ shareAll?: boolean | undefined;
1288
1383
  }>>;
1289
1384
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
1290
1385
  }, "strip", z.ZodTypeAny, {
1291
1386
  anonymize?: boolean | undefined;
1292
1387
  credentials: {
1293
- shareAll?: boolean | undefined;
1294
1388
  sharing?: boolean | undefined;
1389
+ shareAll?: boolean | undefined;
1295
1390
  categories: Record<string, {
1296
- shareAll?: boolean | undefined;
1297
1391
  sharing?: boolean | undefined;
1298
1392
  shared?: string[] | undefined;
1393
+ shareAll?: boolean | undefined;
1394
+ shareUntil?: string | undefined;
1299
1395
  }>;
1300
1396
  };
1301
1397
  personal: Record<string, string>;
@@ -1303,12 +1399,13 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
1303
1399
  anonymize?: boolean | undefined;
1304
1400
  credentials?: {
1305
1401
  categories?: Record<string, {
1306
- shareAll?: boolean | undefined;
1307
1402
  sharing?: boolean | undefined;
1308
1403
  shared?: string[] | undefined;
1404
+ shareAll?: boolean | undefined;
1405
+ shareUntil?: string | undefined;
1309
1406
  }> | undefined;
1310
- shareAll?: boolean | undefined;
1311
1407
  sharing?: boolean | undefined;
1408
+ shareAll?: boolean | undefined;
1312
1409
  } | undefined;
1313
1410
  personal?: Record<string, string> | undefined;
1314
1411
  }>>;
@@ -1336,12 +1433,13 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
1336
1433
  read: {
1337
1434
  anonymize?: boolean | undefined;
1338
1435
  credentials: {
1339
- shareAll?: boolean | undefined;
1340
1436
  sharing?: boolean | undefined;
1437
+ shareAll?: boolean | undefined;
1341
1438
  categories: Record<string, {
1342
- shareAll?: boolean | undefined;
1343
1439
  sharing?: boolean | undefined;
1344
1440
  shared?: string[] | undefined;
1441
+ shareAll?: boolean | undefined;
1442
+ shareUntil?: string | undefined;
1345
1443
  }>;
1346
1444
  };
1347
1445
  personal: Record<string, string>;
@@ -1357,12 +1455,13 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
1357
1455
  anonymize?: boolean | undefined;
1358
1456
  credentials?: {
1359
1457
  categories?: Record<string, {
1360
- shareAll?: boolean | undefined;
1361
1458
  sharing?: boolean | undefined;
1362
1459
  shared?: string[] | undefined;
1460
+ shareAll?: boolean | undefined;
1461
+ shareUntil?: string | undefined;
1363
1462
  }> | undefined;
1364
- shareAll?: boolean | undefined;
1365
1463
  sharing?: boolean | undefined;
1464
+ shareAll?: boolean | undefined;
1366
1465
  } | undefined;
1367
1466
  personal?: Record<string, string> | undefined;
1368
1467
  } | undefined;
@@ -1392,42 +1491,48 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1392
1491
  sharing: z.ZodOptional<z.ZodBoolean>;
1393
1492
  shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1394
1493
  shareAll: z.ZodOptional<z.ZodBoolean>;
1494
+ shareUntil: z.ZodOptional<z.ZodString>;
1395
1495
  }, "strip", z.ZodTypeAny, {
1396
- shareAll?: boolean | undefined;
1397
1496
  sharing?: boolean | undefined;
1398
1497
  shared?: string[] | undefined;
1399
- }, {
1400
1498
  shareAll?: boolean | undefined;
1499
+ shareUntil?: string | undefined;
1500
+ }, {
1401
1501
  sharing?: boolean | undefined;
1402
1502
  shared?: string[] | undefined;
1503
+ shareAll?: boolean | undefined;
1504
+ shareUntil?: string | undefined;
1403
1505
  }>>>;
1404
1506
  }, "strip", z.ZodTypeAny, {
1405
- shareAll?: boolean | undefined;
1406
1507
  sharing?: boolean | undefined;
1508
+ shareAll?: boolean | undefined;
1407
1509
  categories: Record<string, {
1408
- shareAll?: boolean | undefined;
1409
1510
  sharing?: boolean | undefined;
1410
1511
  shared?: string[] | undefined;
1512
+ shareAll?: boolean | undefined;
1513
+ shareUntil?: string | undefined;
1411
1514
  }>;
1412
1515
  }, {
1413
1516
  categories?: Record<string, {
1414
- shareAll?: boolean | undefined;
1415
1517
  sharing?: boolean | undefined;
1416
1518
  shared?: string[] | undefined;
1519
+ shareAll?: boolean | undefined;
1520
+ shareUntil?: string | undefined;
1417
1521
  }> | undefined;
1418
- shareAll?: boolean | undefined;
1419
1522
  sharing?: boolean | undefined;
1523
+ shareAll?: boolean | undefined;
1420
1524
  }>>;
1421
1525
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
1422
1526
  }, "strip", z.ZodTypeAny, {
1423
1527
  anonymize?: boolean | undefined;
1424
1528
  credentials: {
1425
- shareAll?: boolean | undefined;
1426
1529
  sharing?: boolean | undefined;
1530
+ shareAll?: boolean | undefined;
1427
1531
  categories: Record<string, {
1428
- shareAll?: boolean | undefined;
1429
1532
  sharing?: boolean | undefined;
1430
1533
  shared?: string[] | undefined;
1534
+ shareAll?: boolean | undefined;
1535
+ shareUntil?: string | undefined;
1431
1536
  }>;
1432
1537
  };
1433
1538
  personal: Record<string, string>;
@@ -1435,12 +1540,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1435
1540
  anonymize?: boolean | undefined;
1436
1541
  credentials?: {
1437
1542
  categories?: Record<string, {
1438
- shareAll?: boolean | undefined;
1439
1543
  sharing?: boolean | undefined;
1440
1544
  shared?: string[] | undefined;
1545
+ shareAll?: boolean | undefined;
1546
+ shareUntil?: string | undefined;
1441
1547
  }> | undefined;
1442
- shareAll?: boolean | undefined;
1443
1548
  sharing?: boolean | undefined;
1549
+ shareAll?: boolean | undefined;
1444
1550
  } | undefined;
1445
1551
  personal?: Record<string, string> | undefined;
1446
1552
  }>>;
@@ -1468,12 +1574,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1468
1574
  read: {
1469
1575
  anonymize?: boolean | undefined;
1470
1576
  credentials: {
1471
- shareAll?: boolean | undefined;
1472
1577
  sharing?: boolean | undefined;
1578
+ shareAll?: boolean | undefined;
1473
1579
  categories: Record<string, {
1474
- shareAll?: boolean | undefined;
1475
1580
  sharing?: boolean | undefined;
1476
1581
  shared?: string[] | undefined;
1582
+ shareAll?: boolean | undefined;
1583
+ shareUntil?: string | undefined;
1477
1584
  }>;
1478
1585
  };
1479
1586
  personal: Record<string, string>;
@@ -1489,12 +1596,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1489
1596
  anonymize?: boolean | undefined;
1490
1597
  credentials?: {
1491
1598
  categories?: Record<string, {
1492
- shareAll?: boolean | undefined;
1493
1599
  sharing?: boolean | undefined;
1494
1600
  shared?: string[] | undefined;
1601
+ shareAll?: boolean | undefined;
1602
+ shareUntil?: string | undefined;
1495
1603
  }> | undefined;
1496
- shareAll?: boolean | undefined;
1497
1604
  sharing?: boolean | undefined;
1605
+ shareAll?: boolean | undefined;
1498
1606
  } | undefined;
1499
1607
  personal?: Record<string, string> | undefined;
1500
1608
  } | undefined;
@@ -1646,26 +1754,38 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1646
1754
  owner: z.ZodObject<{
1647
1755
  profileId: z.ZodString;
1648
1756
  displayName: z.ZodDefault<z.ZodString>;
1757
+ shortBio: z.ZodDefault<z.ZodString>;
1649
1758
  bio: z.ZodDefault<z.ZodString>;
1650
1759
  did: z.ZodString;
1651
1760
  email: z.ZodOptional<z.ZodString>;
1652
1761
  image: z.ZodOptional<z.ZodString>;
1762
+ heroImage: z.ZodOptional<z.ZodString>;
1763
+ websiteLink: z.ZodOptional<z.ZodString>;
1653
1764
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1765
+ type: z.ZodOptional<z.ZodString>;
1654
1766
  notificationsWebhook: z.ZodOptional<z.ZodString>;
1655
1767
  }, "strip", z.ZodTypeAny, {
1768
+ type?: string | undefined;
1656
1769
  image?: string | undefined;
1657
1770
  email?: string | undefined;
1771
+ heroImage?: string | undefined;
1772
+ websiteLink?: string | undefined;
1658
1773
  isServiceProfile?: boolean | undefined;
1659
1774
  notificationsWebhook?: string | undefined;
1660
1775
  profileId: string;
1661
1776
  displayName: string;
1777
+ shortBio: string;
1662
1778
  bio: string;
1663
1779
  did: string;
1664
1780
  }, {
1781
+ type?: string | undefined;
1665
1782
  image?: string | undefined;
1666
1783
  email?: string | undefined;
1667
1784
  displayName?: string | undefined;
1785
+ shortBio?: string | undefined;
1668
1786
  bio?: string | undefined;
1787
+ heroImage?: string | undefined;
1788
+ websiteLink?: string | undefined;
1669
1789
  isServiceProfile?: boolean | undefined;
1670
1790
  notificationsWebhook?: string | undefined;
1671
1791
  profileId: string;
@@ -1713,12 +1833,16 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1713
1833
  };
1714
1834
  };
1715
1835
  owner: {
1836
+ type?: string | undefined;
1716
1837
  image?: string | undefined;
1717
1838
  email?: string | undefined;
1839
+ heroImage?: string | undefined;
1840
+ websiteLink?: string | undefined;
1718
1841
  isServiceProfile?: boolean | undefined;
1719
1842
  notificationsWebhook?: string | undefined;
1720
1843
  profileId: string;
1721
1844
  displayName: string;
1845
+ shortBio: string;
1722
1846
  bio: string;
1723
1847
  did: string;
1724
1848
  };
@@ -1756,10 +1880,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1756
1880
  } | undefined;
1757
1881
  };
1758
1882
  owner: {
1883
+ type?: string | undefined;
1759
1884
  image?: string | undefined;
1760
1885
  email?: string | undefined;
1761
1886
  displayName?: string | undefined;
1887
+ shortBio?: string | undefined;
1762
1888
  bio?: string | undefined;
1889
+ heroImage?: string | undefined;
1890
+ websiteLink?: string | undefined;
1763
1891
  isServiceProfile?: boolean | undefined;
1764
1892
  notificationsWebhook?: string | undefined;
1765
1893
  profileId: string;
@@ -1771,26 +1899,38 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1771
1899
  consenter: z.ZodObject<{
1772
1900
  profileId: z.ZodString;
1773
1901
  displayName: z.ZodDefault<z.ZodString>;
1902
+ shortBio: z.ZodDefault<z.ZodString>;
1774
1903
  bio: z.ZodDefault<z.ZodString>;
1775
1904
  did: z.ZodString;
1776
1905
  email: z.ZodOptional<z.ZodString>;
1777
1906
  image: z.ZodOptional<z.ZodString>;
1907
+ heroImage: z.ZodOptional<z.ZodString>;
1908
+ websiteLink: z.ZodOptional<z.ZodString>;
1778
1909
  isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1910
+ type: z.ZodOptional<z.ZodString>;
1779
1911
  notificationsWebhook: z.ZodOptional<z.ZodString>;
1780
1912
  }, "strip", z.ZodTypeAny, {
1913
+ type?: string | undefined;
1781
1914
  image?: string | undefined;
1782
1915
  email?: string | undefined;
1916
+ heroImage?: string | undefined;
1917
+ websiteLink?: string | undefined;
1783
1918
  isServiceProfile?: boolean | undefined;
1784
1919
  notificationsWebhook?: string | undefined;
1785
1920
  profileId: string;
1786
1921
  displayName: string;
1922
+ shortBio: string;
1787
1923
  bio: string;
1788
1924
  did: string;
1789
1925
  }, {
1926
+ type?: string | undefined;
1790
1927
  image?: string | undefined;
1791
1928
  email?: string | undefined;
1792
1929
  displayName?: string | undefined;
1930
+ shortBio?: string | undefined;
1793
1931
  bio?: string | undefined;
1932
+ heroImage?: string | undefined;
1933
+ websiteLink?: string | undefined;
1794
1934
  isServiceProfile?: boolean | undefined;
1795
1935
  notificationsWebhook?: string | undefined;
1796
1936
  profileId: string;
@@ -1835,12 +1975,16 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1835
1975
  };
1836
1976
  };
1837
1977
  owner: {
1978
+ type?: string | undefined;
1838
1979
  image?: string | undefined;
1839
1980
  email?: string | undefined;
1981
+ heroImage?: string | undefined;
1982
+ websiteLink?: string | undefined;
1840
1983
  isServiceProfile?: boolean | undefined;
1841
1984
  notificationsWebhook?: string | undefined;
1842
1985
  profileId: string;
1843
1986
  displayName: string;
1987
+ shortBio: string;
1844
1988
  bio: string;
1845
1989
  did: string;
1846
1990
  };
@@ -1850,12 +1994,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1850
1994
  read: {
1851
1995
  anonymize?: boolean | undefined;
1852
1996
  credentials: {
1853
- shareAll?: boolean | undefined;
1854
1997
  sharing?: boolean | undefined;
1998
+ shareAll?: boolean | undefined;
1855
1999
  categories: Record<string, {
1856
- shareAll?: boolean | undefined;
1857
2000
  sharing?: boolean | undefined;
1858
2001
  shared?: string[] | undefined;
2002
+ shareAll?: boolean | undefined;
2003
+ shareUntil?: string | undefined;
1859
2004
  }>;
1860
2005
  };
1861
2006
  personal: Record<string, string>;
@@ -1868,12 +2013,16 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1868
2013
  };
1869
2014
  };
1870
2015
  consenter: {
2016
+ type?: string | undefined;
1871
2017
  image?: string | undefined;
1872
2018
  email?: string | undefined;
2019
+ heroImage?: string | undefined;
2020
+ websiteLink?: string | undefined;
1873
2021
  isServiceProfile?: boolean | undefined;
1874
2022
  notificationsWebhook?: string | undefined;
1875
2023
  profileId: string;
1876
2024
  displayName: string;
2025
+ shortBio: string;
1877
2026
  bio: string;
1878
2027
  did: string;
1879
2028
  };
@@ -1915,10 +2064,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1915
2064
  } | undefined;
1916
2065
  };
1917
2066
  owner: {
2067
+ type?: string | undefined;
1918
2068
  image?: string | undefined;
1919
2069
  email?: string | undefined;
1920
2070
  displayName?: string | undefined;
2071
+ shortBio?: string | undefined;
1921
2072
  bio?: string | undefined;
2073
+ heroImage?: string | undefined;
2074
+ websiteLink?: string | undefined;
1922
2075
  isServiceProfile?: boolean | undefined;
1923
2076
  notificationsWebhook?: string | undefined;
1924
2077
  profileId: string;
@@ -1931,12 +2084,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1931
2084
  anonymize?: boolean | undefined;
1932
2085
  credentials?: {
1933
2086
  categories?: Record<string, {
1934
- shareAll?: boolean | undefined;
1935
2087
  sharing?: boolean | undefined;
1936
2088
  shared?: string[] | undefined;
2089
+ shareAll?: boolean | undefined;
2090
+ shareUntil?: string | undefined;
1937
2091
  }> | undefined;
1938
- shareAll?: boolean | undefined;
1939
2092
  sharing?: boolean | undefined;
2093
+ shareAll?: boolean | undefined;
1940
2094
  } | undefined;
1941
2095
  personal?: Record<string, string> | undefined;
1942
2096
  } | undefined;
@@ -1948,10 +2102,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1948
2102
  } | undefined;
1949
2103
  };
1950
2104
  consenter: {
2105
+ type?: string | undefined;
1951
2106
  image?: string | undefined;
1952
2107
  email?: string | undefined;
1953
2108
  displayName?: string | undefined;
2109
+ shortBio?: string | undefined;
1954
2110
  bio?: string | undefined;
2111
+ heroImage?: string | undefined;
2112
+ websiteLink?: string | undefined;
1955
2113
  isServiceProfile?: boolean | undefined;
1956
2114
  notificationsWebhook?: string | undefined;
1957
2115
  profileId: string;
@@ -1999,12 +2157,16 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
1999
2157
  };
2000
2158
  };
2001
2159
  owner: {
2160
+ type?: string | undefined;
2002
2161
  image?: string | undefined;
2003
2162
  email?: string | undefined;
2163
+ heroImage?: string | undefined;
2164
+ websiteLink?: string | undefined;
2004
2165
  isServiceProfile?: boolean | undefined;
2005
2166
  notificationsWebhook?: string | undefined;
2006
2167
  profileId: string;
2007
2168
  displayName: string;
2169
+ shortBio: string;
2008
2170
  bio: string;
2009
2171
  did: string;
2010
2172
  };
@@ -2014,12 +2176,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2014
2176
  read: {
2015
2177
  anonymize?: boolean | undefined;
2016
2178
  credentials: {
2017
- shareAll?: boolean | undefined;
2018
2179
  sharing?: boolean | undefined;
2180
+ shareAll?: boolean | undefined;
2019
2181
  categories: Record<string, {
2020
- shareAll?: boolean | undefined;
2021
2182
  sharing?: boolean | undefined;
2022
2183
  shared?: string[] | undefined;
2184
+ shareAll?: boolean | undefined;
2185
+ shareUntil?: string | undefined;
2023
2186
  }>;
2024
2187
  };
2025
2188
  personal: Record<string, string>;
@@ -2032,12 +2195,16 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2032
2195
  };
2033
2196
  };
2034
2197
  consenter: {
2198
+ type?: string | undefined;
2035
2199
  image?: string | undefined;
2036
2200
  email?: string | undefined;
2201
+ heroImage?: string | undefined;
2202
+ websiteLink?: string | undefined;
2037
2203
  isServiceProfile?: boolean | undefined;
2038
2204
  notificationsWebhook?: string | undefined;
2039
2205
  profileId: string;
2040
2206
  displayName: string;
2207
+ shortBio: string;
2041
2208
  bio: string;
2042
2209
  did: string;
2043
2210
  };
@@ -2083,10 +2250,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2083
2250
  } | undefined;
2084
2251
  };
2085
2252
  owner: {
2253
+ type?: string | undefined;
2086
2254
  image?: string | undefined;
2087
2255
  email?: string | undefined;
2088
2256
  displayName?: string | undefined;
2257
+ shortBio?: string | undefined;
2089
2258
  bio?: string | undefined;
2259
+ heroImage?: string | undefined;
2260
+ websiteLink?: string | undefined;
2090
2261
  isServiceProfile?: boolean | undefined;
2091
2262
  notificationsWebhook?: string | undefined;
2092
2263
  profileId: string;
@@ -2099,12 +2270,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2099
2270
  anonymize?: boolean | undefined;
2100
2271
  credentials?: {
2101
2272
  categories?: Record<string, {
2102
- shareAll?: boolean | undefined;
2103
2273
  sharing?: boolean | undefined;
2104
2274
  shared?: string[] | undefined;
2275
+ shareAll?: boolean | undefined;
2276
+ shareUntil?: string | undefined;
2105
2277
  }> | undefined;
2106
- shareAll?: boolean | undefined;
2107
2278
  sharing?: boolean | undefined;
2279
+ shareAll?: boolean | undefined;
2108
2280
  } | undefined;
2109
2281
  personal?: Record<string, string> | undefined;
2110
2282
  } | undefined;
@@ -2116,10 +2288,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
2116
2288
  } | undefined;
2117
2289
  };
2118
2290
  consenter: {
2291
+ type?: string | undefined;
2119
2292
  image?: string | undefined;
2120
2293
  email?: string | undefined;
2121
2294
  displayName?: string | undefined;
2295
+ shortBio?: string | undefined;
2122
2296
  bio?: string | undefined;
2297
+ heroImage?: string | undefined;
2298
+ websiteLink?: string | undefined;
2123
2299
  isServiceProfile?: boolean | undefined;
2124
2300
  notificationsWebhook?: string | undefined;
2125
2301
  profileId: string;
@@ -2267,6 +2443,31 @@ export declare const ConsentFlowContractQueryValidator: z.ZodObject<{
2267
2443
  }>;
2268
2444
  export type ConsentFlowContractQuery = z.infer<typeof ConsentFlowContractQueryValidator>;
2269
2445
  export type ConsentFlowContractQueryInput = z.input<typeof ConsentFlowContractQueryValidator>;
2446
+ export declare const ConsentFlowDataQueryValidator: z.ZodObject<{
2447
+ anonymize: z.ZodOptional<z.ZodBoolean>;
2448
+ credentials: z.ZodOptional<z.ZodObject<{
2449
+ categories: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
2450
+ }, "strip", z.ZodTypeAny, {
2451
+ categories?: Record<string, boolean> | undefined;
2452
+ }, {
2453
+ categories?: Record<string, boolean> | undefined;
2454
+ }>>;
2455
+ personal: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
2456
+ }, "strip", z.ZodTypeAny, {
2457
+ anonymize?: boolean | undefined;
2458
+ credentials?: {
2459
+ categories?: Record<string, boolean> | undefined;
2460
+ } | undefined;
2461
+ personal?: Record<string, boolean> | undefined;
2462
+ }, {
2463
+ anonymize?: boolean | undefined;
2464
+ credentials?: {
2465
+ categories?: Record<string, boolean> | undefined;
2466
+ } | undefined;
2467
+ personal?: Record<string, boolean> | undefined;
2468
+ }>;
2469
+ export type ConsentFlowDataQuery = z.infer<typeof ConsentFlowDataQueryValidator>;
2470
+ export type ConsentFlowDataQueryInput = z.input<typeof ConsentFlowDataQueryValidator>;
2270
2471
  export declare const ConsentFlowTermsQueryValidator: z.ZodObject<{
2271
2472
  read: z.ZodOptional<z.ZodObject<{
2272
2473
  anonymize: z.ZodOptional<z.ZodBoolean>;
@@ -2277,55 +2478,62 @@ export declare const ConsentFlowTermsQueryValidator: z.ZodObject<{
2277
2478
  sharing: z.ZodOptional<z.ZodBoolean>;
2278
2479
  shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2279
2480
  shareAll: z.ZodOptional<z.ZodBoolean>;
2481
+ shareUntil: z.ZodOptional<z.ZodString>;
2280
2482
  }, "strip", z.ZodTypeAny, {
2281
- shareAll?: boolean | undefined;
2282
2483
  sharing?: boolean | undefined;
2283
2484
  shared?: string[] | undefined;
2284
- }, {
2285
2485
  shareAll?: boolean | undefined;
2486
+ shareUntil?: string | undefined;
2487
+ }, {
2286
2488
  sharing?: boolean | undefined;
2287
2489
  shared?: string[] | undefined;
2490
+ shareAll?: boolean | undefined;
2491
+ shareUntil?: string | undefined;
2288
2492
  }>>>>;
2289
2493
  }, "strip", z.ZodTypeAny, {
2290
2494
  categories?: Record<string, {
2291
- shareAll?: boolean | undefined;
2292
2495
  sharing?: boolean | undefined;
2293
2496
  shared?: string[] | undefined;
2497
+ shareAll?: boolean | undefined;
2498
+ shareUntil?: string | undefined;
2294
2499
  } | undefined> | undefined;
2295
- shareAll?: boolean | undefined;
2296
2500
  sharing?: boolean | undefined;
2501
+ shareAll?: boolean | undefined;
2297
2502
  }, {
2298
2503
  categories?: Record<string, {
2299
- shareAll?: boolean | undefined;
2300
2504
  sharing?: boolean | undefined;
2301
2505
  shared?: string[] | undefined;
2506
+ shareAll?: boolean | undefined;
2507
+ shareUntil?: string | undefined;
2302
2508
  } | undefined> | undefined;
2303
- shareAll?: boolean | undefined;
2304
2509
  sharing?: boolean | undefined;
2510
+ shareAll?: boolean | undefined;
2305
2511
  }>>;
2306
2512
  personal: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2307
2513
  }, "strip", z.ZodTypeAny, {
2308
2514
  anonymize?: boolean | undefined;
2309
2515
  credentials?: {
2310
2516
  categories?: Record<string, {
2311
- shareAll?: boolean | undefined;
2312
2517
  sharing?: boolean | undefined;
2313
2518
  shared?: string[] | undefined;
2519
+ shareAll?: boolean | undefined;
2520
+ shareUntil?: string | undefined;
2314
2521
  } | undefined> | undefined;
2315
- shareAll?: boolean | undefined;
2316
2522
  sharing?: boolean | undefined;
2523
+ shareAll?: boolean | undefined;
2317
2524
  } | undefined;
2318
2525
  personal?: Record<string, string> | undefined;
2319
2526
  }, {
2320
2527
  anonymize?: boolean | undefined;
2321
2528
  credentials?: {
2322
2529
  categories?: Record<string, {
2323
- shareAll?: boolean | undefined;
2324
2530
  sharing?: boolean | undefined;
2325
2531
  shared?: string[] | undefined;
2532
+ shareAll?: boolean | undefined;
2533
+ shareUntil?: string | undefined;
2326
2534
  } | undefined> | undefined;
2327
- shareAll?: boolean | undefined;
2328
2535
  sharing?: boolean | undefined;
2536
+ shareAll?: boolean | undefined;
2329
2537
  } | undefined;
2330
2538
  personal?: Record<string, string> | undefined;
2331
2539
  }>>;
@@ -2354,12 +2562,13 @@ export declare const ConsentFlowTermsQueryValidator: z.ZodObject<{
2354
2562
  anonymize?: boolean | undefined;
2355
2563
  credentials?: {
2356
2564
  categories?: Record<string, {
2357
- shareAll?: boolean | undefined;
2358
2565
  sharing?: boolean | undefined;
2359
2566
  shared?: string[] | undefined;
2567
+ shareAll?: boolean | undefined;
2568
+ shareUntil?: string | undefined;
2360
2569
  } | undefined> | undefined;
2361
- shareAll?: boolean | undefined;
2362
2570
  sharing?: boolean | undefined;
2571
+ shareAll?: boolean | undefined;
2363
2572
  } | undefined;
2364
2573
  personal?: Record<string, string> | undefined;
2365
2574
  } | undefined;
@@ -2374,12 +2583,13 @@ export declare const ConsentFlowTermsQueryValidator: z.ZodObject<{
2374
2583
  anonymize?: boolean | undefined;
2375
2584
  credentials?: {
2376
2585
  categories?: Record<string, {
2377
- shareAll?: boolean | undefined;
2378
2586
  sharing?: boolean | undefined;
2379
2587
  shared?: string[] | undefined;
2588
+ shareAll?: boolean | undefined;
2589
+ shareUntil?: string | undefined;
2380
2590
  } | undefined> | undefined;
2381
- shareAll?: boolean | undefined;
2382
2591
  sharing?: boolean | undefined;
2592
+ shareAll?: boolean | undefined;
2383
2593
  } | undefined;
2384
2594
  personal?: Record<string, string> | undefined;
2385
2595
  } | undefined;
@@ -2405,55 +2615,62 @@ export declare const ConsentFlowTransactionsQueryValidator: z.ZodObject<{
2405
2615
  sharing: z.ZodOptional<z.ZodBoolean>;
2406
2616
  shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2407
2617
  shareAll: z.ZodOptional<z.ZodBoolean>;
2618
+ shareUntil: z.ZodOptional<z.ZodString>;
2408
2619
  }, "strip", z.ZodTypeAny, {
2409
- shareAll?: boolean | undefined;
2410
2620
  sharing?: boolean | undefined;
2411
2621
  shared?: string[] | undefined;
2412
- }, {
2413
2622
  shareAll?: boolean | undefined;
2623
+ shareUntil?: string | undefined;
2624
+ }, {
2414
2625
  sharing?: boolean | undefined;
2415
2626
  shared?: string[] | undefined;
2627
+ shareAll?: boolean | undefined;
2628
+ shareUntil?: string | undefined;
2416
2629
  }>>>>;
2417
2630
  }, "strip", z.ZodTypeAny, {
2418
2631
  categories?: Record<string, {
2419
- shareAll?: boolean | undefined;
2420
2632
  sharing?: boolean | undefined;
2421
2633
  shared?: string[] | undefined;
2634
+ shareAll?: boolean | undefined;
2635
+ shareUntil?: string | undefined;
2422
2636
  } | undefined> | undefined;
2423
- shareAll?: boolean | undefined;
2424
2637
  sharing?: boolean | undefined;
2638
+ shareAll?: boolean | undefined;
2425
2639
  }, {
2426
2640
  categories?: Record<string, {
2427
- shareAll?: boolean | undefined;
2428
2641
  sharing?: boolean | undefined;
2429
2642
  shared?: string[] | undefined;
2643
+ shareAll?: boolean | undefined;
2644
+ shareUntil?: string | undefined;
2430
2645
  } | undefined> | undefined;
2431
- shareAll?: boolean | undefined;
2432
2646
  sharing?: boolean | undefined;
2647
+ shareAll?: boolean | undefined;
2433
2648
  }>>;
2434
2649
  personal: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2435
2650
  }, "strip", z.ZodTypeAny, {
2436
2651
  anonymize?: boolean | undefined;
2437
2652
  credentials?: {
2438
2653
  categories?: Record<string, {
2439
- shareAll?: boolean | undefined;
2440
2654
  sharing?: boolean | undefined;
2441
2655
  shared?: string[] | undefined;
2656
+ shareAll?: boolean | undefined;
2657
+ shareUntil?: string | undefined;
2442
2658
  } | undefined> | undefined;
2443
- shareAll?: boolean | undefined;
2444
2659
  sharing?: boolean | undefined;
2660
+ shareAll?: boolean | undefined;
2445
2661
  } | undefined;
2446
2662
  personal?: Record<string, string> | undefined;
2447
2663
  }, {
2448
2664
  anonymize?: boolean | undefined;
2449
2665
  credentials?: {
2450
2666
  categories?: Record<string, {
2451
- shareAll?: boolean | undefined;
2452
2667
  sharing?: boolean | undefined;
2453
2668
  shared?: string[] | undefined;
2669
+ shareAll?: boolean | undefined;
2670
+ shareUntil?: string | undefined;
2454
2671
  } | undefined> | undefined;
2455
- shareAll?: boolean | undefined;
2456
2672
  sharing?: boolean | undefined;
2673
+ shareAll?: boolean | undefined;
2457
2674
  } | undefined;
2458
2675
  personal?: Record<string, string> | undefined;
2459
2676
  }>>;
@@ -2482,12 +2699,13 @@ export declare const ConsentFlowTransactionsQueryValidator: z.ZodObject<{
2482
2699
  anonymize?: boolean | undefined;
2483
2700
  credentials?: {
2484
2701
  categories?: Record<string, {
2485
- shareAll?: boolean | undefined;
2486
2702
  sharing?: boolean | undefined;
2487
2703
  shared?: string[] | undefined;
2704
+ shareAll?: boolean | undefined;
2705
+ shareUntil?: string | undefined;
2488
2706
  } | undefined> | undefined;
2489
- shareAll?: boolean | undefined;
2490
2707
  sharing?: boolean | undefined;
2708
+ shareAll?: boolean | undefined;
2491
2709
  } | undefined;
2492
2710
  personal?: Record<string, string> | undefined;
2493
2711
  } | undefined;
@@ -2502,12 +2720,13 @@ export declare const ConsentFlowTransactionsQueryValidator: z.ZodObject<{
2502
2720
  anonymize?: boolean | undefined;
2503
2721
  credentials?: {
2504
2722
  categories?: Record<string, {
2505
- shareAll?: boolean | undefined;
2506
2723
  sharing?: boolean | undefined;
2507
2724
  shared?: string[] | undefined;
2725
+ shareAll?: boolean | undefined;
2726
+ shareUntil?: string | undefined;
2508
2727
  } | undefined> | undefined;
2509
- shareAll?: boolean | undefined;
2510
2728
  sharing?: boolean | undefined;
2729
+ shareAll?: boolean | undefined;
2511
2730
  } | undefined;
2512
2731
  personal?: Record<string, string> | undefined;
2513
2732
  } | undefined;
@@ -2579,12 +2798,13 @@ export declare const ConsentFlowTransactionsQueryValidator: z.ZodObject<{
2579
2798
  anonymize?: boolean | undefined;
2580
2799
  credentials?: {
2581
2800
  categories?: Record<string, {
2582
- shareAll?: boolean | undefined;
2583
2801
  sharing?: boolean | undefined;
2584
2802
  shared?: string[] | undefined;
2803
+ shareAll?: boolean | undefined;
2804
+ shareUntil?: string | undefined;
2585
2805
  } | undefined> | undefined;
2586
- shareAll?: boolean | undefined;
2587
2806
  sharing?: boolean | undefined;
2807
+ shareAll?: boolean | undefined;
2588
2808
  } | undefined;
2589
2809
  personal?: Record<string, string> | undefined;
2590
2810
  } | undefined;
@@ -2617,12 +2837,13 @@ export declare const ConsentFlowTransactionsQueryValidator: z.ZodObject<{
2617
2837
  anonymize?: boolean | undefined;
2618
2838
  credentials?: {
2619
2839
  categories?: Record<string, {
2620
- shareAll?: boolean | undefined;
2621
2840
  sharing?: boolean | undefined;
2622
2841
  shared?: string[] | undefined;
2842
+ shareAll?: boolean | undefined;
2843
+ shareUntil?: string | undefined;
2623
2844
  } | undefined> | undefined;
2624
- shareAll?: boolean | undefined;
2625
2845
  sharing?: boolean | undefined;
2846
+ shareAll?: boolean | undefined;
2626
2847
  } | undefined;
2627
2848
  personal?: Record<string, string> | undefined;
2628
2849
  } | undefined;
@@ -2650,42 +2871,48 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
2650
2871
  sharing: z.ZodOptional<z.ZodBoolean>;
2651
2872
  shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2652
2873
  shareAll: z.ZodOptional<z.ZodBoolean>;
2874
+ shareUntil: z.ZodOptional<z.ZodString>;
2653
2875
  }, "strip", z.ZodTypeAny, {
2654
- shareAll?: boolean | undefined;
2655
2876
  sharing?: boolean | undefined;
2656
2877
  shared?: string[] | undefined;
2657
- }, {
2658
2878
  shareAll?: boolean | undefined;
2879
+ shareUntil?: string | undefined;
2880
+ }, {
2659
2881
  sharing?: boolean | undefined;
2660
2882
  shared?: string[] | undefined;
2883
+ shareAll?: boolean | undefined;
2884
+ shareUntil?: string | undefined;
2661
2885
  }>>>;
2662
2886
  }, "strip", z.ZodTypeAny, {
2663
- shareAll?: boolean | undefined;
2664
2887
  sharing?: boolean | undefined;
2888
+ shareAll?: boolean | undefined;
2665
2889
  categories: Record<string, {
2666
- shareAll?: boolean | undefined;
2667
2890
  sharing?: boolean | undefined;
2668
2891
  shared?: string[] | undefined;
2892
+ shareAll?: boolean | undefined;
2893
+ shareUntil?: string | undefined;
2669
2894
  }>;
2670
2895
  }, {
2671
2896
  categories?: Record<string, {
2672
- shareAll?: boolean | undefined;
2673
2897
  sharing?: boolean | undefined;
2674
2898
  shared?: string[] | undefined;
2899
+ shareAll?: boolean | undefined;
2900
+ shareUntil?: string | undefined;
2675
2901
  }> | undefined;
2676
- shareAll?: boolean | undefined;
2677
2902
  sharing?: boolean | undefined;
2903
+ shareAll?: boolean | undefined;
2678
2904
  }>>;
2679
2905
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
2680
2906
  }, "strip", z.ZodTypeAny, {
2681
2907
  anonymize?: boolean | undefined;
2682
2908
  credentials: {
2683
- shareAll?: boolean | undefined;
2684
2909
  sharing?: boolean | undefined;
2910
+ shareAll?: boolean | undefined;
2685
2911
  categories: Record<string, {
2686
- shareAll?: boolean | undefined;
2687
2912
  sharing?: boolean | undefined;
2688
2913
  shared?: string[] | undefined;
2914
+ shareAll?: boolean | undefined;
2915
+ shareUntil?: string | undefined;
2689
2916
  }>;
2690
2917
  };
2691
2918
  personal: Record<string, string>;
@@ -2693,12 +2920,13 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
2693
2920
  anonymize?: boolean | undefined;
2694
2921
  credentials?: {
2695
2922
  categories?: Record<string, {
2696
- shareAll?: boolean | undefined;
2697
2923
  sharing?: boolean | undefined;
2698
2924
  shared?: string[] | undefined;
2925
+ shareAll?: boolean | undefined;
2926
+ shareUntil?: string | undefined;
2699
2927
  }> | undefined;
2700
- shareAll?: boolean | undefined;
2701
2928
  sharing?: boolean | undefined;
2929
+ shareAll?: boolean | undefined;
2702
2930
  } | undefined;
2703
2931
  personal?: Record<string, string> | undefined;
2704
2932
  }>>;
@@ -2726,12 +2954,13 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
2726
2954
  read: {
2727
2955
  anonymize?: boolean | undefined;
2728
2956
  credentials: {
2729
- shareAll?: boolean | undefined;
2730
2957
  sharing?: boolean | undefined;
2958
+ shareAll?: boolean | undefined;
2731
2959
  categories: Record<string, {
2732
- shareAll?: boolean | undefined;
2733
2960
  sharing?: boolean | undefined;
2734
2961
  shared?: string[] | undefined;
2962
+ shareAll?: boolean | undefined;
2963
+ shareUntil?: string | undefined;
2735
2964
  }>;
2736
2965
  };
2737
2966
  personal: Record<string, string>;
@@ -2747,12 +2976,13 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
2747
2976
  anonymize?: boolean | undefined;
2748
2977
  credentials?: {
2749
2978
  categories?: Record<string, {
2750
- shareAll?: boolean | undefined;
2751
2979
  sharing?: boolean | undefined;
2752
2980
  shared?: string[] | undefined;
2981
+ shareAll?: boolean | undefined;
2982
+ shareUntil?: string | undefined;
2753
2983
  }> | undefined;
2754
- shareAll?: boolean | undefined;
2755
2984
  sharing?: boolean | undefined;
2985
+ shareAll?: boolean | undefined;
2756
2986
  } | undefined;
2757
2987
  personal?: Record<string, string> | undefined;
2758
2988
  } | undefined;
@@ -2773,12 +3003,13 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
2773
3003
  read: {
2774
3004
  anonymize?: boolean | undefined;
2775
3005
  credentials: {
2776
- shareAll?: boolean | undefined;
2777
3006
  sharing?: boolean | undefined;
3007
+ shareAll?: boolean | undefined;
2778
3008
  categories: Record<string, {
2779
- shareAll?: boolean | undefined;
2780
3009
  sharing?: boolean | undefined;
2781
3010
  shared?: string[] | undefined;
3011
+ shareAll?: boolean | undefined;
3012
+ shareUntil?: string | undefined;
2782
3013
  }>;
2783
3014
  };
2784
3015
  personal: Record<string, string>;
@@ -2801,12 +3032,13 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
2801
3032
  anonymize?: boolean | undefined;
2802
3033
  credentials?: {
2803
3034
  categories?: Record<string, {
2804
- shareAll?: boolean | undefined;
2805
3035
  sharing?: boolean | undefined;
2806
3036
  shared?: string[] | undefined;
3037
+ shareAll?: boolean | undefined;
3038
+ shareUntil?: string | undefined;
2807
3039
  }> | undefined;
2808
- shareAll?: boolean | undefined;
2809
3040
  sharing?: boolean | undefined;
3041
+ shareAll?: boolean | undefined;
2810
3042
  } | undefined;
2811
3043
  personal?: Record<string, string> | undefined;
2812
3044
  } | undefined;
@@ -2839,42 +3071,48 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
2839
3071
  sharing: z.ZodOptional<z.ZodBoolean>;
2840
3072
  shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2841
3073
  shareAll: z.ZodOptional<z.ZodBoolean>;
3074
+ shareUntil: z.ZodOptional<z.ZodString>;
2842
3075
  }, "strip", z.ZodTypeAny, {
2843
- shareAll?: boolean | undefined;
2844
3076
  sharing?: boolean | undefined;
2845
3077
  shared?: string[] | undefined;
2846
- }, {
2847
3078
  shareAll?: boolean | undefined;
3079
+ shareUntil?: string | undefined;
3080
+ }, {
2848
3081
  sharing?: boolean | undefined;
2849
3082
  shared?: string[] | undefined;
3083
+ shareAll?: boolean | undefined;
3084
+ shareUntil?: string | undefined;
2850
3085
  }>>>;
2851
3086
  }, "strip", z.ZodTypeAny, {
2852
- shareAll?: boolean | undefined;
2853
3087
  sharing?: boolean | undefined;
3088
+ shareAll?: boolean | undefined;
2854
3089
  categories: Record<string, {
2855
- shareAll?: boolean | undefined;
2856
3090
  sharing?: boolean | undefined;
2857
3091
  shared?: string[] | undefined;
3092
+ shareAll?: boolean | undefined;
3093
+ shareUntil?: string | undefined;
2858
3094
  }>;
2859
3095
  }, {
2860
3096
  categories?: Record<string, {
2861
- shareAll?: boolean | undefined;
2862
3097
  sharing?: boolean | undefined;
2863
3098
  shared?: string[] | undefined;
3099
+ shareAll?: boolean | undefined;
3100
+ shareUntil?: string | undefined;
2864
3101
  }> | undefined;
2865
- shareAll?: boolean | undefined;
2866
3102
  sharing?: boolean | undefined;
3103
+ shareAll?: boolean | undefined;
2867
3104
  }>>;
2868
3105
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
2869
3106
  }, "strip", z.ZodTypeAny, {
2870
3107
  anonymize?: boolean | undefined;
2871
3108
  credentials: {
2872
- shareAll?: boolean | undefined;
2873
3109
  sharing?: boolean | undefined;
3110
+ shareAll?: boolean | undefined;
2874
3111
  categories: Record<string, {
2875
- shareAll?: boolean | undefined;
2876
3112
  sharing?: boolean | undefined;
2877
3113
  shared?: string[] | undefined;
3114
+ shareAll?: boolean | undefined;
3115
+ shareUntil?: string | undefined;
2878
3116
  }>;
2879
3117
  };
2880
3118
  personal: Record<string, string>;
@@ -2882,12 +3120,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
2882
3120
  anonymize?: boolean | undefined;
2883
3121
  credentials?: {
2884
3122
  categories?: Record<string, {
2885
- shareAll?: boolean | undefined;
2886
3123
  sharing?: boolean | undefined;
2887
3124
  shared?: string[] | undefined;
3125
+ shareAll?: boolean | undefined;
3126
+ shareUntil?: string | undefined;
2888
3127
  }> | undefined;
2889
- shareAll?: boolean | undefined;
2890
3128
  sharing?: boolean | undefined;
3129
+ shareAll?: boolean | undefined;
2891
3130
  } | undefined;
2892
3131
  personal?: Record<string, string> | undefined;
2893
3132
  }>>;
@@ -2915,12 +3154,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
2915
3154
  read: {
2916
3155
  anonymize?: boolean | undefined;
2917
3156
  credentials: {
2918
- shareAll?: boolean | undefined;
2919
3157
  sharing?: boolean | undefined;
3158
+ shareAll?: boolean | undefined;
2920
3159
  categories: Record<string, {
2921
- shareAll?: boolean | undefined;
2922
3160
  sharing?: boolean | undefined;
2923
3161
  shared?: string[] | undefined;
3162
+ shareAll?: boolean | undefined;
3163
+ shareUntil?: string | undefined;
2924
3164
  }>;
2925
3165
  };
2926
3166
  personal: Record<string, string>;
@@ -2936,12 +3176,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
2936
3176
  anonymize?: boolean | undefined;
2937
3177
  credentials?: {
2938
3178
  categories?: Record<string, {
2939
- shareAll?: boolean | undefined;
2940
3179
  sharing?: boolean | undefined;
2941
3180
  shared?: string[] | undefined;
3181
+ shareAll?: boolean | undefined;
3182
+ shareUntil?: string | undefined;
2942
3183
  }> | undefined;
2943
- shareAll?: boolean | undefined;
2944
3184
  sharing?: boolean | undefined;
3185
+ shareAll?: boolean | undefined;
2945
3186
  } | undefined;
2946
3187
  personal?: Record<string, string> | undefined;
2947
3188
  } | undefined;
@@ -2962,12 +3203,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
2962
3203
  read: {
2963
3204
  anonymize?: boolean | undefined;
2964
3205
  credentials: {
2965
- shareAll?: boolean | undefined;
2966
3206
  sharing?: boolean | undefined;
3207
+ shareAll?: boolean | undefined;
2967
3208
  categories: Record<string, {
2968
- shareAll?: boolean | undefined;
2969
3209
  sharing?: boolean | undefined;
2970
3210
  shared?: string[] | undefined;
3211
+ shareAll?: boolean | undefined;
3212
+ shareUntil?: string | undefined;
2971
3213
  }>;
2972
3214
  };
2973
3215
  personal: Record<string, string>;
@@ -2990,12 +3232,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
2990
3232
  anonymize?: boolean | undefined;
2991
3233
  credentials?: {
2992
3234
  categories?: Record<string, {
2993
- shareAll?: boolean | undefined;
2994
3235
  sharing?: boolean | undefined;
2995
3236
  shared?: string[] | undefined;
3237
+ shareAll?: boolean | undefined;
3238
+ shareUntil?: string | undefined;
2996
3239
  }> | undefined;
2997
- shareAll?: boolean | undefined;
2998
3240
  sharing?: boolean | undefined;
3241
+ shareAll?: boolean | undefined;
2999
3242
  } | undefined;
3000
3243
  personal?: Record<string, string> | undefined;
3001
3244
  } | undefined;
@@ -3020,12 +3263,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
3020
3263
  read: {
3021
3264
  anonymize?: boolean | undefined;
3022
3265
  credentials: {
3023
- shareAll?: boolean | undefined;
3024
3266
  sharing?: boolean | undefined;
3267
+ shareAll?: boolean | undefined;
3025
3268
  categories: Record<string, {
3026
- shareAll?: boolean | undefined;
3027
3269
  sharing?: boolean | undefined;
3028
3270
  shared?: string[] | undefined;
3271
+ shareAll?: boolean | undefined;
3272
+ shareUntil?: string | undefined;
3029
3273
  }>;
3030
3274
  };
3031
3275
  personal: Record<string, string>;
@@ -3052,12 +3296,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
3052
3296
  anonymize?: boolean | undefined;
3053
3297
  credentials?: {
3054
3298
  categories?: Record<string, {
3055
- shareAll?: boolean | undefined;
3056
3299
  sharing?: boolean | undefined;
3057
3300
  shared?: string[] | undefined;
3301
+ shareAll?: boolean | undefined;
3302
+ shareUntil?: string | undefined;
3058
3303
  }> | undefined;
3059
- shareAll?: boolean | undefined;
3060
3304
  sharing?: boolean | undefined;
3305
+ shareAll?: boolean | undefined;
3061
3306
  } | undefined;
3062
3307
  personal?: Record<string, string> | undefined;
3063
3308
  } | undefined;
@@ -3074,4 +3319,795 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
3074
3319
  }[];
3075
3320
  }>;
3076
3321
  export type PaginatedConsentFlowTransactions = z.infer<typeof PaginatedConsentFlowTransactionsValidator>;
3322
+ export declare const LCNNotificationTypeEnumValidator: z.ZodEnum<["CONNECTION_REQUEST", "CONNECTION_ACCEPTED", "CREDENTIAL_RECEIVED", "CREDENTIAL_ACCEPTED", "BOOST_RECEIVED", "BOOST_ACCEPTED", "PRESENTATION_REQUEST", "PRESENTATION_RECEIVED", "CONSENT_FLOW_TRANSACTION"]>;
3323
+ export type LCNNotificationTypeEnum = z.infer<typeof LCNNotificationTypeEnumValidator>;
3324
+ export declare const LCNNotificationMessageValidator: z.ZodObject<{
3325
+ title: z.ZodOptional<z.ZodString>;
3326
+ body: z.ZodOptional<z.ZodString>;
3327
+ }, "strip", z.ZodTypeAny, {
3328
+ title?: string | undefined;
3329
+ body?: string | undefined;
3330
+ }, {
3331
+ title?: string | undefined;
3332
+ body?: string | undefined;
3333
+ }>;
3334
+ export type LCNNotificationMessage = z.infer<typeof LCNNotificationMessageValidator>;
3335
+ export declare const LCNNotificationDataValidator: z.ZodObject<{
3336
+ vcUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3337
+ vpUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3338
+ transaction: z.ZodOptional<z.ZodObject<{
3339
+ expiresAt: z.ZodOptional<z.ZodString>;
3340
+ oneTime: z.ZodOptional<z.ZodBoolean>;
3341
+ terms: z.ZodOptional<z.ZodObject<{
3342
+ read: z.ZodDefault<z.ZodObject<{
3343
+ anonymize: z.ZodOptional<z.ZodBoolean>;
3344
+ credentials: z.ZodDefault<z.ZodObject<{
3345
+ shareAll: z.ZodOptional<z.ZodBoolean>;
3346
+ sharing: z.ZodOptional<z.ZodBoolean>;
3347
+ categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
3348
+ sharing: z.ZodOptional<z.ZodBoolean>;
3349
+ shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3350
+ shareAll: z.ZodOptional<z.ZodBoolean>;
3351
+ shareUntil: z.ZodOptional<z.ZodString>;
3352
+ }, "strip", z.ZodTypeAny, {
3353
+ sharing?: boolean | undefined;
3354
+ shared?: string[] | undefined;
3355
+ shareAll?: boolean | undefined;
3356
+ shareUntil?: string | undefined;
3357
+ }, {
3358
+ sharing?: boolean | undefined;
3359
+ shared?: string[] | undefined;
3360
+ shareAll?: boolean | undefined;
3361
+ shareUntil?: string | undefined;
3362
+ }>>>;
3363
+ }, "strip", z.ZodTypeAny, {
3364
+ sharing?: boolean | undefined;
3365
+ shareAll?: boolean | undefined;
3366
+ categories: Record<string, {
3367
+ sharing?: boolean | undefined;
3368
+ shared?: string[] | undefined;
3369
+ shareAll?: boolean | undefined;
3370
+ shareUntil?: string | undefined;
3371
+ }>;
3372
+ }, {
3373
+ categories?: Record<string, {
3374
+ sharing?: boolean | undefined;
3375
+ shared?: string[] | undefined;
3376
+ shareAll?: boolean | undefined;
3377
+ shareUntil?: string | undefined;
3378
+ }> | undefined;
3379
+ sharing?: boolean | undefined;
3380
+ shareAll?: boolean | undefined;
3381
+ }>>;
3382
+ personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
3383
+ }, "strip", z.ZodTypeAny, {
3384
+ anonymize?: boolean | undefined;
3385
+ credentials: {
3386
+ sharing?: boolean | undefined;
3387
+ shareAll?: boolean | undefined;
3388
+ categories: Record<string, {
3389
+ sharing?: boolean | undefined;
3390
+ shared?: string[] | undefined;
3391
+ shareAll?: boolean | undefined;
3392
+ shareUntil?: string | undefined;
3393
+ }>;
3394
+ };
3395
+ personal: Record<string, string>;
3396
+ }, {
3397
+ anonymize?: boolean | undefined;
3398
+ credentials?: {
3399
+ categories?: Record<string, {
3400
+ sharing?: boolean | undefined;
3401
+ shared?: string[] | undefined;
3402
+ shareAll?: boolean | undefined;
3403
+ shareUntil?: string | undefined;
3404
+ }> | undefined;
3405
+ sharing?: boolean | undefined;
3406
+ shareAll?: boolean | undefined;
3407
+ } | undefined;
3408
+ personal?: Record<string, string> | undefined;
3409
+ }>>;
3410
+ write: z.ZodDefault<z.ZodObject<{
3411
+ credentials: z.ZodDefault<z.ZodObject<{
3412
+ categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
3413
+ }, "strip", z.ZodTypeAny, {
3414
+ categories: Record<string, boolean>;
3415
+ }, {
3416
+ categories?: Record<string, boolean> | undefined;
3417
+ }>>;
3418
+ personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
3419
+ }, "strip", z.ZodTypeAny, {
3420
+ credentials: {
3421
+ categories: Record<string, boolean>;
3422
+ };
3423
+ personal: Record<string, boolean>;
3424
+ }, {
3425
+ credentials?: {
3426
+ categories?: Record<string, boolean> | undefined;
3427
+ } | undefined;
3428
+ personal?: Record<string, boolean> | undefined;
3429
+ }>>;
3430
+ }, "strip", z.ZodTypeAny, {
3431
+ read: {
3432
+ anonymize?: boolean | undefined;
3433
+ credentials: {
3434
+ sharing?: boolean | undefined;
3435
+ shareAll?: boolean | undefined;
3436
+ categories: Record<string, {
3437
+ sharing?: boolean | undefined;
3438
+ shared?: string[] | undefined;
3439
+ shareAll?: boolean | undefined;
3440
+ shareUntil?: string | undefined;
3441
+ }>;
3442
+ };
3443
+ personal: Record<string, string>;
3444
+ };
3445
+ write: {
3446
+ credentials: {
3447
+ categories: Record<string, boolean>;
3448
+ };
3449
+ personal: Record<string, boolean>;
3450
+ };
3451
+ }, {
3452
+ read?: {
3453
+ anonymize?: boolean | undefined;
3454
+ credentials?: {
3455
+ categories?: Record<string, {
3456
+ sharing?: boolean | undefined;
3457
+ shared?: string[] | undefined;
3458
+ shareAll?: boolean | undefined;
3459
+ shareUntil?: string | undefined;
3460
+ }> | undefined;
3461
+ sharing?: boolean | undefined;
3462
+ shareAll?: boolean | undefined;
3463
+ } | undefined;
3464
+ personal?: Record<string, string> | undefined;
3465
+ } | undefined;
3466
+ write?: {
3467
+ credentials?: {
3468
+ categories?: Record<string, boolean> | undefined;
3469
+ } | undefined;
3470
+ personal?: Record<string, boolean> | undefined;
3471
+ } | undefined;
3472
+ }>>;
3473
+ id: z.ZodString;
3474
+ action: z.ZodEnum<["consent", "update", "sync", "withdraw"]>;
3475
+ date: z.ZodString;
3476
+ }, "strip", z.ZodTypeAny, {
3477
+ expiresAt?: string | undefined;
3478
+ oneTime?: boolean | undefined;
3479
+ terms?: {
3480
+ read: {
3481
+ anonymize?: boolean | undefined;
3482
+ credentials: {
3483
+ sharing?: boolean | undefined;
3484
+ shareAll?: boolean | undefined;
3485
+ categories: Record<string, {
3486
+ sharing?: boolean | undefined;
3487
+ shared?: string[] | undefined;
3488
+ shareAll?: boolean | undefined;
3489
+ shareUntil?: string | undefined;
3490
+ }>;
3491
+ };
3492
+ personal: Record<string, string>;
3493
+ };
3494
+ write: {
3495
+ credentials: {
3496
+ categories: Record<string, boolean>;
3497
+ };
3498
+ personal: Record<string, boolean>;
3499
+ };
3500
+ } | undefined;
3501
+ date: string;
3502
+ id: string;
3503
+ action: "consent" | "update" | "sync" | "withdraw";
3504
+ }, {
3505
+ expiresAt?: string | undefined;
3506
+ oneTime?: boolean | undefined;
3507
+ terms?: {
3508
+ read?: {
3509
+ anonymize?: boolean | undefined;
3510
+ credentials?: {
3511
+ categories?: Record<string, {
3512
+ sharing?: boolean | undefined;
3513
+ shared?: string[] | undefined;
3514
+ shareAll?: boolean | undefined;
3515
+ shareUntil?: string | undefined;
3516
+ }> | undefined;
3517
+ sharing?: boolean | undefined;
3518
+ shareAll?: boolean | undefined;
3519
+ } | undefined;
3520
+ personal?: Record<string, string> | undefined;
3521
+ } | undefined;
3522
+ write?: {
3523
+ credentials?: {
3524
+ categories?: Record<string, boolean> | undefined;
3525
+ } | undefined;
3526
+ personal?: Record<string, boolean> | undefined;
3527
+ } | undefined;
3528
+ } | undefined;
3529
+ date: string;
3530
+ id: string;
3531
+ action: "consent" | "update" | "sync" | "withdraw";
3532
+ }>>;
3533
+ }, "strip", z.ZodTypeAny, {
3534
+ vcUris?: string[] | undefined;
3535
+ vpUris?: string[] | undefined;
3536
+ transaction?: {
3537
+ expiresAt?: string | undefined;
3538
+ oneTime?: boolean | undefined;
3539
+ terms?: {
3540
+ read: {
3541
+ anonymize?: boolean | undefined;
3542
+ credentials: {
3543
+ sharing?: boolean | undefined;
3544
+ shareAll?: boolean | undefined;
3545
+ categories: Record<string, {
3546
+ sharing?: boolean | undefined;
3547
+ shared?: string[] | undefined;
3548
+ shareAll?: boolean | undefined;
3549
+ shareUntil?: string | undefined;
3550
+ }>;
3551
+ };
3552
+ personal: Record<string, string>;
3553
+ };
3554
+ write: {
3555
+ credentials: {
3556
+ categories: Record<string, boolean>;
3557
+ };
3558
+ personal: Record<string, boolean>;
3559
+ };
3560
+ } | undefined;
3561
+ date: string;
3562
+ id: string;
3563
+ action: "consent" | "update" | "sync" | "withdraw";
3564
+ } | undefined;
3565
+ }, {
3566
+ vcUris?: string[] | undefined;
3567
+ vpUris?: string[] | undefined;
3568
+ transaction?: {
3569
+ expiresAt?: string | undefined;
3570
+ oneTime?: boolean | undefined;
3571
+ terms?: {
3572
+ read?: {
3573
+ anonymize?: boolean | undefined;
3574
+ credentials?: {
3575
+ categories?: Record<string, {
3576
+ sharing?: boolean | undefined;
3577
+ shared?: string[] | undefined;
3578
+ shareAll?: boolean | undefined;
3579
+ shareUntil?: string | undefined;
3580
+ }> | undefined;
3581
+ sharing?: boolean | undefined;
3582
+ shareAll?: boolean | undefined;
3583
+ } | undefined;
3584
+ personal?: Record<string, string> | undefined;
3585
+ } | undefined;
3586
+ write?: {
3587
+ credentials?: {
3588
+ categories?: Record<string, boolean> | undefined;
3589
+ } | undefined;
3590
+ personal?: Record<string, boolean> | undefined;
3591
+ } | undefined;
3592
+ } | undefined;
3593
+ date: string;
3594
+ id: string;
3595
+ action: "consent" | "update" | "sync" | "withdraw";
3596
+ } | undefined;
3597
+ }>;
3598
+ export type LCNNotificationData = z.infer<typeof LCNNotificationDataValidator>;
3599
+ export declare const LCNNotificationValidator: z.ZodObject<{
3600
+ type: z.ZodEnum<["CONNECTION_REQUEST", "CONNECTION_ACCEPTED", "CREDENTIAL_RECEIVED", "CREDENTIAL_ACCEPTED", "BOOST_RECEIVED", "BOOST_ACCEPTED", "PRESENTATION_REQUEST", "PRESENTATION_RECEIVED", "CONSENT_FLOW_TRANSACTION"]>;
3601
+ to: z.ZodIntersection<z.ZodObject<{
3602
+ profileId: z.ZodOptional<z.ZodString>;
3603
+ displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
3604
+ shortBio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
3605
+ bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
3606
+ did: z.ZodOptional<z.ZodString>;
3607
+ email: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3608
+ image: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3609
+ heroImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3610
+ websiteLink: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3611
+ isServiceProfile: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodBoolean>>>;
3612
+ type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3613
+ notificationsWebhook: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3614
+ }, "strip", z.ZodTypeAny, {
3615
+ type?: string | undefined;
3616
+ image?: string | undefined;
3617
+ email?: string | undefined;
3618
+ profileId?: string | undefined;
3619
+ displayName?: string | undefined;
3620
+ shortBio?: string | undefined;
3621
+ bio?: string | undefined;
3622
+ did?: string | undefined;
3623
+ heroImage?: string | undefined;
3624
+ websiteLink?: string | undefined;
3625
+ isServiceProfile?: boolean | undefined;
3626
+ notificationsWebhook?: string | undefined;
3627
+ }, {
3628
+ type?: string | undefined;
3629
+ image?: string | undefined;
3630
+ email?: string | undefined;
3631
+ profileId?: string | undefined;
3632
+ displayName?: string | undefined;
3633
+ shortBio?: string | undefined;
3634
+ bio?: string | undefined;
3635
+ did?: string | undefined;
3636
+ heroImage?: string | undefined;
3637
+ websiteLink?: string | undefined;
3638
+ isServiceProfile?: boolean | undefined;
3639
+ notificationsWebhook?: string | undefined;
3640
+ }>, z.ZodObject<{
3641
+ did: z.ZodString;
3642
+ }, "strip", z.ZodTypeAny, {
3643
+ did: string;
3644
+ }, {
3645
+ did: string;
3646
+ }>>;
3647
+ from: z.ZodIntersection<z.ZodObject<{
3648
+ profileId: z.ZodOptional<z.ZodString>;
3649
+ displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
3650
+ shortBio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
3651
+ bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
3652
+ did: z.ZodOptional<z.ZodString>;
3653
+ email: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3654
+ image: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3655
+ heroImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3656
+ websiteLink: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3657
+ isServiceProfile: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodBoolean>>>;
3658
+ type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3659
+ notificationsWebhook: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3660
+ }, "strip", z.ZodTypeAny, {
3661
+ type?: string | undefined;
3662
+ image?: string | undefined;
3663
+ email?: string | undefined;
3664
+ profileId?: string | undefined;
3665
+ displayName?: string | undefined;
3666
+ shortBio?: string | undefined;
3667
+ bio?: string | undefined;
3668
+ did?: string | undefined;
3669
+ heroImage?: string | undefined;
3670
+ websiteLink?: string | undefined;
3671
+ isServiceProfile?: boolean | undefined;
3672
+ notificationsWebhook?: string | undefined;
3673
+ }, {
3674
+ type?: string | undefined;
3675
+ image?: string | undefined;
3676
+ email?: string | undefined;
3677
+ profileId?: string | undefined;
3678
+ displayName?: string | undefined;
3679
+ shortBio?: string | undefined;
3680
+ bio?: string | undefined;
3681
+ did?: string | undefined;
3682
+ heroImage?: string | undefined;
3683
+ websiteLink?: string | undefined;
3684
+ isServiceProfile?: boolean | undefined;
3685
+ notificationsWebhook?: string | undefined;
3686
+ }>, z.ZodObject<{
3687
+ did: z.ZodString;
3688
+ }, "strip", z.ZodTypeAny, {
3689
+ did: string;
3690
+ }, {
3691
+ did: string;
3692
+ }>>;
3693
+ message: z.ZodOptional<z.ZodObject<{
3694
+ title: z.ZodOptional<z.ZodString>;
3695
+ body: z.ZodOptional<z.ZodString>;
3696
+ }, "strip", z.ZodTypeAny, {
3697
+ title?: string | undefined;
3698
+ body?: string | undefined;
3699
+ }, {
3700
+ title?: string | undefined;
3701
+ body?: string | undefined;
3702
+ }>>;
3703
+ data: z.ZodOptional<z.ZodObject<{
3704
+ vcUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3705
+ vpUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3706
+ transaction: z.ZodOptional<z.ZodObject<{
3707
+ expiresAt: z.ZodOptional<z.ZodString>;
3708
+ oneTime: z.ZodOptional<z.ZodBoolean>;
3709
+ terms: z.ZodOptional<z.ZodObject<{
3710
+ read: z.ZodDefault<z.ZodObject<{
3711
+ anonymize: z.ZodOptional<z.ZodBoolean>;
3712
+ credentials: z.ZodDefault<z.ZodObject<{
3713
+ shareAll: z.ZodOptional<z.ZodBoolean>;
3714
+ sharing: z.ZodOptional<z.ZodBoolean>;
3715
+ categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
3716
+ sharing: z.ZodOptional<z.ZodBoolean>;
3717
+ shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3718
+ shareAll: z.ZodOptional<z.ZodBoolean>;
3719
+ shareUntil: z.ZodOptional<z.ZodString>;
3720
+ }, "strip", z.ZodTypeAny, {
3721
+ sharing?: boolean | undefined;
3722
+ shared?: string[] | undefined;
3723
+ shareAll?: boolean | undefined;
3724
+ shareUntil?: string | undefined;
3725
+ }, {
3726
+ sharing?: boolean | undefined;
3727
+ shared?: string[] | undefined;
3728
+ shareAll?: boolean | undefined;
3729
+ shareUntil?: string | undefined;
3730
+ }>>>;
3731
+ }, "strip", z.ZodTypeAny, {
3732
+ sharing?: boolean | undefined;
3733
+ shareAll?: boolean | undefined;
3734
+ categories: Record<string, {
3735
+ sharing?: boolean | undefined;
3736
+ shared?: string[] | undefined;
3737
+ shareAll?: boolean | undefined;
3738
+ shareUntil?: string | undefined;
3739
+ }>;
3740
+ }, {
3741
+ categories?: Record<string, {
3742
+ sharing?: boolean | undefined;
3743
+ shared?: string[] | undefined;
3744
+ shareAll?: boolean | undefined;
3745
+ shareUntil?: string | undefined;
3746
+ }> | undefined;
3747
+ sharing?: boolean | undefined;
3748
+ shareAll?: boolean | undefined;
3749
+ }>>;
3750
+ personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
3751
+ }, "strip", z.ZodTypeAny, {
3752
+ anonymize?: boolean | undefined;
3753
+ credentials: {
3754
+ sharing?: boolean | undefined;
3755
+ shareAll?: boolean | undefined;
3756
+ categories: Record<string, {
3757
+ sharing?: boolean | undefined;
3758
+ shared?: string[] | undefined;
3759
+ shareAll?: boolean | undefined;
3760
+ shareUntil?: string | undefined;
3761
+ }>;
3762
+ };
3763
+ personal: Record<string, string>;
3764
+ }, {
3765
+ anonymize?: boolean | undefined;
3766
+ credentials?: {
3767
+ categories?: Record<string, {
3768
+ sharing?: boolean | undefined;
3769
+ shared?: string[] | undefined;
3770
+ shareAll?: boolean | undefined;
3771
+ shareUntil?: string | undefined;
3772
+ }> | undefined;
3773
+ sharing?: boolean | undefined;
3774
+ shareAll?: boolean | undefined;
3775
+ } | undefined;
3776
+ personal?: Record<string, string> | undefined;
3777
+ }>>;
3778
+ write: z.ZodDefault<z.ZodObject<{
3779
+ credentials: z.ZodDefault<z.ZodObject<{
3780
+ categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
3781
+ }, "strip", z.ZodTypeAny, {
3782
+ categories: Record<string, boolean>;
3783
+ }, {
3784
+ categories?: Record<string, boolean> | undefined;
3785
+ }>>;
3786
+ personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
3787
+ }, "strip", z.ZodTypeAny, {
3788
+ credentials: {
3789
+ categories: Record<string, boolean>;
3790
+ };
3791
+ personal: Record<string, boolean>;
3792
+ }, {
3793
+ credentials?: {
3794
+ categories?: Record<string, boolean> | undefined;
3795
+ } | undefined;
3796
+ personal?: Record<string, boolean> | undefined;
3797
+ }>>;
3798
+ }, "strip", z.ZodTypeAny, {
3799
+ read: {
3800
+ anonymize?: boolean | undefined;
3801
+ credentials: {
3802
+ sharing?: boolean | undefined;
3803
+ shareAll?: boolean | undefined;
3804
+ categories: Record<string, {
3805
+ sharing?: boolean | undefined;
3806
+ shared?: string[] | undefined;
3807
+ shareAll?: boolean | undefined;
3808
+ shareUntil?: string | undefined;
3809
+ }>;
3810
+ };
3811
+ personal: Record<string, string>;
3812
+ };
3813
+ write: {
3814
+ credentials: {
3815
+ categories: Record<string, boolean>;
3816
+ };
3817
+ personal: Record<string, boolean>;
3818
+ };
3819
+ }, {
3820
+ read?: {
3821
+ anonymize?: boolean | undefined;
3822
+ credentials?: {
3823
+ categories?: Record<string, {
3824
+ sharing?: boolean | undefined;
3825
+ shared?: string[] | undefined;
3826
+ shareAll?: boolean | undefined;
3827
+ shareUntil?: string | undefined;
3828
+ }> | undefined;
3829
+ sharing?: boolean | undefined;
3830
+ shareAll?: boolean | undefined;
3831
+ } | undefined;
3832
+ personal?: Record<string, string> | undefined;
3833
+ } | undefined;
3834
+ write?: {
3835
+ credentials?: {
3836
+ categories?: Record<string, boolean> | undefined;
3837
+ } | undefined;
3838
+ personal?: Record<string, boolean> | undefined;
3839
+ } | undefined;
3840
+ }>>;
3841
+ id: z.ZodString;
3842
+ action: z.ZodEnum<["consent", "update", "sync", "withdraw"]>;
3843
+ date: z.ZodString;
3844
+ }, "strip", z.ZodTypeAny, {
3845
+ expiresAt?: string | undefined;
3846
+ oneTime?: boolean | undefined;
3847
+ terms?: {
3848
+ read: {
3849
+ anonymize?: boolean | undefined;
3850
+ credentials: {
3851
+ sharing?: boolean | undefined;
3852
+ shareAll?: boolean | undefined;
3853
+ categories: Record<string, {
3854
+ sharing?: boolean | undefined;
3855
+ shared?: string[] | undefined;
3856
+ shareAll?: boolean | undefined;
3857
+ shareUntil?: string | undefined;
3858
+ }>;
3859
+ };
3860
+ personal: Record<string, string>;
3861
+ };
3862
+ write: {
3863
+ credentials: {
3864
+ categories: Record<string, boolean>;
3865
+ };
3866
+ personal: Record<string, boolean>;
3867
+ };
3868
+ } | undefined;
3869
+ date: string;
3870
+ id: string;
3871
+ action: "consent" | "update" | "sync" | "withdraw";
3872
+ }, {
3873
+ expiresAt?: string | undefined;
3874
+ oneTime?: boolean | undefined;
3875
+ terms?: {
3876
+ read?: {
3877
+ anonymize?: boolean | undefined;
3878
+ credentials?: {
3879
+ categories?: Record<string, {
3880
+ sharing?: boolean | undefined;
3881
+ shared?: string[] | undefined;
3882
+ shareAll?: boolean | undefined;
3883
+ shareUntil?: string | undefined;
3884
+ }> | undefined;
3885
+ sharing?: boolean | undefined;
3886
+ shareAll?: boolean | undefined;
3887
+ } | undefined;
3888
+ personal?: Record<string, string> | undefined;
3889
+ } | undefined;
3890
+ write?: {
3891
+ credentials?: {
3892
+ categories?: Record<string, boolean> | undefined;
3893
+ } | undefined;
3894
+ personal?: Record<string, boolean> | undefined;
3895
+ } | undefined;
3896
+ } | undefined;
3897
+ date: string;
3898
+ id: string;
3899
+ action: "consent" | "update" | "sync" | "withdraw";
3900
+ }>>;
3901
+ }, "strip", z.ZodTypeAny, {
3902
+ vcUris?: string[] | undefined;
3903
+ vpUris?: string[] | undefined;
3904
+ transaction?: {
3905
+ expiresAt?: string | undefined;
3906
+ oneTime?: boolean | undefined;
3907
+ terms?: {
3908
+ read: {
3909
+ anonymize?: boolean | undefined;
3910
+ credentials: {
3911
+ sharing?: boolean | undefined;
3912
+ shareAll?: boolean | undefined;
3913
+ categories: Record<string, {
3914
+ sharing?: boolean | undefined;
3915
+ shared?: string[] | undefined;
3916
+ shareAll?: boolean | undefined;
3917
+ shareUntil?: string | undefined;
3918
+ }>;
3919
+ };
3920
+ personal: Record<string, string>;
3921
+ };
3922
+ write: {
3923
+ credentials: {
3924
+ categories: Record<string, boolean>;
3925
+ };
3926
+ personal: Record<string, boolean>;
3927
+ };
3928
+ } | undefined;
3929
+ date: string;
3930
+ id: string;
3931
+ action: "consent" | "update" | "sync" | "withdraw";
3932
+ } | undefined;
3933
+ }, {
3934
+ vcUris?: string[] | undefined;
3935
+ vpUris?: string[] | undefined;
3936
+ transaction?: {
3937
+ expiresAt?: string | undefined;
3938
+ oneTime?: boolean | undefined;
3939
+ terms?: {
3940
+ read?: {
3941
+ anonymize?: boolean | undefined;
3942
+ credentials?: {
3943
+ categories?: Record<string, {
3944
+ sharing?: boolean | undefined;
3945
+ shared?: string[] | undefined;
3946
+ shareAll?: boolean | undefined;
3947
+ shareUntil?: string | undefined;
3948
+ }> | undefined;
3949
+ sharing?: boolean | undefined;
3950
+ shareAll?: boolean | undefined;
3951
+ } | undefined;
3952
+ personal?: Record<string, string> | undefined;
3953
+ } | undefined;
3954
+ write?: {
3955
+ credentials?: {
3956
+ categories?: Record<string, boolean> | undefined;
3957
+ } | undefined;
3958
+ personal?: Record<string, boolean> | undefined;
3959
+ } | undefined;
3960
+ } | undefined;
3961
+ date: string;
3962
+ id: string;
3963
+ action: "consent" | "update" | "sync" | "withdraw";
3964
+ } | undefined;
3965
+ }>>;
3966
+ sent: z.ZodOptional<z.ZodString>;
3967
+ }, "strip", z.ZodTypeAny, {
3968
+ message?: {
3969
+ title?: string | undefined;
3970
+ body?: string | undefined;
3971
+ } | undefined;
3972
+ data?: {
3973
+ vcUris?: string[] | undefined;
3974
+ vpUris?: string[] | undefined;
3975
+ transaction?: {
3976
+ expiresAt?: string | undefined;
3977
+ oneTime?: boolean | undefined;
3978
+ terms?: {
3979
+ read: {
3980
+ anonymize?: boolean | undefined;
3981
+ credentials: {
3982
+ sharing?: boolean | undefined;
3983
+ shareAll?: boolean | undefined;
3984
+ categories: Record<string, {
3985
+ sharing?: boolean | undefined;
3986
+ shared?: string[] | undefined;
3987
+ shareAll?: boolean | undefined;
3988
+ shareUntil?: string | undefined;
3989
+ }>;
3990
+ };
3991
+ personal: Record<string, string>;
3992
+ };
3993
+ write: {
3994
+ credentials: {
3995
+ categories: Record<string, boolean>;
3996
+ };
3997
+ personal: Record<string, boolean>;
3998
+ };
3999
+ } | undefined;
4000
+ date: string;
4001
+ id: string;
4002
+ action: "consent" | "update" | "sync" | "withdraw";
4003
+ } | undefined;
4004
+ } | undefined;
4005
+ sent?: string | undefined;
4006
+ type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION";
4007
+ to: {
4008
+ type?: string | undefined;
4009
+ image?: string | undefined;
4010
+ email?: string | undefined;
4011
+ profileId?: string | undefined;
4012
+ displayName?: string | undefined;
4013
+ shortBio?: string | undefined;
4014
+ bio?: string | undefined;
4015
+ did?: string | undefined;
4016
+ heroImage?: string | undefined;
4017
+ websiteLink?: string | undefined;
4018
+ isServiceProfile?: boolean | undefined;
4019
+ notificationsWebhook?: string | undefined;
4020
+ } & {
4021
+ did: string;
4022
+ };
4023
+ from: {
4024
+ type?: string | undefined;
4025
+ image?: string | undefined;
4026
+ email?: string | undefined;
4027
+ profileId?: string | undefined;
4028
+ displayName?: string | undefined;
4029
+ shortBio?: string | undefined;
4030
+ bio?: string | undefined;
4031
+ did?: string | undefined;
4032
+ heroImage?: string | undefined;
4033
+ websiteLink?: string | undefined;
4034
+ isServiceProfile?: boolean | undefined;
4035
+ notificationsWebhook?: string | undefined;
4036
+ } & {
4037
+ did: string;
4038
+ };
4039
+ }, {
4040
+ message?: {
4041
+ title?: string | undefined;
4042
+ body?: string | undefined;
4043
+ } | undefined;
4044
+ data?: {
4045
+ vcUris?: string[] | undefined;
4046
+ vpUris?: string[] | undefined;
4047
+ transaction?: {
4048
+ expiresAt?: string | undefined;
4049
+ oneTime?: boolean | undefined;
4050
+ terms?: {
4051
+ read?: {
4052
+ anonymize?: boolean | undefined;
4053
+ credentials?: {
4054
+ categories?: Record<string, {
4055
+ sharing?: boolean | undefined;
4056
+ shared?: string[] | undefined;
4057
+ shareAll?: boolean | undefined;
4058
+ shareUntil?: string | undefined;
4059
+ }> | undefined;
4060
+ sharing?: boolean | undefined;
4061
+ shareAll?: boolean | undefined;
4062
+ } | undefined;
4063
+ personal?: Record<string, string> | undefined;
4064
+ } | undefined;
4065
+ write?: {
4066
+ credentials?: {
4067
+ categories?: Record<string, boolean> | undefined;
4068
+ } | undefined;
4069
+ personal?: Record<string, boolean> | undefined;
4070
+ } | undefined;
4071
+ } | undefined;
4072
+ date: string;
4073
+ id: string;
4074
+ action: "consent" | "update" | "sync" | "withdraw";
4075
+ } | undefined;
4076
+ } | undefined;
4077
+ sent?: string | undefined;
4078
+ type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION";
4079
+ to: {
4080
+ type?: string | undefined;
4081
+ image?: string | undefined;
4082
+ email?: string | undefined;
4083
+ profileId?: string | undefined;
4084
+ displayName?: string | undefined;
4085
+ shortBio?: string | undefined;
4086
+ bio?: string | undefined;
4087
+ did?: string | undefined;
4088
+ heroImage?: string | undefined;
4089
+ websiteLink?: string | undefined;
4090
+ isServiceProfile?: boolean | undefined;
4091
+ notificationsWebhook?: string | undefined;
4092
+ } & {
4093
+ did: string;
4094
+ };
4095
+ from: {
4096
+ type?: string | undefined;
4097
+ image?: string | undefined;
4098
+ email?: string | undefined;
4099
+ profileId?: string | undefined;
4100
+ displayName?: string | undefined;
4101
+ shortBio?: string | undefined;
4102
+ bio?: string | undefined;
4103
+ did?: string | undefined;
4104
+ heroImage?: string | undefined;
4105
+ websiteLink?: string | undefined;
4106
+ isServiceProfile?: boolean | undefined;
4107
+ notificationsWebhook?: string | undefined;
4108
+ } & {
4109
+ did: string;
4110
+ };
4111
+ }>;
4112
+ export type LCNNotification = z.infer<typeof LCNNotificationValidator>;
3077
4113
  //# sourceMappingURL=lcn.d.ts.map