@learncard/types 5.8.3 → 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 +145 -20
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +8 -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 +2 -2
- package/dist/types.esm.js +8 -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;
|
@@ -3117,6 +3144,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3117
3144
|
idBackgroundColor?: string | undefined;
|
3118
3145
|
repeatIdBackgroundImage?: boolean | undefined;
|
3119
3146
|
}>>;
|
3147
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3120
3148
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3121
3149
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3122
3150
|
}, "strip", z.ZodTypeAny, {
|
@@ -3147,6 +3175,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3147
3175
|
idBackgroundColor?: string | undefined;
|
3148
3176
|
repeatIdBackgroundImage?: boolean | undefined;
|
3149
3177
|
} | undefined;
|
3178
|
+
highlightedCredentials?: string[] | undefined;
|
3150
3179
|
dob?: string | undefined;
|
3151
3180
|
}, {
|
3152
3181
|
profileId: string;
|
@@ -3176,6 +3205,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3176
3205
|
idBackgroundColor?: string | undefined;
|
3177
3206
|
repeatIdBackgroundImage?: boolean | undefined;
|
3178
3207
|
} | undefined;
|
3208
|
+
highlightedCredentials?: string[] | undefined;
|
3179
3209
|
dob?: string | undefined;
|
3180
3210
|
}>;
|
3181
3211
|
from: z.ZodString;
|
@@ -3211,6 +3241,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3211
3241
|
idBackgroundColor?: string | undefined;
|
3212
3242
|
repeatIdBackgroundImage?: boolean | undefined;
|
3213
3243
|
} | undefined;
|
3244
|
+
highlightedCredentials?: string[] | undefined;
|
3214
3245
|
dob?: string | undefined;
|
3215
3246
|
};
|
3216
3247
|
from: string;
|
@@ -3246,6 +3277,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3246
3277
|
idBackgroundColor?: string | undefined;
|
3247
3278
|
repeatIdBackgroundImage?: boolean | undefined;
|
3248
3279
|
} | undefined;
|
3280
|
+
highlightedCredentials?: string[] | undefined;
|
3249
3281
|
dob?: string | undefined;
|
3250
3282
|
};
|
3251
3283
|
from: string;
|
@@ -3310,6 +3342,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3310
3342
|
idBackgroundColor?: string | undefined;
|
3311
3343
|
repeatIdBackgroundImage?: boolean | undefined;
|
3312
3344
|
}>>;
|
3345
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3313
3346
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3314
3347
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3315
3348
|
}, "strip", z.ZodTypeAny, {
|
@@ -3340,6 +3373,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3340
3373
|
idBackgroundColor?: string | undefined;
|
3341
3374
|
repeatIdBackgroundImage?: boolean | undefined;
|
3342
3375
|
} | undefined;
|
3376
|
+
highlightedCredentials?: string[] | undefined;
|
3343
3377
|
dob?: string | undefined;
|
3344
3378
|
}, {
|
3345
3379
|
profileId: string;
|
@@ -3369,6 +3403,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3369
3403
|
idBackgroundColor?: string | undefined;
|
3370
3404
|
repeatIdBackgroundImage?: boolean | undefined;
|
3371
3405
|
} | undefined;
|
3406
|
+
highlightedCredentials?: string[] | undefined;
|
3372
3407
|
dob?: string | undefined;
|
3373
3408
|
}>;
|
3374
3409
|
from: z.ZodString;
|
@@ -3404,6 +3439,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3404
3439
|
idBackgroundColor?: string | undefined;
|
3405
3440
|
repeatIdBackgroundImage?: boolean | undefined;
|
3406
3441
|
} | undefined;
|
3442
|
+
highlightedCredentials?: string[] | undefined;
|
3407
3443
|
dob?: string | undefined;
|
3408
3444
|
};
|
3409
3445
|
from: string;
|
@@ -3439,6 +3475,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3439
3475
|
idBackgroundColor?: string | undefined;
|
3440
3476
|
repeatIdBackgroundImage?: boolean | undefined;
|
3441
3477
|
} | undefined;
|
3478
|
+
highlightedCredentials?: string[] | undefined;
|
3442
3479
|
dob?: string | undefined;
|
3443
3480
|
};
|
3444
3481
|
from: string;
|
@@ -3477,6 +3514,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3477
3514
|
idBackgroundColor?: string | undefined;
|
3478
3515
|
repeatIdBackgroundImage?: boolean | undefined;
|
3479
3516
|
} | undefined;
|
3517
|
+
highlightedCredentials?: string[] | undefined;
|
3480
3518
|
dob?: string | undefined;
|
3481
3519
|
};
|
3482
3520
|
from: string;
|
@@ -3516,6 +3554,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3516
3554
|
idBackgroundColor?: string | undefined;
|
3517
3555
|
repeatIdBackgroundImage?: boolean | undefined;
|
3518
3556
|
} | undefined;
|
3557
|
+
highlightedCredentials?: string[] | undefined;
|
3519
3558
|
dob?: string | undefined;
|
3520
3559
|
};
|
3521
3560
|
from: string;
|
@@ -4020,6 +4059,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4020
4059
|
idBackgroundColor?: string | undefined;
|
4021
4060
|
repeatIdBackgroundImage?: boolean | undefined;
|
4022
4061
|
}>>;
|
4062
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4023
4063
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4024
4064
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4025
4065
|
}, "strip", z.ZodTypeAny, {
|
@@ -4050,6 +4090,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4050
4090
|
idBackgroundColor?: string | undefined;
|
4051
4091
|
repeatIdBackgroundImage?: boolean | undefined;
|
4052
4092
|
} | undefined;
|
4093
|
+
highlightedCredentials?: string[] | undefined;
|
4053
4094
|
dob?: string | undefined;
|
4054
4095
|
}, {
|
4055
4096
|
profileId: string;
|
@@ -4079,6 +4120,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4079
4120
|
idBackgroundColor?: string | undefined;
|
4080
4121
|
repeatIdBackgroundImage?: boolean | undefined;
|
4081
4122
|
} | undefined;
|
4123
|
+
highlightedCredentials?: string[] | undefined;
|
4082
4124
|
dob?: string | undefined;
|
4083
4125
|
}>;
|
4084
4126
|
name: z.ZodString;
|
@@ -4145,6 +4187,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4145
4187
|
idBackgroundColor?: string | undefined;
|
4146
4188
|
repeatIdBackgroundImage?: boolean | undefined;
|
4147
4189
|
}>>;
|
4190
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4148
4191
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4149
4192
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4150
4193
|
}, "strip", z.ZodTypeAny, {
|
@@ -4175,6 +4218,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4175
4218
|
idBackgroundColor?: string | undefined;
|
4176
4219
|
repeatIdBackgroundImage?: boolean | undefined;
|
4177
4220
|
} | undefined;
|
4221
|
+
highlightedCredentials?: string[] | undefined;
|
4178
4222
|
dob?: string | undefined;
|
4179
4223
|
}, {
|
4180
4224
|
profileId: string;
|
@@ -4204,6 +4248,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4204
4248
|
idBackgroundColor?: string | undefined;
|
4205
4249
|
repeatIdBackgroundImage?: boolean | undefined;
|
4206
4250
|
} | undefined;
|
4251
|
+
highlightedCredentials?: string[] | undefined;
|
4207
4252
|
dob?: string | undefined;
|
4208
4253
|
}>, "many">>;
|
4209
4254
|
}, "strip", z.ZodTypeAny, {
|
@@ -4266,6 +4311,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4266
4311
|
idBackgroundColor?: string | undefined;
|
4267
4312
|
repeatIdBackgroundImage?: boolean | undefined;
|
4268
4313
|
} | undefined;
|
4314
|
+
highlightedCredentials?: string[] | undefined;
|
4269
4315
|
dob?: string | undefined;
|
4270
4316
|
};
|
4271
4317
|
description?: string | undefined;
|
@@ -4305,6 +4351,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4305
4351
|
idBackgroundColor?: string | undefined;
|
4306
4352
|
repeatIdBackgroundImage?: boolean | undefined;
|
4307
4353
|
} | undefined;
|
4354
|
+
highlightedCredentials?: string[] | undefined;
|
4308
4355
|
dob?: string | undefined;
|
4309
4356
|
}[] | undefined;
|
4310
4357
|
}, {
|
@@ -4367,6 +4414,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4367
4414
|
idBackgroundColor?: string | undefined;
|
4368
4415
|
repeatIdBackgroundImage?: boolean | undefined;
|
4369
4416
|
} | undefined;
|
4417
|
+
highlightedCredentials?: string[] | undefined;
|
4370
4418
|
dob?: string | undefined;
|
4371
4419
|
};
|
4372
4420
|
description?: string | undefined;
|
@@ -4406,6 +4454,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4406
4454
|
idBackgroundColor?: string | undefined;
|
4407
4455
|
repeatIdBackgroundImage?: boolean | undefined;
|
4408
4456
|
} | undefined;
|
4457
|
+
highlightedCredentials?: string[] | undefined;
|
4409
4458
|
dob?: string | undefined;
|
4410
4459
|
}[] | undefined;
|
4411
4460
|
}>;
|
@@ -4636,6 +4685,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4636
4685
|
idBackgroundColor?: string | undefined;
|
4637
4686
|
repeatIdBackgroundImage?: boolean | undefined;
|
4638
4687
|
}>>;
|
4688
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4639
4689
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4640
4690
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4641
4691
|
}, "strip", z.ZodTypeAny, {
|
@@ -4666,6 +4716,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4666
4716
|
idBackgroundColor?: string | undefined;
|
4667
4717
|
repeatIdBackgroundImage?: boolean | undefined;
|
4668
4718
|
} | undefined;
|
4719
|
+
highlightedCredentials?: string[] | undefined;
|
4669
4720
|
dob?: string | undefined;
|
4670
4721
|
}, {
|
4671
4722
|
profileId: string;
|
@@ -4695,6 +4746,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4695
4746
|
idBackgroundColor?: string | undefined;
|
4696
4747
|
repeatIdBackgroundImage?: boolean | undefined;
|
4697
4748
|
} | undefined;
|
4749
|
+
highlightedCredentials?: string[] | undefined;
|
4698
4750
|
dob?: string | undefined;
|
4699
4751
|
}>;
|
4700
4752
|
name: z.ZodString;
|
@@ -4761,6 +4813,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4761
4813
|
idBackgroundColor?: string | undefined;
|
4762
4814
|
repeatIdBackgroundImage?: boolean | undefined;
|
4763
4815
|
}>>;
|
4816
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4764
4817
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4765
4818
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4766
4819
|
}, "strip", z.ZodTypeAny, {
|
@@ -4791,6 +4844,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4791
4844
|
idBackgroundColor?: string | undefined;
|
4792
4845
|
repeatIdBackgroundImage?: boolean | undefined;
|
4793
4846
|
} | undefined;
|
4847
|
+
highlightedCredentials?: string[] | undefined;
|
4794
4848
|
dob?: string | undefined;
|
4795
4849
|
}, {
|
4796
4850
|
profileId: string;
|
@@ -4820,6 +4874,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4820
4874
|
idBackgroundColor?: string | undefined;
|
4821
4875
|
repeatIdBackgroundImage?: boolean | undefined;
|
4822
4876
|
} | undefined;
|
4877
|
+
highlightedCredentials?: string[] | undefined;
|
4823
4878
|
dob?: string | undefined;
|
4824
4879
|
}>, "many">>;
|
4825
4880
|
}, "owner">, "strip", z.ZodTypeAny, {
|
@@ -4891,6 +4946,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4891
4946
|
idBackgroundColor?: string | undefined;
|
4892
4947
|
repeatIdBackgroundImage?: boolean | undefined;
|
4893
4948
|
} | undefined;
|
4949
|
+
highlightedCredentials?: string[] | undefined;
|
4894
4950
|
dob?: string | undefined;
|
4895
4951
|
}[] | undefined;
|
4896
4952
|
}, {
|
@@ -4962,6 +5018,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4962
5018
|
idBackgroundColor?: string | undefined;
|
4963
5019
|
repeatIdBackgroundImage?: boolean | undefined;
|
4964
5020
|
} | undefined;
|
5021
|
+
highlightedCredentials?: string[] | undefined;
|
4965
5022
|
dob?: string | undefined;
|
4966
5023
|
}[] | undefined;
|
4967
5024
|
}>, "many">;
|
@@ -5036,6 +5093,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
5036
5093
|
idBackgroundColor?: string | undefined;
|
5037
5094
|
repeatIdBackgroundImage?: boolean | undefined;
|
5038
5095
|
} | undefined;
|
5096
|
+
highlightedCredentials?: string[] | undefined;
|
5039
5097
|
dob?: string | undefined;
|
5040
5098
|
}[] | undefined;
|
5041
5099
|
}[];
|
@@ -5111,6 +5169,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
5111
5169
|
idBackgroundColor?: string | undefined;
|
5112
5170
|
repeatIdBackgroundImage?: boolean | undefined;
|
5113
5171
|
} | undefined;
|
5172
|
+
highlightedCredentials?: string[] | undefined;
|
5114
5173
|
dob?: string | undefined;
|
5115
5174
|
}[] | undefined;
|
5116
5175
|
}[];
|
@@ -5800,6 +5859,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5800
5859
|
idBackgroundColor?: string | undefined;
|
5801
5860
|
repeatIdBackgroundImage?: boolean | undefined;
|
5802
5861
|
}>>;
|
5862
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
5803
5863
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5804
5864
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5805
5865
|
}, "strip", z.ZodTypeAny, {
|
@@ -5830,6 +5890,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5830
5890
|
idBackgroundColor?: string | undefined;
|
5831
5891
|
repeatIdBackgroundImage?: boolean | undefined;
|
5832
5892
|
} | undefined;
|
5893
|
+
highlightedCredentials?: string[] | undefined;
|
5833
5894
|
dob?: string | undefined;
|
5834
5895
|
}, {
|
5835
5896
|
profileId: string;
|
@@ -5859,6 +5920,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5859
5920
|
idBackgroundColor?: string | undefined;
|
5860
5921
|
repeatIdBackgroundImage?: boolean | undefined;
|
5861
5922
|
} | undefined;
|
5923
|
+
highlightedCredentials?: string[] | undefined;
|
5862
5924
|
dob?: string | undefined;
|
5863
5925
|
}>;
|
5864
5926
|
name: z.ZodString;
|
@@ -5925,6 +5987,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5925
5987
|
idBackgroundColor?: string | undefined;
|
5926
5988
|
repeatIdBackgroundImage?: boolean | undefined;
|
5927
5989
|
}>>;
|
5990
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
5928
5991
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5929
5992
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5930
5993
|
}, "strip", z.ZodTypeAny, {
|
@@ -5955,6 +6018,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5955
6018
|
idBackgroundColor?: string | undefined;
|
5956
6019
|
repeatIdBackgroundImage?: boolean | undefined;
|
5957
6020
|
} | undefined;
|
6021
|
+
highlightedCredentials?: string[] | undefined;
|
5958
6022
|
dob?: string | undefined;
|
5959
6023
|
}, {
|
5960
6024
|
profileId: string;
|
@@ -5984,6 +6048,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5984
6048
|
idBackgroundColor?: string | undefined;
|
5985
6049
|
repeatIdBackgroundImage?: boolean | undefined;
|
5986
6050
|
} | undefined;
|
6051
|
+
highlightedCredentials?: string[] | undefined;
|
5987
6052
|
dob?: string | undefined;
|
5988
6053
|
}>, "many">>;
|
5989
6054
|
}, "strip", z.ZodTypeAny, {
|
@@ -6046,6 +6111,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6046
6111
|
idBackgroundColor?: string | undefined;
|
6047
6112
|
repeatIdBackgroundImage?: boolean | undefined;
|
6048
6113
|
} | undefined;
|
6114
|
+
highlightedCredentials?: string[] | undefined;
|
6049
6115
|
dob?: string | undefined;
|
6050
6116
|
};
|
6051
6117
|
description?: string | undefined;
|
@@ -6085,6 +6151,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6085
6151
|
idBackgroundColor?: string | undefined;
|
6086
6152
|
repeatIdBackgroundImage?: boolean | undefined;
|
6087
6153
|
} | undefined;
|
6154
|
+
highlightedCredentials?: string[] | undefined;
|
6088
6155
|
dob?: string | undefined;
|
6089
6156
|
}[] | undefined;
|
6090
6157
|
}, {
|
@@ -6147,6 +6214,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6147
6214
|
idBackgroundColor?: string | undefined;
|
6148
6215
|
repeatIdBackgroundImage?: boolean | undefined;
|
6149
6216
|
} | undefined;
|
6217
|
+
highlightedCredentials?: string[] | undefined;
|
6150
6218
|
dob?: string | undefined;
|
6151
6219
|
};
|
6152
6220
|
description?: string | undefined;
|
@@ -6186,6 +6254,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6186
6254
|
idBackgroundColor?: string | undefined;
|
6187
6255
|
repeatIdBackgroundImage?: boolean | undefined;
|
6188
6256
|
} | undefined;
|
6257
|
+
highlightedCredentials?: string[] | undefined;
|
6189
6258
|
dob?: string | undefined;
|
6190
6259
|
}[] | undefined;
|
6191
6260
|
}>;
|
@@ -6241,6 +6310,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6241
6310
|
idBackgroundColor?: string | undefined;
|
6242
6311
|
repeatIdBackgroundImage?: boolean | undefined;
|
6243
6312
|
}>>;
|
6313
|
+
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
6244
6314
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6245
6315
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6246
6316
|
}, "strip", z.ZodTypeAny, {
|
@@ -6271,6 +6341,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6271
6341
|
idBackgroundColor?: string | undefined;
|
6272
6342
|
repeatIdBackgroundImage?: boolean | undefined;
|
6273
6343
|
} | undefined;
|
6344
|
+
highlightedCredentials?: string[] | undefined;
|
6274
6345
|
dob?: string | undefined;
|
6275
6346
|
}, {
|
6276
6347
|
profileId: string;
|
@@ -6300,6 +6371,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6300
6371
|
idBackgroundColor?: string | undefined;
|
6301
6372
|
repeatIdBackgroundImage?: boolean | undefined;
|
6302
6373
|
} | undefined;
|
6374
|
+
highlightedCredentials?: string[] | undefined;
|
6303
6375
|
dob?: string | undefined;
|
6304
6376
|
}>;
|
6305
6377
|
status: z.ZodEnum<["live", "stale", "withdrawn"]>;
|
@@ -6366,6 +6438,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6366
6438
|
idBackgroundColor?: string | undefined;
|
6367
6439
|
repeatIdBackgroundImage?: boolean | undefined;
|
6368
6440
|
} | undefined;
|
6441
|
+
highlightedCredentials?: string[] | undefined;
|
6369
6442
|
dob?: string | undefined;
|
6370
6443
|
};
|
6371
6444
|
description?: string | undefined;
|
@@ -6405,6 +6478,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6405
6478
|
idBackgroundColor?: string | undefined;
|
6406
6479
|
repeatIdBackgroundImage?: boolean | undefined;
|
6407
6480
|
} | undefined;
|
6481
|
+
highlightedCredentials?: string[] | undefined;
|
6408
6482
|
dob?: string | undefined;
|
6409
6483
|
}[] | undefined;
|
6410
6484
|
};
|
@@ -6459,6 +6533,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6459
6533
|
idBackgroundColor?: string | undefined;
|
6460
6534
|
repeatIdBackgroundImage?: boolean | undefined;
|
6461
6535
|
} | undefined;
|
6536
|
+
highlightedCredentials?: string[] | undefined;
|
6462
6537
|
dob?: string | undefined;
|
6463
6538
|
};
|
6464
6539
|
expiresAt?: string | undefined;
|
@@ -6526,6 +6601,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6526
6601
|
idBackgroundColor?: string | undefined;
|
6527
6602
|
repeatIdBackgroundImage?: boolean | undefined;
|
6528
6603
|
} | undefined;
|
6604
|
+
highlightedCredentials?: string[] | undefined;
|
6529
6605
|
dob?: string | undefined;
|
6530
6606
|
};
|
6531
6607
|
description?: string | undefined;
|
@@ -6565,6 +6641,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6565
6641
|
idBackgroundColor?: string | undefined;
|
6566
6642
|
repeatIdBackgroundImage?: boolean | undefined;
|
6567
6643
|
} | undefined;
|
6644
|
+
highlightedCredentials?: string[] | undefined;
|
6568
6645
|
dob?: string | undefined;
|
6569
6646
|
}[] | undefined;
|
6570
6647
|
};
|
@@ -6619,6 +6696,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6619
6696
|
idBackgroundColor?: string | undefined;
|
6620
6697
|
repeatIdBackgroundImage?: boolean | undefined;
|
6621
6698
|
} | undefined;
|
6699
|
+
highlightedCredentials?: string[] | undefined;
|
6622
6700
|
dob?: string | undefined;
|
6623
6701
|
};
|
6624
6702
|
expiresAt?: string | undefined;
|
@@ -6689,6 +6767,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6689
6767
|
idBackgroundColor?: string | undefined;
|
6690
6768
|
repeatIdBackgroundImage?: boolean | undefined;
|
6691
6769
|
} | undefined;
|
6770
|
+
highlightedCredentials?: string[] | undefined;
|
6692
6771
|
dob?: string | undefined;
|
6693
6772
|
};
|
6694
6773
|
description?: string | undefined;
|
@@ -6728,6 +6807,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6728
6807
|
idBackgroundColor?: string | undefined;
|
6729
6808
|
repeatIdBackgroundImage?: boolean | undefined;
|
6730
6809
|
} | undefined;
|
6810
|
+
highlightedCredentials?: string[] | undefined;
|
6731
6811
|
dob?: string | undefined;
|
6732
6812
|
}[] | undefined;
|
6733
6813
|
};
|
@@ -6782,6 +6862,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6782
6862
|
idBackgroundColor?: string | undefined;
|
6783
6863
|
repeatIdBackgroundImage?: boolean | undefined;
|
6784
6864
|
} | undefined;
|
6865
|
+
highlightedCredentials?: string[] | undefined;
|
6785
6866
|
dob?: string | undefined;
|
6786
6867
|
};
|
6787
6868
|
expiresAt?: string | undefined;
|
@@ -6853,6 +6934,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6853
6934
|
idBackgroundColor?: string | undefined;
|
6854
6935
|
repeatIdBackgroundImage?: boolean | undefined;
|
6855
6936
|
} | undefined;
|
6937
|
+
highlightedCredentials?: string[] | undefined;
|
6856
6938
|
dob?: string | undefined;
|
6857
6939
|
};
|
6858
6940
|
description?: string | undefined;
|
@@ -6892,6 +6974,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6892
6974
|
idBackgroundColor?: string | undefined;
|
6893
6975
|
repeatIdBackgroundImage?: boolean | undefined;
|
6894
6976
|
} | undefined;
|
6977
|
+
highlightedCredentials?: string[] | undefined;
|
6895
6978
|
dob?: string | undefined;
|
6896
6979
|
}[] | undefined;
|
6897
6980
|
};
|
@@ -6946,6 +7029,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6946
7029
|
idBackgroundColor?: string | undefined;
|
6947
7030
|
repeatIdBackgroundImage?: boolean | undefined;
|
6948
7031
|
} | undefined;
|
7032
|
+
highlightedCredentials?: string[] | undefined;
|
6949
7033
|
dob?: string | undefined;
|
6950
7034
|
};
|
6951
7035
|
expiresAt?: string | undefined;
|
@@ -8107,7 +8191,7 @@ export declare const PaginatedContractCredentialsValidator: z.ZodObject<z.object
|
|
8107
8191
|
cursor?: string | undefined;
|
8108
8192
|
}>;
|
8109
8193
|
export type PaginatedContractCredentials = z.infer<typeof PaginatedContractCredentialsValidator>;
|
8110
|
-
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"]>;
|
8111
8195
|
export type LCNNotificationTypeEnum = z.infer<typeof LCNNotificationTypeEnumValidator>;
|
8112
8196
|
export declare const LCNNotificationMessageValidator: z.ZodObject<{
|
8113
8197
|
title: z.ZodOptional<z.ZodString>;
|
@@ -8539,7 +8623,7 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
8539
8623
|
}>;
|
8540
8624
|
export type LCNNotificationData = z.infer<typeof LCNNotificationDataValidator>;
|
8541
8625
|
export declare const LCNNotificationValidator: z.ZodObject<{
|
8542
|
-
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"]>;
|
8543
8627
|
to: z.ZodIntersection<z.ZodObject<{
|
8544
8628
|
profileId: z.ZodOptional<z.ZodString>;
|
8545
8629
|
displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
@@ -8591,6 +8675,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8591
8675
|
idBackgroundColor?: string | undefined;
|
8592
8676
|
repeatIdBackgroundImage?: boolean | undefined;
|
8593
8677
|
}>>>;
|
8678
|
+
highlightedCredentials: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
8594
8679
|
role: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8595
8680
|
dob: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8596
8681
|
}, "strip", z.ZodTypeAny, {
|
@@ -8621,6 +8706,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8621
8706
|
idBackgroundColor?: string | undefined;
|
8622
8707
|
repeatIdBackgroundImage?: boolean | undefined;
|
8623
8708
|
} | undefined;
|
8709
|
+
highlightedCredentials?: string[] | undefined;
|
8624
8710
|
dob?: string | undefined;
|
8625
8711
|
}, {
|
8626
8712
|
type?: string | undefined;
|
@@ -8650,6 +8736,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8650
8736
|
idBackgroundColor?: string | undefined;
|
8651
8737
|
repeatIdBackgroundImage?: boolean | undefined;
|
8652
8738
|
} | undefined;
|
8739
|
+
highlightedCredentials?: string[] | undefined;
|
8653
8740
|
dob?: string | undefined;
|
8654
8741
|
}>, z.ZodObject<{
|
8655
8742
|
did: z.ZodString;
|
@@ -8709,6 +8796,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8709
8796
|
idBackgroundColor?: string | undefined;
|
8710
8797
|
repeatIdBackgroundImage?: boolean | undefined;
|
8711
8798
|
}>>>;
|
8799
|
+
highlightedCredentials: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
8712
8800
|
role: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8713
8801
|
dob: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8714
8802
|
}, "strip", z.ZodTypeAny, {
|
@@ -8739,6 +8827,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8739
8827
|
idBackgroundColor?: string | undefined;
|
8740
8828
|
repeatIdBackgroundImage?: boolean | undefined;
|
8741
8829
|
} | undefined;
|
8830
|
+
highlightedCredentials?: string[] | undefined;
|
8742
8831
|
dob?: string | undefined;
|
8743
8832
|
}, {
|
8744
8833
|
type?: string | undefined;
|
@@ -8768,6 +8857,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8768
8857
|
idBackgroundColor?: string | undefined;
|
8769
8858
|
repeatIdBackgroundImage?: boolean | undefined;
|
8770
8859
|
} | undefined;
|
8860
|
+
highlightedCredentials?: string[] | undefined;
|
8771
8861
|
dob?: string | undefined;
|
8772
8862
|
}>, z.ZodObject<{
|
8773
8863
|
did: z.ZodString;
|
@@ -9140,7 +9230,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9140
9230
|
sent: z.ZodOptional<z.ZodString>;
|
9141
9231
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
9142
9232
|
}, "strip", z.ZodTypeAny, {
|
9143
|
-
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";
|
9144
9234
|
to: {
|
9145
9235
|
type?: string | undefined;
|
9146
9236
|
image?: string | undefined;
|
@@ -9169,6 +9259,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9169
9259
|
idBackgroundColor?: string | undefined;
|
9170
9260
|
repeatIdBackgroundImage?: boolean | undefined;
|
9171
9261
|
} | undefined;
|
9262
|
+
highlightedCredentials?: string[] | undefined;
|
9172
9263
|
dob?: string | undefined;
|
9173
9264
|
} & {
|
9174
9265
|
did: string;
|
@@ -9201,6 +9292,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9201
9292
|
idBackgroundColor?: string | undefined;
|
9202
9293
|
repeatIdBackgroundImage?: boolean | undefined;
|
9203
9294
|
} | undefined;
|
9295
|
+
highlightedCredentials?: string[] | undefined;
|
9204
9296
|
dob?: string | undefined;
|
9205
9297
|
} & {
|
9206
9298
|
did: string;
|
@@ -9259,7 +9351,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9259
9351
|
} | undefined;
|
9260
9352
|
webhookUrl?: string | undefined;
|
9261
9353
|
}, {
|
9262
|
-
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";
|
9263
9355
|
to: {
|
9264
9356
|
type?: string | undefined;
|
9265
9357
|
image?: string | undefined;
|
@@ -9288,6 +9380,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9288
9380
|
idBackgroundColor?: string | undefined;
|
9289
9381
|
repeatIdBackgroundImage?: boolean | undefined;
|
9290
9382
|
} | undefined;
|
9383
|
+
highlightedCredentials?: string[] | undefined;
|
9291
9384
|
dob?: string | undefined;
|
9292
9385
|
} & {
|
9293
9386
|
did: string;
|
@@ -9320,6 +9413,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9320
9413
|
idBackgroundColor?: string | undefined;
|
9321
9414
|
repeatIdBackgroundImage?: boolean | undefined;
|
9322
9415
|
} | undefined;
|
9416
|
+
highlightedCredentials?: string[] | undefined;
|
9323
9417
|
dob?: string | undefined;
|
9324
9418
|
} & {
|
9325
9419
|
did: string;
|
@@ -9638,8 +9732,16 @@ export declare const InboxCredentialValidator: z.ZodObject<{
|
|
9638
9732
|
createdAt: z.ZodString;
|
9639
9733
|
issuerDid: z.ZodString;
|
9640
9734
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
9641
|
-
|
9642
|
-
|
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
|
+
}>>;
|
9643
9745
|
}, "strip", z.ZodTypeAny, {
|
9644
9746
|
id: string;
|
9645
9747
|
createdAt: string;
|
@@ -9648,9 +9750,11 @@ export declare const InboxCredentialValidator: z.ZodObject<{
|
|
9648
9750
|
isSigned: boolean;
|
9649
9751
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9650
9752
|
issuerDid: string;
|
9753
|
+
signingAuthority?: {
|
9754
|
+
name?: string | undefined;
|
9755
|
+
endpoint?: string | undefined;
|
9756
|
+
} | undefined;
|
9651
9757
|
webhookUrl?: string | undefined;
|
9652
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9653
|
-
'signingAuthority.name'?: string | undefined;
|
9654
9758
|
}, {
|
9655
9759
|
id: string;
|
9656
9760
|
createdAt: string;
|
@@ -9659,9 +9763,11 @@ export declare const InboxCredentialValidator: z.ZodObject<{
|
|
9659
9763
|
isSigned: boolean;
|
9660
9764
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9661
9765
|
issuerDid: string;
|
9766
|
+
signingAuthority?: {
|
9767
|
+
name?: string | undefined;
|
9768
|
+
endpoint?: string | undefined;
|
9769
|
+
} | undefined;
|
9662
9770
|
webhookUrl?: string | undefined;
|
9663
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9664
|
-
'signingAuthority.name'?: string | undefined;
|
9665
9771
|
}>;
|
9666
9772
|
export type InboxCredentialType = z.infer<typeof InboxCredentialValidator>;
|
9667
9773
|
export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
@@ -9675,8 +9781,16 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9675
9781
|
createdAt: z.ZodString;
|
9676
9782
|
issuerDid: z.ZodString;
|
9677
9783
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
9678
|
-
|
9679
|
-
|
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
|
+
}>>;
|
9680
9794
|
}, "strip", z.ZodTypeAny, {
|
9681
9795
|
id: string;
|
9682
9796
|
createdAt: string;
|
@@ -9685,9 +9799,11 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9685
9799
|
isSigned: boolean;
|
9686
9800
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9687
9801
|
issuerDid: string;
|
9802
|
+
signingAuthority?: {
|
9803
|
+
name?: string | undefined;
|
9804
|
+
endpoint?: string | undefined;
|
9805
|
+
} | undefined;
|
9688
9806
|
webhookUrl?: string | undefined;
|
9689
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9690
|
-
'signingAuthority.name'?: string | undefined;
|
9691
9807
|
}, {
|
9692
9808
|
id: string;
|
9693
9809
|
createdAt: string;
|
@@ -9696,9 +9812,11 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9696
9812
|
isSigned: boolean;
|
9697
9813
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9698
9814
|
issuerDid: string;
|
9815
|
+
signingAuthority?: {
|
9816
|
+
name?: string | undefined;
|
9817
|
+
endpoint?: string | undefined;
|
9818
|
+
} | undefined;
|
9699
9819
|
webhookUrl?: string | undefined;
|
9700
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9701
|
-
'signingAuthority.name'?: string | undefined;
|
9702
9820
|
}>, "many">;
|
9703
9821
|
cursor: z.ZodOptional<z.ZodString>;
|
9704
9822
|
}, "strip", z.ZodTypeAny, {
|
@@ -9711,9 +9829,11 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9711
9829
|
isSigned: boolean;
|
9712
9830
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9713
9831
|
issuerDid: string;
|
9832
|
+
signingAuthority?: {
|
9833
|
+
name?: string | undefined;
|
9834
|
+
endpoint?: string | undefined;
|
9835
|
+
} | undefined;
|
9714
9836
|
webhookUrl?: string | undefined;
|
9715
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9716
|
-
'signingAuthority.name'?: string | undefined;
|
9717
9837
|
}[];
|
9718
9838
|
cursor?: string | undefined;
|
9719
9839
|
}, {
|
@@ -9726,9 +9846,11 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
9726
9846
|
isSigned: boolean;
|
9727
9847
|
currentStatus: "PENDING" | "DELIVERED" | "CLAIMED" | "EXPIRED";
|
9728
9848
|
issuerDid: string;
|
9849
|
+
signingAuthority?: {
|
9850
|
+
name?: string | undefined;
|
9851
|
+
endpoint?: string | undefined;
|
9852
|
+
} | undefined;
|
9729
9853
|
webhookUrl?: string | undefined;
|
9730
|
-
'signingAuthority.endpoint'?: string | undefined;
|
9731
|
-
'signingAuthority.name'?: string | undefined;
|
9732
9854
|
}[];
|
9733
9855
|
cursor?: string | undefined;
|
9734
9856
|
}>;
|
@@ -29410,6 +29532,7 @@ export type IssueInboxCredentialResponseType = z.infer<typeof IssueInboxCredenti
|
|
29410
29532
|
export declare const ClaimTokenValidator: z.ZodObject<{
|
29411
29533
|
token: z.ZodString;
|
29412
29534
|
contactMethodId: z.ZodString;
|
29535
|
+
autoVerifyContactMethod: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
29413
29536
|
createdAt: z.ZodString;
|
29414
29537
|
expiresAt: z.ZodString;
|
29415
29538
|
used: z.ZodBoolean;
|
@@ -29418,6 +29541,7 @@ export declare const ClaimTokenValidator: z.ZodObject<{
|
|
29418
29541
|
expiresAt: string;
|
29419
29542
|
token: string;
|
29420
29543
|
contactMethodId: string;
|
29544
|
+
autoVerifyContactMethod: boolean;
|
29421
29545
|
used: boolean;
|
29422
29546
|
}, {
|
29423
29547
|
createdAt: string;
|
@@ -29425,6 +29549,7 @@ export declare const ClaimTokenValidator: z.ZodObject<{
|
|
29425
29549
|
token: string;
|
29426
29550
|
contactMethodId: string;
|
29427
29551
|
used: boolean;
|
29552
|
+
autoVerifyContactMethod?: boolean | undefined;
|
29428
29553
|
}>;
|
29429
29554
|
export type ClaimTokenType = z.infer<typeof ClaimTokenValidator>;
|
29430
29555
|
//# sourceMappingURL=lcn.d.ts.map
|