@learncard/types 5.8.1 → 5.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lcn.d.ts +606 -20
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +20 -3
- 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 +20 -3
- package/dist/types.esm.js.map +2 -2
- package/package.json +1 -1
package/dist/lcn.d.ts
CHANGED
@@ -88,6 +88,7 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
88
88
|
idBackgroundColor?: string | undefined;
|
89
89
|
repeatIdBackgroundImage?: boolean | undefined;
|
90
90
|
}>>;
|
91
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
91
92
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
92
93
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
93
94
|
}, "strip", z.ZodTypeAny, {
|
@@ -118,6 +119,7 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
118
119
|
idBackgroundColor?: string | undefined;
|
119
120
|
repeatIdBackgroundImage?: boolean | undefined;
|
120
121
|
} | undefined;
|
122
|
+
highlightedCredentials?: string[] | undefined;
|
121
123
|
dob?: string | undefined;
|
122
124
|
}, {
|
123
125
|
profileId: string;
|
@@ -147,6 +149,7 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
147
149
|
idBackgroundColor?: string | undefined;
|
148
150
|
repeatIdBackgroundImage?: boolean | undefined;
|
149
151
|
} | undefined;
|
152
|
+
highlightedCredentials?: string[] | undefined;
|
150
153
|
dob?: string | undefined;
|
151
154
|
}>;
|
152
155
|
export type LCNProfile = z.infer<typeof LCNProfileValidator>;
|
@@ -374,6 +377,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
374
377
|
idBackgroundColor?: string | undefined;
|
375
378
|
repeatIdBackgroundImage?: boolean | undefined;
|
376
379
|
}>>;
|
380
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
377
381
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
378
382
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
379
383
|
}, "strip", z.ZodTypeAny, {
|
@@ -404,6 +408,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
404
408
|
idBackgroundColor?: string | undefined;
|
405
409
|
repeatIdBackgroundImage?: boolean | undefined;
|
406
410
|
} | undefined;
|
411
|
+
highlightedCredentials?: string[] | undefined;
|
407
412
|
dob?: string | undefined;
|
408
413
|
}, {
|
409
414
|
profileId: string;
|
@@ -433,6 +438,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
433
438
|
idBackgroundColor?: string | undefined;
|
434
439
|
repeatIdBackgroundImage?: boolean | undefined;
|
435
440
|
} | undefined;
|
441
|
+
highlightedCredentials?: string[] | undefined;
|
436
442
|
dob?: string | undefined;
|
437
443
|
}>, "many">;
|
438
444
|
}>, "strip", z.ZodTypeAny, {
|
@@ -465,6 +471,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
465
471
|
idBackgroundColor?: string | undefined;
|
466
472
|
repeatIdBackgroundImage?: boolean | undefined;
|
467
473
|
} | undefined;
|
474
|
+
highlightedCredentials?: string[] | undefined;
|
468
475
|
dob?: string | undefined;
|
469
476
|
}[];
|
470
477
|
cursor?: string | undefined;
|
@@ -498,6 +505,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
498
505
|
idBackgroundColor?: string | undefined;
|
499
506
|
repeatIdBackgroundImage?: boolean | undefined;
|
500
507
|
} | undefined;
|
508
|
+
highlightedCredentials?: string[] | undefined;
|
501
509
|
dob?: string | undefined;
|
502
510
|
}[];
|
503
511
|
cursor?: string | undefined;
|
@@ -776,6 +784,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
776
784
|
idBackgroundColor?: string | undefined;
|
777
785
|
repeatIdBackgroundImage?: boolean | undefined;
|
778
786
|
}>>;
|
787
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
779
788
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
780
789
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
781
790
|
}, "strip", z.ZodTypeAny, {
|
@@ -806,6 +815,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
806
815
|
idBackgroundColor?: string | undefined;
|
807
816
|
repeatIdBackgroundImage?: boolean | undefined;
|
808
817
|
} | undefined;
|
818
|
+
highlightedCredentials?: string[] | undefined;
|
809
819
|
dob?: string | undefined;
|
810
820
|
}, {
|
811
821
|
profileId: string;
|
@@ -835,6 +845,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
835
845
|
idBackgroundColor?: string | undefined;
|
836
846
|
repeatIdBackgroundImage?: boolean | undefined;
|
837
847
|
} | undefined;
|
848
|
+
highlightedCredentials?: string[] | undefined;
|
838
849
|
dob?: string | undefined;
|
839
850
|
}>;
|
840
851
|
manager: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
@@ -898,6 +909,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
898
909
|
idBackgroundColor?: string | undefined;
|
899
910
|
repeatIdBackgroundImage?: boolean | undefined;
|
900
911
|
} | undefined;
|
912
|
+
highlightedCredentials?: string[] | undefined;
|
901
913
|
dob?: string | undefined;
|
902
914
|
};
|
903
915
|
manager?: {
|
@@ -940,6 +952,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
940
952
|
idBackgroundColor?: string | undefined;
|
941
953
|
repeatIdBackgroundImage?: boolean | undefined;
|
942
954
|
} | undefined;
|
955
|
+
highlightedCredentials?: string[] | undefined;
|
943
956
|
dob?: string | undefined;
|
944
957
|
};
|
945
958
|
manager?: {
|
@@ -985,6 +998,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
985
998
|
idBackgroundColor?: string | undefined;
|
986
999
|
repeatIdBackgroundImage?: boolean | undefined;
|
987
1000
|
} | undefined;
|
1001
|
+
highlightedCredentials?: string[] | undefined;
|
988
1002
|
dob?: string | undefined;
|
989
1003
|
};
|
990
1004
|
manager?: {
|
@@ -1031,6 +1045,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
1031
1045
|
idBackgroundColor?: string | undefined;
|
1032
1046
|
repeatIdBackgroundImage?: boolean | undefined;
|
1033
1047
|
} | undefined;
|
1048
|
+
highlightedCredentials?: string[] | undefined;
|
1034
1049
|
dob?: string | undefined;
|
1035
1050
|
};
|
1036
1051
|
manager?: {
|
@@ -2664,6 +2679,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2664
2679
|
idBackgroundColor?: string | undefined;
|
2665
2680
|
repeatIdBackgroundImage?: boolean | undefined;
|
2666
2681
|
}>>;
|
2682
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2667
2683
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2668
2684
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2669
2685
|
}, "strip", z.ZodTypeAny, {
|
@@ -2694,6 +2710,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2694
2710
|
idBackgroundColor?: string | undefined;
|
2695
2711
|
repeatIdBackgroundImage?: boolean | undefined;
|
2696
2712
|
} | undefined;
|
2713
|
+
highlightedCredentials?: string[] | undefined;
|
2697
2714
|
dob?: string | undefined;
|
2698
2715
|
}, {
|
2699
2716
|
profileId: string;
|
@@ -2723,6 +2740,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2723
2740
|
idBackgroundColor?: string | undefined;
|
2724
2741
|
repeatIdBackgroundImage?: boolean | undefined;
|
2725
2742
|
} | undefined;
|
2743
|
+
highlightedCredentials?: string[] | undefined;
|
2726
2744
|
dob?: string | undefined;
|
2727
2745
|
}>;
|
2728
2746
|
from: z.ZodString;
|
@@ -2757,6 +2775,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2757
2775
|
idBackgroundColor?: string | undefined;
|
2758
2776
|
repeatIdBackgroundImage?: boolean | undefined;
|
2759
2777
|
} | undefined;
|
2778
|
+
highlightedCredentials?: string[] | undefined;
|
2760
2779
|
dob?: string | undefined;
|
2761
2780
|
};
|
2762
2781
|
from: string;
|
@@ -2791,6 +2810,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2791
2810
|
idBackgroundColor?: string | undefined;
|
2792
2811
|
repeatIdBackgroundImage?: boolean | undefined;
|
2793
2812
|
} | undefined;
|
2813
|
+
highlightedCredentials?: string[] | undefined;
|
2794
2814
|
dob?: string | undefined;
|
2795
2815
|
};
|
2796
2816
|
from: string;
|
@@ -2854,6 +2874,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
2854
2874
|
idBackgroundColor?: string | undefined;
|
2855
2875
|
repeatIdBackgroundImage?: boolean | undefined;
|
2856
2876
|
}>>;
|
2877
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2857
2878
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2858
2879
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2859
2880
|
}, "strip", z.ZodTypeAny, {
|
@@ -2884,6 +2905,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
2884
2905
|
idBackgroundColor?: string | undefined;
|
2885
2906
|
repeatIdBackgroundImage?: boolean | undefined;
|
2886
2907
|
} | undefined;
|
2908
|
+
highlightedCredentials?: string[] | undefined;
|
2887
2909
|
dob?: string | undefined;
|
2888
2910
|
}, {
|
2889
2911
|
profileId: string;
|
@@ -2913,6 +2935,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
2913
2935
|
idBackgroundColor?: string | undefined;
|
2914
2936
|
repeatIdBackgroundImage?: boolean | undefined;
|
2915
2937
|
} | undefined;
|
2938
|
+
highlightedCredentials?: string[] | undefined;
|
2916
2939
|
dob?: string | undefined;
|
2917
2940
|
}>;
|
2918
2941
|
from: z.ZodString;
|
@@ -2947,6 +2970,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
2947
2970
|
idBackgroundColor?: string | undefined;
|
2948
2971
|
repeatIdBackgroundImage?: boolean | undefined;
|
2949
2972
|
} | undefined;
|
2973
|
+
highlightedCredentials?: string[] | undefined;
|
2950
2974
|
dob?: string | undefined;
|
2951
2975
|
};
|
2952
2976
|
from: string;
|
@@ -2981,6 +3005,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
2981
3005
|
idBackgroundColor?: string | undefined;
|
2982
3006
|
repeatIdBackgroundImage?: boolean | undefined;
|
2983
3007
|
} | undefined;
|
3008
|
+
highlightedCredentials?: string[] | undefined;
|
2984
3009
|
dob?: string | undefined;
|
2985
3010
|
};
|
2986
3011
|
from: string;
|
@@ -3018,6 +3043,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3018
3043
|
idBackgroundColor?: string | undefined;
|
3019
3044
|
repeatIdBackgroundImage?: boolean | undefined;
|
3020
3045
|
} | undefined;
|
3046
|
+
highlightedCredentials?: string[] | undefined;
|
3021
3047
|
dob?: string | undefined;
|
3022
3048
|
};
|
3023
3049
|
from: string;
|
@@ -3056,6 +3082,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3056
3082
|
idBackgroundColor?: string | undefined;
|
3057
3083
|
repeatIdBackgroundImage?: boolean | undefined;
|
3058
3084
|
} | undefined;
|
3085
|
+
highlightedCredentials?: string[] | undefined;
|
3059
3086
|
dob?: string | undefined;
|
3060
3087
|
};
|
3061
3088
|
from: string;
|
@@ -3065,6 +3092,479 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3065
3092
|
cursor?: string | undefined;
|
3066
3093
|
}>;
|
3067
3094
|
export type PaginatedBoostRecipientsType = z.infer<typeof PaginatedBoostRecipientsValidator>;
|
3095
|
+
export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
3096
|
+
to: z.ZodObject<{
|
3097
|
+
profileId: z.ZodString;
|
3098
|
+
displayName: z.ZodDefault<z.ZodString>;
|
3099
|
+
shortBio: z.ZodDefault<z.ZodString>;
|
3100
|
+
bio: z.ZodDefault<z.ZodString>;
|
3101
|
+
did: z.ZodString;
|
3102
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
3103
|
+
email: z.ZodOptional<z.ZodString>;
|
3104
|
+
image: z.ZodOptional<z.ZodString>;
|
3105
|
+
heroImage: z.ZodOptional<z.ZodString>;
|
3106
|
+
websiteLink: z.ZodOptional<z.ZodString>;
|
3107
|
+
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3108
|
+
type: z.ZodOptional<z.ZodString>;
|
3109
|
+
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
3110
|
+
display: z.ZodOptional<z.ZodObject<{
|
3111
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
3112
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
3113
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3114
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3115
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
3116
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
3117
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
3118
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
3119
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3120
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
3121
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3122
|
+
}, "strip", z.ZodTypeAny, {
|
3123
|
+
backgroundColor?: string | undefined;
|
3124
|
+
backgroundImage?: string | undefined;
|
3125
|
+
fadeBackgroundImage?: boolean | undefined;
|
3126
|
+
repeatBackgroundImage?: boolean | undefined;
|
3127
|
+
fontColor?: string | undefined;
|
3128
|
+
accentColor?: string | undefined;
|
3129
|
+
accentFontColor?: string | undefined;
|
3130
|
+
idBackgroundImage?: string | undefined;
|
3131
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3132
|
+
idBackgroundColor?: string | undefined;
|
3133
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3134
|
+
}, {
|
3135
|
+
backgroundColor?: string | undefined;
|
3136
|
+
backgroundImage?: string | undefined;
|
3137
|
+
fadeBackgroundImage?: boolean | undefined;
|
3138
|
+
repeatBackgroundImage?: boolean | undefined;
|
3139
|
+
fontColor?: string | undefined;
|
3140
|
+
accentColor?: string | undefined;
|
3141
|
+
accentFontColor?: string | undefined;
|
3142
|
+
idBackgroundImage?: string | undefined;
|
3143
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3144
|
+
idBackgroundColor?: string | undefined;
|
3145
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3146
|
+
}>>;
|
3147
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3148
|
+
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3149
|
+
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3150
|
+
}, "strip", z.ZodTypeAny, {
|
3151
|
+
profileId: string;
|
3152
|
+
displayName: string;
|
3153
|
+
shortBio: string;
|
3154
|
+
bio: string;
|
3155
|
+
did: string;
|
3156
|
+
type?: string | undefined;
|
3157
|
+
image?: string | undefined;
|
3158
|
+
email?: string | undefined;
|
3159
|
+
role?: string | undefined;
|
3160
|
+
isPrivate?: boolean | undefined;
|
3161
|
+
heroImage?: string | undefined;
|
3162
|
+
websiteLink?: string | undefined;
|
3163
|
+
isServiceProfile?: boolean | undefined;
|
3164
|
+
notificationsWebhook?: string | undefined;
|
3165
|
+
display?: {
|
3166
|
+
backgroundColor?: string | undefined;
|
3167
|
+
backgroundImage?: string | undefined;
|
3168
|
+
fadeBackgroundImage?: boolean | undefined;
|
3169
|
+
repeatBackgroundImage?: boolean | undefined;
|
3170
|
+
fontColor?: string | undefined;
|
3171
|
+
accentColor?: string | undefined;
|
3172
|
+
accentFontColor?: string | undefined;
|
3173
|
+
idBackgroundImage?: string | undefined;
|
3174
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3175
|
+
idBackgroundColor?: string | undefined;
|
3176
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3177
|
+
} | undefined;
|
3178
|
+
highlightedCredentials?: string[] | undefined;
|
3179
|
+
dob?: string | undefined;
|
3180
|
+
}, {
|
3181
|
+
profileId: string;
|
3182
|
+
did: string;
|
3183
|
+
type?: string | undefined;
|
3184
|
+
image?: string | undefined;
|
3185
|
+
email?: string | undefined;
|
3186
|
+
role?: string | undefined;
|
3187
|
+
displayName?: string | undefined;
|
3188
|
+
shortBio?: string | undefined;
|
3189
|
+
bio?: string | undefined;
|
3190
|
+
isPrivate?: boolean | undefined;
|
3191
|
+
heroImage?: string | undefined;
|
3192
|
+
websiteLink?: string | undefined;
|
3193
|
+
isServiceProfile?: boolean | undefined;
|
3194
|
+
notificationsWebhook?: string | undefined;
|
3195
|
+
display?: {
|
3196
|
+
backgroundColor?: string | undefined;
|
3197
|
+
backgroundImage?: string | undefined;
|
3198
|
+
fadeBackgroundImage?: boolean | undefined;
|
3199
|
+
repeatBackgroundImage?: boolean | undefined;
|
3200
|
+
fontColor?: string | undefined;
|
3201
|
+
accentColor?: string | undefined;
|
3202
|
+
accentFontColor?: string | undefined;
|
3203
|
+
idBackgroundImage?: string | undefined;
|
3204
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3205
|
+
idBackgroundColor?: string | undefined;
|
3206
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3207
|
+
} | undefined;
|
3208
|
+
highlightedCredentials?: string[] | undefined;
|
3209
|
+
dob?: string | undefined;
|
3210
|
+
}>;
|
3211
|
+
from: z.ZodString;
|
3212
|
+
received: z.ZodOptional<z.ZodString>;
|
3213
|
+
boostUris: z.ZodArray<z.ZodString, "many">;
|
3214
|
+
credentialUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3215
|
+
}, "strip", z.ZodTypeAny, {
|
3216
|
+
to: {
|
3217
|
+
profileId: string;
|
3218
|
+
displayName: string;
|
3219
|
+
shortBio: string;
|
3220
|
+
bio: string;
|
3221
|
+
did: string;
|
3222
|
+
type?: string | undefined;
|
3223
|
+
image?: string | undefined;
|
3224
|
+
email?: string | undefined;
|
3225
|
+
role?: string | undefined;
|
3226
|
+
isPrivate?: boolean | undefined;
|
3227
|
+
heroImage?: string | undefined;
|
3228
|
+
websiteLink?: string | undefined;
|
3229
|
+
isServiceProfile?: boolean | undefined;
|
3230
|
+
notificationsWebhook?: string | undefined;
|
3231
|
+
display?: {
|
3232
|
+
backgroundColor?: string | undefined;
|
3233
|
+
backgroundImage?: string | undefined;
|
3234
|
+
fadeBackgroundImage?: boolean | undefined;
|
3235
|
+
repeatBackgroundImage?: boolean | undefined;
|
3236
|
+
fontColor?: string | undefined;
|
3237
|
+
accentColor?: string | undefined;
|
3238
|
+
accentFontColor?: string | undefined;
|
3239
|
+
idBackgroundImage?: string | undefined;
|
3240
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3241
|
+
idBackgroundColor?: string | undefined;
|
3242
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3243
|
+
} | undefined;
|
3244
|
+
highlightedCredentials?: string[] | undefined;
|
3245
|
+
dob?: string | undefined;
|
3246
|
+
};
|
3247
|
+
from: string;
|
3248
|
+
boostUris: string[];
|
3249
|
+
received?: string | undefined;
|
3250
|
+
credentialUris?: string[] | undefined;
|
3251
|
+
}, {
|
3252
|
+
to: {
|
3253
|
+
profileId: string;
|
3254
|
+
did: string;
|
3255
|
+
type?: string | undefined;
|
3256
|
+
image?: string | undefined;
|
3257
|
+
email?: string | undefined;
|
3258
|
+
role?: string | undefined;
|
3259
|
+
displayName?: string | undefined;
|
3260
|
+
shortBio?: string | undefined;
|
3261
|
+
bio?: string | undefined;
|
3262
|
+
isPrivate?: boolean | undefined;
|
3263
|
+
heroImage?: string | undefined;
|
3264
|
+
websiteLink?: string | undefined;
|
3265
|
+
isServiceProfile?: boolean | undefined;
|
3266
|
+
notificationsWebhook?: string | undefined;
|
3267
|
+
display?: {
|
3268
|
+
backgroundColor?: string | undefined;
|
3269
|
+
backgroundImage?: string | undefined;
|
3270
|
+
fadeBackgroundImage?: boolean | undefined;
|
3271
|
+
repeatBackgroundImage?: boolean | undefined;
|
3272
|
+
fontColor?: string | undefined;
|
3273
|
+
accentColor?: string | undefined;
|
3274
|
+
accentFontColor?: string | undefined;
|
3275
|
+
idBackgroundImage?: string | undefined;
|
3276
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3277
|
+
idBackgroundColor?: string | undefined;
|
3278
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3279
|
+
} | undefined;
|
3280
|
+
highlightedCredentials?: string[] | undefined;
|
3281
|
+
dob?: string | undefined;
|
3282
|
+
};
|
3283
|
+
from: string;
|
3284
|
+
boostUris: string[];
|
3285
|
+
received?: string | undefined;
|
3286
|
+
credentialUris?: string[] | undefined;
|
3287
|
+
}>;
|
3288
|
+
export type BoostRecipientWithChildrenInfo = z.infer<typeof BoostRecipientWithChildrenValidator>;
|
3289
|
+
export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<z.objectUtil.extendShape<{
|
3290
|
+
cursor: z.ZodOptional<z.ZodString>;
|
3291
|
+
hasMore: z.ZodBoolean;
|
3292
|
+
}, {
|
3293
|
+
records: z.ZodArray<z.ZodObject<{
|
3294
|
+
to: z.ZodObject<{
|
3295
|
+
profileId: z.ZodString;
|
3296
|
+
displayName: z.ZodDefault<z.ZodString>;
|
3297
|
+
shortBio: z.ZodDefault<z.ZodString>;
|
3298
|
+
bio: z.ZodDefault<z.ZodString>;
|
3299
|
+
did: z.ZodString;
|
3300
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
3301
|
+
email: z.ZodOptional<z.ZodString>;
|
3302
|
+
image: z.ZodOptional<z.ZodString>;
|
3303
|
+
heroImage: z.ZodOptional<z.ZodString>;
|
3304
|
+
websiteLink: z.ZodOptional<z.ZodString>;
|
3305
|
+
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3306
|
+
type: z.ZodOptional<z.ZodString>;
|
3307
|
+
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
3308
|
+
display: z.ZodOptional<z.ZodObject<{
|
3309
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
3310
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
3311
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3312
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3313
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
3314
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
3315
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
3316
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
3317
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3318
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
3319
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3320
|
+
}, "strip", z.ZodTypeAny, {
|
3321
|
+
backgroundColor?: string | undefined;
|
3322
|
+
backgroundImage?: string | undefined;
|
3323
|
+
fadeBackgroundImage?: boolean | undefined;
|
3324
|
+
repeatBackgroundImage?: boolean | undefined;
|
3325
|
+
fontColor?: string | undefined;
|
3326
|
+
accentColor?: string | undefined;
|
3327
|
+
accentFontColor?: string | undefined;
|
3328
|
+
idBackgroundImage?: string | undefined;
|
3329
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3330
|
+
idBackgroundColor?: string | undefined;
|
3331
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3332
|
+
}, {
|
3333
|
+
backgroundColor?: string | undefined;
|
3334
|
+
backgroundImage?: string | undefined;
|
3335
|
+
fadeBackgroundImage?: boolean | undefined;
|
3336
|
+
repeatBackgroundImage?: boolean | undefined;
|
3337
|
+
fontColor?: string | undefined;
|
3338
|
+
accentColor?: string | undefined;
|
3339
|
+
accentFontColor?: string | undefined;
|
3340
|
+
idBackgroundImage?: string | undefined;
|
3341
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3342
|
+
idBackgroundColor?: string | undefined;
|
3343
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3344
|
+
}>>;
|
3345
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3346
|
+
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3347
|
+
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3348
|
+
}, "strip", z.ZodTypeAny, {
|
3349
|
+
profileId: string;
|
3350
|
+
displayName: string;
|
3351
|
+
shortBio: string;
|
3352
|
+
bio: string;
|
3353
|
+
did: string;
|
3354
|
+
type?: string | undefined;
|
3355
|
+
image?: string | undefined;
|
3356
|
+
email?: string | undefined;
|
3357
|
+
role?: string | undefined;
|
3358
|
+
isPrivate?: boolean | undefined;
|
3359
|
+
heroImage?: string | undefined;
|
3360
|
+
websiteLink?: string | undefined;
|
3361
|
+
isServiceProfile?: boolean | undefined;
|
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;
|
3376
|
+
highlightedCredentials?: string[] | undefined;
|
3377
|
+
dob?: string | undefined;
|
3378
|
+
}, {
|
3379
|
+
profileId: string;
|
3380
|
+
did: string;
|
3381
|
+
type?: string | undefined;
|
3382
|
+
image?: string | undefined;
|
3383
|
+
email?: string | undefined;
|
3384
|
+
role?: string | undefined;
|
3385
|
+
displayName?: string | undefined;
|
3386
|
+
shortBio?: string | undefined;
|
3387
|
+
bio?: string | undefined;
|
3388
|
+
isPrivate?: boolean | undefined;
|
3389
|
+
heroImage?: string | undefined;
|
3390
|
+
websiteLink?: string | undefined;
|
3391
|
+
isServiceProfile?: boolean | undefined;
|
3392
|
+
notificationsWebhook?: string | undefined;
|
3393
|
+
display?: {
|
3394
|
+
backgroundColor?: string | undefined;
|
3395
|
+
backgroundImage?: string | undefined;
|
3396
|
+
fadeBackgroundImage?: boolean | undefined;
|
3397
|
+
repeatBackgroundImage?: boolean | undefined;
|
3398
|
+
fontColor?: string | undefined;
|
3399
|
+
accentColor?: string | undefined;
|
3400
|
+
accentFontColor?: string | undefined;
|
3401
|
+
idBackgroundImage?: string | undefined;
|
3402
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3403
|
+
idBackgroundColor?: string | undefined;
|
3404
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3405
|
+
} | undefined;
|
3406
|
+
highlightedCredentials?: string[] | undefined;
|
3407
|
+
dob?: string | undefined;
|
3408
|
+
}>;
|
3409
|
+
from: z.ZodString;
|
3410
|
+
received: z.ZodOptional<z.ZodString>;
|
3411
|
+
boostUris: z.ZodArray<z.ZodString, "many">;
|
3412
|
+
credentialUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3413
|
+
}, "strip", z.ZodTypeAny, {
|
3414
|
+
to: {
|
3415
|
+
profileId: string;
|
3416
|
+
displayName: string;
|
3417
|
+
shortBio: string;
|
3418
|
+
bio: string;
|
3419
|
+
did: string;
|
3420
|
+
type?: string | undefined;
|
3421
|
+
image?: string | undefined;
|
3422
|
+
email?: string | undefined;
|
3423
|
+
role?: string | undefined;
|
3424
|
+
isPrivate?: boolean | undefined;
|
3425
|
+
heroImage?: string | undefined;
|
3426
|
+
websiteLink?: string | undefined;
|
3427
|
+
isServiceProfile?: boolean | undefined;
|
3428
|
+
notificationsWebhook?: string | undefined;
|
3429
|
+
display?: {
|
3430
|
+
backgroundColor?: string | undefined;
|
3431
|
+
backgroundImage?: string | undefined;
|
3432
|
+
fadeBackgroundImage?: boolean | undefined;
|
3433
|
+
repeatBackgroundImage?: boolean | undefined;
|
3434
|
+
fontColor?: string | undefined;
|
3435
|
+
accentColor?: string | undefined;
|
3436
|
+
accentFontColor?: string | undefined;
|
3437
|
+
idBackgroundImage?: string | undefined;
|
3438
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3439
|
+
idBackgroundColor?: string | undefined;
|
3440
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3441
|
+
} | undefined;
|
3442
|
+
highlightedCredentials?: string[] | undefined;
|
3443
|
+
dob?: string | undefined;
|
3444
|
+
};
|
3445
|
+
from: string;
|
3446
|
+
boostUris: string[];
|
3447
|
+
received?: string | undefined;
|
3448
|
+
credentialUris?: string[] | undefined;
|
3449
|
+
}, {
|
3450
|
+
to: {
|
3451
|
+
profileId: string;
|
3452
|
+
did: string;
|
3453
|
+
type?: string | undefined;
|
3454
|
+
image?: string | undefined;
|
3455
|
+
email?: string | undefined;
|
3456
|
+
role?: string | undefined;
|
3457
|
+
displayName?: string | undefined;
|
3458
|
+
shortBio?: string | undefined;
|
3459
|
+
bio?: string | undefined;
|
3460
|
+
isPrivate?: boolean | undefined;
|
3461
|
+
heroImage?: string | undefined;
|
3462
|
+
websiteLink?: string | undefined;
|
3463
|
+
isServiceProfile?: boolean | undefined;
|
3464
|
+
notificationsWebhook?: string | undefined;
|
3465
|
+
display?: {
|
3466
|
+
backgroundColor?: string | undefined;
|
3467
|
+
backgroundImage?: string | undefined;
|
3468
|
+
fadeBackgroundImage?: boolean | undefined;
|
3469
|
+
repeatBackgroundImage?: boolean | undefined;
|
3470
|
+
fontColor?: string | undefined;
|
3471
|
+
accentColor?: string | undefined;
|
3472
|
+
accentFontColor?: string | undefined;
|
3473
|
+
idBackgroundImage?: string | undefined;
|
3474
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3475
|
+
idBackgroundColor?: string | undefined;
|
3476
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3477
|
+
} | undefined;
|
3478
|
+
highlightedCredentials?: string[] | undefined;
|
3479
|
+
dob?: string | undefined;
|
3480
|
+
};
|
3481
|
+
from: string;
|
3482
|
+
boostUris: string[];
|
3483
|
+
received?: string | undefined;
|
3484
|
+
credentialUris?: string[] | undefined;
|
3485
|
+
}>, "many">;
|
3486
|
+
}>, "strip", z.ZodTypeAny, {
|
3487
|
+
hasMore: boolean;
|
3488
|
+
records: {
|
3489
|
+
to: {
|
3490
|
+
profileId: string;
|
3491
|
+
displayName: string;
|
3492
|
+
shortBio: string;
|
3493
|
+
bio: string;
|
3494
|
+
did: string;
|
3495
|
+
type?: string | undefined;
|
3496
|
+
image?: string | undefined;
|
3497
|
+
email?: string | undefined;
|
3498
|
+
role?: string | undefined;
|
3499
|
+
isPrivate?: boolean | undefined;
|
3500
|
+
heroImage?: string | undefined;
|
3501
|
+
websiteLink?: string | undefined;
|
3502
|
+
isServiceProfile?: boolean | undefined;
|
3503
|
+
notificationsWebhook?: string | undefined;
|
3504
|
+
display?: {
|
3505
|
+
backgroundColor?: string | undefined;
|
3506
|
+
backgroundImage?: string | undefined;
|
3507
|
+
fadeBackgroundImage?: boolean | undefined;
|
3508
|
+
repeatBackgroundImage?: boolean | undefined;
|
3509
|
+
fontColor?: string | undefined;
|
3510
|
+
accentColor?: string | undefined;
|
3511
|
+
accentFontColor?: string | undefined;
|
3512
|
+
idBackgroundImage?: string | undefined;
|
3513
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3514
|
+
idBackgroundColor?: string | undefined;
|
3515
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3516
|
+
} | undefined;
|
3517
|
+
highlightedCredentials?: string[] | undefined;
|
3518
|
+
dob?: string | undefined;
|
3519
|
+
};
|
3520
|
+
from: string;
|
3521
|
+
boostUris: string[];
|
3522
|
+
received?: string | undefined;
|
3523
|
+
credentialUris?: string[] | undefined;
|
3524
|
+
}[];
|
3525
|
+
cursor?: string | undefined;
|
3526
|
+
}, {
|
3527
|
+
hasMore: boolean;
|
3528
|
+
records: {
|
3529
|
+
to: {
|
3530
|
+
profileId: string;
|
3531
|
+
did: string;
|
3532
|
+
type?: string | undefined;
|
3533
|
+
image?: string | undefined;
|
3534
|
+
email?: string | undefined;
|
3535
|
+
role?: string | undefined;
|
3536
|
+
displayName?: string | undefined;
|
3537
|
+
shortBio?: string | undefined;
|
3538
|
+
bio?: string | undefined;
|
3539
|
+
isPrivate?: boolean | undefined;
|
3540
|
+
heroImage?: string | undefined;
|
3541
|
+
websiteLink?: string | undefined;
|
3542
|
+
isServiceProfile?: boolean | undefined;
|
3543
|
+
notificationsWebhook?: string | undefined;
|
3544
|
+
display?: {
|
3545
|
+
backgroundColor?: string | undefined;
|
3546
|
+
backgroundImage?: string | undefined;
|
3547
|
+
fadeBackgroundImage?: boolean | undefined;
|
3548
|
+
repeatBackgroundImage?: boolean | undefined;
|
3549
|
+
fontColor?: string | undefined;
|
3550
|
+
accentColor?: string | undefined;
|
3551
|
+
accentFontColor?: string | undefined;
|
3552
|
+
idBackgroundImage?: string | undefined;
|
3553
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3554
|
+
idBackgroundColor?: string | undefined;
|
3555
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3556
|
+
} | undefined;
|
3557
|
+
highlightedCredentials?: string[] | undefined;
|
3558
|
+
dob?: string | undefined;
|
3559
|
+
};
|
3560
|
+
from: string;
|
3561
|
+
boostUris: string[];
|
3562
|
+
received?: string | undefined;
|
3563
|
+
credentialUris?: string[] | undefined;
|
3564
|
+
}[];
|
3565
|
+
cursor?: string | undefined;
|
3566
|
+
}>;
|
3567
|
+
export type PaginatedBoostRecipientsWithChildrenType = z.infer<typeof PaginatedBoostRecipientsWithChildrenValidator>;
|
3068
3568
|
export declare const LCNBoostClaimLinkSigningAuthorityValidator: z.ZodObject<{
|
3069
3569
|
endpoint: z.ZodString;
|
3070
3570
|
name: z.ZodString;
|
@@ -3559,6 +4059,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3559
4059
|
idBackgroundColor?: string | undefined;
|
3560
4060
|
repeatIdBackgroundImage?: boolean | undefined;
|
3561
4061
|
}>>;
|
4062
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3562
4063
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3563
4064
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3564
4065
|
}, "strip", z.ZodTypeAny, {
|
@@ -3589,6 +4090,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3589
4090
|
idBackgroundColor?: string | undefined;
|
3590
4091
|
repeatIdBackgroundImage?: boolean | undefined;
|
3591
4092
|
} | undefined;
|
4093
|
+
highlightedCredentials?: string[] | undefined;
|
3592
4094
|
dob?: string | undefined;
|
3593
4095
|
}, {
|
3594
4096
|
profileId: string;
|
@@ -3618,6 +4120,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3618
4120
|
idBackgroundColor?: string | undefined;
|
3619
4121
|
repeatIdBackgroundImage?: boolean | undefined;
|
3620
4122
|
} | undefined;
|
4123
|
+
highlightedCredentials?: string[] | undefined;
|
3621
4124
|
dob?: string | undefined;
|
3622
4125
|
}>;
|
3623
4126
|
name: z.ZodString;
|
@@ -3684,6 +4187,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3684
4187
|
idBackgroundColor?: string | undefined;
|
3685
4188
|
repeatIdBackgroundImage?: boolean | undefined;
|
3686
4189
|
}>>;
|
4190
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3687
4191
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3688
4192
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3689
4193
|
}, "strip", z.ZodTypeAny, {
|
@@ -3714,6 +4218,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3714
4218
|
idBackgroundColor?: string | undefined;
|
3715
4219
|
repeatIdBackgroundImage?: boolean | undefined;
|
3716
4220
|
} | undefined;
|
4221
|
+
highlightedCredentials?: string[] | undefined;
|
3717
4222
|
dob?: string | undefined;
|
3718
4223
|
}, {
|
3719
4224
|
profileId: string;
|
@@ -3743,6 +4248,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3743
4248
|
idBackgroundColor?: string | undefined;
|
3744
4249
|
repeatIdBackgroundImage?: boolean | undefined;
|
3745
4250
|
} | undefined;
|
4251
|
+
highlightedCredentials?: string[] | undefined;
|
3746
4252
|
dob?: string | undefined;
|
3747
4253
|
}>, "many">>;
|
3748
4254
|
}, "strip", z.ZodTypeAny, {
|
@@ -3805,6 +4311,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3805
4311
|
idBackgroundColor?: string | undefined;
|
3806
4312
|
repeatIdBackgroundImage?: boolean | undefined;
|
3807
4313
|
} | undefined;
|
4314
|
+
highlightedCredentials?: string[] | undefined;
|
3808
4315
|
dob?: string | undefined;
|
3809
4316
|
};
|
3810
4317
|
description?: string | undefined;
|
@@ -3844,6 +4351,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3844
4351
|
idBackgroundColor?: string | undefined;
|
3845
4352
|
repeatIdBackgroundImage?: boolean | undefined;
|
3846
4353
|
} | undefined;
|
4354
|
+
highlightedCredentials?: string[] | undefined;
|
3847
4355
|
dob?: string | undefined;
|
3848
4356
|
}[] | undefined;
|
3849
4357
|
}, {
|
@@ -3906,6 +4414,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3906
4414
|
idBackgroundColor?: string | undefined;
|
3907
4415
|
repeatIdBackgroundImage?: boolean | undefined;
|
3908
4416
|
} | undefined;
|
4417
|
+
highlightedCredentials?: string[] | undefined;
|
3909
4418
|
dob?: string | undefined;
|
3910
4419
|
};
|
3911
4420
|
description?: string | undefined;
|
@@ -3945,6 +4454,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3945
4454
|
idBackgroundColor?: string | undefined;
|
3946
4455
|
repeatIdBackgroundImage?: boolean | undefined;
|
3947
4456
|
} | undefined;
|
4457
|
+
highlightedCredentials?: string[] | undefined;
|
3948
4458
|
dob?: string | undefined;
|
3949
4459
|
}[] | undefined;
|
3950
4460
|
}>;
|
@@ -4175,6 +4685,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4175
4685
|
idBackgroundColor?: string | undefined;
|
4176
4686
|
repeatIdBackgroundImage?: boolean | undefined;
|
4177
4687
|
}>>;
|
4688
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4178
4689
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4179
4690
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4180
4691
|
}, "strip", z.ZodTypeAny, {
|
@@ -4205,6 +4716,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4205
4716
|
idBackgroundColor?: string | undefined;
|
4206
4717
|
repeatIdBackgroundImage?: boolean | undefined;
|
4207
4718
|
} | undefined;
|
4719
|
+
highlightedCredentials?: string[] | undefined;
|
4208
4720
|
dob?: string | undefined;
|
4209
4721
|
}, {
|
4210
4722
|
profileId: string;
|
@@ -4234,6 +4746,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4234
4746
|
idBackgroundColor?: string | undefined;
|
4235
4747
|
repeatIdBackgroundImage?: boolean | undefined;
|
4236
4748
|
} | undefined;
|
4749
|
+
highlightedCredentials?: string[] | undefined;
|
4237
4750
|
dob?: string | undefined;
|
4238
4751
|
}>;
|
4239
4752
|
name: z.ZodString;
|
@@ -4300,6 +4813,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4300
4813
|
idBackgroundColor?: string | undefined;
|
4301
4814
|
repeatIdBackgroundImage?: boolean | undefined;
|
4302
4815
|
}>>;
|
4816
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4303
4817
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4304
4818
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4305
4819
|
}, "strip", z.ZodTypeAny, {
|
@@ -4330,6 +4844,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4330
4844
|
idBackgroundColor?: string | undefined;
|
4331
4845
|
repeatIdBackgroundImage?: boolean | undefined;
|
4332
4846
|
} | undefined;
|
4847
|
+
highlightedCredentials?: string[] | undefined;
|
4333
4848
|
dob?: string | undefined;
|
4334
4849
|
}, {
|
4335
4850
|
profileId: string;
|
@@ -4359,6 +4874,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4359
4874
|
idBackgroundColor?: string | undefined;
|
4360
4875
|
repeatIdBackgroundImage?: boolean | undefined;
|
4361
4876
|
} | undefined;
|
4877
|
+
highlightedCredentials?: string[] | undefined;
|
4362
4878
|
dob?: string | undefined;
|
4363
4879
|
}>, "many">>;
|
4364
4880
|
}, "owner">, "strip", z.ZodTypeAny, {
|
@@ -4430,6 +4946,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4430
4946
|
idBackgroundColor?: string | undefined;
|
4431
4947
|
repeatIdBackgroundImage?: boolean | undefined;
|
4432
4948
|
} | undefined;
|
4949
|
+
highlightedCredentials?: string[] | undefined;
|
4433
4950
|
dob?: string | undefined;
|
4434
4951
|
}[] | undefined;
|
4435
4952
|
}, {
|
@@ -4501,6 +5018,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4501
5018
|
idBackgroundColor?: string | undefined;
|
4502
5019
|
repeatIdBackgroundImage?: boolean | undefined;
|
4503
5020
|
} | undefined;
|
5021
|
+
highlightedCredentials?: string[] | undefined;
|
4504
5022
|
dob?: string | undefined;
|
4505
5023
|
}[] | undefined;
|
4506
5024
|
}>, "many">;
|
@@ -4575,6 +5093,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4575
5093
|
idBackgroundColor?: string | undefined;
|
4576
5094
|
repeatIdBackgroundImage?: boolean | undefined;
|
4577
5095
|
} | undefined;
|
5096
|
+
highlightedCredentials?: string[] | undefined;
|
4578
5097
|
dob?: string | undefined;
|
4579
5098
|
}[] | undefined;
|
4580
5099
|
}[];
|
@@ -4650,6 +5169,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4650
5169
|
idBackgroundColor?: string | undefined;
|
4651
5170
|
repeatIdBackgroundImage?: boolean | undefined;
|
4652
5171
|
} | undefined;
|
5172
|
+
highlightedCredentials?: string[] | undefined;
|
4653
5173
|
dob?: string | undefined;
|
4654
5174
|
}[] | undefined;
|
4655
5175
|
}[];
|
@@ -5339,6 +5859,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5339
5859
|
idBackgroundColor?: string | undefined;
|
5340
5860
|
repeatIdBackgroundImage?: boolean | undefined;
|
5341
5861
|
}>>;
|
5862
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
5342
5863
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5343
5864
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5344
5865
|
}, "strip", z.ZodTypeAny, {
|
@@ -5369,6 +5890,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5369
5890
|
idBackgroundColor?: string | undefined;
|
5370
5891
|
repeatIdBackgroundImage?: boolean | undefined;
|
5371
5892
|
} | undefined;
|
5893
|
+
highlightedCredentials?: string[] | undefined;
|
5372
5894
|
dob?: string | undefined;
|
5373
5895
|
}, {
|
5374
5896
|
profileId: string;
|
@@ -5398,6 +5920,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5398
5920
|
idBackgroundColor?: string | undefined;
|
5399
5921
|
repeatIdBackgroundImage?: boolean | undefined;
|
5400
5922
|
} | undefined;
|
5923
|
+
highlightedCredentials?: string[] | undefined;
|
5401
5924
|
dob?: string | undefined;
|
5402
5925
|
}>;
|
5403
5926
|
name: z.ZodString;
|
@@ -5464,6 +5987,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5464
5987
|
idBackgroundColor?: string | undefined;
|
5465
5988
|
repeatIdBackgroundImage?: boolean | undefined;
|
5466
5989
|
}>>;
|
5990
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
5467
5991
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5468
5992
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5469
5993
|
}, "strip", z.ZodTypeAny, {
|
@@ -5494,6 +6018,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5494
6018
|
idBackgroundColor?: string | undefined;
|
5495
6019
|
repeatIdBackgroundImage?: boolean | undefined;
|
5496
6020
|
} | undefined;
|
6021
|
+
highlightedCredentials?: string[] | undefined;
|
5497
6022
|
dob?: string | undefined;
|
5498
6023
|
}, {
|
5499
6024
|
profileId: string;
|
@@ -5523,6 +6048,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5523
6048
|
idBackgroundColor?: string | undefined;
|
5524
6049
|
repeatIdBackgroundImage?: boolean | undefined;
|
5525
6050
|
} | undefined;
|
6051
|
+
highlightedCredentials?: string[] | undefined;
|
5526
6052
|
dob?: string | undefined;
|
5527
6053
|
}>, "many">>;
|
5528
6054
|
}, "strip", z.ZodTypeAny, {
|
@@ -5585,6 +6111,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5585
6111
|
idBackgroundColor?: string | undefined;
|
5586
6112
|
repeatIdBackgroundImage?: boolean | undefined;
|
5587
6113
|
} | undefined;
|
6114
|
+
highlightedCredentials?: string[] | undefined;
|
5588
6115
|
dob?: string | undefined;
|
5589
6116
|
};
|
5590
6117
|
description?: string | undefined;
|
@@ -5624,6 +6151,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5624
6151
|
idBackgroundColor?: string | undefined;
|
5625
6152
|
repeatIdBackgroundImage?: boolean | undefined;
|
5626
6153
|
} | undefined;
|
6154
|
+
highlightedCredentials?: string[] | undefined;
|
5627
6155
|
dob?: string | undefined;
|
5628
6156
|
}[] | undefined;
|
5629
6157
|
}, {
|
@@ -5686,6 +6214,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5686
6214
|
idBackgroundColor?: string | undefined;
|
5687
6215
|
repeatIdBackgroundImage?: boolean | undefined;
|
5688
6216
|
} | undefined;
|
6217
|
+
highlightedCredentials?: string[] | undefined;
|
5689
6218
|
dob?: string | undefined;
|
5690
6219
|
};
|
5691
6220
|
description?: string | undefined;
|
@@ -5725,6 +6254,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5725
6254
|
idBackgroundColor?: string | undefined;
|
5726
6255
|
repeatIdBackgroundImage?: boolean | undefined;
|
5727
6256
|
} | undefined;
|
6257
|
+
highlightedCredentials?: string[] | undefined;
|
5728
6258
|
dob?: string | undefined;
|
5729
6259
|
}[] | undefined;
|
5730
6260
|
}>;
|
@@ -5780,6 +6310,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5780
6310
|
idBackgroundColor?: string | undefined;
|
5781
6311
|
repeatIdBackgroundImage?: boolean | undefined;
|
5782
6312
|
}>>;
|
6313
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
5783
6314
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5784
6315
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5785
6316
|
}, "strip", z.ZodTypeAny, {
|
@@ -5810,6 +6341,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5810
6341
|
idBackgroundColor?: string | undefined;
|
5811
6342
|
repeatIdBackgroundImage?: boolean | undefined;
|
5812
6343
|
} | undefined;
|
6344
|
+
highlightedCredentials?: string[] | undefined;
|
5813
6345
|
dob?: string | undefined;
|
5814
6346
|
}, {
|
5815
6347
|
profileId: string;
|
@@ -5839,6 +6371,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5839
6371
|
idBackgroundColor?: string | undefined;
|
5840
6372
|
repeatIdBackgroundImage?: boolean | undefined;
|
5841
6373
|
} | undefined;
|
6374
|
+
highlightedCredentials?: string[] | undefined;
|
5842
6375
|
dob?: string | undefined;
|
5843
6376
|
}>;
|
5844
6377
|
status: z.ZodEnum<["live", "stale", "withdrawn"]>;
|
@@ -5905,6 +6438,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5905
6438
|
idBackgroundColor?: string | undefined;
|
5906
6439
|
repeatIdBackgroundImage?: boolean | undefined;
|
5907
6440
|
} | undefined;
|
6441
|
+
highlightedCredentials?: string[] | undefined;
|
5908
6442
|
dob?: string | undefined;
|
5909
6443
|
};
|
5910
6444
|
description?: string | undefined;
|
@@ -5944,6 +6478,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5944
6478
|
idBackgroundColor?: string | undefined;
|
5945
6479
|
repeatIdBackgroundImage?: boolean | undefined;
|
5946
6480
|
} | undefined;
|
6481
|
+
highlightedCredentials?: string[] | undefined;
|
5947
6482
|
dob?: string | undefined;
|
5948
6483
|
}[] | undefined;
|
5949
6484
|
};
|
@@ -5998,6 +6533,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5998
6533
|
idBackgroundColor?: string | undefined;
|
5999
6534
|
repeatIdBackgroundImage?: boolean | undefined;
|
6000
6535
|
} | undefined;
|
6536
|
+
highlightedCredentials?: string[] | undefined;
|
6001
6537
|
dob?: string | undefined;
|
6002
6538
|
};
|
6003
6539
|
expiresAt?: string | undefined;
|
@@ -6065,6 +6601,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6065
6601
|
idBackgroundColor?: string | undefined;
|
6066
6602
|
repeatIdBackgroundImage?: boolean | undefined;
|
6067
6603
|
} | undefined;
|
6604
|
+
highlightedCredentials?: string[] | undefined;
|
6068
6605
|
dob?: string | undefined;
|
6069
6606
|
};
|
6070
6607
|
description?: string | undefined;
|
@@ -6104,6 +6641,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6104
6641
|
idBackgroundColor?: string | undefined;
|
6105
6642
|
repeatIdBackgroundImage?: boolean | undefined;
|
6106
6643
|
} | undefined;
|
6644
|
+
highlightedCredentials?: string[] | undefined;
|
6107
6645
|
dob?: string | undefined;
|
6108
6646
|
}[] | undefined;
|
6109
6647
|
};
|
@@ -6158,6 +6696,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6158
6696
|
idBackgroundColor?: string | undefined;
|
6159
6697
|
repeatIdBackgroundImage?: boolean | undefined;
|
6160
6698
|
} | undefined;
|
6699
|
+
highlightedCredentials?: string[] | undefined;
|
6161
6700
|
dob?: string | undefined;
|
6162
6701
|
};
|
6163
6702
|
expiresAt?: string | undefined;
|
@@ -6228,6 +6767,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6228
6767
|
idBackgroundColor?: string | undefined;
|
6229
6768
|
repeatIdBackgroundImage?: boolean | undefined;
|
6230
6769
|
} | undefined;
|
6770
|
+
highlightedCredentials?: string[] | undefined;
|
6231
6771
|
dob?: string | undefined;
|
6232
6772
|
};
|
6233
6773
|
description?: string | undefined;
|
@@ -6267,6 +6807,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6267
6807
|
idBackgroundColor?: string | undefined;
|
6268
6808
|
repeatIdBackgroundImage?: boolean | undefined;
|
6269
6809
|
} | undefined;
|
6810
|
+
highlightedCredentials?: string[] | undefined;
|
6270
6811
|
dob?: string | undefined;
|
6271
6812
|
}[] | undefined;
|
6272
6813
|
};
|
@@ -6321,6 +6862,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6321
6862
|
idBackgroundColor?: string | undefined;
|
6322
6863
|
repeatIdBackgroundImage?: boolean | undefined;
|
6323
6864
|
} | undefined;
|
6865
|
+
highlightedCredentials?: string[] | undefined;
|
6324
6866
|
dob?: string | undefined;
|
6325
6867
|
};
|
6326
6868
|
expiresAt?: string | undefined;
|
@@ -6392,6 +6934,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6392
6934
|
idBackgroundColor?: string | undefined;
|
6393
6935
|
repeatIdBackgroundImage?: boolean | undefined;
|
6394
6936
|
} | undefined;
|
6937
|
+
highlightedCredentials?: string[] | undefined;
|
6395
6938
|
dob?: string | undefined;
|
6396
6939
|
};
|
6397
6940
|
description?: string | undefined;
|
@@ -6431,6 +6974,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6431
6974
|
idBackgroundColor?: string | undefined;
|
6432
6975
|
repeatIdBackgroundImage?: boolean | undefined;
|
6433
6976
|
} | undefined;
|
6977
|
+
highlightedCredentials?: string[] | undefined;
|
6434
6978
|
dob?: string | undefined;
|
6435
6979
|
}[] | undefined;
|
6436
6980
|
};
|
@@ -6485,6 +7029,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6485
7029
|
idBackgroundColor?: string | undefined;
|
6486
7030
|
repeatIdBackgroundImage?: boolean | undefined;
|
6487
7031
|
} | undefined;
|
7032
|
+
highlightedCredentials?: string[] | undefined;
|
6488
7033
|
dob?: string | undefined;
|
6489
7034
|
};
|
6490
7035
|
expiresAt?: string | undefined;
|
@@ -7646,7 +8191,7 @@ export declare const PaginatedContractCredentialsValidator: z.ZodObject<z.object
|
|
7646
8191
|
cursor?: string | undefined;
|
7647
8192
|
}>;
|
7648
8193
|
export type PaginatedContractCredentials = z.infer<typeof PaginatedContractCredentialsValidator>;
|
7649
|
-
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", "ISSUANCE_CLAIMED", "ISSUANCE_DELIVERED"]>;
|
8194
|
+
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", "ISSUANCE_CLAIMED", "ISSUANCE_DELIVERED", "ISSUANCE_ERROR"]>;
|
7650
8195
|
export type LCNNotificationTypeEnum = z.infer<typeof LCNNotificationTypeEnumValidator>;
|
7651
8196
|
export declare const LCNNotificationMessageValidator: z.ZodObject<{
|
7652
8197
|
title: z.ZodOptional<z.ZodString>;
|
@@ -8078,7 +8623,7 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
8078
8623
|
}>;
|
8079
8624
|
export type LCNNotificationData = z.infer<typeof LCNNotificationDataValidator>;
|
8080
8625
|
export declare const LCNNotificationValidator: z.ZodObject<{
|
8081
|
-
type: z.ZodEnum<["CONNECTION_REQUEST", "CONNECTION_ACCEPTED", "CREDENTIAL_RECEIVED", "CREDENTIAL_ACCEPTED", "BOOST_RECEIVED", "BOOST_ACCEPTED", "PRESENTATION_REQUEST", "PRESENTATION_RECEIVED", "CONSENT_FLOW_TRANSACTION", "ISSUANCE_CLAIMED", "ISSUANCE_DELIVERED"]>;
|
8626
|
+
type: z.ZodEnum<["CONNECTION_REQUEST", "CONNECTION_ACCEPTED", "CREDENTIAL_RECEIVED", "CREDENTIAL_ACCEPTED", "BOOST_RECEIVED", "BOOST_ACCEPTED", "PRESENTATION_REQUEST", "PRESENTATION_RECEIVED", "CONSENT_FLOW_TRANSACTION", "ISSUANCE_CLAIMED", "ISSUANCE_DELIVERED", "ISSUANCE_ERROR"]>;
|
8082
8627
|
to: z.ZodIntersection<z.ZodObject<{
|
8083
8628
|
profileId: z.ZodOptional<z.ZodString>;
|
8084
8629
|
displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
@@ -8130,6 +8675,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8130
8675
|
idBackgroundColor?: string | undefined;
|
8131
8676
|
repeatIdBackgroundImage?: boolean | undefined;
|
8132
8677
|
}>>>;
|
8678
|
+
highlightedCredentials: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
8133
8679
|
role: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8134
8680
|
dob: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8135
8681
|
}, "strip", z.ZodTypeAny, {
|
@@ -8160,6 +8706,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8160
8706
|
idBackgroundColor?: string | undefined;
|
8161
8707
|
repeatIdBackgroundImage?: boolean | undefined;
|
8162
8708
|
} | undefined;
|
8709
|
+
highlightedCredentials?: string[] | undefined;
|
8163
8710
|
dob?: string | undefined;
|
8164
8711
|
}, {
|
8165
8712
|
type?: string | undefined;
|
@@ -8189,6 +8736,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8189
8736
|
idBackgroundColor?: string | undefined;
|
8190
8737
|
repeatIdBackgroundImage?: boolean | undefined;
|
8191
8738
|
} | undefined;
|
8739
|
+
highlightedCredentials?: string[] | undefined;
|
8192
8740
|
dob?: string | undefined;
|
8193
8741
|
}>, z.ZodObject<{
|
8194
8742
|
did: z.ZodString;
|
@@ -8248,6 +8796,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8248
8796
|
idBackgroundColor?: string | undefined;
|
8249
8797
|
repeatIdBackgroundImage?: boolean | undefined;
|
8250
8798
|
}>>>;
|
8799
|
+
highlightedCredentials: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
8251
8800
|
role: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8252
8801
|
dob: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8253
8802
|
}, "strip", z.ZodTypeAny, {
|
@@ -8278,6 +8827,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8278
8827
|
idBackgroundColor?: string | undefined;
|
8279
8828
|
repeatIdBackgroundImage?: boolean | undefined;
|
8280
8829
|
} | undefined;
|
8830
|
+
highlightedCredentials?: string[] | undefined;
|
8281
8831
|
dob?: string | undefined;
|
8282
8832
|
}, {
|
8283
8833
|
type?: string | undefined;
|
@@ -8307,6 +8857,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8307
8857
|
idBackgroundColor?: string | undefined;
|
8308
8858
|
repeatIdBackgroundImage?: boolean | undefined;
|
8309
8859
|
} | undefined;
|
8860
|
+
highlightedCredentials?: string[] | undefined;
|
8310
8861
|
dob?: string | undefined;
|
8311
8862
|
}>, z.ZodObject<{
|
8312
8863
|
did: z.ZodString;
|
@@ -8679,7 +9230,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8679
9230
|
sent: z.ZodOptional<z.ZodString>;
|
8680
9231
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
8681
9232
|
}, "strip", z.ZodTypeAny, {
|
8682
|
-
type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION" | "ISSUANCE_CLAIMED" | "ISSUANCE_DELIVERED";
|
9233
|
+
type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION" | "ISSUANCE_CLAIMED" | "ISSUANCE_DELIVERED" | "ISSUANCE_ERROR";
|
8683
9234
|
to: {
|
8684
9235
|
type?: string | undefined;
|
8685
9236
|
image?: string | undefined;
|
@@ -8708,6 +9259,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8708
9259
|
idBackgroundColor?: string | undefined;
|
8709
9260
|
repeatIdBackgroundImage?: boolean | undefined;
|
8710
9261
|
} | undefined;
|
9262
|
+
highlightedCredentials?: string[] | undefined;
|
8711
9263
|
dob?: string | undefined;
|
8712
9264
|
} & {
|
8713
9265
|
did: string;
|
@@ -8740,6 +9292,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8740
9292
|
idBackgroundColor?: string | undefined;
|
8741
9293
|
repeatIdBackgroundImage?: boolean | undefined;
|
8742
9294
|
} | undefined;
|
9295
|
+
highlightedCredentials?: string[] | undefined;
|
8743
9296
|
dob?: string | undefined;
|
8744
9297
|
} & {
|
8745
9298
|
did: string;
|
@@ -8798,7 +9351,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8798
9351
|
} | undefined;
|
8799
9352
|
webhookUrl?: string | undefined;
|
8800
9353
|
}, {
|
8801
|
-
type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION" | "ISSUANCE_CLAIMED" | "ISSUANCE_DELIVERED";
|
9354
|
+
type: "CONNECTION_REQUEST" | "CONNECTION_ACCEPTED" | "CREDENTIAL_RECEIVED" | "CREDENTIAL_ACCEPTED" | "BOOST_RECEIVED" | "BOOST_ACCEPTED" | "PRESENTATION_REQUEST" | "PRESENTATION_RECEIVED" | "CONSENT_FLOW_TRANSACTION" | "ISSUANCE_CLAIMED" | "ISSUANCE_DELIVERED" | "ISSUANCE_ERROR";
|
8802
9355
|
to: {
|
8803
9356
|
type?: string | undefined;
|
8804
9357
|
image?: string | undefined;
|
@@ -8827,6 +9380,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8827
9380
|
idBackgroundColor?: string | undefined;
|
8828
9381
|
repeatIdBackgroundImage?: boolean | undefined;
|
8829
9382
|
} | undefined;
|
9383
|
+
highlightedCredentials?: string[] | undefined;
|
8830
9384
|
dob?: string | undefined;
|
8831
9385
|
} & {
|
8832
9386
|
did: string;
|
@@ -8859,6 +9413,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8859
9413
|
idBackgroundColor?: string | undefined;
|
8860
9414
|
repeatIdBackgroundImage?: boolean | undefined;
|
8861
9415
|
} | undefined;
|
9416
|
+
highlightedCredentials?: string[] | undefined;
|
8862
9417
|
dob?: string | undefined;
|
8863
9418
|
} & {
|
8864
9419
|
did: string;
|
@@ -9177,8 +9732,16 @@ export declare const InboxCredentialValidator: z.ZodObject<{
|
|
9177
9732
|
createdAt: z.ZodString;
|
9178
9733
|
issuerDid: z.ZodString;
|
9179
9734
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
9180
|
-
|
9181
|
-
|
9735
|
+
signingAuthority: z.ZodOptional<z.ZodObject<{
|
9736
|
+
endpoint: z.ZodOptional<z.ZodString>;
|
9737
|
+
name: z.ZodOptional<z.ZodString>;
|
9738
|
+
}, "strip", z.ZodTypeAny, {
|
9739
|
+
name?: string | undefined;
|
9740
|
+
endpoint?: string | undefined;
|
9741
|
+
}, {
|
9742
|
+
name?: string | undefined;
|
9743
|
+
endpoint?: string | undefined;
|
9744
|
+
}>>;
|
9182
9745
|
}, "strip", z.ZodTypeAny, {
|
9183
9746
|
id: string;
|
9184
9747
|
createdAt: string;
|
@@ -9187,9 +9750,11 @@ export declare const InboxCredentialValidator: z.ZodObject<{
|
|
9187
9750
|
isSigned: boolean;
|
9188
9751
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9189
9752
|
issuerDid: string;
|
9753
|
+
signingAuthority?: {
|
9754
|
+
name?: string | undefined;
|
9755
|
+
endpoint?: string | undefined;
|
9756
|
+
} | undefined;
|
9190
9757
|
webhookUrl?: string | undefined;
|
9191
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9192
|
-
'signingAuthority.name'?: string | undefined;
|
9193
9758
|
}, {
|
9194
9759
|
id: string;
|
9195
9760
|
createdAt: string;
|
@@ -9198,9 +9763,11 @@ export declare const InboxCredentialValidator: z.ZodObject<{
|
|
9198
9763
|
isSigned: boolean;
|
9199
9764
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9200
9765
|
issuerDid: string;
|
9766
|
+
signingAuthority?: {
|
9767
|
+
name?: string | undefined;
|
9768
|
+
endpoint?: string | undefined;
|
9769
|
+
} | undefined;
|
9201
9770
|
webhookUrl?: string | undefined;
|
9202
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9203
|
-
'signingAuthority.name'?: string | undefined;
|
9204
9771
|
}>;
|
9205
9772
|
export type InboxCredentialType = z.infer<typeof InboxCredentialValidator>;
|
9206
9773
|
export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
@@ -9214,8 +9781,16 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9214
9781
|
createdAt: z.ZodString;
|
9215
9782
|
issuerDid: z.ZodString;
|
9216
9783
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
9217
|
-
|
9218
|
-
|
9784
|
+
signingAuthority: z.ZodOptional<z.ZodObject<{
|
9785
|
+
endpoint: z.ZodOptional<z.ZodString>;
|
9786
|
+
name: z.ZodOptional<z.ZodString>;
|
9787
|
+
}, "strip", z.ZodTypeAny, {
|
9788
|
+
name?: string | undefined;
|
9789
|
+
endpoint?: string | undefined;
|
9790
|
+
}, {
|
9791
|
+
name?: string | undefined;
|
9792
|
+
endpoint?: string | undefined;
|
9793
|
+
}>>;
|
9219
9794
|
}, "strip", z.ZodTypeAny, {
|
9220
9795
|
id: string;
|
9221
9796
|
createdAt: string;
|
@@ -9224,9 +9799,11 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9224
9799
|
isSigned: boolean;
|
9225
9800
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9226
9801
|
issuerDid: string;
|
9802
|
+
signingAuthority?: {
|
9803
|
+
name?: string | undefined;
|
9804
|
+
endpoint?: string | undefined;
|
9805
|
+
} | undefined;
|
9227
9806
|
webhookUrl?: string | undefined;
|
9228
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9229
|
-
'signingAuthority.name'?: string | undefined;
|
9230
9807
|
}, {
|
9231
9808
|
id: string;
|
9232
9809
|
createdAt: string;
|
@@ -9235,9 +9812,11 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9235
9812
|
isSigned: boolean;
|
9236
9813
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9237
9814
|
issuerDid: string;
|
9815
|
+
signingAuthority?: {
|
9816
|
+
name?: string | undefined;
|
9817
|
+
endpoint?: string | undefined;
|
9818
|
+
} | undefined;
|
9238
9819
|
webhookUrl?: string | undefined;
|
9239
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9240
|
-
'signingAuthority.name'?: string | undefined;
|
9241
9820
|
}>, "many">;
|
9242
9821
|
cursor: z.ZodOptional<z.ZodString>;
|
9243
9822
|
}, "strip", z.ZodTypeAny, {
|
@@ -9250,9 +9829,11 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9250
9829
|
isSigned: boolean;
|
9251
9830
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9252
9831
|
issuerDid: string;
|
9832
|
+
signingAuthority?: {
|
9833
|
+
name?: string | undefined;
|
9834
|
+
endpoint?: string | undefined;
|
9835
|
+
} | undefined;
|
9253
9836
|
webhookUrl?: string | undefined;
|
9254
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9255
|
-
'signingAuthority.name'?: string | undefined;
|
9256
9837
|
}[];
|
9257
9838
|
cursor?: string | undefined;
|
9258
9839
|
}, {
|
@@ -9265,9 +9846,11 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9265
9846
|
isSigned: boolean;
|
9266
9847
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9267
9848
|
issuerDid: string;
|
9849
|
+
signingAuthority?: {
|
9850
|
+
name?: string | undefined;
|
9851
|
+
endpoint?: string | undefined;
|
9852
|
+
} | undefined;
|
9268
9853
|
webhookUrl?: string | undefined;
|
9269
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9270
|
-
'signingAuthority.name'?: string | undefined;
|
9271
9854
|
}[];
|
9272
9855
|
cursor?: string | undefined;
|
9273
9856
|
}>;
|
@@ -28949,6 +29532,7 @@ export type IssueInboxCredentialResponseType = z.infer<typeof IssueInboxCredenti
|
|
28949
29532
|
export declare const ClaimTokenValidator: z.ZodObject<{
|
28950
29533
|
token: z.ZodString;
|
28951
29534
|
contactMethodId: z.ZodString;
|
29535
|
+
autoVerifyContactMethod: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
28952
29536
|
createdAt: z.ZodString;
|
28953
29537
|
expiresAt: z.ZodString;
|
28954
29538
|
used: z.ZodBoolean;
|
@@ -28957,6 +29541,7 @@ export declare const ClaimTokenValidator: z.ZodObject<{
|
|
28957
29541
|
expiresAt: string;
|
28958
29542
|
token: string;
|
28959
29543
|
contactMethodId: string;
|
29544
|
+
autoVerifyContactMethod: boolean;
|
28960
29545
|
used: boolean;
|
28961
29546
|
}, {
|
28962
29547
|
createdAt: string;
|
@@ -28964,6 +29549,7 @@ export declare const ClaimTokenValidator: z.ZodObject<{
|
|
28964
29549
|
token: string;
|
28965
29550
|
contactMethodId: string;
|
28966
29551
|
used: boolean;
|
29552
|
+
autoVerifyContactMethod?: boolean | undefined;
|
28967
29553
|
}>;
|
28968
29554
|
export type ClaimTokenType = z.infer<typeof ClaimTokenValidator>;
|
28969
29555
|
//# sourceMappingURL=lcn.d.ts.map
|