@learncard/types 5.5.8 → 5.5.9
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/lcn.d.ts +988 -0
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +18 -2
- package/dist/types.cjs.development.js.map +2 -2
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +3 -3
- package/dist/types.esm.js +18 -2
- package/dist/types.esm.js.map +2 -2
- package/package.json +1 -1
package/dist/lcn.d.ts
CHANGED
@@ -1,4 +1,42 @@
|
|
1
1
|
import { z } from 'zod';
|
2
|
+
export declare const LCNProfileDisplayValidator: z.ZodObject<{
|
3
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
4
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
5
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
6
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
7
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
8
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
9
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
10
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
11
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
12
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
13
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
15
|
+
backgroundColor?: string | undefined;
|
16
|
+
backgroundImage?: string | undefined;
|
17
|
+
fadeBackgroundImage?: boolean | undefined;
|
18
|
+
repeatBackgroundImage?: boolean | undefined;
|
19
|
+
fontColor?: string | undefined;
|
20
|
+
accentColor?: string | undefined;
|
21
|
+
accentFontColor?: string | undefined;
|
22
|
+
idBackgroundImage?: string | undefined;
|
23
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
24
|
+
idBackgroundColor?: string | undefined;
|
25
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
26
|
+
}, {
|
27
|
+
backgroundColor?: string | undefined;
|
28
|
+
backgroundImage?: string | undefined;
|
29
|
+
fadeBackgroundImage?: boolean | undefined;
|
30
|
+
repeatBackgroundImage?: boolean | undefined;
|
31
|
+
fontColor?: string | undefined;
|
32
|
+
accentColor?: string | undefined;
|
33
|
+
accentFontColor?: string | undefined;
|
34
|
+
idBackgroundImage?: string | undefined;
|
35
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
36
|
+
idBackgroundColor?: string | undefined;
|
37
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
38
|
+
}>;
|
39
|
+
export type LCNProfileDisplay = z.infer<typeof LCNProfileDisplayValidator>;
|
2
40
|
export declare const LCNProfileValidator: z.ZodObject<{
|
3
41
|
profileId: z.ZodString;
|
4
42
|
displayName: z.ZodDefault<z.ZodString>;
|
@@ -12,6 +50,43 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
12
50
|
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
13
51
|
type: z.ZodOptional<z.ZodString>;
|
14
52
|
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
53
|
+
display: z.ZodOptional<z.ZodObject<{
|
54
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
55
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
56
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
57
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
58
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
59
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
60
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
61
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
62
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
63
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
64
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
65
|
+
}, "strip", z.ZodTypeAny, {
|
66
|
+
backgroundColor?: string | undefined;
|
67
|
+
backgroundImage?: string | undefined;
|
68
|
+
fadeBackgroundImage?: boolean | undefined;
|
69
|
+
repeatBackgroundImage?: boolean | undefined;
|
70
|
+
fontColor?: string | undefined;
|
71
|
+
accentColor?: string | undefined;
|
72
|
+
accentFontColor?: string | undefined;
|
73
|
+
idBackgroundImage?: string | undefined;
|
74
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
75
|
+
idBackgroundColor?: string | undefined;
|
76
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
77
|
+
}, {
|
78
|
+
backgroundColor?: string | undefined;
|
79
|
+
backgroundImage?: string | undefined;
|
80
|
+
fadeBackgroundImage?: boolean | undefined;
|
81
|
+
repeatBackgroundImage?: boolean | undefined;
|
82
|
+
fontColor?: string | undefined;
|
83
|
+
accentColor?: string | undefined;
|
84
|
+
accentFontColor?: string | undefined;
|
85
|
+
idBackgroundImage?: string | undefined;
|
86
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
87
|
+
idBackgroundColor?: string | undefined;
|
88
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
89
|
+
}>>;
|
15
90
|
}, "strip", z.ZodTypeAny, {
|
16
91
|
type?: string | undefined;
|
17
92
|
image?: string | undefined;
|
@@ -20,6 +95,19 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
20
95
|
websiteLink?: string | undefined;
|
21
96
|
isServiceProfile?: boolean | undefined;
|
22
97
|
notificationsWebhook?: string | undefined;
|
98
|
+
display?: {
|
99
|
+
backgroundColor?: string | undefined;
|
100
|
+
backgroundImage?: string | undefined;
|
101
|
+
fadeBackgroundImage?: boolean | undefined;
|
102
|
+
repeatBackgroundImage?: boolean | undefined;
|
103
|
+
fontColor?: string | undefined;
|
104
|
+
accentColor?: string | undefined;
|
105
|
+
accentFontColor?: string | undefined;
|
106
|
+
idBackgroundImage?: string | undefined;
|
107
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
108
|
+
idBackgroundColor?: string | undefined;
|
109
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
110
|
+
} | undefined;
|
23
111
|
profileId: string;
|
24
112
|
displayName: string;
|
25
113
|
shortBio: string;
|
@@ -36,6 +124,19 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
36
124
|
websiteLink?: string | undefined;
|
37
125
|
isServiceProfile?: boolean | undefined;
|
38
126
|
notificationsWebhook?: string | undefined;
|
127
|
+
display?: {
|
128
|
+
backgroundColor?: string | undefined;
|
129
|
+
backgroundImage?: string | undefined;
|
130
|
+
fadeBackgroundImage?: boolean | undefined;
|
131
|
+
repeatBackgroundImage?: boolean | undefined;
|
132
|
+
fontColor?: string | undefined;
|
133
|
+
accentColor?: string | undefined;
|
134
|
+
accentFontColor?: string | undefined;
|
135
|
+
idBackgroundImage?: string | undefined;
|
136
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
137
|
+
idBackgroundColor?: string | undefined;
|
138
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
139
|
+
} | undefined;
|
39
140
|
profileId: string;
|
40
141
|
did: string;
|
41
142
|
}>;
|
@@ -226,6 +327,43 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
226
327
|
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
227
328
|
type: z.ZodOptional<z.ZodString>;
|
228
329
|
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
330
|
+
display: z.ZodOptional<z.ZodObject<{
|
331
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
332
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
333
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
334
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
335
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
336
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
337
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
338
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
339
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
340
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
341
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
342
|
+
}, "strip", z.ZodTypeAny, {
|
343
|
+
backgroundColor?: string | undefined;
|
344
|
+
backgroundImage?: string | undefined;
|
345
|
+
fadeBackgroundImage?: boolean | undefined;
|
346
|
+
repeatBackgroundImage?: boolean | undefined;
|
347
|
+
fontColor?: string | undefined;
|
348
|
+
accentColor?: string | undefined;
|
349
|
+
accentFontColor?: string | undefined;
|
350
|
+
idBackgroundImage?: string | undefined;
|
351
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
352
|
+
idBackgroundColor?: string | undefined;
|
353
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
354
|
+
}, {
|
355
|
+
backgroundColor?: string | undefined;
|
356
|
+
backgroundImage?: string | undefined;
|
357
|
+
fadeBackgroundImage?: boolean | undefined;
|
358
|
+
repeatBackgroundImage?: boolean | undefined;
|
359
|
+
fontColor?: string | undefined;
|
360
|
+
accentColor?: string | undefined;
|
361
|
+
accentFontColor?: string | undefined;
|
362
|
+
idBackgroundImage?: string | undefined;
|
363
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
364
|
+
idBackgroundColor?: string | undefined;
|
365
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
366
|
+
}>>;
|
229
367
|
}, "strip", z.ZodTypeAny, {
|
230
368
|
type?: string | undefined;
|
231
369
|
image?: string | undefined;
|
@@ -234,6 +372,19 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
234
372
|
websiteLink?: string | undefined;
|
235
373
|
isServiceProfile?: boolean | undefined;
|
236
374
|
notificationsWebhook?: string | undefined;
|
375
|
+
display?: {
|
376
|
+
backgroundColor?: string | undefined;
|
377
|
+
backgroundImage?: string | undefined;
|
378
|
+
fadeBackgroundImage?: boolean | undefined;
|
379
|
+
repeatBackgroundImage?: boolean | undefined;
|
380
|
+
fontColor?: string | undefined;
|
381
|
+
accentColor?: string | undefined;
|
382
|
+
accentFontColor?: string | undefined;
|
383
|
+
idBackgroundImage?: string | undefined;
|
384
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
385
|
+
idBackgroundColor?: string | undefined;
|
386
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
387
|
+
} | undefined;
|
237
388
|
profileId: string;
|
238
389
|
displayName: string;
|
239
390
|
shortBio: string;
|
@@ -250,6 +401,19 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
250
401
|
websiteLink?: string | undefined;
|
251
402
|
isServiceProfile?: boolean | undefined;
|
252
403
|
notificationsWebhook?: string | undefined;
|
404
|
+
display?: {
|
405
|
+
backgroundColor?: string | undefined;
|
406
|
+
backgroundImage?: string | undefined;
|
407
|
+
fadeBackgroundImage?: boolean | undefined;
|
408
|
+
repeatBackgroundImage?: boolean | undefined;
|
409
|
+
fontColor?: string | undefined;
|
410
|
+
accentColor?: string | undefined;
|
411
|
+
accentFontColor?: string | undefined;
|
412
|
+
idBackgroundImage?: string | undefined;
|
413
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
414
|
+
idBackgroundColor?: string | undefined;
|
415
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
416
|
+
} | undefined;
|
253
417
|
profileId: string;
|
254
418
|
did: string;
|
255
419
|
}>, "many">;
|
@@ -264,6 +428,19 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
264
428
|
websiteLink?: string | undefined;
|
265
429
|
isServiceProfile?: boolean | undefined;
|
266
430
|
notificationsWebhook?: string | undefined;
|
431
|
+
display?: {
|
432
|
+
backgroundColor?: string | undefined;
|
433
|
+
backgroundImage?: string | undefined;
|
434
|
+
fadeBackgroundImage?: boolean | undefined;
|
435
|
+
repeatBackgroundImage?: boolean | undefined;
|
436
|
+
fontColor?: string | undefined;
|
437
|
+
accentColor?: string | undefined;
|
438
|
+
accentFontColor?: string | undefined;
|
439
|
+
idBackgroundImage?: string | undefined;
|
440
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
441
|
+
idBackgroundColor?: string | undefined;
|
442
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
443
|
+
} | undefined;
|
267
444
|
profileId: string;
|
268
445
|
displayName: string;
|
269
446
|
shortBio: string;
|
@@ -284,6 +461,19 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
284
461
|
websiteLink?: string | undefined;
|
285
462
|
isServiceProfile?: boolean | undefined;
|
286
463
|
notificationsWebhook?: string | undefined;
|
464
|
+
display?: {
|
465
|
+
backgroundColor?: string | undefined;
|
466
|
+
backgroundImage?: string | undefined;
|
467
|
+
fadeBackgroundImage?: boolean | undefined;
|
468
|
+
repeatBackgroundImage?: boolean | undefined;
|
469
|
+
fontColor?: string | undefined;
|
470
|
+
accentColor?: string | undefined;
|
471
|
+
accentFontColor?: string | undefined;
|
472
|
+
idBackgroundImage?: string | undefined;
|
473
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
474
|
+
idBackgroundColor?: string | undefined;
|
475
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
476
|
+
} | undefined;
|
287
477
|
profileId: string;
|
288
478
|
did: string;
|
289
479
|
}[];
|
@@ -734,6 +924,43 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
734
924
|
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
735
925
|
type: z.ZodOptional<z.ZodString>;
|
736
926
|
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
927
|
+
display: z.ZodOptional<z.ZodObject<{
|
928
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
929
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
930
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
931
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
932
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
933
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
934
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
935
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
936
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
937
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
938
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
939
|
+
}, "strip", z.ZodTypeAny, {
|
940
|
+
backgroundColor?: string | undefined;
|
941
|
+
backgroundImage?: string | undefined;
|
942
|
+
fadeBackgroundImage?: boolean | undefined;
|
943
|
+
repeatBackgroundImage?: boolean | undefined;
|
944
|
+
fontColor?: string | undefined;
|
945
|
+
accentColor?: string | undefined;
|
946
|
+
accentFontColor?: string | undefined;
|
947
|
+
idBackgroundImage?: string | undefined;
|
948
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
949
|
+
idBackgroundColor?: string | undefined;
|
950
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
951
|
+
}, {
|
952
|
+
backgroundColor?: string | undefined;
|
953
|
+
backgroundImage?: string | undefined;
|
954
|
+
fadeBackgroundImage?: boolean | undefined;
|
955
|
+
repeatBackgroundImage?: boolean | undefined;
|
956
|
+
fontColor?: string | undefined;
|
957
|
+
accentColor?: string | undefined;
|
958
|
+
accentFontColor?: string | undefined;
|
959
|
+
idBackgroundImage?: string | undefined;
|
960
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
961
|
+
idBackgroundColor?: string | undefined;
|
962
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
963
|
+
}>>;
|
737
964
|
}, "strip", z.ZodTypeAny, {
|
738
965
|
type?: string | undefined;
|
739
966
|
image?: string | undefined;
|
@@ -742,6 +969,19 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
742
969
|
websiteLink?: string | undefined;
|
743
970
|
isServiceProfile?: boolean | undefined;
|
744
971
|
notificationsWebhook?: string | undefined;
|
972
|
+
display?: {
|
973
|
+
backgroundColor?: string | undefined;
|
974
|
+
backgroundImage?: string | undefined;
|
975
|
+
fadeBackgroundImage?: boolean | undefined;
|
976
|
+
repeatBackgroundImage?: boolean | undefined;
|
977
|
+
fontColor?: string | undefined;
|
978
|
+
accentColor?: string | undefined;
|
979
|
+
accentFontColor?: string | undefined;
|
980
|
+
idBackgroundImage?: string | undefined;
|
981
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
982
|
+
idBackgroundColor?: string | undefined;
|
983
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
984
|
+
} | undefined;
|
745
985
|
profileId: string;
|
746
986
|
displayName: string;
|
747
987
|
shortBio: string;
|
@@ -758,13 +998,28 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
758
998
|
websiteLink?: string | undefined;
|
759
999
|
isServiceProfile?: boolean | undefined;
|
760
1000
|
notificationsWebhook?: string | undefined;
|
1001
|
+
display?: {
|
1002
|
+
backgroundColor?: string | undefined;
|
1003
|
+
backgroundImage?: string | undefined;
|
1004
|
+
fadeBackgroundImage?: boolean | undefined;
|
1005
|
+
repeatBackgroundImage?: boolean | undefined;
|
1006
|
+
fontColor?: string | undefined;
|
1007
|
+
accentColor?: string | undefined;
|
1008
|
+
accentFontColor?: string | undefined;
|
1009
|
+
idBackgroundImage?: string | undefined;
|
1010
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1011
|
+
idBackgroundColor?: string | undefined;
|
1012
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1013
|
+
} | undefined;
|
761
1014
|
profileId: string;
|
762
1015
|
did: string;
|
763
1016
|
}>;
|
764
1017
|
from: z.ZodString;
|
765
1018
|
received: z.ZodOptional<z.ZodString>;
|
1019
|
+
uri: z.ZodOptional<z.ZodString>;
|
766
1020
|
}, "strip", z.ZodTypeAny, {
|
767
1021
|
received?: string | undefined;
|
1022
|
+
uri?: string | undefined;
|
768
1023
|
to: {
|
769
1024
|
type?: string | undefined;
|
770
1025
|
image?: string | undefined;
|
@@ -773,6 +1028,19 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
773
1028
|
websiteLink?: string | undefined;
|
774
1029
|
isServiceProfile?: boolean | undefined;
|
775
1030
|
notificationsWebhook?: string | undefined;
|
1031
|
+
display?: {
|
1032
|
+
backgroundColor?: string | undefined;
|
1033
|
+
backgroundImage?: string | undefined;
|
1034
|
+
fadeBackgroundImage?: boolean | undefined;
|
1035
|
+
repeatBackgroundImage?: boolean | undefined;
|
1036
|
+
fontColor?: string | undefined;
|
1037
|
+
accentColor?: string | undefined;
|
1038
|
+
accentFontColor?: string | undefined;
|
1039
|
+
idBackgroundImage?: string | undefined;
|
1040
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1041
|
+
idBackgroundColor?: string | undefined;
|
1042
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1043
|
+
} | undefined;
|
776
1044
|
profileId: string;
|
777
1045
|
displayName: string;
|
778
1046
|
shortBio: string;
|
@@ -782,6 +1050,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
782
1050
|
from: string;
|
783
1051
|
}, {
|
784
1052
|
received?: string | undefined;
|
1053
|
+
uri?: string | undefined;
|
785
1054
|
to: {
|
786
1055
|
type?: string | undefined;
|
787
1056
|
image?: string | undefined;
|
@@ -793,6 +1062,19 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
793
1062
|
websiteLink?: string | undefined;
|
794
1063
|
isServiceProfile?: boolean | undefined;
|
795
1064
|
notificationsWebhook?: string | undefined;
|
1065
|
+
display?: {
|
1066
|
+
backgroundColor?: string | undefined;
|
1067
|
+
backgroundImage?: string | undefined;
|
1068
|
+
fadeBackgroundImage?: boolean | undefined;
|
1069
|
+
repeatBackgroundImage?: boolean | undefined;
|
1070
|
+
fontColor?: string | undefined;
|
1071
|
+
accentColor?: string | undefined;
|
1072
|
+
accentFontColor?: string | undefined;
|
1073
|
+
idBackgroundImage?: string | undefined;
|
1074
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1075
|
+
idBackgroundColor?: string | undefined;
|
1076
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1077
|
+
} | undefined;
|
796
1078
|
profileId: string;
|
797
1079
|
did: string;
|
798
1080
|
};
|
@@ -817,6 +1099,43 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
817
1099
|
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
818
1100
|
type: z.ZodOptional<z.ZodString>;
|
819
1101
|
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
1102
|
+
display: z.ZodOptional<z.ZodObject<{
|
1103
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
1104
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
1105
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
1106
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
1107
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
1108
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
1109
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
1110
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
1111
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
1112
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
1113
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
1114
|
+
}, "strip", z.ZodTypeAny, {
|
1115
|
+
backgroundColor?: string | undefined;
|
1116
|
+
backgroundImage?: string | undefined;
|
1117
|
+
fadeBackgroundImage?: boolean | undefined;
|
1118
|
+
repeatBackgroundImage?: boolean | undefined;
|
1119
|
+
fontColor?: string | undefined;
|
1120
|
+
accentColor?: string | undefined;
|
1121
|
+
accentFontColor?: string | undefined;
|
1122
|
+
idBackgroundImage?: string | undefined;
|
1123
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1124
|
+
idBackgroundColor?: string | undefined;
|
1125
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1126
|
+
}, {
|
1127
|
+
backgroundColor?: string | undefined;
|
1128
|
+
backgroundImage?: string | undefined;
|
1129
|
+
fadeBackgroundImage?: boolean | undefined;
|
1130
|
+
repeatBackgroundImage?: boolean | undefined;
|
1131
|
+
fontColor?: string | undefined;
|
1132
|
+
accentColor?: string | undefined;
|
1133
|
+
accentFontColor?: string | undefined;
|
1134
|
+
idBackgroundImage?: string | undefined;
|
1135
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1136
|
+
idBackgroundColor?: string | undefined;
|
1137
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1138
|
+
}>>;
|
820
1139
|
}, "strip", z.ZodTypeAny, {
|
821
1140
|
type?: string | undefined;
|
822
1141
|
image?: string | undefined;
|
@@ -825,6 +1144,19 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
825
1144
|
websiteLink?: string | undefined;
|
826
1145
|
isServiceProfile?: boolean | undefined;
|
827
1146
|
notificationsWebhook?: string | undefined;
|
1147
|
+
display?: {
|
1148
|
+
backgroundColor?: string | undefined;
|
1149
|
+
backgroundImage?: string | undefined;
|
1150
|
+
fadeBackgroundImage?: boolean | undefined;
|
1151
|
+
repeatBackgroundImage?: boolean | undefined;
|
1152
|
+
fontColor?: string | undefined;
|
1153
|
+
accentColor?: string | undefined;
|
1154
|
+
accentFontColor?: string | undefined;
|
1155
|
+
idBackgroundImage?: string | undefined;
|
1156
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1157
|
+
idBackgroundColor?: string | undefined;
|
1158
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1159
|
+
} | undefined;
|
828
1160
|
profileId: string;
|
829
1161
|
displayName: string;
|
830
1162
|
shortBio: string;
|
@@ -841,13 +1173,28 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
841
1173
|
websiteLink?: string | undefined;
|
842
1174
|
isServiceProfile?: boolean | undefined;
|
843
1175
|
notificationsWebhook?: string | undefined;
|
1176
|
+
display?: {
|
1177
|
+
backgroundColor?: string | undefined;
|
1178
|
+
backgroundImage?: string | undefined;
|
1179
|
+
fadeBackgroundImage?: boolean | undefined;
|
1180
|
+
repeatBackgroundImage?: boolean | undefined;
|
1181
|
+
fontColor?: string | undefined;
|
1182
|
+
accentColor?: string | undefined;
|
1183
|
+
accentFontColor?: string | undefined;
|
1184
|
+
idBackgroundImage?: string | undefined;
|
1185
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1186
|
+
idBackgroundColor?: string | undefined;
|
1187
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1188
|
+
} | undefined;
|
844
1189
|
profileId: string;
|
845
1190
|
did: string;
|
846
1191
|
}>;
|
847
1192
|
from: z.ZodString;
|
848
1193
|
received: z.ZodOptional<z.ZodString>;
|
1194
|
+
uri: z.ZodOptional<z.ZodString>;
|
849
1195
|
}, "strip", z.ZodTypeAny, {
|
850
1196
|
received?: string | undefined;
|
1197
|
+
uri?: string | undefined;
|
851
1198
|
to: {
|
852
1199
|
type?: string | undefined;
|
853
1200
|
image?: string | undefined;
|
@@ -856,6 +1203,19 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
856
1203
|
websiteLink?: string | undefined;
|
857
1204
|
isServiceProfile?: boolean | undefined;
|
858
1205
|
notificationsWebhook?: string | undefined;
|
1206
|
+
display?: {
|
1207
|
+
backgroundColor?: string | undefined;
|
1208
|
+
backgroundImage?: string | undefined;
|
1209
|
+
fadeBackgroundImage?: boolean | undefined;
|
1210
|
+
repeatBackgroundImage?: boolean | undefined;
|
1211
|
+
fontColor?: string | undefined;
|
1212
|
+
accentColor?: string | undefined;
|
1213
|
+
accentFontColor?: string | undefined;
|
1214
|
+
idBackgroundImage?: string | undefined;
|
1215
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1216
|
+
idBackgroundColor?: string | undefined;
|
1217
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1218
|
+
} | undefined;
|
859
1219
|
profileId: string;
|
860
1220
|
displayName: string;
|
861
1221
|
shortBio: string;
|
@@ -865,6 +1225,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
865
1225
|
from: string;
|
866
1226
|
}, {
|
867
1227
|
received?: string | undefined;
|
1228
|
+
uri?: string | undefined;
|
868
1229
|
to: {
|
869
1230
|
type?: string | undefined;
|
870
1231
|
image?: string | undefined;
|
@@ -876,6 +1237,19 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
876
1237
|
websiteLink?: string | undefined;
|
877
1238
|
isServiceProfile?: boolean | undefined;
|
878
1239
|
notificationsWebhook?: string | undefined;
|
1240
|
+
display?: {
|
1241
|
+
backgroundColor?: string | undefined;
|
1242
|
+
backgroundImage?: string | undefined;
|
1243
|
+
fadeBackgroundImage?: boolean | undefined;
|
1244
|
+
repeatBackgroundImage?: boolean | undefined;
|
1245
|
+
fontColor?: string | undefined;
|
1246
|
+
accentColor?: string | undefined;
|
1247
|
+
accentFontColor?: string | undefined;
|
1248
|
+
idBackgroundImage?: string | undefined;
|
1249
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1250
|
+
idBackgroundColor?: string | undefined;
|
1251
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1252
|
+
} | undefined;
|
879
1253
|
profileId: string;
|
880
1254
|
did: string;
|
881
1255
|
};
|
@@ -886,6 +1260,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
886
1260
|
hasMore: boolean;
|
887
1261
|
records: {
|
888
1262
|
received?: string | undefined;
|
1263
|
+
uri?: string | undefined;
|
889
1264
|
to: {
|
890
1265
|
type?: string | undefined;
|
891
1266
|
image?: string | undefined;
|
@@ -894,6 +1269,19 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
894
1269
|
websiteLink?: string | undefined;
|
895
1270
|
isServiceProfile?: boolean | undefined;
|
896
1271
|
notificationsWebhook?: string | undefined;
|
1272
|
+
display?: {
|
1273
|
+
backgroundColor?: string | undefined;
|
1274
|
+
backgroundImage?: string | undefined;
|
1275
|
+
fadeBackgroundImage?: boolean | undefined;
|
1276
|
+
repeatBackgroundImage?: boolean | undefined;
|
1277
|
+
fontColor?: string | undefined;
|
1278
|
+
accentColor?: string | undefined;
|
1279
|
+
accentFontColor?: string | undefined;
|
1280
|
+
idBackgroundImage?: string | undefined;
|
1281
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1282
|
+
idBackgroundColor?: string | undefined;
|
1283
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1284
|
+
} | undefined;
|
897
1285
|
profileId: string;
|
898
1286
|
displayName: string;
|
899
1287
|
shortBio: string;
|
@@ -907,6 +1295,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
907
1295
|
hasMore: boolean;
|
908
1296
|
records: {
|
909
1297
|
received?: string | undefined;
|
1298
|
+
uri?: string | undefined;
|
910
1299
|
to: {
|
911
1300
|
type?: string | undefined;
|
912
1301
|
image?: string | undefined;
|
@@ -918,6 +1307,19 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
918
1307
|
websiteLink?: string | undefined;
|
919
1308
|
isServiceProfile?: boolean | undefined;
|
920
1309
|
notificationsWebhook?: string | undefined;
|
1310
|
+
display?: {
|
1311
|
+
backgroundColor?: string | undefined;
|
1312
|
+
backgroundImage?: string | undefined;
|
1313
|
+
fadeBackgroundImage?: boolean | undefined;
|
1314
|
+
repeatBackgroundImage?: boolean | undefined;
|
1315
|
+
fontColor?: string | undefined;
|
1316
|
+
accentColor?: string | undefined;
|
1317
|
+
accentFontColor?: string | undefined;
|
1318
|
+
idBackgroundImage?: string | undefined;
|
1319
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1320
|
+
idBackgroundColor?: string | undefined;
|
1321
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1322
|
+
} | undefined;
|
921
1323
|
profileId: string;
|
922
1324
|
did: string;
|
923
1325
|
};
|
@@ -1286,6 +1688,43 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
1286
1688
|
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1287
1689
|
type: z.ZodOptional<z.ZodString>;
|
1288
1690
|
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
1691
|
+
display: z.ZodOptional<z.ZodObject<{
|
1692
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
1693
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
1694
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
1695
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
1696
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
1697
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
1698
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
1699
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
1700
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
1701
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
1702
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
1703
|
+
}, "strip", z.ZodTypeAny, {
|
1704
|
+
backgroundColor?: string | undefined;
|
1705
|
+
backgroundImage?: string | undefined;
|
1706
|
+
fadeBackgroundImage?: boolean | undefined;
|
1707
|
+
repeatBackgroundImage?: boolean | undefined;
|
1708
|
+
fontColor?: string | undefined;
|
1709
|
+
accentColor?: string | undefined;
|
1710
|
+
accentFontColor?: string | undefined;
|
1711
|
+
idBackgroundImage?: string | undefined;
|
1712
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1713
|
+
idBackgroundColor?: string | undefined;
|
1714
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1715
|
+
}, {
|
1716
|
+
backgroundColor?: string | undefined;
|
1717
|
+
backgroundImage?: string | undefined;
|
1718
|
+
fadeBackgroundImage?: boolean | undefined;
|
1719
|
+
repeatBackgroundImage?: boolean | undefined;
|
1720
|
+
fontColor?: string | undefined;
|
1721
|
+
accentColor?: string | undefined;
|
1722
|
+
accentFontColor?: string | undefined;
|
1723
|
+
idBackgroundImage?: string | undefined;
|
1724
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1725
|
+
idBackgroundColor?: string | undefined;
|
1726
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1727
|
+
}>>;
|
1289
1728
|
}, "strip", z.ZodTypeAny, {
|
1290
1729
|
type?: string | undefined;
|
1291
1730
|
image?: string | undefined;
|
@@ -1294,6 +1733,19 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
1294
1733
|
websiteLink?: string | undefined;
|
1295
1734
|
isServiceProfile?: boolean | undefined;
|
1296
1735
|
notificationsWebhook?: string | undefined;
|
1736
|
+
display?: {
|
1737
|
+
backgroundColor?: string | undefined;
|
1738
|
+
backgroundImage?: string | undefined;
|
1739
|
+
fadeBackgroundImage?: boolean | undefined;
|
1740
|
+
repeatBackgroundImage?: boolean | undefined;
|
1741
|
+
fontColor?: string | undefined;
|
1742
|
+
accentColor?: string | undefined;
|
1743
|
+
accentFontColor?: string | undefined;
|
1744
|
+
idBackgroundImage?: string | undefined;
|
1745
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1746
|
+
idBackgroundColor?: string | undefined;
|
1747
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1748
|
+
} | undefined;
|
1297
1749
|
profileId: string;
|
1298
1750
|
displayName: string;
|
1299
1751
|
shortBio: string;
|
@@ -1310,6 +1762,19 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
1310
1762
|
websiteLink?: string | undefined;
|
1311
1763
|
isServiceProfile?: boolean | undefined;
|
1312
1764
|
notificationsWebhook?: string | undefined;
|
1765
|
+
display?: {
|
1766
|
+
backgroundColor?: string | undefined;
|
1767
|
+
backgroundImage?: string | undefined;
|
1768
|
+
fadeBackgroundImage?: boolean | undefined;
|
1769
|
+
repeatBackgroundImage?: boolean | undefined;
|
1770
|
+
fontColor?: string | undefined;
|
1771
|
+
accentColor?: string | undefined;
|
1772
|
+
accentFontColor?: string | undefined;
|
1773
|
+
idBackgroundImage?: string | undefined;
|
1774
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1775
|
+
idBackgroundColor?: string | undefined;
|
1776
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1777
|
+
} | undefined;
|
1313
1778
|
profileId: string;
|
1314
1779
|
did: string;
|
1315
1780
|
}>;
|
@@ -1362,6 +1827,19 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
1362
1827
|
websiteLink?: string | undefined;
|
1363
1828
|
isServiceProfile?: boolean | undefined;
|
1364
1829
|
notificationsWebhook?: string | undefined;
|
1830
|
+
display?: {
|
1831
|
+
backgroundColor?: string | undefined;
|
1832
|
+
backgroundImage?: string | undefined;
|
1833
|
+
fadeBackgroundImage?: boolean | undefined;
|
1834
|
+
repeatBackgroundImage?: boolean | undefined;
|
1835
|
+
fontColor?: string | undefined;
|
1836
|
+
accentColor?: string | undefined;
|
1837
|
+
accentFontColor?: string | undefined;
|
1838
|
+
idBackgroundImage?: string | undefined;
|
1839
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1840
|
+
idBackgroundColor?: string | undefined;
|
1841
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1842
|
+
} | undefined;
|
1365
1843
|
profileId: string;
|
1366
1844
|
displayName: string;
|
1367
1845
|
shortBio: string;
|
@@ -1412,6 +1890,19 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
1412
1890
|
websiteLink?: string | undefined;
|
1413
1891
|
isServiceProfile?: boolean | undefined;
|
1414
1892
|
notificationsWebhook?: string | undefined;
|
1893
|
+
display?: {
|
1894
|
+
backgroundColor?: string | undefined;
|
1895
|
+
backgroundImage?: string | undefined;
|
1896
|
+
fadeBackgroundImage?: boolean | undefined;
|
1897
|
+
repeatBackgroundImage?: boolean | undefined;
|
1898
|
+
fontColor?: string | undefined;
|
1899
|
+
accentColor?: string | undefined;
|
1900
|
+
accentFontColor?: string | undefined;
|
1901
|
+
idBackgroundImage?: string | undefined;
|
1902
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
1903
|
+
idBackgroundColor?: string | undefined;
|
1904
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
1905
|
+
} | undefined;
|
1415
1906
|
profileId: string;
|
1416
1907
|
did: string;
|
1417
1908
|
};
|
@@ -1574,6 +2065,43 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
1574
2065
|
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1575
2066
|
type: z.ZodOptional<z.ZodString>;
|
1576
2067
|
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
2068
|
+
display: z.ZodOptional<z.ZodObject<{
|
2069
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
2070
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
2071
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
2072
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
2073
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
2074
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
2075
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
2076
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
2077
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
2078
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
2079
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
2080
|
+
}, "strip", z.ZodTypeAny, {
|
2081
|
+
backgroundColor?: string | undefined;
|
2082
|
+
backgroundImage?: string | undefined;
|
2083
|
+
fadeBackgroundImage?: boolean | undefined;
|
2084
|
+
repeatBackgroundImage?: boolean | undefined;
|
2085
|
+
fontColor?: string | undefined;
|
2086
|
+
accentColor?: string | undefined;
|
2087
|
+
accentFontColor?: string | undefined;
|
2088
|
+
idBackgroundImage?: string | undefined;
|
2089
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
2090
|
+
idBackgroundColor?: string | undefined;
|
2091
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
2092
|
+
}, {
|
2093
|
+
backgroundColor?: string | undefined;
|
2094
|
+
backgroundImage?: string | undefined;
|
2095
|
+
fadeBackgroundImage?: boolean | undefined;
|
2096
|
+
repeatBackgroundImage?: boolean | undefined;
|
2097
|
+
fontColor?: string | undefined;
|
2098
|
+
accentColor?: string | undefined;
|
2099
|
+
accentFontColor?: string | undefined;
|
2100
|
+
idBackgroundImage?: string | undefined;
|
2101
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
2102
|
+
idBackgroundColor?: string | undefined;
|
2103
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
2104
|
+
}>>;
|
1577
2105
|
}, "strip", z.ZodTypeAny, {
|
1578
2106
|
type?: string | undefined;
|
1579
2107
|
image?: string | undefined;
|
@@ -1582,6 +2110,19 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
1582
2110
|
websiteLink?: string | undefined;
|
1583
2111
|
isServiceProfile?: boolean | undefined;
|
1584
2112
|
notificationsWebhook?: string | undefined;
|
2113
|
+
display?: {
|
2114
|
+
backgroundColor?: string | undefined;
|
2115
|
+
backgroundImage?: string | undefined;
|
2116
|
+
fadeBackgroundImage?: boolean | undefined;
|
2117
|
+
repeatBackgroundImage?: boolean | undefined;
|
2118
|
+
fontColor?: string | undefined;
|
2119
|
+
accentColor?: string | undefined;
|
2120
|
+
accentFontColor?: string | undefined;
|
2121
|
+
idBackgroundImage?: string | undefined;
|
2122
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
2123
|
+
idBackgroundColor?: string | undefined;
|
2124
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
2125
|
+
} | undefined;
|
1585
2126
|
profileId: string;
|
1586
2127
|
displayName: string;
|
1587
2128
|
shortBio: string;
|
@@ -1598,6 +2139,19 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
1598
2139
|
websiteLink?: string | undefined;
|
1599
2140
|
isServiceProfile?: boolean | undefined;
|
1600
2141
|
notificationsWebhook?: string | undefined;
|
2142
|
+
display?: {
|
2143
|
+
backgroundColor?: string | undefined;
|
2144
|
+
backgroundImage?: string | undefined;
|
2145
|
+
fadeBackgroundImage?: boolean | undefined;
|
2146
|
+
repeatBackgroundImage?: boolean | undefined;
|
2147
|
+
fontColor?: string | undefined;
|
2148
|
+
accentColor?: string | undefined;
|
2149
|
+
accentFontColor?: string | undefined;
|
2150
|
+
idBackgroundImage?: string | undefined;
|
2151
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
2152
|
+
idBackgroundColor?: string | undefined;
|
2153
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
2154
|
+
} | undefined;
|
1601
2155
|
profileId: string;
|
1602
2156
|
did: string;
|
1603
2157
|
}>;
|
@@ -2267,6 +2821,43 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2267
2821
|
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2268
2822
|
type: z.ZodOptional<z.ZodString>;
|
2269
2823
|
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
2824
|
+
display: z.ZodOptional<z.ZodObject<{
|
2825
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
2826
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
2827
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
2828
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
2829
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
2830
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
2831
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
2832
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
2833
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
2834
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
2835
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
2836
|
+
}, "strip", z.ZodTypeAny, {
|
2837
|
+
backgroundColor?: string | undefined;
|
2838
|
+
backgroundImage?: string | undefined;
|
2839
|
+
fadeBackgroundImage?: boolean | undefined;
|
2840
|
+
repeatBackgroundImage?: boolean | undefined;
|
2841
|
+
fontColor?: string | undefined;
|
2842
|
+
accentColor?: string | undefined;
|
2843
|
+
accentFontColor?: string | undefined;
|
2844
|
+
idBackgroundImage?: string | undefined;
|
2845
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
2846
|
+
idBackgroundColor?: string | undefined;
|
2847
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
2848
|
+
}, {
|
2849
|
+
backgroundColor?: string | undefined;
|
2850
|
+
backgroundImage?: string | undefined;
|
2851
|
+
fadeBackgroundImage?: boolean | undefined;
|
2852
|
+
repeatBackgroundImage?: boolean | undefined;
|
2853
|
+
fontColor?: string | undefined;
|
2854
|
+
accentColor?: string | undefined;
|
2855
|
+
accentFontColor?: string | undefined;
|
2856
|
+
idBackgroundImage?: string | undefined;
|
2857
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
2858
|
+
idBackgroundColor?: string | undefined;
|
2859
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
2860
|
+
}>>;
|
2270
2861
|
}, "strip", z.ZodTypeAny, {
|
2271
2862
|
type?: string | undefined;
|
2272
2863
|
image?: string | undefined;
|
@@ -2275,6 +2866,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2275
2866
|
websiteLink?: string | undefined;
|
2276
2867
|
isServiceProfile?: boolean | undefined;
|
2277
2868
|
notificationsWebhook?: string | undefined;
|
2869
|
+
display?: {
|
2870
|
+
backgroundColor?: string | undefined;
|
2871
|
+
backgroundImage?: string | undefined;
|
2872
|
+
fadeBackgroundImage?: boolean | undefined;
|
2873
|
+
repeatBackgroundImage?: boolean | undefined;
|
2874
|
+
fontColor?: string | undefined;
|
2875
|
+
accentColor?: string | undefined;
|
2876
|
+
accentFontColor?: string | undefined;
|
2877
|
+
idBackgroundImage?: string | undefined;
|
2878
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
2879
|
+
idBackgroundColor?: string | undefined;
|
2880
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
2881
|
+
} | undefined;
|
2278
2882
|
profileId: string;
|
2279
2883
|
displayName: string;
|
2280
2884
|
shortBio: string;
|
@@ -2291,6 +2895,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2291
2895
|
websiteLink?: string | undefined;
|
2292
2896
|
isServiceProfile?: boolean | undefined;
|
2293
2897
|
notificationsWebhook?: string | undefined;
|
2898
|
+
display?: {
|
2899
|
+
backgroundColor?: string | undefined;
|
2900
|
+
backgroundImage?: string | undefined;
|
2901
|
+
fadeBackgroundImage?: boolean | undefined;
|
2902
|
+
repeatBackgroundImage?: boolean | undefined;
|
2903
|
+
fontColor?: string | undefined;
|
2904
|
+
accentColor?: string | undefined;
|
2905
|
+
accentFontColor?: string | undefined;
|
2906
|
+
idBackgroundImage?: string | undefined;
|
2907
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
2908
|
+
idBackgroundColor?: string | undefined;
|
2909
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
2910
|
+
} | undefined;
|
2294
2911
|
profileId: string;
|
2295
2912
|
did: string;
|
2296
2913
|
}>;
|
@@ -2343,6 +2960,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2343
2960
|
websiteLink?: string | undefined;
|
2344
2961
|
isServiceProfile?: boolean | undefined;
|
2345
2962
|
notificationsWebhook?: string | undefined;
|
2963
|
+
display?: {
|
2964
|
+
backgroundColor?: string | undefined;
|
2965
|
+
backgroundImage?: string | undefined;
|
2966
|
+
fadeBackgroundImage?: boolean | undefined;
|
2967
|
+
repeatBackgroundImage?: boolean | undefined;
|
2968
|
+
fontColor?: string | undefined;
|
2969
|
+
accentColor?: string | undefined;
|
2970
|
+
accentFontColor?: string | undefined;
|
2971
|
+
idBackgroundImage?: string | undefined;
|
2972
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
2973
|
+
idBackgroundColor?: string | undefined;
|
2974
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
2975
|
+
} | undefined;
|
2346
2976
|
profileId: string;
|
2347
2977
|
displayName: string;
|
2348
2978
|
shortBio: string;
|
@@ -2393,6 +3023,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2393
3023
|
websiteLink?: string | undefined;
|
2394
3024
|
isServiceProfile?: boolean | undefined;
|
2395
3025
|
notificationsWebhook?: string | undefined;
|
3026
|
+
display?: {
|
3027
|
+
backgroundColor?: string | undefined;
|
3028
|
+
backgroundImage?: string | undefined;
|
3029
|
+
fadeBackgroundImage?: boolean | undefined;
|
3030
|
+
repeatBackgroundImage?: boolean | undefined;
|
3031
|
+
fontColor?: string | undefined;
|
3032
|
+
accentColor?: string | undefined;
|
3033
|
+
accentFontColor?: string | undefined;
|
3034
|
+
idBackgroundImage?: string | undefined;
|
3035
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3036
|
+
idBackgroundColor?: string | undefined;
|
3037
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3038
|
+
} | undefined;
|
2396
3039
|
profileId: string;
|
2397
3040
|
did: string;
|
2398
3041
|
};
|
@@ -2412,6 +3055,43 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2412
3055
|
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2413
3056
|
type: z.ZodOptional<z.ZodString>;
|
2414
3057
|
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
3058
|
+
display: z.ZodOptional<z.ZodObject<{
|
3059
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
3060
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
3061
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3062
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3063
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
3064
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
3065
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
3066
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
3067
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3068
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
3069
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3070
|
+
}, "strip", z.ZodTypeAny, {
|
3071
|
+
backgroundColor?: string | undefined;
|
3072
|
+
backgroundImage?: string | undefined;
|
3073
|
+
fadeBackgroundImage?: boolean | undefined;
|
3074
|
+
repeatBackgroundImage?: boolean | undefined;
|
3075
|
+
fontColor?: string | undefined;
|
3076
|
+
accentColor?: string | undefined;
|
3077
|
+
accentFontColor?: string | undefined;
|
3078
|
+
idBackgroundImage?: string | undefined;
|
3079
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3080
|
+
idBackgroundColor?: string | undefined;
|
3081
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3082
|
+
}, {
|
3083
|
+
backgroundColor?: string | undefined;
|
3084
|
+
backgroundImage?: string | undefined;
|
3085
|
+
fadeBackgroundImage?: boolean | undefined;
|
3086
|
+
repeatBackgroundImage?: boolean | undefined;
|
3087
|
+
fontColor?: string | undefined;
|
3088
|
+
accentColor?: string | undefined;
|
3089
|
+
accentFontColor?: string | undefined;
|
3090
|
+
idBackgroundImage?: string | undefined;
|
3091
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3092
|
+
idBackgroundColor?: string | undefined;
|
3093
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3094
|
+
}>>;
|
2415
3095
|
}, "strip", z.ZodTypeAny, {
|
2416
3096
|
type?: string | undefined;
|
2417
3097
|
image?: string | undefined;
|
@@ -2420,6 +3100,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2420
3100
|
websiteLink?: string | undefined;
|
2421
3101
|
isServiceProfile?: boolean | undefined;
|
2422
3102
|
notificationsWebhook?: string | undefined;
|
3103
|
+
display?: {
|
3104
|
+
backgroundColor?: string | undefined;
|
3105
|
+
backgroundImage?: string | undefined;
|
3106
|
+
fadeBackgroundImage?: boolean | undefined;
|
3107
|
+
repeatBackgroundImage?: boolean | undefined;
|
3108
|
+
fontColor?: string | undefined;
|
3109
|
+
accentColor?: string | undefined;
|
3110
|
+
accentFontColor?: string | undefined;
|
3111
|
+
idBackgroundImage?: string | undefined;
|
3112
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3113
|
+
idBackgroundColor?: string | undefined;
|
3114
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3115
|
+
} | undefined;
|
2423
3116
|
profileId: string;
|
2424
3117
|
displayName: string;
|
2425
3118
|
shortBio: string;
|
@@ -2436,6 +3129,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2436
3129
|
websiteLink?: string | undefined;
|
2437
3130
|
isServiceProfile?: boolean | undefined;
|
2438
3131
|
notificationsWebhook?: string | undefined;
|
3132
|
+
display?: {
|
3133
|
+
backgroundColor?: string | undefined;
|
3134
|
+
backgroundImage?: string | undefined;
|
3135
|
+
fadeBackgroundImage?: boolean | undefined;
|
3136
|
+
repeatBackgroundImage?: boolean | undefined;
|
3137
|
+
fontColor?: string | undefined;
|
3138
|
+
accentColor?: string | undefined;
|
3139
|
+
accentFontColor?: string | undefined;
|
3140
|
+
idBackgroundImage?: string | undefined;
|
3141
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3142
|
+
idBackgroundColor?: string | undefined;
|
3143
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3144
|
+
} | undefined;
|
2439
3145
|
profileId: string;
|
2440
3146
|
did: string;
|
2441
3147
|
}>;
|
@@ -2485,6 +3191,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2485
3191
|
websiteLink?: string | undefined;
|
2486
3192
|
isServiceProfile?: boolean | undefined;
|
2487
3193
|
notificationsWebhook?: string | undefined;
|
3194
|
+
display?: {
|
3195
|
+
backgroundColor?: string | undefined;
|
3196
|
+
backgroundImage?: string | undefined;
|
3197
|
+
fadeBackgroundImage?: boolean | undefined;
|
3198
|
+
repeatBackgroundImage?: boolean | undefined;
|
3199
|
+
fontColor?: string | undefined;
|
3200
|
+
accentColor?: string | undefined;
|
3201
|
+
accentFontColor?: string | undefined;
|
3202
|
+
idBackgroundImage?: string | undefined;
|
3203
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3204
|
+
idBackgroundColor?: string | undefined;
|
3205
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3206
|
+
} | undefined;
|
2488
3207
|
profileId: string;
|
2489
3208
|
displayName: string;
|
2490
3209
|
shortBio: string;
|
@@ -2523,6 +3242,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2523
3242
|
websiteLink?: string | undefined;
|
2524
3243
|
isServiceProfile?: boolean | undefined;
|
2525
3244
|
notificationsWebhook?: string | undefined;
|
3245
|
+
display?: {
|
3246
|
+
backgroundColor?: string | undefined;
|
3247
|
+
backgroundImage?: string | undefined;
|
3248
|
+
fadeBackgroundImage?: boolean | undefined;
|
3249
|
+
repeatBackgroundImage?: boolean | undefined;
|
3250
|
+
fontColor?: string | undefined;
|
3251
|
+
accentColor?: string | undefined;
|
3252
|
+
accentFontColor?: string | undefined;
|
3253
|
+
idBackgroundImage?: string | undefined;
|
3254
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3255
|
+
idBackgroundColor?: string | undefined;
|
3256
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3257
|
+
} | undefined;
|
2526
3258
|
profileId: string;
|
2527
3259
|
displayName: string;
|
2528
3260
|
shortBio: string;
|
@@ -2577,6 +3309,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2577
3309
|
websiteLink?: string | undefined;
|
2578
3310
|
isServiceProfile?: boolean | undefined;
|
2579
3311
|
notificationsWebhook?: string | undefined;
|
3312
|
+
display?: {
|
3313
|
+
backgroundColor?: string | undefined;
|
3314
|
+
backgroundImage?: string | undefined;
|
3315
|
+
fadeBackgroundImage?: boolean | undefined;
|
3316
|
+
repeatBackgroundImage?: boolean | undefined;
|
3317
|
+
fontColor?: string | undefined;
|
3318
|
+
accentColor?: string | undefined;
|
3319
|
+
accentFontColor?: string | undefined;
|
3320
|
+
idBackgroundImage?: string | undefined;
|
3321
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3322
|
+
idBackgroundColor?: string | undefined;
|
3323
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3324
|
+
} | undefined;
|
2580
3325
|
profileId: string;
|
2581
3326
|
did: string;
|
2582
3327
|
};
|
@@ -2615,6 +3360,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2615
3360
|
websiteLink?: string | undefined;
|
2616
3361
|
isServiceProfile?: boolean | undefined;
|
2617
3362
|
notificationsWebhook?: string | undefined;
|
3363
|
+
display?: {
|
3364
|
+
backgroundColor?: string | undefined;
|
3365
|
+
backgroundImage?: string | undefined;
|
3366
|
+
fadeBackgroundImage?: boolean | undefined;
|
3367
|
+
repeatBackgroundImage?: boolean | undefined;
|
3368
|
+
fontColor?: string | undefined;
|
3369
|
+
accentColor?: string | undefined;
|
3370
|
+
accentFontColor?: string | undefined;
|
3371
|
+
idBackgroundImage?: string | undefined;
|
3372
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3373
|
+
idBackgroundColor?: string | undefined;
|
3374
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3375
|
+
} | undefined;
|
2618
3376
|
profileId: string;
|
2619
3377
|
did: string;
|
2620
3378
|
};
|
@@ -2667,6 +3425,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2667
3425
|
websiteLink?: string | undefined;
|
2668
3426
|
isServiceProfile?: boolean | undefined;
|
2669
3427
|
notificationsWebhook?: string | undefined;
|
3428
|
+
display?: {
|
3429
|
+
backgroundColor?: string | undefined;
|
3430
|
+
backgroundImage?: string | undefined;
|
3431
|
+
fadeBackgroundImage?: boolean | undefined;
|
3432
|
+
repeatBackgroundImage?: boolean | undefined;
|
3433
|
+
fontColor?: string | undefined;
|
3434
|
+
accentColor?: string | undefined;
|
3435
|
+
accentFontColor?: string | undefined;
|
3436
|
+
idBackgroundImage?: string | undefined;
|
3437
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3438
|
+
idBackgroundColor?: string | undefined;
|
3439
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3440
|
+
} | undefined;
|
2670
3441
|
profileId: string;
|
2671
3442
|
displayName: string;
|
2672
3443
|
shortBio: string;
|
@@ -2705,6 +3476,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2705
3476
|
websiteLink?: string | undefined;
|
2706
3477
|
isServiceProfile?: boolean | undefined;
|
2707
3478
|
notificationsWebhook?: string | undefined;
|
3479
|
+
display?: {
|
3480
|
+
backgroundColor?: string | undefined;
|
3481
|
+
backgroundImage?: string | undefined;
|
3482
|
+
fadeBackgroundImage?: boolean | undefined;
|
3483
|
+
repeatBackgroundImage?: boolean | undefined;
|
3484
|
+
fontColor?: string | undefined;
|
3485
|
+
accentColor?: string | undefined;
|
3486
|
+
accentFontColor?: string | undefined;
|
3487
|
+
idBackgroundImage?: string | undefined;
|
3488
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3489
|
+
idBackgroundColor?: string | undefined;
|
3490
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3491
|
+
} | undefined;
|
2708
3492
|
profileId: string;
|
2709
3493
|
displayName: string;
|
2710
3494
|
shortBio: string;
|
@@ -2763,6 +3547,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2763
3547
|
websiteLink?: string | undefined;
|
2764
3548
|
isServiceProfile?: boolean | undefined;
|
2765
3549
|
notificationsWebhook?: string | undefined;
|
3550
|
+
display?: {
|
3551
|
+
backgroundColor?: string | undefined;
|
3552
|
+
backgroundImage?: string | undefined;
|
3553
|
+
fadeBackgroundImage?: boolean | undefined;
|
3554
|
+
repeatBackgroundImage?: boolean | undefined;
|
3555
|
+
fontColor?: string | undefined;
|
3556
|
+
accentColor?: string | undefined;
|
3557
|
+
accentFontColor?: string | undefined;
|
3558
|
+
idBackgroundImage?: string | undefined;
|
3559
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3560
|
+
idBackgroundColor?: string | undefined;
|
3561
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3562
|
+
} | undefined;
|
2766
3563
|
profileId: string;
|
2767
3564
|
did: string;
|
2768
3565
|
};
|
@@ -2801,6 +3598,19 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
2801
3598
|
websiteLink?: string | undefined;
|
2802
3599
|
isServiceProfile?: boolean | undefined;
|
2803
3600
|
notificationsWebhook?: string | undefined;
|
3601
|
+
display?: {
|
3602
|
+
backgroundColor?: string | undefined;
|
3603
|
+
backgroundImage?: string | undefined;
|
3604
|
+
fadeBackgroundImage?: boolean | undefined;
|
3605
|
+
repeatBackgroundImage?: boolean | undefined;
|
3606
|
+
fontColor?: string | undefined;
|
3607
|
+
accentColor?: string | undefined;
|
3608
|
+
accentFontColor?: string | undefined;
|
3609
|
+
idBackgroundImage?: string | undefined;
|
3610
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3611
|
+
idBackgroundColor?: string | undefined;
|
3612
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3613
|
+
} | undefined;
|
2804
3614
|
profileId: string;
|
2805
3615
|
did: string;
|
2806
3616
|
};
|
@@ -4114,6 +4924,43 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
4114
4924
|
isServiceProfile: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodBoolean>>>;
|
4115
4925
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
4116
4926
|
notificationsWebhook: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
4927
|
+
display: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
4928
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
4929
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
4930
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
4931
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
4932
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
4933
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
4934
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
4935
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
4936
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
4937
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
4938
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
4939
|
+
}, "strip", z.ZodTypeAny, {
|
4940
|
+
backgroundColor?: string | undefined;
|
4941
|
+
backgroundImage?: string | undefined;
|
4942
|
+
fadeBackgroundImage?: boolean | undefined;
|
4943
|
+
repeatBackgroundImage?: boolean | undefined;
|
4944
|
+
fontColor?: string | undefined;
|
4945
|
+
accentColor?: string | undefined;
|
4946
|
+
accentFontColor?: string | undefined;
|
4947
|
+
idBackgroundImage?: string | undefined;
|
4948
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
4949
|
+
idBackgroundColor?: string | undefined;
|
4950
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
4951
|
+
}, {
|
4952
|
+
backgroundColor?: string | undefined;
|
4953
|
+
backgroundImage?: string | undefined;
|
4954
|
+
fadeBackgroundImage?: boolean | undefined;
|
4955
|
+
repeatBackgroundImage?: boolean | undefined;
|
4956
|
+
fontColor?: string | undefined;
|
4957
|
+
accentColor?: string | undefined;
|
4958
|
+
accentFontColor?: string | undefined;
|
4959
|
+
idBackgroundImage?: string | undefined;
|
4960
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
4961
|
+
idBackgroundColor?: string | undefined;
|
4962
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
4963
|
+
}>>>;
|
4117
4964
|
}, "strip", z.ZodTypeAny, {
|
4118
4965
|
type?: string | undefined;
|
4119
4966
|
image?: string | undefined;
|
@@ -4127,6 +4974,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
4127
4974
|
websiteLink?: string | undefined;
|
4128
4975
|
isServiceProfile?: boolean | undefined;
|
4129
4976
|
notificationsWebhook?: string | undefined;
|
4977
|
+
display?: {
|
4978
|
+
backgroundColor?: string | undefined;
|
4979
|
+
backgroundImage?: string | undefined;
|
4980
|
+
fadeBackgroundImage?: boolean | undefined;
|
4981
|
+
repeatBackgroundImage?: boolean | undefined;
|
4982
|
+
fontColor?: string | undefined;
|
4983
|
+
accentColor?: string | undefined;
|
4984
|
+
accentFontColor?: string | undefined;
|
4985
|
+
idBackgroundImage?: string | undefined;
|
4986
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
4987
|
+
idBackgroundColor?: string | undefined;
|
4988
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
4989
|
+
} | undefined;
|
4130
4990
|
}, {
|
4131
4991
|
type?: string | undefined;
|
4132
4992
|
image?: string | undefined;
|
@@ -4140,6 +5000,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
4140
5000
|
websiteLink?: string | undefined;
|
4141
5001
|
isServiceProfile?: boolean | undefined;
|
4142
5002
|
notificationsWebhook?: string | undefined;
|
5003
|
+
display?: {
|
5004
|
+
backgroundColor?: string | undefined;
|
5005
|
+
backgroundImage?: string | undefined;
|
5006
|
+
fadeBackgroundImage?: boolean | undefined;
|
5007
|
+
repeatBackgroundImage?: boolean | undefined;
|
5008
|
+
fontColor?: string | undefined;
|
5009
|
+
accentColor?: string | undefined;
|
5010
|
+
accentFontColor?: string | undefined;
|
5011
|
+
idBackgroundImage?: string | undefined;
|
5012
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5013
|
+
idBackgroundColor?: string | undefined;
|
5014
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5015
|
+
} | undefined;
|
4143
5016
|
}>, z.ZodObject<{
|
4144
5017
|
did: z.ZodString;
|
4145
5018
|
}, "strip", z.ZodTypeAny, {
|
@@ -4160,6 +5033,43 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
4160
5033
|
isServiceProfile: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodBoolean>>>;
|
4161
5034
|
type: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
4162
5035
|
notificationsWebhook: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
5036
|
+
display: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
5037
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
5038
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
5039
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
5040
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
5041
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
5042
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
5043
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
5044
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
5045
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
5046
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
5047
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
5048
|
+
}, "strip", z.ZodTypeAny, {
|
5049
|
+
backgroundColor?: string | undefined;
|
5050
|
+
backgroundImage?: string | undefined;
|
5051
|
+
fadeBackgroundImage?: boolean | undefined;
|
5052
|
+
repeatBackgroundImage?: boolean | undefined;
|
5053
|
+
fontColor?: string | undefined;
|
5054
|
+
accentColor?: string | undefined;
|
5055
|
+
accentFontColor?: string | undefined;
|
5056
|
+
idBackgroundImage?: string | undefined;
|
5057
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5058
|
+
idBackgroundColor?: string | undefined;
|
5059
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5060
|
+
}, {
|
5061
|
+
backgroundColor?: string | undefined;
|
5062
|
+
backgroundImage?: string | undefined;
|
5063
|
+
fadeBackgroundImage?: boolean | undefined;
|
5064
|
+
repeatBackgroundImage?: boolean | undefined;
|
5065
|
+
fontColor?: string | undefined;
|
5066
|
+
accentColor?: string | undefined;
|
5067
|
+
accentFontColor?: string | undefined;
|
5068
|
+
idBackgroundImage?: string | undefined;
|
5069
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5070
|
+
idBackgroundColor?: string | undefined;
|
5071
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5072
|
+
}>>>;
|
4163
5073
|
}, "strip", z.ZodTypeAny, {
|
4164
5074
|
type?: string | undefined;
|
4165
5075
|
image?: string | undefined;
|
@@ -4173,6 +5083,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
4173
5083
|
websiteLink?: string | undefined;
|
4174
5084
|
isServiceProfile?: boolean | undefined;
|
4175
5085
|
notificationsWebhook?: string | undefined;
|
5086
|
+
display?: {
|
5087
|
+
backgroundColor?: string | undefined;
|
5088
|
+
backgroundImage?: string | undefined;
|
5089
|
+
fadeBackgroundImage?: boolean | undefined;
|
5090
|
+
repeatBackgroundImage?: boolean | undefined;
|
5091
|
+
fontColor?: string | undefined;
|
5092
|
+
accentColor?: string | undefined;
|
5093
|
+
accentFontColor?: string | undefined;
|
5094
|
+
idBackgroundImage?: string | undefined;
|
5095
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5096
|
+
idBackgroundColor?: string | undefined;
|
5097
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5098
|
+
} | undefined;
|
4176
5099
|
}, {
|
4177
5100
|
type?: string | undefined;
|
4178
5101
|
image?: string | undefined;
|
@@ -4186,6 +5109,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
4186
5109
|
websiteLink?: string | undefined;
|
4187
5110
|
isServiceProfile?: boolean | undefined;
|
4188
5111
|
notificationsWebhook?: string | undefined;
|
5112
|
+
display?: {
|
5113
|
+
backgroundColor?: string | undefined;
|
5114
|
+
backgroundImage?: string | undefined;
|
5115
|
+
fadeBackgroundImage?: boolean | undefined;
|
5116
|
+
repeatBackgroundImage?: boolean | undefined;
|
5117
|
+
fontColor?: string | undefined;
|
5118
|
+
accentColor?: string | undefined;
|
5119
|
+
accentFontColor?: string | undefined;
|
5120
|
+
idBackgroundImage?: string | undefined;
|
5121
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5122
|
+
idBackgroundColor?: string | undefined;
|
5123
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5124
|
+
} | undefined;
|
4189
5125
|
}>, z.ZodObject<{
|
4190
5126
|
did: z.ZodString;
|
4191
5127
|
}, "strip", z.ZodTypeAny, {
|
@@ -4520,6 +5456,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
4520
5456
|
websiteLink?: string | undefined;
|
4521
5457
|
isServiceProfile?: boolean | undefined;
|
4522
5458
|
notificationsWebhook?: string | undefined;
|
5459
|
+
display?: {
|
5460
|
+
backgroundColor?: string | undefined;
|
5461
|
+
backgroundImage?: string | undefined;
|
5462
|
+
fadeBackgroundImage?: boolean | undefined;
|
5463
|
+
repeatBackgroundImage?: boolean | undefined;
|
5464
|
+
fontColor?: string | undefined;
|
5465
|
+
accentColor?: string | undefined;
|
5466
|
+
accentFontColor?: string | undefined;
|
5467
|
+
idBackgroundImage?: string | undefined;
|
5468
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5469
|
+
idBackgroundColor?: string | undefined;
|
5470
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5471
|
+
} | undefined;
|
4523
5472
|
} & {
|
4524
5473
|
did: string;
|
4525
5474
|
};
|
@@ -4536,6 +5485,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
4536
5485
|
websiteLink?: string | undefined;
|
4537
5486
|
isServiceProfile?: boolean | undefined;
|
4538
5487
|
notificationsWebhook?: string | undefined;
|
5488
|
+
display?: {
|
5489
|
+
backgroundColor?: string | undefined;
|
5490
|
+
backgroundImage?: string | undefined;
|
5491
|
+
fadeBackgroundImage?: boolean | undefined;
|
5492
|
+
repeatBackgroundImage?: boolean | undefined;
|
5493
|
+
fontColor?: string | undefined;
|
5494
|
+
accentColor?: string | undefined;
|
5495
|
+
accentFontColor?: string | undefined;
|
5496
|
+
idBackgroundImage?: string | undefined;
|
5497
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5498
|
+
idBackgroundColor?: string | undefined;
|
5499
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5500
|
+
} | undefined;
|
4539
5501
|
} & {
|
4540
5502
|
did: string;
|
4541
5503
|
};
|
@@ -4592,6 +5554,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
4592
5554
|
websiteLink?: string | undefined;
|
4593
5555
|
isServiceProfile?: boolean | undefined;
|
4594
5556
|
notificationsWebhook?: string | undefined;
|
5557
|
+
display?: {
|
5558
|
+
backgroundColor?: string | undefined;
|
5559
|
+
backgroundImage?: string | undefined;
|
5560
|
+
fadeBackgroundImage?: boolean | undefined;
|
5561
|
+
repeatBackgroundImage?: boolean | undefined;
|
5562
|
+
fontColor?: string | undefined;
|
5563
|
+
accentColor?: string | undefined;
|
5564
|
+
accentFontColor?: string | undefined;
|
5565
|
+
idBackgroundImage?: string | undefined;
|
5566
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5567
|
+
idBackgroundColor?: string | undefined;
|
5568
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5569
|
+
} | undefined;
|
4595
5570
|
} & {
|
4596
5571
|
did: string;
|
4597
5572
|
};
|
@@ -4608,6 +5583,19 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
4608
5583
|
websiteLink?: string | undefined;
|
4609
5584
|
isServiceProfile?: boolean | undefined;
|
4610
5585
|
notificationsWebhook?: string | undefined;
|
5586
|
+
display?: {
|
5587
|
+
backgroundColor?: string | undefined;
|
5588
|
+
backgroundImage?: string | undefined;
|
5589
|
+
fadeBackgroundImage?: boolean | undefined;
|
5590
|
+
repeatBackgroundImage?: boolean | undefined;
|
5591
|
+
fontColor?: string | undefined;
|
5592
|
+
accentColor?: string | undefined;
|
5593
|
+
accentFontColor?: string | undefined;
|
5594
|
+
idBackgroundImage?: string | undefined;
|
5595
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5596
|
+
idBackgroundColor?: string | undefined;
|
5597
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5598
|
+
} | undefined;
|
4611
5599
|
} & {
|
4612
5600
|
did: string;
|
4613
5601
|
};
|