@learncard/types 5.5.0 → 5.5.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/did.d.ts +900 -0
- package/dist/did.d.ts.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/lcn.d.ts +1155 -295
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +114 -71
- package/dist/types.cjs.development.js.map +3 -3
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +4 -4
- package/dist/types.esm.js +341 -295
- package/dist/types.esm.js.map +4 -4
- package/package.json +1 -1
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;
|
@@ -139,26 +171,38 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
139
171
|
to: z.ZodObject<{
|
140
172
|
profileId: z.ZodString;
|
141
173
|
displayName: z.ZodDefault<z.ZodString>;
|
174
|
+
shortBio: z.ZodDefault<z.ZodString>;
|
142
175
|
bio: z.ZodDefault<z.ZodString>;
|
143
176
|
did: z.ZodString;
|
144
177
|
email: z.ZodOptional<z.ZodString>;
|
145
178
|
image: z.ZodOptional<z.ZodString>;
|
179
|
+
heroImage: z.ZodOptional<z.ZodString>;
|
180
|
+
websiteLink: z.ZodOptional<z.ZodString>;
|
146
181
|
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
182
|
+
type: z.ZodOptional<z.ZodString>;
|
147
183
|
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
148
184
|
}, "strip", z.ZodTypeAny, {
|
185
|
+
type?: string | undefined;
|
149
186
|
image?: string | undefined;
|
150
187
|
email?: string | undefined;
|
188
|
+
heroImage?: string | undefined;
|
189
|
+
websiteLink?: string | undefined;
|
151
190
|
isServiceProfile?: boolean | undefined;
|
152
191
|
notificationsWebhook?: string | undefined;
|
153
192
|
profileId: string;
|
154
193
|
displayName: string;
|
194
|
+
shortBio: string;
|
155
195
|
bio: string;
|
156
196
|
did: string;
|
157
197
|
}, {
|
198
|
+
type?: string | undefined;
|
158
199
|
image?: string | undefined;
|
159
200
|
email?: string | undefined;
|
160
201
|
displayName?: string | undefined;
|
202
|
+
shortBio?: string | undefined;
|
161
203
|
bio?: string | undefined;
|
204
|
+
heroImage?: string | undefined;
|
205
|
+
websiteLink?: string | undefined;
|
162
206
|
isServiceProfile?: boolean | undefined;
|
163
207
|
notificationsWebhook?: string | undefined;
|
164
208
|
profileId: string;
|
@@ -169,12 +213,16 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
169
213
|
}, "strip", z.ZodTypeAny, {
|
170
214
|
received?: string | undefined;
|
171
215
|
to: {
|
216
|
+
type?: string | undefined;
|
172
217
|
image?: string | undefined;
|
173
218
|
email?: string | undefined;
|
219
|
+
heroImage?: string | undefined;
|
220
|
+
websiteLink?: string | undefined;
|
174
221
|
isServiceProfile?: boolean | undefined;
|
175
222
|
notificationsWebhook?: string | undefined;
|
176
223
|
profileId: string;
|
177
224
|
displayName: string;
|
225
|
+
shortBio: string;
|
178
226
|
bio: string;
|
179
227
|
did: string;
|
180
228
|
};
|
@@ -182,10 +230,14 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
182
230
|
}, {
|
183
231
|
received?: string | undefined;
|
184
232
|
to: {
|
233
|
+
type?: string | undefined;
|
185
234
|
image?: string | undefined;
|
186
235
|
email?: string | undefined;
|
187
236
|
displayName?: string | undefined;
|
237
|
+
shortBio?: string | undefined;
|
188
238
|
bio?: string | undefined;
|
239
|
+
heroImage?: string | undefined;
|
240
|
+
websiteLink?: string | undefined;
|
189
241
|
isServiceProfile?: boolean | undefined;
|
190
242
|
notificationsWebhook?: string | undefined;
|
191
243
|
profileId: string;
|
@@ -194,193 +246,6 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
194
246
|
from: string;
|
195
247
|
}>;
|
196
248
|
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>;
|
202
|
-
}, "strip", z.ZodTypeAny, {
|
203
|
-
title?: string | undefined;
|
204
|
-
body?: string | undefined;
|
205
|
-
}, {
|
206
|
-
title?: string | undefined;
|
207
|
-
body?: string | undefined;
|
208
|
-
}>;
|
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">>;
|
213
|
-
}, "strip", z.ZodTypeAny, {
|
214
|
-
vcUris?: string[] | undefined;
|
215
|
-
vpUris?: string[] | undefined;
|
216
|
-
}, {
|
217
|
-
vcUris?: string[] | undefined;
|
218
|
-
vpUris?: string[] | undefined;
|
219
|
-
}>;
|
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>>;
|
232
|
-
}, "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;
|
241
|
-
}, {
|
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<{
|
251
|
-
did: z.ZodString;
|
252
|
-
}, "strip", z.ZodTypeAny, {
|
253
|
-
did: string;
|
254
|
-
}, {
|
255
|
-
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, {
|
287
|
-
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
249
|
export declare const LCNBoostClaimLinkSigningAuthorityValidator: z.ZodObject<{
|
385
250
|
endpoint: z.ZodString;
|
386
251
|
name: z.ZodString;
|
@@ -732,26 +597,38 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
732
597
|
owner: z.ZodObject<{
|
733
598
|
profileId: z.ZodString;
|
734
599
|
displayName: z.ZodDefault<z.ZodString>;
|
600
|
+
shortBio: z.ZodDefault<z.ZodString>;
|
735
601
|
bio: z.ZodDefault<z.ZodString>;
|
736
602
|
did: z.ZodString;
|
737
603
|
email: z.ZodOptional<z.ZodString>;
|
738
604
|
image: z.ZodOptional<z.ZodString>;
|
605
|
+
heroImage: z.ZodOptional<z.ZodString>;
|
606
|
+
websiteLink: z.ZodOptional<z.ZodString>;
|
739
607
|
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
608
|
+
type: z.ZodOptional<z.ZodString>;
|
740
609
|
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
741
610
|
}, "strip", z.ZodTypeAny, {
|
611
|
+
type?: string | undefined;
|
742
612
|
image?: string | undefined;
|
743
613
|
email?: string | undefined;
|
614
|
+
heroImage?: string | undefined;
|
615
|
+
websiteLink?: string | undefined;
|
744
616
|
isServiceProfile?: boolean | undefined;
|
745
617
|
notificationsWebhook?: string | undefined;
|
746
618
|
profileId: string;
|
747
619
|
displayName: string;
|
620
|
+
shortBio: string;
|
748
621
|
bio: string;
|
749
622
|
did: string;
|
750
623
|
}, {
|
624
|
+
type?: string | undefined;
|
751
625
|
image?: string | undefined;
|
752
626
|
email?: string | undefined;
|
753
627
|
displayName?: string | undefined;
|
628
|
+
shortBio?: string | undefined;
|
754
629
|
bio?: string | undefined;
|
630
|
+
heroImage?: string | undefined;
|
631
|
+
websiteLink?: string | undefined;
|
755
632
|
isServiceProfile?: boolean | undefined;
|
756
633
|
notificationsWebhook?: string | undefined;
|
757
634
|
profileId: string;
|
@@ -799,12 +676,16 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
799
676
|
};
|
800
677
|
};
|
801
678
|
owner: {
|
679
|
+
type?: string | undefined;
|
802
680
|
image?: string | undefined;
|
803
681
|
email?: string | undefined;
|
682
|
+
heroImage?: string | undefined;
|
683
|
+
websiteLink?: string | undefined;
|
804
684
|
isServiceProfile?: boolean | undefined;
|
805
685
|
notificationsWebhook?: string | undefined;
|
806
686
|
profileId: string;
|
807
687
|
displayName: string;
|
688
|
+
shortBio: string;
|
808
689
|
bio: string;
|
809
690
|
did: string;
|
810
691
|
};
|
@@ -842,10 +723,14 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
842
723
|
} | undefined;
|
843
724
|
};
|
844
725
|
owner: {
|
726
|
+
type?: string | undefined;
|
845
727
|
image?: string | undefined;
|
846
728
|
email?: string | undefined;
|
847
729
|
displayName?: string | undefined;
|
730
|
+
shortBio?: string | undefined;
|
848
731
|
bio?: string | undefined;
|
732
|
+
heroImage?: string | undefined;
|
733
|
+
websiteLink?: string | undefined;
|
849
734
|
isServiceProfile?: boolean | undefined;
|
850
735
|
notificationsWebhook?: string | undefined;
|
851
736
|
profileId: string;
|
@@ -1000,26 +885,38 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
1000
885
|
owner: z.ZodObject<{
|
1001
886
|
profileId: z.ZodString;
|
1002
887
|
displayName: z.ZodDefault<z.ZodString>;
|
888
|
+
shortBio: z.ZodDefault<z.ZodString>;
|
1003
889
|
bio: z.ZodDefault<z.ZodString>;
|
1004
890
|
did: z.ZodString;
|
1005
891
|
email: z.ZodOptional<z.ZodString>;
|
1006
892
|
image: z.ZodOptional<z.ZodString>;
|
893
|
+
heroImage: z.ZodOptional<z.ZodString>;
|
894
|
+
websiteLink: z.ZodOptional<z.ZodString>;
|
1007
895
|
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
896
|
+
type: z.ZodOptional<z.ZodString>;
|
1008
897
|
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
1009
898
|
}, "strip", z.ZodTypeAny, {
|
899
|
+
type?: string | undefined;
|
1010
900
|
image?: string | undefined;
|
1011
901
|
email?: string | undefined;
|
902
|
+
heroImage?: string | undefined;
|
903
|
+
websiteLink?: string | undefined;
|
1012
904
|
isServiceProfile?: boolean | undefined;
|
1013
905
|
notificationsWebhook?: string | undefined;
|
1014
906
|
profileId: string;
|
1015
907
|
displayName: string;
|
908
|
+
shortBio: string;
|
1016
909
|
bio: string;
|
1017
910
|
did: string;
|
1018
911
|
}, {
|
912
|
+
type?: string | undefined;
|
1019
913
|
image?: string | undefined;
|
1020
914
|
email?: string | undefined;
|
1021
915
|
displayName?: string | undefined;
|
916
|
+
shortBio?: string | undefined;
|
1022
917
|
bio?: string | undefined;
|
918
|
+
heroImage?: string | undefined;
|
919
|
+
websiteLink?: string | undefined;
|
1023
920
|
isServiceProfile?: boolean | undefined;
|
1024
921
|
notificationsWebhook?: string | undefined;
|
1025
922
|
profileId: string;
|
@@ -1250,6 +1147,23 @@ export declare const PaginatedConsentFlowDataValidator: z.ZodObject<z.extendShap
|
|
1250
1147
|
}[];
|
1251
1148
|
}>;
|
1252
1149
|
export type PaginatedConsentFlowData = z.infer<typeof PaginatedConsentFlowDataValidator>;
|
1150
|
+
export declare const ConsentFlowTermValidator: z.ZodObject<{
|
1151
|
+
sharing: z.ZodOptional<z.ZodBoolean>;
|
1152
|
+
shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1153
|
+
shareAll: z.ZodOptional<z.ZodBoolean>;
|
1154
|
+
shareUntil: z.ZodOptional<z.ZodString>;
|
1155
|
+
}, "strip", z.ZodTypeAny, {
|
1156
|
+
sharing?: boolean | undefined;
|
1157
|
+
shared?: string[] | undefined;
|
1158
|
+
shareAll?: boolean | undefined;
|
1159
|
+
shareUntil?: string | undefined;
|
1160
|
+
}, {
|
1161
|
+
sharing?: boolean | undefined;
|
1162
|
+
shared?: string[] | undefined;
|
1163
|
+
shareAll?: boolean | undefined;
|
1164
|
+
shareUntil?: string | undefined;
|
1165
|
+
}>;
|
1166
|
+
export type ConsentFlowTerm = z.infer<typeof ConsentFlowTermValidator>;
|
1253
1167
|
export declare const ConsentFlowTermsValidator: z.ZodObject<{
|
1254
1168
|
read: z.ZodDefault<z.ZodObject<{
|
1255
1169
|
anonymize: z.ZodOptional<z.ZodBoolean>;
|
@@ -1260,42 +1174,48 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
|
|
1260
1174
|
sharing: z.ZodOptional<z.ZodBoolean>;
|
1261
1175
|
shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1262
1176
|
shareAll: z.ZodOptional<z.ZodBoolean>;
|
1177
|
+
shareUntil: z.ZodOptional<z.ZodString>;
|
1263
1178
|
}, "strip", z.ZodTypeAny, {
|
1264
|
-
shareAll?: boolean | undefined;
|
1265
1179
|
sharing?: boolean | undefined;
|
1266
1180
|
shared?: string[] | undefined;
|
1267
|
-
}, {
|
1268
1181
|
shareAll?: boolean | undefined;
|
1182
|
+
shareUntil?: string | undefined;
|
1183
|
+
}, {
|
1269
1184
|
sharing?: boolean | undefined;
|
1270
1185
|
shared?: string[] | undefined;
|
1186
|
+
shareAll?: boolean | undefined;
|
1187
|
+
shareUntil?: string | undefined;
|
1271
1188
|
}>>>;
|
1272
1189
|
}, "strip", z.ZodTypeAny, {
|
1273
|
-
shareAll?: boolean | undefined;
|
1274
1190
|
sharing?: boolean | undefined;
|
1191
|
+
shareAll?: boolean | undefined;
|
1275
1192
|
categories: Record<string, {
|
1276
|
-
shareAll?: boolean | undefined;
|
1277
1193
|
sharing?: boolean | undefined;
|
1278
1194
|
shared?: string[] | undefined;
|
1195
|
+
shareAll?: boolean | undefined;
|
1196
|
+
shareUntil?: string | undefined;
|
1279
1197
|
}>;
|
1280
1198
|
}, {
|
1281
1199
|
categories?: Record<string, {
|
1282
|
-
shareAll?: boolean | undefined;
|
1283
1200
|
sharing?: boolean | undefined;
|
1284
1201
|
shared?: string[] | undefined;
|
1202
|
+
shareAll?: boolean | undefined;
|
1203
|
+
shareUntil?: string | undefined;
|
1285
1204
|
}> | undefined;
|
1286
|
-
shareAll?: boolean | undefined;
|
1287
1205
|
sharing?: boolean | undefined;
|
1206
|
+
shareAll?: boolean | undefined;
|
1288
1207
|
}>>;
|
1289
1208
|
personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
1290
1209
|
}, "strip", z.ZodTypeAny, {
|
1291
1210
|
anonymize?: boolean | undefined;
|
1292
1211
|
credentials: {
|
1293
|
-
shareAll?: boolean | undefined;
|
1294
1212
|
sharing?: boolean | undefined;
|
1213
|
+
shareAll?: boolean | undefined;
|
1295
1214
|
categories: Record<string, {
|
1296
|
-
shareAll?: boolean | undefined;
|
1297
1215
|
sharing?: boolean | undefined;
|
1298
1216
|
shared?: string[] | undefined;
|
1217
|
+
shareAll?: boolean | undefined;
|
1218
|
+
shareUntil?: string | undefined;
|
1299
1219
|
}>;
|
1300
1220
|
};
|
1301
1221
|
personal: Record<string, string>;
|
@@ -1303,12 +1223,13 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
|
|
1303
1223
|
anonymize?: boolean | undefined;
|
1304
1224
|
credentials?: {
|
1305
1225
|
categories?: Record<string, {
|
1306
|
-
shareAll?: boolean | undefined;
|
1307
1226
|
sharing?: boolean | undefined;
|
1308
1227
|
shared?: string[] | undefined;
|
1228
|
+
shareAll?: boolean | undefined;
|
1229
|
+
shareUntil?: string | undefined;
|
1309
1230
|
}> | undefined;
|
1310
|
-
shareAll?: boolean | undefined;
|
1311
1231
|
sharing?: boolean | undefined;
|
1232
|
+
shareAll?: boolean | undefined;
|
1312
1233
|
} | undefined;
|
1313
1234
|
personal?: Record<string, string> | undefined;
|
1314
1235
|
}>>;
|
@@ -1336,12 +1257,13 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
|
|
1336
1257
|
read: {
|
1337
1258
|
anonymize?: boolean | undefined;
|
1338
1259
|
credentials: {
|
1339
|
-
shareAll?: boolean | undefined;
|
1340
1260
|
sharing?: boolean | undefined;
|
1261
|
+
shareAll?: boolean | undefined;
|
1341
1262
|
categories: Record<string, {
|
1342
|
-
shareAll?: boolean | undefined;
|
1343
1263
|
sharing?: boolean | undefined;
|
1344
1264
|
shared?: string[] | undefined;
|
1265
|
+
shareAll?: boolean | undefined;
|
1266
|
+
shareUntil?: string | undefined;
|
1345
1267
|
}>;
|
1346
1268
|
};
|
1347
1269
|
personal: Record<string, string>;
|
@@ -1357,12 +1279,13 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
|
|
1357
1279
|
anonymize?: boolean | undefined;
|
1358
1280
|
credentials?: {
|
1359
1281
|
categories?: Record<string, {
|
1360
|
-
shareAll?: boolean | undefined;
|
1361
1282
|
sharing?: boolean | undefined;
|
1362
1283
|
shared?: string[] | undefined;
|
1284
|
+
shareAll?: boolean | undefined;
|
1285
|
+
shareUntil?: string | undefined;
|
1363
1286
|
}> | undefined;
|
1364
|
-
shareAll?: boolean | undefined;
|
1365
1287
|
sharing?: boolean | undefined;
|
1288
|
+
shareAll?: boolean | undefined;
|
1366
1289
|
} | undefined;
|
1367
1290
|
personal?: Record<string, string> | undefined;
|
1368
1291
|
} | undefined;
|
@@ -1392,42 +1315,48 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1392
1315
|
sharing: z.ZodOptional<z.ZodBoolean>;
|
1393
1316
|
shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1394
1317
|
shareAll: z.ZodOptional<z.ZodBoolean>;
|
1318
|
+
shareUntil: z.ZodOptional<z.ZodString>;
|
1395
1319
|
}, "strip", z.ZodTypeAny, {
|
1396
|
-
shareAll?: boolean | undefined;
|
1397
1320
|
sharing?: boolean | undefined;
|
1398
1321
|
shared?: string[] | undefined;
|
1399
|
-
}, {
|
1400
1322
|
shareAll?: boolean | undefined;
|
1323
|
+
shareUntil?: string | undefined;
|
1324
|
+
}, {
|
1401
1325
|
sharing?: boolean | undefined;
|
1402
1326
|
shared?: string[] | undefined;
|
1327
|
+
shareAll?: boolean | undefined;
|
1328
|
+
shareUntil?: string | undefined;
|
1403
1329
|
}>>>;
|
1404
1330
|
}, "strip", z.ZodTypeAny, {
|
1405
|
-
shareAll?: boolean | undefined;
|
1406
1331
|
sharing?: boolean | undefined;
|
1332
|
+
shareAll?: boolean | undefined;
|
1407
1333
|
categories: Record<string, {
|
1408
|
-
shareAll?: boolean | undefined;
|
1409
1334
|
sharing?: boolean | undefined;
|
1410
1335
|
shared?: string[] | undefined;
|
1336
|
+
shareAll?: boolean | undefined;
|
1337
|
+
shareUntil?: string | undefined;
|
1411
1338
|
}>;
|
1412
1339
|
}, {
|
1413
1340
|
categories?: Record<string, {
|
1414
|
-
shareAll?: boolean | undefined;
|
1415
1341
|
sharing?: boolean | undefined;
|
1416
1342
|
shared?: string[] | undefined;
|
1343
|
+
shareAll?: boolean | undefined;
|
1344
|
+
shareUntil?: string | undefined;
|
1417
1345
|
}> | undefined;
|
1418
|
-
shareAll?: boolean | undefined;
|
1419
1346
|
sharing?: boolean | undefined;
|
1347
|
+
shareAll?: boolean | undefined;
|
1420
1348
|
}>>;
|
1421
1349
|
personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
1422
1350
|
}, "strip", z.ZodTypeAny, {
|
1423
1351
|
anonymize?: boolean | undefined;
|
1424
1352
|
credentials: {
|
1425
|
-
shareAll?: boolean | undefined;
|
1426
1353
|
sharing?: boolean | undefined;
|
1354
|
+
shareAll?: boolean | undefined;
|
1427
1355
|
categories: Record<string, {
|
1428
|
-
shareAll?: boolean | undefined;
|
1429
1356
|
sharing?: boolean | undefined;
|
1430
1357
|
shared?: string[] | undefined;
|
1358
|
+
shareAll?: boolean | undefined;
|
1359
|
+
shareUntil?: string | undefined;
|
1431
1360
|
}>;
|
1432
1361
|
};
|
1433
1362
|
personal: Record<string, string>;
|
@@ -1435,12 +1364,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1435
1364
|
anonymize?: boolean | undefined;
|
1436
1365
|
credentials?: {
|
1437
1366
|
categories?: Record<string, {
|
1438
|
-
shareAll?: boolean | undefined;
|
1439
1367
|
sharing?: boolean | undefined;
|
1440
1368
|
shared?: string[] | undefined;
|
1369
|
+
shareAll?: boolean | undefined;
|
1370
|
+
shareUntil?: string | undefined;
|
1441
1371
|
}> | undefined;
|
1442
|
-
shareAll?: boolean | undefined;
|
1443
1372
|
sharing?: boolean | undefined;
|
1373
|
+
shareAll?: boolean | undefined;
|
1444
1374
|
} | undefined;
|
1445
1375
|
personal?: Record<string, string> | undefined;
|
1446
1376
|
}>>;
|
@@ -1468,12 +1398,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1468
1398
|
read: {
|
1469
1399
|
anonymize?: boolean | undefined;
|
1470
1400
|
credentials: {
|
1471
|
-
shareAll?: boolean | undefined;
|
1472
1401
|
sharing?: boolean | undefined;
|
1402
|
+
shareAll?: boolean | undefined;
|
1473
1403
|
categories: Record<string, {
|
1474
|
-
shareAll?: boolean | undefined;
|
1475
1404
|
sharing?: boolean | undefined;
|
1476
1405
|
shared?: string[] | undefined;
|
1406
|
+
shareAll?: boolean | undefined;
|
1407
|
+
shareUntil?: string | undefined;
|
1477
1408
|
}>;
|
1478
1409
|
};
|
1479
1410
|
personal: Record<string, string>;
|
@@ -1489,12 +1420,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1489
1420
|
anonymize?: boolean | undefined;
|
1490
1421
|
credentials?: {
|
1491
1422
|
categories?: Record<string, {
|
1492
|
-
shareAll?: boolean | undefined;
|
1493
1423
|
sharing?: boolean | undefined;
|
1494
1424
|
shared?: string[] | undefined;
|
1425
|
+
shareAll?: boolean | undefined;
|
1426
|
+
shareUntil?: string | undefined;
|
1495
1427
|
}> | undefined;
|
1496
|
-
shareAll?: boolean | undefined;
|
1497
1428
|
sharing?: boolean | undefined;
|
1429
|
+
shareAll?: boolean | undefined;
|
1498
1430
|
} | undefined;
|
1499
1431
|
personal?: Record<string, string> | undefined;
|
1500
1432
|
} | undefined;
|
@@ -1646,26 +1578,38 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1646
1578
|
owner: z.ZodObject<{
|
1647
1579
|
profileId: z.ZodString;
|
1648
1580
|
displayName: z.ZodDefault<z.ZodString>;
|
1581
|
+
shortBio: z.ZodDefault<z.ZodString>;
|
1649
1582
|
bio: z.ZodDefault<z.ZodString>;
|
1650
1583
|
did: z.ZodString;
|
1651
1584
|
email: z.ZodOptional<z.ZodString>;
|
1652
1585
|
image: z.ZodOptional<z.ZodString>;
|
1586
|
+
heroImage: z.ZodOptional<z.ZodString>;
|
1587
|
+
websiteLink: z.ZodOptional<z.ZodString>;
|
1653
1588
|
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1589
|
+
type: z.ZodOptional<z.ZodString>;
|
1654
1590
|
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
1655
1591
|
}, "strip", z.ZodTypeAny, {
|
1592
|
+
type?: string | undefined;
|
1656
1593
|
image?: string | undefined;
|
1657
1594
|
email?: string | undefined;
|
1595
|
+
heroImage?: string | undefined;
|
1596
|
+
websiteLink?: string | undefined;
|
1658
1597
|
isServiceProfile?: boolean | undefined;
|
1659
1598
|
notificationsWebhook?: string | undefined;
|
1660
1599
|
profileId: string;
|
1661
1600
|
displayName: string;
|
1601
|
+
shortBio: string;
|
1662
1602
|
bio: string;
|
1663
1603
|
did: string;
|
1664
1604
|
}, {
|
1605
|
+
type?: string | undefined;
|
1665
1606
|
image?: string | undefined;
|
1666
1607
|
email?: string | undefined;
|
1667
1608
|
displayName?: string | undefined;
|
1609
|
+
shortBio?: string | undefined;
|
1668
1610
|
bio?: string | undefined;
|
1611
|
+
heroImage?: string | undefined;
|
1612
|
+
websiteLink?: string | undefined;
|
1669
1613
|
isServiceProfile?: boolean | undefined;
|
1670
1614
|
notificationsWebhook?: string | undefined;
|
1671
1615
|
profileId: string;
|
@@ -1713,12 +1657,16 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1713
1657
|
};
|
1714
1658
|
};
|
1715
1659
|
owner: {
|
1660
|
+
type?: string | undefined;
|
1716
1661
|
image?: string | undefined;
|
1717
1662
|
email?: string | undefined;
|
1663
|
+
heroImage?: string | undefined;
|
1664
|
+
websiteLink?: string | undefined;
|
1718
1665
|
isServiceProfile?: boolean | undefined;
|
1719
1666
|
notificationsWebhook?: string | undefined;
|
1720
1667
|
profileId: string;
|
1721
1668
|
displayName: string;
|
1669
|
+
shortBio: string;
|
1722
1670
|
bio: string;
|
1723
1671
|
did: string;
|
1724
1672
|
};
|
@@ -1756,10 +1704,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1756
1704
|
} | undefined;
|
1757
1705
|
};
|
1758
1706
|
owner: {
|
1707
|
+
type?: string | undefined;
|
1759
1708
|
image?: string | undefined;
|
1760
1709
|
email?: string | undefined;
|
1761
1710
|
displayName?: string | undefined;
|
1711
|
+
shortBio?: string | undefined;
|
1762
1712
|
bio?: string | undefined;
|
1713
|
+
heroImage?: string | undefined;
|
1714
|
+
websiteLink?: string | undefined;
|
1763
1715
|
isServiceProfile?: boolean | undefined;
|
1764
1716
|
notificationsWebhook?: string | undefined;
|
1765
1717
|
profileId: string;
|
@@ -1771,26 +1723,38 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1771
1723
|
consenter: z.ZodObject<{
|
1772
1724
|
profileId: z.ZodString;
|
1773
1725
|
displayName: z.ZodDefault<z.ZodString>;
|
1726
|
+
shortBio: z.ZodDefault<z.ZodString>;
|
1774
1727
|
bio: z.ZodDefault<z.ZodString>;
|
1775
1728
|
did: z.ZodString;
|
1776
1729
|
email: z.ZodOptional<z.ZodString>;
|
1777
1730
|
image: z.ZodOptional<z.ZodString>;
|
1731
|
+
heroImage: z.ZodOptional<z.ZodString>;
|
1732
|
+
websiteLink: z.ZodOptional<z.ZodString>;
|
1778
1733
|
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1734
|
+
type: z.ZodOptional<z.ZodString>;
|
1779
1735
|
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
1780
1736
|
}, "strip", z.ZodTypeAny, {
|
1737
|
+
type?: string | undefined;
|
1781
1738
|
image?: string | undefined;
|
1782
1739
|
email?: string | undefined;
|
1740
|
+
heroImage?: string | undefined;
|
1741
|
+
websiteLink?: string | undefined;
|
1783
1742
|
isServiceProfile?: boolean | undefined;
|
1784
1743
|
notificationsWebhook?: string | undefined;
|
1785
1744
|
profileId: string;
|
1786
1745
|
displayName: string;
|
1746
|
+
shortBio: string;
|
1787
1747
|
bio: string;
|
1788
1748
|
did: string;
|
1789
1749
|
}, {
|
1750
|
+
type?: string | undefined;
|
1790
1751
|
image?: string | undefined;
|
1791
1752
|
email?: string | undefined;
|
1792
1753
|
displayName?: string | undefined;
|
1754
|
+
shortBio?: string | undefined;
|
1793
1755
|
bio?: string | undefined;
|
1756
|
+
heroImage?: string | undefined;
|
1757
|
+
websiteLink?: string | undefined;
|
1794
1758
|
isServiceProfile?: boolean | undefined;
|
1795
1759
|
notificationsWebhook?: string | undefined;
|
1796
1760
|
profileId: string;
|
@@ -1835,12 +1799,16 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1835
1799
|
};
|
1836
1800
|
};
|
1837
1801
|
owner: {
|
1802
|
+
type?: string | undefined;
|
1838
1803
|
image?: string | undefined;
|
1839
1804
|
email?: string | undefined;
|
1805
|
+
heroImage?: string | undefined;
|
1806
|
+
websiteLink?: string | undefined;
|
1840
1807
|
isServiceProfile?: boolean | undefined;
|
1841
1808
|
notificationsWebhook?: string | undefined;
|
1842
1809
|
profileId: string;
|
1843
1810
|
displayName: string;
|
1811
|
+
shortBio: string;
|
1844
1812
|
bio: string;
|
1845
1813
|
did: string;
|
1846
1814
|
};
|
@@ -1850,12 +1818,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1850
1818
|
read: {
|
1851
1819
|
anonymize?: boolean | undefined;
|
1852
1820
|
credentials: {
|
1853
|
-
shareAll?: boolean | undefined;
|
1854
1821
|
sharing?: boolean | undefined;
|
1822
|
+
shareAll?: boolean | undefined;
|
1855
1823
|
categories: Record<string, {
|
1856
|
-
shareAll?: boolean | undefined;
|
1857
1824
|
sharing?: boolean | undefined;
|
1858
1825
|
shared?: string[] | undefined;
|
1826
|
+
shareAll?: boolean | undefined;
|
1827
|
+
shareUntil?: string | undefined;
|
1859
1828
|
}>;
|
1860
1829
|
};
|
1861
1830
|
personal: Record<string, string>;
|
@@ -1868,12 +1837,16 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1868
1837
|
};
|
1869
1838
|
};
|
1870
1839
|
consenter: {
|
1840
|
+
type?: string | undefined;
|
1871
1841
|
image?: string | undefined;
|
1872
1842
|
email?: string | undefined;
|
1843
|
+
heroImage?: string | undefined;
|
1844
|
+
websiteLink?: string | undefined;
|
1873
1845
|
isServiceProfile?: boolean | undefined;
|
1874
1846
|
notificationsWebhook?: string | undefined;
|
1875
1847
|
profileId: string;
|
1876
1848
|
displayName: string;
|
1849
|
+
shortBio: string;
|
1877
1850
|
bio: string;
|
1878
1851
|
did: string;
|
1879
1852
|
};
|
@@ -1915,10 +1888,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1915
1888
|
} | undefined;
|
1916
1889
|
};
|
1917
1890
|
owner: {
|
1891
|
+
type?: string | undefined;
|
1918
1892
|
image?: string | undefined;
|
1919
1893
|
email?: string | undefined;
|
1920
1894
|
displayName?: string | undefined;
|
1895
|
+
shortBio?: string | undefined;
|
1921
1896
|
bio?: string | undefined;
|
1897
|
+
heroImage?: string | undefined;
|
1898
|
+
websiteLink?: string | undefined;
|
1922
1899
|
isServiceProfile?: boolean | undefined;
|
1923
1900
|
notificationsWebhook?: string | undefined;
|
1924
1901
|
profileId: string;
|
@@ -1931,12 +1908,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1931
1908
|
anonymize?: boolean | undefined;
|
1932
1909
|
credentials?: {
|
1933
1910
|
categories?: Record<string, {
|
1934
|
-
shareAll?: boolean | undefined;
|
1935
1911
|
sharing?: boolean | undefined;
|
1936
1912
|
shared?: string[] | undefined;
|
1913
|
+
shareAll?: boolean | undefined;
|
1914
|
+
shareUntil?: string | undefined;
|
1937
1915
|
}> | undefined;
|
1938
|
-
shareAll?: boolean | undefined;
|
1939
1916
|
sharing?: boolean | undefined;
|
1917
|
+
shareAll?: boolean | undefined;
|
1940
1918
|
} | undefined;
|
1941
1919
|
personal?: Record<string, string> | undefined;
|
1942
1920
|
} | undefined;
|
@@ -1948,10 +1926,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1948
1926
|
} | undefined;
|
1949
1927
|
};
|
1950
1928
|
consenter: {
|
1929
|
+
type?: string | undefined;
|
1951
1930
|
image?: string | undefined;
|
1952
1931
|
email?: string | undefined;
|
1953
1932
|
displayName?: string | undefined;
|
1933
|
+
shortBio?: string | undefined;
|
1954
1934
|
bio?: string | undefined;
|
1935
|
+
heroImage?: string | undefined;
|
1936
|
+
websiteLink?: string | undefined;
|
1955
1937
|
isServiceProfile?: boolean | undefined;
|
1956
1938
|
notificationsWebhook?: string | undefined;
|
1957
1939
|
profileId: string;
|
@@ -1999,12 +1981,16 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
1999
1981
|
};
|
2000
1982
|
};
|
2001
1983
|
owner: {
|
1984
|
+
type?: string | undefined;
|
2002
1985
|
image?: string | undefined;
|
2003
1986
|
email?: string | undefined;
|
1987
|
+
heroImage?: string | undefined;
|
1988
|
+
websiteLink?: string | undefined;
|
2004
1989
|
isServiceProfile?: boolean | undefined;
|
2005
1990
|
notificationsWebhook?: string | undefined;
|
2006
1991
|
profileId: string;
|
2007
1992
|
displayName: string;
|
1993
|
+
shortBio: string;
|
2008
1994
|
bio: string;
|
2009
1995
|
did: string;
|
2010
1996
|
};
|
@@ -2014,12 +2000,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2014
2000
|
read: {
|
2015
2001
|
anonymize?: boolean | undefined;
|
2016
2002
|
credentials: {
|
2017
|
-
shareAll?: boolean | undefined;
|
2018
2003
|
sharing?: boolean | undefined;
|
2004
|
+
shareAll?: boolean | undefined;
|
2019
2005
|
categories: Record<string, {
|
2020
|
-
shareAll?: boolean | undefined;
|
2021
2006
|
sharing?: boolean | undefined;
|
2022
2007
|
shared?: string[] | undefined;
|
2008
|
+
shareAll?: boolean | undefined;
|
2009
|
+
shareUntil?: string | undefined;
|
2023
2010
|
}>;
|
2024
2011
|
};
|
2025
2012
|
personal: Record<string, string>;
|
@@ -2032,12 +2019,16 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2032
2019
|
};
|
2033
2020
|
};
|
2034
2021
|
consenter: {
|
2022
|
+
type?: string | undefined;
|
2035
2023
|
image?: string | undefined;
|
2036
2024
|
email?: string | undefined;
|
2025
|
+
heroImage?: string | undefined;
|
2026
|
+
websiteLink?: string | undefined;
|
2037
2027
|
isServiceProfile?: boolean | undefined;
|
2038
2028
|
notificationsWebhook?: string | undefined;
|
2039
2029
|
profileId: string;
|
2040
2030
|
displayName: string;
|
2031
|
+
shortBio: string;
|
2041
2032
|
bio: string;
|
2042
2033
|
did: string;
|
2043
2034
|
};
|
@@ -2083,10 +2074,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2083
2074
|
} | undefined;
|
2084
2075
|
};
|
2085
2076
|
owner: {
|
2077
|
+
type?: string | undefined;
|
2086
2078
|
image?: string | undefined;
|
2087
2079
|
email?: string | undefined;
|
2088
2080
|
displayName?: string | undefined;
|
2081
|
+
shortBio?: string | undefined;
|
2089
2082
|
bio?: string | undefined;
|
2083
|
+
heroImage?: string | undefined;
|
2084
|
+
websiteLink?: string | undefined;
|
2090
2085
|
isServiceProfile?: boolean | undefined;
|
2091
2086
|
notificationsWebhook?: string | undefined;
|
2092
2087
|
profileId: string;
|
@@ -2099,12 +2094,13 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2099
2094
|
anonymize?: boolean | undefined;
|
2100
2095
|
credentials?: {
|
2101
2096
|
categories?: Record<string, {
|
2102
|
-
shareAll?: boolean | undefined;
|
2103
2097
|
sharing?: boolean | undefined;
|
2104
2098
|
shared?: string[] | undefined;
|
2099
|
+
shareAll?: boolean | undefined;
|
2100
|
+
shareUntil?: string | undefined;
|
2105
2101
|
}> | undefined;
|
2106
|
-
shareAll?: boolean | undefined;
|
2107
2102
|
sharing?: boolean | undefined;
|
2103
|
+
shareAll?: boolean | undefined;
|
2108
2104
|
} | undefined;
|
2109
2105
|
personal?: Record<string, string> | undefined;
|
2110
2106
|
} | undefined;
|
@@ -2116,10 +2112,14 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2116
2112
|
} | undefined;
|
2117
2113
|
};
|
2118
2114
|
consenter: {
|
2115
|
+
type?: string | undefined;
|
2119
2116
|
image?: string | undefined;
|
2120
2117
|
email?: string | undefined;
|
2121
2118
|
displayName?: string | undefined;
|
2119
|
+
shortBio?: string | undefined;
|
2122
2120
|
bio?: string | undefined;
|
2121
|
+
heroImage?: string | undefined;
|
2122
|
+
websiteLink?: string | undefined;
|
2123
2123
|
isServiceProfile?: boolean | undefined;
|
2124
2124
|
notificationsWebhook?: string | undefined;
|
2125
2125
|
profileId: string;
|
@@ -2267,6 +2267,31 @@ export declare const ConsentFlowContractQueryValidator: z.ZodObject<{
|
|
2267
2267
|
}>;
|
2268
2268
|
export type ConsentFlowContractQuery = z.infer<typeof ConsentFlowContractQueryValidator>;
|
2269
2269
|
export type ConsentFlowContractQueryInput = z.input<typeof ConsentFlowContractQueryValidator>;
|
2270
|
+
export declare const ConsentFlowDataQueryValidator: z.ZodObject<{
|
2271
|
+
anonymize: z.ZodOptional<z.ZodBoolean>;
|
2272
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
2273
|
+
categories: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
2274
|
+
}, "strip", z.ZodTypeAny, {
|
2275
|
+
categories?: Record<string, boolean> | undefined;
|
2276
|
+
}, {
|
2277
|
+
categories?: Record<string, boolean> | undefined;
|
2278
|
+
}>>;
|
2279
|
+
personal: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
2280
|
+
}, "strip", z.ZodTypeAny, {
|
2281
|
+
anonymize?: boolean | undefined;
|
2282
|
+
credentials?: {
|
2283
|
+
categories?: Record<string, boolean> | undefined;
|
2284
|
+
} | undefined;
|
2285
|
+
personal?: Record<string, boolean> | undefined;
|
2286
|
+
}, {
|
2287
|
+
anonymize?: boolean | undefined;
|
2288
|
+
credentials?: {
|
2289
|
+
categories?: Record<string, boolean> | undefined;
|
2290
|
+
} | undefined;
|
2291
|
+
personal?: Record<string, boolean> | undefined;
|
2292
|
+
}>;
|
2293
|
+
export type ConsentFlowDataQuery = z.infer<typeof ConsentFlowDataQueryValidator>;
|
2294
|
+
export type ConsentFlowDataQueryInput = z.input<typeof ConsentFlowDataQueryValidator>;
|
2270
2295
|
export declare const ConsentFlowTermsQueryValidator: z.ZodObject<{
|
2271
2296
|
read: z.ZodOptional<z.ZodObject<{
|
2272
2297
|
anonymize: z.ZodOptional<z.ZodBoolean>;
|
@@ -2277,55 +2302,62 @@ export declare const ConsentFlowTermsQueryValidator: z.ZodObject<{
|
|
2277
2302
|
sharing: z.ZodOptional<z.ZodBoolean>;
|
2278
2303
|
shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2279
2304
|
shareAll: z.ZodOptional<z.ZodBoolean>;
|
2305
|
+
shareUntil: z.ZodOptional<z.ZodString>;
|
2280
2306
|
}, "strip", z.ZodTypeAny, {
|
2281
|
-
shareAll?: boolean | undefined;
|
2282
2307
|
sharing?: boolean | undefined;
|
2283
2308
|
shared?: string[] | undefined;
|
2284
|
-
}, {
|
2285
2309
|
shareAll?: boolean | undefined;
|
2310
|
+
shareUntil?: string | undefined;
|
2311
|
+
}, {
|
2286
2312
|
sharing?: boolean | undefined;
|
2287
2313
|
shared?: string[] | undefined;
|
2314
|
+
shareAll?: boolean | undefined;
|
2315
|
+
shareUntil?: string | undefined;
|
2288
2316
|
}>>>>;
|
2289
2317
|
}, "strip", z.ZodTypeAny, {
|
2290
2318
|
categories?: Record<string, {
|
2291
|
-
shareAll?: boolean | undefined;
|
2292
2319
|
sharing?: boolean | undefined;
|
2293
2320
|
shared?: string[] | undefined;
|
2321
|
+
shareAll?: boolean | undefined;
|
2322
|
+
shareUntil?: string | undefined;
|
2294
2323
|
} | undefined> | undefined;
|
2295
|
-
shareAll?: boolean | undefined;
|
2296
2324
|
sharing?: boolean | undefined;
|
2325
|
+
shareAll?: boolean | undefined;
|
2297
2326
|
}, {
|
2298
2327
|
categories?: Record<string, {
|
2299
|
-
shareAll?: boolean | undefined;
|
2300
2328
|
sharing?: boolean | undefined;
|
2301
2329
|
shared?: string[] | undefined;
|
2330
|
+
shareAll?: boolean | undefined;
|
2331
|
+
shareUntil?: string | undefined;
|
2302
2332
|
} | undefined> | undefined;
|
2303
|
-
shareAll?: boolean | undefined;
|
2304
2333
|
sharing?: boolean | undefined;
|
2334
|
+
shareAll?: boolean | undefined;
|
2305
2335
|
}>>;
|
2306
2336
|
personal: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
2307
2337
|
}, "strip", z.ZodTypeAny, {
|
2308
2338
|
anonymize?: boolean | undefined;
|
2309
2339
|
credentials?: {
|
2310
2340
|
categories?: Record<string, {
|
2311
|
-
shareAll?: boolean | undefined;
|
2312
2341
|
sharing?: boolean | undefined;
|
2313
2342
|
shared?: string[] | undefined;
|
2343
|
+
shareAll?: boolean | undefined;
|
2344
|
+
shareUntil?: string | undefined;
|
2314
2345
|
} | undefined> | undefined;
|
2315
|
-
shareAll?: boolean | undefined;
|
2316
2346
|
sharing?: boolean | undefined;
|
2347
|
+
shareAll?: boolean | undefined;
|
2317
2348
|
} | undefined;
|
2318
2349
|
personal?: Record<string, string> | undefined;
|
2319
2350
|
}, {
|
2320
2351
|
anonymize?: boolean | undefined;
|
2321
2352
|
credentials?: {
|
2322
2353
|
categories?: Record<string, {
|
2323
|
-
shareAll?: boolean | undefined;
|
2324
2354
|
sharing?: boolean | undefined;
|
2325
2355
|
shared?: string[] | undefined;
|
2356
|
+
shareAll?: boolean | undefined;
|
2357
|
+
shareUntil?: string | undefined;
|
2326
2358
|
} | undefined> | undefined;
|
2327
|
-
shareAll?: boolean | undefined;
|
2328
2359
|
sharing?: boolean | undefined;
|
2360
|
+
shareAll?: boolean | undefined;
|
2329
2361
|
} | undefined;
|
2330
2362
|
personal?: Record<string, string> | undefined;
|
2331
2363
|
}>>;
|
@@ -2354,12 +2386,13 @@ export declare const ConsentFlowTermsQueryValidator: z.ZodObject<{
|
|
2354
2386
|
anonymize?: boolean | undefined;
|
2355
2387
|
credentials?: {
|
2356
2388
|
categories?: Record<string, {
|
2357
|
-
shareAll?: boolean | undefined;
|
2358
2389
|
sharing?: boolean | undefined;
|
2359
2390
|
shared?: string[] | undefined;
|
2391
|
+
shareAll?: boolean | undefined;
|
2392
|
+
shareUntil?: string | undefined;
|
2360
2393
|
} | undefined> | undefined;
|
2361
|
-
shareAll?: boolean | undefined;
|
2362
2394
|
sharing?: boolean | undefined;
|
2395
|
+
shareAll?: boolean | undefined;
|
2363
2396
|
} | undefined;
|
2364
2397
|
personal?: Record<string, string> | undefined;
|
2365
2398
|
} | undefined;
|
@@ -2374,12 +2407,13 @@ export declare const ConsentFlowTermsQueryValidator: z.ZodObject<{
|
|
2374
2407
|
anonymize?: boolean | undefined;
|
2375
2408
|
credentials?: {
|
2376
2409
|
categories?: Record<string, {
|
2377
|
-
shareAll?: boolean | undefined;
|
2378
2410
|
sharing?: boolean | undefined;
|
2379
2411
|
shared?: string[] | undefined;
|
2412
|
+
shareAll?: boolean | undefined;
|
2413
|
+
shareUntil?: string | undefined;
|
2380
2414
|
} | undefined> | undefined;
|
2381
|
-
shareAll?: boolean | undefined;
|
2382
2415
|
sharing?: boolean | undefined;
|
2416
|
+
shareAll?: boolean | undefined;
|
2383
2417
|
} | undefined;
|
2384
2418
|
personal?: Record<string, string> | undefined;
|
2385
2419
|
} | undefined;
|
@@ -2405,55 +2439,62 @@ export declare const ConsentFlowTransactionsQueryValidator: z.ZodObject<{
|
|
2405
2439
|
sharing: z.ZodOptional<z.ZodBoolean>;
|
2406
2440
|
shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2407
2441
|
shareAll: z.ZodOptional<z.ZodBoolean>;
|
2442
|
+
shareUntil: z.ZodOptional<z.ZodString>;
|
2408
2443
|
}, "strip", z.ZodTypeAny, {
|
2409
|
-
shareAll?: boolean | undefined;
|
2410
2444
|
sharing?: boolean | undefined;
|
2411
2445
|
shared?: string[] | undefined;
|
2412
|
-
}, {
|
2413
2446
|
shareAll?: boolean | undefined;
|
2447
|
+
shareUntil?: string | undefined;
|
2448
|
+
}, {
|
2414
2449
|
sharing?: boolean | undefined;
|
2415
2450
|
shared?: string[] | undefined;
|
2451
|
+
shareAll?: boolean | undefined;
|
2452
|
+
shareUntil?: string | undefined;
|
2416
2453
|
}>>>>;
|
2417
2454
|
}, "strip", z.ZodTypeAny, {
|
2418
2455
|
categories?: Record<string, {
|
2419
|
-
shareAll?: boolean | undefined;
|
2420
2456
|
sharing?: boolean | undefined;
|
2421
2457
|
shared?: string[] | undefined;
|
2458
|
+
shareAll?: boolean | undefined;
|
2459
|
+
shareUntil?: string | undefined;
|
2422
2460
|
} | undefined> | undefined;
|
2423
|
-
shareAll?: boolean | undefined;
|
2424
2461
|
sharing?: boolean | undefined;
|
2462
|
+
shareAll?: boolean | undefined;
|
2425
2463
|
}, {
|
2426
2464
|
categories?: Record<string, {
|
2427
|
-
shareAll?: boolean | undefined;
|
2428
2465
|
sharing?: boolean | undefined;
|
2429
2466
|
shared?: string[] | undefined;
|
2467
|
+
shareAll?: boolean | undefined;
|
2468
|
+
shareUntil?: string | undefined;
|
2430
2469
|
} | undefined> | undefined;
|
2431
|
-
shareAll?: boolean | undefined;
|
2432
2470
|
sharing?: boolean | undefined;
|
2471
|
+
shareAll?: boolean | undefined;
|
2433
2472
|
}>>;
|
2434
2473
|
personal: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
2435
2474
|
}, "strip", z.ZodTypeAny, {
|
2436
2475
|
anonymize?: boolean | undefined;
|
2437
2476
|
credentials?: {
|
2438
2477
|
categories?: Record<string, {
|
2439
|
-
shareAll?: boolean | undefined;
|
2440
2478
|
sharing?: boolean | undefined;
|
2441
2479
|
shared?: string[] | undefined;
|
2480
|
+
shareAll?: boolean | undefined;
|
2481
|
+
shareUntil?: string | undefined;
|
2442
2482
|
} | undefined> | undefined;
|
2443
|
-
shareAll?: boolean | undefined;
|
2444
2483
|
sharing?: boolean | undefined;
|
2484
|
+
shareAll?: boolean | undefined;
|
2445
2485
|
} | undefined;
|
2446
2486
|
personal?: Record<string, string> | undefined;
|
2447
2487
|
}, {
|
2448
2488
|
anonymize?: boolean | undefined;
|
2449
2489
|
credentials?: {
|
2450
2490
|
categories?: Record<string, {
|
2451
|
-
shareAll?: boolean | undefined;
|
2452
2491
|
sharing?: boolean | undefined;
|
2453
2492
|
shared?: string[] | undefined;
|
2493
|
+
shareAll?: boolean | undefined;
|
2494
|
+
shareUntil?: string | undefined;
|
2454
2495
|
} | undefined> | undefined;
|
2455
|
-
shareAll?: boolean | undefined;
|
2456
2496
|
sharing?: boolean | undefined;
|
2497
|
+
shareAll?: boolean | undefined;
|
2457
2498
|
} | undefined;
|
2458
2499
|
personal?: Record<string, string> | undefined;
|
2459
2500
|
}>>;
|
@@ -2482,12 +2523,13 @@ export declare const ConsentFlowTransactionsQueryValidator: z.ZodObject<{
|
|
2482
2523
|
anonymize?: boolean | undefined;
|
2483
2524
|
credentials?: {
|
2484
2525
|
categories?: Record<string, {
|
2485
|
-
shareAll?: boolean | undefined;
|
2486
2526
|
sharing?: boolean | undefined;
|
2487
2527
|
shared?: string[] | undefined;
|
2528
|
+
shareAll?: boolean | undefined;
|
2529
|
+
shareUntil?: string | undefined;
|
2488
2530
|
} | undefined> | undefined;
|
2489
|
-
shareAll?: boolean | undefined;
|
2490
2531
|
sharing?: boolean | undefined;
|
2532
|
+
shareAll?: boolean | undefined;
|
2491
2533
|
} | undefined;
|
2492
2534
|
personal?: Record<string, string> | undefined;
|
2493
2535
|
} | undefined;
|
@@ -2502,12 +2544,13 @@ export declare const ConsentFlowTransactionsQueryValidator: z.ZodObject<{
|
|
2502
2544
|
anonymize?: boolean | undefined;
|
2503
2545
|
credentials?: {
|
2504
2546
|
categories?: Record<string, {
|
2505
|
-
shareAll?: boolean | undefined;
|
2506
2547
|
sharing?: boolean | undefined;
|
2507
2548
|
shared?: string[] | undefined;
|
2549
|
+
shareAll?: boolean | undefined;
|
2550
|
+
shareUntil?: string | undefined;
|
2508
2551
|
} | undefined> | undefined;
|
2509
|
-
shareAll?: boolean | undefined;
|
2510
2552
|
sharing?: boolean | undefined;
|
2553
|
+
shareAll?: boolean | undefined;
|
2511
2554
|
} | undefined;
|
2512
2555
|
personal?: Record<string, string> | undefined;
|
2513
2556
|
} | undefined;
|
@@ -2579,12 +2622,13 @@ export declare const ConsentFlowTransactionsQueryValidator: z.ZodObject<{
|
|
2579
2622
|
anonymize?: boolean | undefined;
|
2580
2623
|
credentials?: {
|
2581
2624
|
categories?: Record<string, {
|
2582
|
-
shareAll?: boolean | undefined;
|
2583
2625
|
sharing?: boolean | undefined;
|
2584
2626
|
shared?: string[] | undefined;
|
2627
|
+
shareAll?: boolean | undefined;
|
2628
|
+
shareUntil?: string | undefined;
|
2585
2629
|
} | undefined> | undefined;
|
2586
|
-
shareAll?: boolean | undefined;
|
2587
2630
|
sharing?: boolean | undefined;
|
2631
|
+
shareAll?: boolean | undefined;
|
2588
2632
|
} | undefined;
|
2589
2633
|
personal?: Record<string, string> | undefined;
|
2590
2634
|
} | undefined;
|
@@ -2617,12 +2661,13 @@ export declare const ConsentFlowTransactionsQueryValidator: z.ZodObject<{
|
|
2617
2661
|
anonymize?: boolean | undefined;
|
2618
2662
|
credentials?: {
|
2619
2663
|
categories?: Record<string, {
|
2620
|
-
shareAll?: boolean | undefined;
|
2621
2664
|
sharing?: boolean | undefined;
|
2622
2665
|
shared?: string[] | undefined;
|
2666
|
+
shareAll?: boolean | undefined;
|
2667
|
+
shareUntil?: string | undefined;
|
2623
2668
|
} | undefined> | undefined;
|
2624
|
-
shareAll?: boolean | undefined;
|
2625
2669
|
sharing?: boolean | undefined;
|
2670
|
+
shareAll?: boolean | undefined;
|
2626
2671
|
} | undefined;
|
2627
2672
|
personal?: Record<string, string> | undefined;
|
2628
2673
|
} | undefined;
|
@@ -2650,42 +2695,48 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
2650
2695
|
sharing: z.ZodOptional<z.ZodBoolean>;
|
2651
2696
|
shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2652
2697
|
shareAll: z.ZodOptional<z.ZodBoolean>;
|
2698
|
+
shareUntil: z.ZodOptional<z.ZodString>;
|
2653
2699
|
}, "strip", z.ZodTypeAny, {
|
2654
|
-
shareAll?: boolean | undefined;
|
2655
2700
|
sharing?: boolean | undefined;
|
2656
2701
|
shared?: string[] | undefined;
|
2657
|
-
}, {
|
2658
2702
|
shareAll?: boolean | undefined;
|
2703
|
+
shareUntil?: string | undefined;
|
2704
|
+
}, {
|
2659
2705
|
sharing?: boolean | undefined;
|
2660
2706
|
shared?: string[] | undefined;
|
2707
|
+
shareAll?: boolean | undefined;
|
2708
|
+
shareUntil?: string | undefined;
|
2661
2709
|
}>>>;
|
2662
2710
|
}, "strip", z.ZodTypeAny, {
|
2663
|
-
shareAll?: boolean | undefined;
|
2664
2711
|
sharing?: boolean | undefined;
|
2712
|
+
shareAll?: boolean | undefined;
|
2665
2713
|
categories: Record<string, {
|
2666
|
-
shareAll?: boolean | undefined;
|
2667
2714
|
sharing?: boolean | undefined;
|
2668
2715
|
shared?: string[] | undefined;
|
2716
|
+
shareAll?: boolean | undefined;
|
2717
|
+
shareUntil?: string | undefined;
|
2669
2718
|
}>;
|
2670
2719
|
}, {
|
2671
2720
|
categories?: Record<string, {
|
2672
|
-
shareAll?: boolean | undefined;
|
2673
2721
|
sharing?: boolean | undefined;
|
2674
2722
|
shared?: string[] | undefined;
|
2723
|
+
shareAll?: boolean | undefined;
|
2724
|
+
shareUntil?: string | undefined;
|
2675
2725
|
}> | undefined;
|
2676
|
-
shareAll?: boolean | undefined;
|
2677
2726
|
sharing?: boolean | undefined;
|
2727
|
+
shareAll?: boolean | undefined;
|
2678
2728
|
}>>;
|
2679
2729
|
personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
2680
2730
|
}, "strip", z.ZodTypeAny, {
|
2681
2731
|
anonymize?: boolean | undefined;
|
2682
2732
|
credentials: {
|
2683
|
-
shareAll?: boolean | undefined;
|
2684
2733
|
sharing?: boolean | undefined;
|
2734
|
+
shareAll?: boolean | undefined;
|
2685
2735
|
categories: Record<string, {
|
2686
|
-
shareAll?: boolean | undefined;
|
2687
2736
|
sharing?: boolean | undefined;
|
2688
2737
|
shared?: string[] | undefined;
|
2738
|
+
shareAll?: boolean | undefined;
|
2739
|
+
shareUntil?: string | undefined;
|
2689
2740
|
}>;
|
2690
2741
|
};
|
2691
2742
|
personal: Record<string, string>;
|
@@ -2693,12 +2744,13 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
2693
2744
|
anonymize?: boolean | undefined;
|
2694
2745
|
credentials?: {
|
2695
2746
|
categories?: Record<string, {
|
2696
|
-
shareAll?: boolean | undefined;
|
2697
2747
|
sharing?: boolean | undefined;
|
2698
2748
|
shared?: string[] | undefined;
|
2749
|
+
shareAll?: boolean | undefined;
|
2750
|
+
shareUntil?: string | undefined;
|
2699
2751
|
}> | undefined;
|
2700
|
-
shareAll?: boolean | undefined;
|
2701
2752
|
sharing?: boolean | undefined;
|
2753
|
+
shareAll?: boolean | undefined;
|
2702
2754
|
} | undefined;
|
2703
2755
|
personal?: Record<string, string> | undefined;
|
2704
2756
|
}>>;
|
@@ -2726,12 +2778,13 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
2726
2778
|
read: {
|
2727
2779
|
anonymize?: boolean | undefined;
|
2728
2780
|
credentials: {
|
2729
|
-
shareAll?: boolean | undefined;
|
2730
2781
|
sharing?: boolean | undefined;
|
2782
|
+
shareAll?: boolean | undefined;
|
2731
2783
|
categories: Record<string, {
|
2732
|
-
shareAll?: boolean | undefined;
|
2733
2784
|
sharing?: boolean | undefined;
|
2734
2785
|
shared?: string[] | undefined;
|
2786
|
+
shareAll?: boolean | undefined;
|
2787
|
+
shareUntil?: string | undefined;
|
2735
2788
|
}>;
|
2736
2789
|
};
|
2737
2790
|
personal: Record<string, string>;
|
@@ -2747,12 +2800,13 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
2747
2800
|
anonymize?: boolean | undefined;
|
2748
2801
|
credentials?: {
|
2749
2802
|
categories?: Record<string, {
|
2750
|
-
shareAll?: boolean | undefined;
|
2751
2803
|
sharing?: boolean | undefined;
|
2752
2804
|
shared?: string[] | undefined;
|
2805
|
+
shareAll?: boolean | undefined;
|
2806
|
+
shareUntil?: string | undefined;
|
2753
2807
|
}> | undefined;
|
2754
|
-
shareAll?: boolean | undefined;
|
2755
2808
|
sharing?: boolean | undefined;
|
2809
|
+
shareAll?: boolean | undefined;
|
2756
2810
|
} | undefined;
|
2757
2811
|
personal?: Record<string, string> | undefined;
|
2758
2812
|
} | undefined;
|
@@ -2773,12 +2827,13 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
2773
2827
|
read: {
|
2774
2828
|
anonymize?: boolean | undefined;
|
2775
2829
|
credentials: {
|
2776
|
-
shareAll?: boolean | undefined;
|
2777
2830
|
sharing?: boolean | undefined;
|
2831
|
+
shareAll?: boolean | undefined;
|
2778
2832
|
categories: Record<string, {
|
2779
|
-
shareAll?: boolean | undefined;
|
2780
2833
|
sharing?: boolean | undefined;
|
2781
2834
|
shared?: string[] | undefined;
|
2835
|
+
shareAll?: boolean | undefined;
|
2836
|
+
shareUntil?: string | undefined;
|
2782
2837
|
}>;
|
2783
2838
|
};
|
2784
2839
|
personal: Record<string, string>;
|
@@ -2801,12 +2856,13 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
2801
2856
|
anonymize?: boolean | undefined;
|
2802
2857
|
credentials?: {
|
2803
2858
|
categories?: Record<string, {
|
2804
|
-
shareAll?: boolean | undefined;
|
2805
2859
|
sharing?: boolean | undefined;
|
2806
2860
|
shared?: string[] | undefined;
|
2861
|
+
shareAll?: boolean | undefined;
|
2862
|
+
shareUntil?: string | undefined;
|
2807
2863
|
}> | undefined;
|
2808
|
-
shareAll?: boolean | undefined;
|
2809
2864
|
sharing?: boolean | undefined;
|
2865
|
+
shareAll?: boolean | undefined;
|
2810
2866
|
} | undefined;
|
2811
2867
|
personal?: Record<string, string> | undefined;
|
2812
2868
|
} | undefined;
|
@@ -2839,42 +2895,48 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
2839
2895
|
sharing: z.ZodOptional<z.ZodBoolean>;
|
2840
2896
|
shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2841
2897
|
shareAll: z.ZodOptional<z.ZodBoolean>;
|
2898
|
+
shareUntil: z.ZodOptional<z.ZodString>;
|
2842
2899
|
}, "strip", z.ZodTypeAny, {
|
2843
|
-
shareAll?: boolean | undefined;
|
2844
2900
|
sharing?: boolean | undefined;
|
2845
2901
|
shared?: string[] | undefined;
|
2846
|
-
}, {
|
2847
2902
|
shareAll?: boolean | undefined;
|
2903
|
+
shareUntil?: string | undefined;
|
2904
|
+
}, {
|
2848
2905
|
sharing?: boolean | undefined;
|
2849
2906
|
shared?: string[] | undefined;
|
2907
|
+
shareAll?: boolean | undefined;
|
2908
|
+
shareUntil?: string | undefined;
|
2850
2909
|
}>>>;
|
2851
2910
|
}, "strip", z.ZodTypeAny, {
|
2852
|
-
shareAll?: boolean | undefined;
|
2853
2911
|
sharing?: boolean | undefined;
|
2912
|
+
shareAll?: boolean | undefined;
|
2854
2913
|
categories: Record<string, {
|
2855
|
-
shareAll?: boolean | undefined;
|
2856
2914
|
sharing?: boolean | undefined;
|
2857
2915
|
shared?: string[] | undefined;
|
2916
|
+
shareAll?: boolean | undefined;
|
2917
|
+
shareUntil?: string | undefined;
|
2858
2918
|
}>;
|
2859
2919
|
}, {
|
2860
2920
|
categories?: Record<string, {
|
2861
|
-
shareAll?: boolean | undefined;
|
2862
2921
|
sharing?: boolean | undefined;
|
2863
2922
|
shared?: string[] | undefined;
|
2923
|
+
shareAll?: boolean | undefined;
|
2924
|
+
shareUntil?: string | undefined;
|
2864
2925
|
}> | undefined;
|
2865
|
-
shareAll?: boolean | undefined;
|
2866
2926
|
sharing?: boolean | undefined;
|
2927
|
+
shareAll?: boolean | undefined;
|
2867
2928
|
}>>;
|
2868
2929
|
personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
2869
2930
|
}, "strip", z.ZodTypeAny, {
|
2870
2931
|
anonymize?: boolean | undefined;
|
2871
2932
|
credentials: {
|
2872
|
-
shareAll?: boolean | undefined;
|
2873
2933
|
sharing?: boolean | undefined;
|
2934
|
+
shareAll?: boolean | undefined;
|
2874
2935
|
categories: Record<string, {
|
2875
|
-
shareAll?: boolean | undefined;
|
2876
2936
|
sharing?: boolean | undefined;
|
2877
2937
|
shared?: string[] | undefined;
|
2938
|
+
shareAll?: boolean | undefined;
|
2939
|
+
shareUntil?: string | undefined;
|
2878
2940
|
}>;
|
2879
2941
|
};
|
2880
2942
|
personal: Record<string, string>;
|
@@ -2882,12 +2944,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
2882
2944
|
anonymize?: boolean | undefined;
|
2883
2945
|
credentials?: {
|
2884
2946
|
categories?: Record<string, {
|
2885
|
-
shareAll?: boolean | undefined;
|
2886
2947
|
sharing?: boolean | undefined;
|
2887
2948
|
shared?: string[] | undefined;
|
2949
|
+
shareAll?: boolean | undefined;
|
2950
|
+
shareUntil?: string | undefined;
|
2888
2951
|
}> | undefined;
|
2889
|
-
shareAll?: boolean | undefined;
|
2890
2952
|
sharing?: boolean | undefined;
|
2953
|
+
shareAll?: boolean | undefined;
|
2891
2954
|
} | undefined;
|
2892
2955
|
personal?: Record<string, string> | undefined;
|
2893
2956
|
}>>;
|
@@ -2915,12 +2978,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
2915
2978
|
read: {
|
2916
2979
|
anonymize?: boolean | undefined;
|
2917
2980
|
credentials: {
|
2918
|
-
shareAll?: boolean | undefined;
|
2919
2981
|
sharing?: boolean | undefined;
|
2982
|
+
shareAll?: boolean | undefined;
|
2920
2983
|
categories: Record<string, {
|
2921
|
-
shareAll?: boolean | undefined;
|
2922
2984
|
sharing?: boolean | undefined;
|
2923
2985
|
shared?: string[] | undefined;
|
2986
|
+
shareAll?: boolean | undefined;
|
2987
|
+
shareUntil?: string | undefined;
|
2924
2988
|
}>;
|
2925
2989
|
};
|
2926
2990
|
personal: Record<string, string>;
|
@@ -2936,12 +3000,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
2936
3000
|
anonymize?: boolean | undefined;
|
2937
3001
|
credentials?: {
|
2938
3002
|
categories?: Record<string, {
|
2939
|
-
shareAll?: boolean | undefined;
|
2940
3003
|
sharing?: boolean | undefined;
|
2941
3004
|
shared?: string[] | undefined;
|
3005
|
+
shareAll?: boolean | undefined;
|
3006
|
+
shareUntil?: string | undefined;
|
2942
3007
|
}> | undefined;
|
2943
|
-
shareAll?: boolean | undefined;
|
2944
3008
|
sharing?: boolean | undefined;
|
3009
|
+
shareAll?: boolean | undefined;
|
2945
3010
|
} | undefined;
|
2946
3011
|
personal?: Record<string, string> | undefined;
|
2947
3012
|
} | undefined;
|
@@ -2962,12 +3027,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
2962
3027
|
read: {
|
2963
3028
|
anonymize?: boolean | undefined;
|
2964
3029
|
credentials: {
|
2965
|
-
shareAll?: boolean | undefined;
|
2966
3030
|
sharing?: boolean | undefined;
|
3031
|
+
shareAll?: boolean | undefined;
|
2967
3032
|
categories: Record<string, {
|
2968
|
-
shareAll?: boolean | undefined;
|
2969
3033
|
sharing?: boolean | undefined;
|
2970
3034
|
shared?: string[] | undefined;
|
3035
|
+
shareAll?: boolean | undefined;
|
3036
|
+
shareUntil?: string | undefined;
|
2971
3037
|
}>;
|
2972
3038
|
};
|
2973
3039
|
personal: Record<string, string>;
|
@@ -2990,12 +3056,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
2990
3056
|
anonymize?: boolean | undefined;
|
2991
3057
|
credentials?: {
|
2992
3058
|
categories?: Record<string, {
|
2993
|
-
shareAll?: boolean | undefined;
|
2994
3059
|
sharing?: boolean | undefined;
|
2995
3060
|
shared?: string[] | undefined;
|
3061
|
+
shareAll?: boolean | undefined;
|
3062
|
+
shareUntil?: string | undefined;
|
2996
3063
|
}> | undefined;
|
2997
|
-
shareAll?: boolean | undefined;
|
2998
3064
|
sharing?: boolean | undefined;
|
3065
|
+
shareAll?: boolean | undefined;
|
2999
3066
|
} | undefined;
|
3000
3067
|
personal?: Record<string, string> | undefined;
|
3001
3068
|
} | undefined;
|
@@ -3020,12 +3087,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
3020
3087
|
read: {
|
3021
3088
|
anonymize?: boolean | undefined;
|
3022
3089
|
credentials: {
|
3023
|
-
shareAll?: boolean | undefined;
|
3024
3090
|
sharing?: boolean | undefined;
|
3091
|
+
shareAll?: boolean | undefined;
|
3025
3092
|
categories: Record<string, {
|
3026
|
-
shareAll?: boolean | undefined;
|
3027
3093
|
sharing?: boolean | undefined;
|
3028
3094
|
shared?: string[] | undefined;
|
3095
|
+
shareAll?: boolean | undefined;
|
3096
|
+
shareUntil?: string | undefined;
|
3029
3097
|
}>;
|
3030
3098
|
};
|
3031
3099
|
personal: Record<string, string>;
|
@@ -3052,12 +3120,13 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
3052
3120
|
anonymize?: boolean | undefined;
|
3053
3121
|
credentials?: {
|
3054
3122
|
categories?: Record<string, {
|
3055
|
-
shareAll?: boolean | undefined;
|
3056
3123
|
sharing?: boolean | undefined;
|
3057
3124
|
shared?: string[] | undefined;
|
3125
|
+
shareAll?: boolean | undefined;
|
3126
|
+
shareUntil?: string | undefined;
|
3058
3127
|
}> | undefined;
|
3059
|
-
shareAll?: boolean | undefined;
|
3060
3128
|
sharing?: boolean | undefined;
|
3129
|
+
shareAll?: boolean | undefined;
|
3061
3130
|
} | undefined;
|
3062
3131
|
personal?: Record<string, string> | undefined;
|
3063
3132
|
} | undefined;
|
@@ -3074,4 +3143,795 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
3074
3143
|
}[];
|
3075
3144
|
}>;
|
3076
3145
|
export type PaginatedConsentFlowTransactions = z.infer<typeof PaginatedConsentFlowTransactionsValidator>;
|
3146
|
+
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"]>;
|
3147
|
+
export type LCNNotificationTypeEnum = z.infer<typeof LCNNotificationTypeEnumValidator>;
|
3148
|
+
export declare const LCNNotificationMessageValidator: z.ZodObject<{
|
3149
|
+
title: z.ZodOptional<z.ZodString>;
|
3150
|
+
body: z.ZodOptional<z.ZodString>;
|
3151
|
+
}, "strip", z.ZodTypeAny, {
|
3152
|
+
title?: string | undefined;
|
3153
|
+
body?: string | undefined;
|
3154
|
+
}, {
|
3155
|
+
title?: string | undefined;
|
3156
|
+
body?: string | undefined;
|
3157
|
+
}>;
|
3158
|
+
export type LCNNotificationMessage = z.infer<typeof LCNNotificationMessageValidator>;
|
3159
|
+
export declare const LCNNotificationDataValidator: z.ZodObject<{
|
3160
|
+
vcUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3161
|
+
vpUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3162
|
+
transaction: z.ZodOptional<z.ZodObject<{
|
3163
|
+
expiresAt: z.ZodOptional<z.ZodString>;
|
3164
|
+
oneTime: z.ZodOptional<z.ZodBoolean>;
|
3165
|
+
terms: z.ZodOptional<z.ZodObject<{
|
3166
|
+
read: z.ZodDefault<z.ZodObject<{
|
3167
|
+
anonymize: z.ZodOptional<z.ZodBoolean>;
|
3168
|
+
credentials: z.ZodDefault<z.ZodObject<{
|
3169
|
+
shareAll: z.ZodOptional<z.ZodBoolean>;
|
3170
|
+
sharing: z.ZodOptional<z.ZodBoolean>;
|
3171
|
+
categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
3172
|
+
sharing: z.ZodOptional<z.ZodBoolean>;
|
3173
|
+
shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3174
|
+
shareAll: z.ZodOptional<z.ZodBoolean>;
|
3175
|
+
shareUntil: z.ZodOptional<z.ZodString>;
|
3176
|
+
}, "strip", z.ZodTypeAny, {
|
3177
|
+
sharing?: boolean | undefined;
|
3178
|
+
shared?: string[] | undefined;
|
3179
|
+
shareAll?: boolean | undefined;
|
3180
|
+
shareUntil?: string | undefined;
|
3181
|
+
}, {
|
3182
|
+
sharing?: boolean | undefined;
|
3183
|
+
shared?: string[] | undefined;
|
3184
|
+
shareAll?: boolean | undefined;
|
3185
|
+
shareUntil?: string | undefined;
|
3186
|
+
}>>>;
|
3187
|
+
}, "strip", z.ZodTypeAny, {
|
3188
|
+
sharing?: boolean | undefined;
|
3189
|
+
shareAll?: boolean | undefined;
|
3190
|
+
categories: Record<string, {
|
3191
|
+
sharing?: boolean | undefined;
|
3192
|
+
shared?: string[] | undefined;
|
3193
|
+
shareAll?: boolean | undefined;
|
3194
|
+
shareUntil?: string | undefined;
|
3195
|
+
}>;
|
3196
|
+
}, {
|
3197
|
+
categories?: Record<string, {
|
3198
|
+
sharing?: boolean | undefined;
|
3199
|
+
shared?: string[] | undefined;
|
3200
|
+
shareAll?: boolean | undefined;
|
3201
|
+
shareUntil?: string | undefined;
|
3202
|
+
}> | undefined;
|
3203
|
+
sharing?: boolean | undefined;
|
3204
|
+
shareAll?: boolean | undefined;
|
3205
|
+
}>>;
|
3206
|
+
personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
3207
|
+
}, "strip", z.ZodTypeAny, {
|
3208
|
+
anonymize?: boolean | undefined;
|
3209
|
+
credentials: {
|
3210
|
+
sharing?: boolean | undefined;
|
3211
|
+
shareAll?: boolean | undefined;
|
3212
|
+
categories: Record<string, {
|
3213
|
+
sharing?: boolean | undefined;
|
3214
|
+
shared?: string[] | undefined;
|
3215
|
+
shareAll?: boolean | undefined;
|
3216
|
+
shareUntil?: string | undefined;
|
3217
|
+
}>;
|
3218
|
+
};
|
3219
|
+
personal: Record<string, string>;
|
3220
|
+
}, {
|
3221
|
+
anonymize?: boolean | undefined;
|
3222
|
+
credentials?: {
|
3223
|
+
categories?: Record<string, {
|
3224
|
+
sharing?: boolean | undefined;
|
3225
|
+
shared?: string[] | undefined;
|
3226
|
+
shareAll?: boolean | undefined;
|
3227
|
+
shareUntil?: string | undefined;
|
3228
|
+
}> | undefined;
|
3229
|
+
sharing?: boolean | undefined;
|
3230
|
+
shareAll?: boolean | undefined;
|
3231
|
+
} | undefined;
|
3232
|
+
personal?: Record<string, string> | undefined;
|
3233
|
+
}>>;
|
3234
|
+
write: z.ZodDefault<z.ZodObject<{
|
3235
|
+
credentials: z.ZodDefault<z.ZodObject<{
|
3236
|
+
categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
3237
|
+
}, "strip", z.ZodTypeAny, {
|
3238
|
+
categories: Record<string, boolean>;
|
3239
|
+
}, {
|
3240
|
+
categories?: Record<string, boolean> | undefined;
|
3241
|
+
}>>;
|
3242
|
+
personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
3243
|
+
}, "strip", z.ZodTypeAny, {
|
3244
|
+
credentials: {
|
3245
|
+
categories: Record<string, boolean>;
|
3246
|
+
};
|
3247
|
+
personal: Record<string, boolean>;
|
3248
|
+
}, {
|
3249
|
+
credentials?: {
|
3250
|
+
categories?: Record<string, boolean> | undefined;
|
3251
|
+
} | undefined;
|
3252
|
+
personal?: Record<string, boolean> | undefined;
|
3253
|
+
}>>;
|
3254
|
+
}, "strip", z.ZodTypeAny, {
|
3255
|
+
read: {
|
3256
|
+
anonymize?: boolean | undefined;
|
3257
|
+
credentials: {
|
3258
|
+
sharing?: boolean | undefined;
|
3259
|
+
shareAll?: boolean | undefined;
|
3260
|
+
categories: Record<string, {
|
3261
|
+
sharing?: boolean | undefined;
|
3262
|
+
shared?: string[] | undefined;
|
3263
|
+
shareAll?: boolean | undefined;
|
3264
|
+
shareUntil?: string | undefined;
|
3265
|
+
}>;
|
3266
|
+
};
|
3267
|
+
personal: Record<string, string>;
|
3268
|
+
};
|
3269
|
+
write: {
|
3270
|
+
credentials: {
|
3271
|
+
categories: Record<string, boolean>;
|
3272
|
+
};
|
3273
|
+
personal: Record<string, boolean>;
|
3274
|
+
};
|
3275
|
+
}, {
|
3276
|
+
read?: {
|
3277
|
+
anonymize?: boolean | undefined;
|
3278
|
+
credentials?: {
|
3279
|
+
categories?: Record<string, {
|
3280
|
+
sharing?: boolean | undefined;
|
3281
|
+
shared?: string[] | undefined;
|
3282
|
+
shareAll?: boolean | undefined;
|
3283
|
+
shareUntil?: string | undefined;
|
3284
|
+
}> | undefined;
|
3285
|
+
sharing?: boolean | undefined;
|
3286
|
+
shareAll?: boolean | undefined;
|
3287
|
+
} | undefined;
|
3288
|
+
personal?: Record<string, string> | undefined;
|
3289
|
+
} | undefined;
|
3290
|
+
write?: {
|
3291
|
+
credentials?: {
|
3292
|
+
categories?: Record<string, boolean> | undefined;
|
3293
|
+
} | undefined;
|
3294
|
+
personal?: Record<string, boolean> | undefined;
|
3295
|
+
} | undefined;
|
3296
|
+
}>>;
|
3297
|
+
id: z.ZodString;
|
3298
|
+
action: z.ZodEnum<["consent", "update", "sync", "withdraw"]>;
|
3299
|
+
date: z.ZodString;
|
3300
|
+
}, "strip", z.ZodTypeAny, {
|
3301
|
+
expiresAt?: string | undefined;
|
3302
|
+
oneTime?: boolean | undefined;
|
3303
|
+
terms?: {
|
3304
|
+
read: {
|
3305
|
+
anonymize?: boolean | undefined;
|
3306
|
+
credentials: {
|
3307
|
+
sharing?: boolean | undefined;
|
3308
|
+
shareAll?: boolean | undefined;
|
3309
|
+
categories: Record<string, {
|
3310
|
+
sharing?: boolean | undefined;
|
3311
|
+
shared?: string[] | undefined;
|
3312
|
+
shareAll?: boolean | undefined;
|
3313
|
+
shareUntil?: string | undefined;
|
3314
|
+
}>;
|
3315
|
+
};
|
3316
|
+
personal: Record<string, string>;
|
3317
|
+
};
|
3318
|
+
write: {
|
3319
|
+
credentials: {
|
3320
|
+
categories: Record<string, boolean>;
|
3321
|
+
};
|
3322
|
+
personal: Record<string, boolean>;
|
3323
|
+
};
|
3324
|
+
} | undefined;
|
3325
|
+
date: string;
|
3326
|
+
id: string;
|
3327
|
+
action: "consent" | "update" | "sync" | "withdraw";
|
3328
|
+
}, {
|
3329
|
+
expiresAt?: string | undefined;
|
3330
|
+
oneTime?: boolean | undefined;
|
3331
|
+
terms?: {
|
3332
|
+
read?: {
|
3333
|
+
anonymize?: boolean | undefined;
|
3334
|
+
credentials?: {
|
3335
|
+
categories?: Record<string, {
|
3336
|
+
sharing?: boolean | undefined;
|
3337
|
+
shared?: string[] | undefined;
|
3338
|
+
shareAll?: boolean | undefined;
|
3339
|
+
shareUntil?: string | undefined;
|
3340
|
+
}> | undefined;
|
3341
|
+
sharing?: boolean | undefined;
|
3342
|
+
shareAll?: boolean | undefined;
|
3343
|
+
} | undefined;
|
3344
|
+
personal?: Record<string, string> | undefined;
|
3345
|
+
} | undefined;
|
3346
|
+
write?: {
|
3347
|
+
credentials?: {
|
3348
|
+
categories?: Record<string, boolean> | undefined;
|
3349
|
+
} | undefined;
|
3350
|
+
personal?: Record<string, boolean> | undefined;
|
3351
|
+
} | undefined;
|
3352
|
+
} | undefined;
|
3353
|
+
date: string;
|
3354
|
+
id: string;
|
3355
|
+
action: "consent" | "update" | "sync" | "withdraw";
|
3356
|
+
}>>;
|
3357
|
+
}, "strip", z.ZodTypeAny, {
|
3358
|
+
vcUris?: string[] | undefined;
|
3359
|
+
vpUris?: string[] | undefined;
|
3360
|
+
transaction?: {
|
3361
|
+
expiresAt?: string | undefined;
|
3362
|
+
oneTime?: boolean | undefined;
|
3363
|
+
terms?: {
|
3364
|
+
read: {
|
3365
|
+
anonymize?: boolean | undefined;
|
3366
|
+
credentials: {
|
3367
|
+
sharing?: boolean | undefined;
|
3368
|
+
shareAll?: boolean | undefined;
|
3369
|
+
categories: Record<string, {
|
3370
|
+
sharing?: boolean | undefined;
|
3371
|
+
shared?: string[] | undefined;
|
3372
|
+
shareAll?: boolean | undefined;
|
3373
|
+
shareUntil?: string | undefined;
|
3374
|
+
}>;
|
3375
|
+
};
|
3376
|
+
personal: Record<string, string>;
|
3377
|
+
};
|
3378
|
+
write: {
|
3379
|
+
credentials: {
|
3380
|
+
categories: Record<string, boolean>;
|
3381
|
+
};
|
3382
|
+
personal: Record<string, boolean>;
|
3383
|
+
};
|
3384
|
+
} | undefined;
|
3385
|
+
date: string;
|
3386
|
+
id: string;
|
3387
|
+
action: "consent" | "update" | "sync" | "withdraw";
|
3388
|
+
} | undefined;
|
3389
|
+
}, {
|
3390
|
+
vcUris?: string[] | undefined;
|
3391
|
+
vpUris?: string[] | undefined;
|
3392
|
+
transaction?: {
|
3393
|
+
expiresAt?: string | undefined;
|
3394
|
+
oneTime?: boolean | undefined;
|
3395
|
+
terms?: {
|
3396
|
+
read?: {
|
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
|
+
} | undefined;
|
3410
|
+
write?: {
|
3411
|
+
credentials?: {
|
3412
|
+
categories?: Record<string, boolean> | undefined;
|
3413
|
+
} | undefined;
|
3414
|
+
personal?: Record<string, boolean> | undefined;
|
3415
|
+
} | undefined;
|
3416
|
+
} | undefined;
|
3417
|
+
date: string;
|
3418
|
+
id: string;
|
3419
|
+
action: "consent" | "update" | "sync" | "withdraw";
|
3420
|
+
} | undefined;
|
3421
|
+
}>;
|
3422
|
+
export type LCNNotificationData = z.infer<typeof LCNNotificationDataValidator>;
|
3423
|
+
export declare const LCNNotificationValidator: z.ZodObject<{
|
3424
|
+
type: z.ZodEnum<["CONNECTION_REQUEST", "CONNECTION_ACCEPTED", "CREDENTIAL_RECEIVED", "CREDENTIAL_ACCEPTED", "BOOST_RECEIVED", "BOOST_ACCEPTED", "PRESENTATION_REQUEST", "PRESENTATION_RECEIVED", "CONSENT_FLOW_TRANSACTION"]>;
|
3425
|
+
to: z.ZodIntersection<z.ZodObject<{
|
3426
|
+
profileId: z.ZodOptional<z.ZodString>;
|
3427
|
+
displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3428
|
+
shortBio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3429
|
+
bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3430
|
+
did: z.ZodOptional<z.ZodString>;
|
3431
|
+
email: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
3432
|
+
image: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
3433
|
+
heroImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
3434
|
+
websiteLink: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
3435
|
+
isServiceProfile: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodBoolean>>>;
|
3436
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
3437
|
+
notificationsWebhook: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
3438
|
+
}, "strip", z.ZodTypeAny, {
|
3439
|
+
type?: string | undefined;
|
3440
|
+
image?: string | undefined;
|
3441
|
+
email?: string | undefined;
|
3442
|
+
profileId?: string | undefined;
|
3443
|
+
displayName?: string | undefined;
|
3444
|
+
shortBio?: string | undefined;
|
3445
|
+
bio?: string | undefined;
|
3446
|
+
did?: string | undefined;
|
3447
|
+
heroImage?: string | undefined;
|
3448
|
+
websiteLink?: string | undefined;
|
3449
|
+
isServiceProfile?: boolean | undefined;
|
3450
|
+
notificationsWebhook?: string | undefined;
|
3451
|
+
}, {
|
3452
|
+
type?: string | undefined;
|
3453
|
+
image?: string | undefined;
|
3454
|
+
email?: string | undefined;
|
3455
|
+
profileId?: string | undefined;
|
3456
|
+
displayName?: string | undefined;
|
3457
|
+
shortBio?: string | undefined;
|
3458
|
+
bio?: string | undefined;
|
3459
|
+
did?: string | undefined;
|
3460
|
+
heroImage?: string | undefined;
|
3461
|
+
websiteLink?: string | undefined;
|
3462
|
+
isServiceProfile?: boolean | undefined;
|
3463
|
+
notificationsWebhook?: string | undefined;
|
3464
|
+
}>, z.ZodObject<{
|
3465
|
+
did: z.ZodString;
|
3466
|
+
}, "strip", z.ZodTypeAny, {
|
3467
|
+
did: string;
|
3468
|
+
}, {
|
3469
|
+
did: string;
|
3470
|
+
}>>;
|
3471
|
+
from: z.ZodIntersection<z.ZodObject<{
|
3472
|
+
profileId: z.ZodOptional<z.ZodString>;
|
3473
|
+
displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3474
|
+
shortBio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3475
|
+
bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3476
|
+
did: z.ZodOptional<z.ZodString>;
|
3477
|
+
email: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
3478
|
+
image: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
3479
|
+
heroImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
3480
|
+
websiteLink: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
3481
|
+
isServiceProfile: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodBoolean>>>;
|
3482
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
3483
|
+
notificationsWebhook: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
3484
|
+
}, "strip", z.ZodTypeAny, {
|
3485
|
+
type?: string | undefined;
|
3486
|
+
image?: string | undefined;
|
3487
|
+
email?: string | undefined;
|
3488
|
+
profileId?: string | undefined;
|
3489
|
+
displayName?: string | undefined;
|
3490
|
+
shortBio?: string | undefined;
|
3491
|
+
bio?: string | undefined;
|
3492
|
+
did?: string | undefined;
|
3493
|
+
heroImage?: string | undefined;
|
3494
|
+
websiteLink?: string | undefined;
|
3495
|
+
isServiceProfile?: boolean | undefined;
|
3496
|
+
notificationsWebhook?: string | undefined;
|
3497
|
+
}, {
|
3498
|
+
type?: string | undefined;
|
3499
|
+
image?: string | undefined;
|
3500
|
+
email?: string | undefined;
|
3501
|
+
profileId?: string | undefined;
|
3502
|
+
displayName?: string | undefined;
|
3503
|
+
shortBio?: string | undefined;
|
3504
|
+
bio?: string | undefined;
|
3505
|
+
did?: string | undefined;
|
3506
|
+
heroImage?: string | undefined;
|
3507
|
+
websiteLink?: string | undefined;
|
3508
|
+
isServiceProfile?: boolean | undefined;
|
3509
|
+
notificationsWebhook?: string | undefined;
|
3510
|
+
}>, z.ZodObject<{
|
3511
|
+
did: z.ZodString;
|
3512
|
+
}, "strip", z.ZodTypeAny, {
|
3513
|
+
did: string;
|
3514
|
+
}, {
|
3515
|
+
did: string;
|
3516
|
+
}>>;
|
3517
|
+
message: z.ZodOptional<z.ZodObject<{
|
3518
|
+
title: z.ZodOptional<z.ZodString>;
|
3519
|
+
body: z.ZodOptional<z.ZodString>;
|
3520
|
+
}, "strip", z.ZodTypeAny, {
|
3521
|
+
title?: string | undefined;
|
3522
|
+
body?: string | undefined;
|
3523
|
+
}, {
|
3524
|
+
title?: string | undefined;
|
3525
|
+
body?: string | undefined;
|
3526
|
+
}>>;
|
3527
|
+
data: z.ZodOptional<z.ZodObject<{
|
3528
|
+
vcUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3529
|
+
vpUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3530
|
+
transaction: z.ZodOptional<z.ZodObject<{
|
3531
|
+
expiresAt: z.ZodOptional<z.ZodString>;
|
3532
|
+
oneTime: z.ZodOptional<z.ZodBoolean>;
|
3533
|
+
terms: z.ZodOptional<z.ZodObject<{
|
3534
|
+
read: z.ZodDefault<z.ZodObject<{
|
3535
|
+
anonymize: z.ZodOptional<z.ZodBoolean>;
|
3536
|
+
credentials: z.ZodDefault<z.ZodObject<{
|
3537
|
+
shareAll: z.ZodOptional<z.ZodBoolean>;
|
3538
|
+
sharing: z.ZodOptional<z.ZodBoolean>;
|
3539
|
+
categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
3540
|
+
sharing: z.ZodOptional<z.ZodBoolean>;
|
3541
|
+
shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3542
|
+
shareAll: z.ZodOptional<z.ZodBoolean>;
|
3543
|
+
shareUntil: z.ZodOptional<z.ZodString>;
|
3544
|
+
}, "strip", z.ZodTypeAny, {
|
3545
|
+
sharing?: boolean | undefined;
|
3546
|
+
shared?: string[] | undefined;
|
3547
|
+
shareAll?: boolean | undefined;
|
3548
|
+
shareUntil?: string | undefined;
|
3549
|
+
}, {
|
3550
|
+
sharing?: boolean | undefined;
|
3551
|
+
shared?: string[] | undefined;
|
3552
|
+
shareAll?: boolean | undefined;
|
3553
|
+
shareUntil?: string | undefined;
|
3554
|
+
}>>>;
|
3555
|
+
}, "strip", z.ZodTypeAny, {
|
3556
|
+
sharing?: boolean | undefined;
|
3557
|
+
shareAll?: boolean | undefined;
|
3558
|
+
categories: Record<string, {
|
3559
|
+
sharing?: boolean | undefined;
|
3560
|
+
shared?: string[] | undefined;
|
3561
|
+
shareAll?: boolean | undefined;
|
3562
|
+
shareUntil?: string | undefined;
|
3563
|
+
}>;
|
3564
|
+
}, {
|
3565
|
+
categories?: Record<string, {
|
3566
|
+
sharing?: boolean | undefined;
|
3567
|
+
shared?: string[] | undefined;
|
3568
|
+
shareAll?: boolean | undefined;
|
3569
|
+
shareUntil?: string | undefined;
|
3570
|
+
}> | undefined;
|
3571
|
+
sharing?: boolean | undefined;
|
3572
|
+
shareAll?: boolean | undefined;
|
3573
|
+
}>>;
|
3574
|
+
personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
3575
|
+
}, "strip", z.ZodTypeAny, {
|
3576
|
+
anonymize?: boolean | undefined;
|
3577
|
+
credentials: {
|
3578
|
+
sharing?: boolean | undefined;
|
3579
|
+
shareAll?: boolean | undefined;
|
3580
|
+
categories: Record<string, {
|
3581
|
+
sharing?: boolean | undefined;
|
3582
|
+
shared?: string[] | undefined;
|
3583
|
+
shareAll?: boolean | undefined;
|
3584
|
+
shareUntil?: string | undefined;
|
3585
|
+
}>;
|
3586
|
+
};
|
3587
|
+
personal: Record<string, string>;
|
3588
|
+
}, {
|
3589
|
+
anonymize?: boolean | undefined;
|
3590
|
+
credentials?: {
|
3591
|
+
categories?: Record<string, {
|
3592
|
+
sharing?: boolean | undefined;
|
3593
|
+
shared?: string[] | undefined;
|
3594
|
+
shareAll?: boolean | undefined;
|
3595
|
+
shareUntil?: string | undefined;
|
3596
|
+
}> | undefined;
|
3597
|
+
sharing?: boolean | undefined;
|
3598
|
+
shareAll?: boolean | undefined;
|
3599
|
+
} | undefined;
|
3600
|
+
personal?: Record<string, string> | undefined;
|
3601
|
+
}>>;
|
3602
|
+
write: z.ZodDefault<z.ZodObject<{
|
3603
|
+
credentials: z.ZodDefault<z.ZodObject<{
|
3604
|
+
categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
3605
|
+
}, "strip", z.ZodTypeAny, {
|
3606
|
+
categories: Record<string, boolean>;
|
3607
|
+
}, {
|
3608
|
+
categories?: Record<string, boolean> | undefined;
|
3609
|
+
}>>;
|
3610
|
+
personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
3611
|
+
}, "strip", z.ZodTypeAny, {
|
3612
|
+
credentials: {
|
3613
|
+
categories: Record<string, boolean>;
|
3614
|
+
};
|
3615
|
+
personal: Record<string, boolean>;
|
3616
|
+
}, {
|
3617
|
+
credentials?: {
|
3618
|
+
categories?: Record<string, boolean> | undefined;
|
3619
|
+
} | undefined;
|
3620
|
+
personal?: Record<string, boolean> | undefined;
|
3621
|
+
}>>;
|
3622
|
+
}, "strip", z.ZodTypeAny, {
|
3623
|
+
read: {
|
3624
|
+
anonymize?: boolean | undefined;
|
3625
|
+
credentials: {
|
3626
|
+
sharing?: boolean | undefined;
|
3627
|
+
shareAll?: boolean | undefined;
|
3628
|
+
categories: Record<string, {
|
3629
|
+
sharing?: boolean | undefined;
|
3630
|
+
shared?: string[] | undefined;
|
3631
|
+
shareAll?: boolean | undefined;
|
3632
|
+
shareUntil?: string | undefined;
|
3633
|
+
}>;
|
3634
|
+
};
|
3635
|
+
personal: Record<string, string>;
|
3636
|
+
};
|
3637
|
+
write: {
|
3638
|
+
credentials: {
|
3639
|
+
categories: Record<string, boolean>;
|
3640
|
+
};
|
3641
|
+
personal: Record<string, boolean>;
|
3642
|
+
};
|
3643
|
+
}, {
|
3644
|
+
read?: {
|
3645
|
+
anonymize?: boolean | undefined;
|
3646
|
+
credentials?: {
|
3647
|
+
categories?: Record<string, {
|
3648
|
+
sharing?: boolean | undefined;
|
3649
|
+
shared?: string[] | undefined;
|
3650
|
+
shareAll?: boolean | undefined;
|
3651
|
+
shareUntil?: string | undefined;
|
3652
|
+
}> | undefined;
|
3653
|
+
sharing?: boolean | undefined;
|
3654
|
+
shareAll?: boolean | undefined;
|
3655
|
+
} | undefined;
|
3656
|
+
personal?: Record<string, string> | undefined;
|
3657
|
+
} | undefined;
|
3658
|
+
write?: {
|
3659
|
+
credentials?: {
|
3660
|
+
categories?: Record<string, boolean> | undefined;
|
3661
|
+
} | undefined;
|
3662
|
+
personal?: Record<string, boolean> | undefined;
|
3663
|
+
} | undefined;
|
3664
|
+
}>>;
|
3665
|
+
id: z.ZodString;
|
3666
|
+
action: z.ZodEnum<["consent", "update", "sync", "withdraw"]>;
|
3667
|
+
date: z.ZodString;
|
3668
|
+
}, "strip", z.ZodTypeAny, {
|
3669
|
+
expiresAt?: string | undefined;
|
3670
|
+
oneTime?: boolean | undefined;
|
3671
|
+
terms?: {
|
3672
|
+
read: {
|
3673
|
+
anonymize?: boolean | undefined;
|
3674
|
+
credentials: {
|
3675
|
+
sharing?: boolean | undefined;
|
3676
|
+
shareAll?: boolean | undefined;
|
3677
|
+
categories: Record<string, {
|
3678
|
+
sharing?: boolean | undefined;
|
3679
|
+
shared?: string[] | undefined;
|
3680
|
+
shareAll?: boolean | undefined;
|
3681
|
+
shareUntil?: string | undefined;
|
3682
|
+
}>;
|
3683
|
+
};
|
3684
|
+
personal: Record<string, string>;
|
3685
|
+
};
|
3686
|
+
write: {
|
3687
|
+
credentials: {
|
3688
|
+
categories: Record<string, boolean>;
|
3689
|
+
};
|
3690
|
+
personal: Record<string, boolean>;
|
3691
|
+
};
|
3692
|
+
} | undefined;
|
3693
|
+
date: string;
|
3694
|
+
id: string;
|
3695
|
+
action: "consent" | "update" | "sync" | "withdraw";
|
3696
|
+
}, {
|
3697
|
+
expiresAt?: string | undefined;
|
3698
|
+
oneTime?: boolean | undefined;
|
3699
|
+
terms?: {
|
3700
|
+
read?: {
|
3701
|
+
anonymize?: boolean | undefined;
|
3702
|
+
credentials?: {
|
3703
|
+
categories?: Record<string, {
|
3704
|
+
sharing?: boolean | undefined;
|
3705
|
+
shared?: string[] | undefined;
|
3706
|
+
shareAll?: boolean | undefined;
|
3707
|
+
shareUntil?: string | undefined;
|
3708
|
+
}> | undefined;
|
3709
|
+
sharing?: boolean | undefined;
|
3710
|
+
shareAll?: boolean | undefined;
|
3711
|
+
} | undefined;
|
3712
|
+
personal?: Record<string, string> | undefined;
|
3713
|
+
} | undefined;
|
3714
|
+
write?: {
|
3715
|
+
credentials?: {
|
3716
|
+
categories?: Record<string, boolean> | undefined;
|
3717
|
+
} | undefined;
|
3718
|
+
personal?: Record<string, boolean> | undefined;
|
3719
|
+
} | undefined;
|
3720
|
+
} | undefined;
|
3721
|
+
date: string;
|
3722
|
+
id: string;
|
3723
|
+
action: "consent" | "update" | "sync" | "withdraw";
|
3724
|
+
}>>;
|
3725
|
+
}, "strip", z.ZodTypeAny, {
|
3726
|
+
vcUris?: string[] | undefined;
|
3727
|
+
vpUris?: string[] | undefined;
|
3728
|
+
transaction?: {
|
3729
|
+
expiresAt?: string | undefined;
|
3730
|
+
oneTime?: boolean | undefined;
|
3731
|
+
terms?: {
|
3732
|
+
read: {
|
3733
|
+
anonymize?: boolean | undefined;
|
3734
|
+
credentials: {
|
3735
|
+
sharing?: boolean | undefined;
|
3736
|
+
shareAll?: boolean | undefined;
|
3737
|
+
categories: Record<string, {
|
3738
|
+
sharing?: boolean | undefined;
|
3739
|
+
shared?: string[] | undefined;
|
3740
|
+
shareAll?: boolean | undefined;
|
3741
|
+
shareUntil?: string | undefined;
|
3742
|
+
}>;
|
3743
|
+
};
|
3744
|
+
personal: Record<string, string>;
|
3745
|
+
};
|
3746
|
+
write: {
|
3747
|
+
credentials: {
|
3748
|
+
categories: Record<string, boolean>;
|
3749
|
+
};
|
3750
|
+
personal: Record<string, boolean>;
|
3751
|
+
};
|
3752
|
+
} | undefined;
|
3753
|
+
date: string;
|
3754
|
+
id: string;
|
3755
|
+
action: "consent" | "update" | "sync" | "withdraw";
|
3756
|
+
} | undefined;
|
3757
|
+
}, {
|
3758
|
+
vcUris?: string[] | undefined;
|
3759
|
+
vpUris?: string[] | undefined;
|
3760
|
+
transaction?: {
|
3761
|
+
expiresAt?: string | undefined;
|
3762
|
+
oneTime?: boolean | undefined;
|
3763
|
+
terms?: {
|
3764
|
+
read?: {
|
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
|
+
} | undefined;
|
3778
|
+
write?: {
|
3779
|
+
credentials?: {
|
3780
|
+
categories?: Record<string, boolean> | undefined;
|
3781
|
+
} | undefined;
|
3782
|
+
personal?: Record<string, boolean> | undefined;
|
3783
|
+
} | undefined;
|
3784
|
+
} | undefined;
|
3785
|
+
date: string;
|
3786
|
+
id: string;
|
3787
|
+
action: "consent" | "update" | "sync" | "withdraw";
|
3788
|
+
} | undefined;
|
3789
|
+
}>>;
|
3790
|
+
sent: z.ZodOptional<z.ZodString>;
|
3791
|
+
}, "strip", z.ZodTypeAny, {
|
3792
|
+
message?: {
|
3793
|
+
title?: string | undefined;
|
3794
|
+
body?: string | undefined;
|
3795
|
+
} | undefined;
|
3796
|
+
data?: {
|
3797
|
+
vcUris?: string[] | undefined;
|
3798
|
+
vpUris?: string[] | undefined;
|
3799
|
+
transaction?: {
|
3800
|
+
expiresAt?: string | undefined;
|
3801
|
+
oneTime?: boolean | undefined;
|
3802
|
+
terms?: {
|
3803
|
+
read: {
|
3804
|
+
anonymize?: boolean | undefined;
|
3805
|
+
credentials: {
|
3806
|
+
sharing?: boolean | undefined;
|
3807
|
+
shareAll?: boolean | undefined;
|
3808
|
+
categories: Record<string, {
|
3809
|
+
sharing?: boolean | undefined;
|
3810
|
+
shared?: string[] | undefined;
|
3811
|
+
shareAll?: boolean | undefined;
|
3812
|
+
shareUntil?: string | undefined;
|
3813
|
+
}>;
|
3814
|
+
};
|
3815
|
+
personal: Record<string, string>;
|
3816
|
+
};
|
3817
|
+
write: {
|
3818
|
+
credentials: {
|
3819
|
+
categories: Record<string, boolean>;
|
3820
|
+
};
|
3821
|
+
personal: Record<string, boolean>;
|
3822
|
+
};
|
3823
|
+
} | undefined;
|
3824
|
+
date: string;
|
3825
|
+
id: string;
|
3826
|
+
action: "consent" | "update" | "sync" | "withdraw";
|
3827
|
+
} | undefined;
|
3828
|
+
} | undefined;
|
3829
|
+
sent?: string | undefined;
|
3830
|
+
type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION";
|
3831
|
+
to: {
|
3832
|
+
type?: string | undefined;
|
3833
|
+
image?: string | undefined;
|
3834
|
+
email?: string | undefined;
|
3835
|
+
profileId?: string | undefined;
|
3836
|
+
displayName?: string | undefined;
|
3837
|
+
shortBio?: string | undefined;
|
3838
|
+
bio?: string | undefined;
|
3839
|
+
did?: string | undefined;
|
3840
|
+
heroImage?: string | undefined;
|
3841
|
+
websiteLink?: string | undefined;
|
3842
|
+
isServiceProfile?: boolean | undefined;
|
3843
|
+
notificationsWebhook?: string | undefined;
|
3844
|
+
} & {
|
3845
|
+
did: string;
|
3846
|
+
};
|
3847
|
+
from: {
|
3848
|
+
type?: string | undefined;
|
3849
|
+
image?: string | undefined;
|
3850
|
+
email?: string | undefined;
|
3851
|
+
profileId?: string | undefined;
|
3852
|
+
displayName?: string | undefined;
|
3853
|
+
shortBio?: string | undefined;
|
3854
|
+
bio?: string | undefined;
|
3855
|
+
did?: string | undefined;
|
3856
|
+
heroImage?: string | undefined;
|
3857
|
+
websiteLink?: string | undefined;
|
3858
|
+
isServiceProfile?: boolean | undefined;
|
3859
|
+
notificationsWebhook?: string | undefined;
|
3860
|
+
} & {
|
3861
|
+
did: string;
|
3862
|
+
};
|
3863
|
+
}, {
|
3864
|
+
message?: {
|
3865
|
+
title?: string | undefined;
|
3866
|
+
body?: string | undefined;
|
3867
|
+
} | undefined;
|
3868
|
+
data?: {
|
3869
|
+
vcUris?: string[] | undefined;
|
3870
|
+
vpUris?: string[] | undefined;
|
3871
|
+
transaction?: {
|
3872
|
+
expiresAt?: string | undefined;
|
3873
|
+
oneTime?: boolean | undefined;
|
3874
|
+
terms?: {
|
3875
|
+
read?: {
|
3876
|
+
anonymize?: boolean | undefined;
|
3877
|
+
credentials?: {
|
3878
|
+
categories?: Record<string, {
|
3879
|
+
sharing?: boolean | undefined;
|
3880
|
+
shared?: string[] | undefined;
|
3881
|
+
shareAll?: boolean | undefined;
|
3882
|
+
shareUntil?: string | undefined;
|
3883
|
+
}> | undefined;
|
3884
|
+
sharing?: boolean | undefined;
|
3885
|
+
shareAll?: boolean | undefined;
|
3886
|
+
} | undefined;
|
3887
|
+
personal?: Record<string, string> | undefined;
|
3888
|
+
} | undefined;
|
3889
|
+
write?: {
|
3890
|
+
credentials?: {
|
3891
|
+
categories?: Record<string, boolean> | undefined;
|
3892
|
+
} | undefined;
|
3893
|
+
personal?: Record<string, boolean> | undefined;
|
3894
|
+
} | undefined;
|
3895
|
+
} | undefined;
|
3896
|
+
date: string;
|
3897
|
+
id: string;
|
3898
|
+
action: "consent" | "update" | "sync" | "withdraw";
|
3899
|
+
} | undefined;
|
3900
|
+
} | undefined;
|
3901
|
+
sent?: string | undefined;
|
3902
|
+
type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION";
|
3903
|
+
to: {
|
3904
|
+
type?: string | undefined;
|
3905
|
+
image?: string | undefined;
|
3906
|
+
email?: string | undefined;
|
3907
|
+
profileId?: string | undefined;
|
3908
|
+
displayName?: string | undefined;
|
3909
|
+
shortBio?: string | undefined;
|
3910
|
+
bio?: string | undefined;
|
3911
|
+
did?: string | undefined;
|
3912
|
+
heroImage?: string | undefined;
|
3913
|
+
websiteLink?: string | undefined;
|
3914
|
+
isServiceProfile?: boolean | undefined;
|
3915
|
+
notificationsWebhook?: string | undefined;
|
3916
|
+
} & {
|
3917
|
+
did: string;
|
3918
|
+
};
|
3919
|
+
from: {
|
3920
|
+
type?: string | undefined;
|
3921
|
+
image?: string | undefined;
|
3922
|
+
email?: string | undefined;
|
3923
|
+
profileId?: string | undefined;
|
3924
|
+
displayName?: string | undefined;
|
3925
|
+
shortBio?: string | undefined;
|
3926
|
+
bio?: string | undefined;
|
3927
|
+
did?: string | undefined;
|
3928
|
+
heroImage?: string | undefined;
|
3929
|
+
websiteLink?: string | undefined;
|
3930
|
+
isServiceProfile?: boolean | undefined;
|
3931
|
+
notificationsWebhook?: string | undefined;
|
3932
|
+
} & {
|
3933
|
+
did: string;
|
3934
|
+
};
|
3935
|
+
}>;
|
3936
|
+
export type LCNNotification = z.infer<typeof LCNNotificationValidator>;
|
3077
3937
|
//# sourceMappingURL=lcn.d.ts.map
|