@learncard/types 5.8.5 → 5.8.7
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/did.d.ts +66 -0
- package/dist/did.d.ts.map +1 -1
- package/dist/lcn.d.ts +188 -0
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +4 -1
- 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 +4 -1
- package/dist/types.esm.js.map +2 -2
- package/package.json +1 -1
package/dist/lcn.d.ts
CHANGED
@@ -91,6 +91,8 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
91
91
|
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
92
92
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
93
93
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
94
|
+
country: z.ZodOptional<z.ZodString>;
|
95
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
94
96
|
}, "strip", z.ZodTypeAny, {
|
95
97
|
profileId: string;
|
96
98
|
displayName: string;
|
@@ -121,6 +123,8 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
121
123
|
} | undefined;
|
122
124
|
highlightedCredentials?: string[] | undefined;
|
123
125
|
dob?: string | undefined;
|
126
|
+
country?: string | undefined;
|
127
|
+
approved?: boolean | undefined;
|
124
128
|
}, {
|
125
129
|
profileId: string;
|
126
130
|
did: string;
|
@@ -151,6 +155,8 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
151
155
|
} | undefined;
|
152
156
|
highlightedCredentials?: string[] | undefined;
|
153
157
|
dob?: string | undefined;
|
158
|
+
country?: string | undefined;
|
159
|
+
approved?: boolean | undefined;
|
154
160
|
}>;
|
155
161
|
export type LCNProfile = z.infer<typeof LCNProfileValidator>;
|
156
162
|
export declare const LCNProfileQueryValidator: z.ZodObject<{
|
@@ -380,6 +386,8 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
380
386
|
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
381
387
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
382
388
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
389
|
+
country: z.ZodOptional<z.ZodString>;
|
390
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
383
391
|
}, "strip", z.ZodTypeAny, {
|
384
392
|
profileId: string;
|
385
393
|
displayName: string;
|
@@ -410,6 +418,8 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
410
418
|
} | undefined;
|
411
419
|
highlightedCredentials?: string[] | undefined;
|
412
420
|
dob?: string | undefined;
|
421
|
+
country?: string | undefined;
|
422
|
+
approved?: boolean | undefined;
|
413
423
|
}, {
|
414
424
|
profileId: string;
|
415
425
|
did: string;
|
@@ -440,6 +450,8 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
440
450
|
} | undefined;
|
441
451
|
highlightedCredentials?: string[] | undefined;
|
442
452
|
dob?: string | undefined;
|
453
|
+
country?: string | undefined;
|
454
|
+
approved?: boolean | undefined;
|
443
455
|
}>, "many">;
|
444
456
|
}>, "strip", z.ZodTypeAny, {
|
445
457
|
hasMore: boolean;
|
@@ -473,6 +485,8 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
473
485
|
} | undefined;
|
474
486
|
highlightedCredentials?: string[] | undefined;
|
475
487
|
dob?: string | undefined;
|
488
|
+
country?: string | undefined;
|
489
|
+
approved?: boolean | undefined;
|
476
490
|
}[];
|
477
491
|
cursor?: string | undefined;
|
478
492
|
}, {
|
@@ -507,6 +521,8 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
507
521
|
} | undefined;
|
508
522
|
highlightedCredentials?: string[] | undefined;
|
509
523
|
dob?: string | undefined;
|
524
|
+
country?: string | undefined;
|
525
|
+
approved?: boolean | undefined;
|
510
526
|
}[];
|
511
527
|
cursor?: string | undefined;
|
512
528
|
}>;
|
@@ -787,6 +803,8 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
787
803
|
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
788
804
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
789
805
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
806
|
+
country: z.ZodOptional<z.ZodString>;
|
807
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
790
808
|
}, "strip", z.ZodTypeAny, {
|
791
809
|
profileId: string;
|
792
810
|
displayName: string;
|
@@ -817,6 +835,8 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
817
835
|
} | undefined;
|
818
836
|
highlightedCredentials?: string[] | undefined;
|
819
837
|
dob?: string | undefined;
|
838
|
+
country?: string | undefined;
|
839
|
+
approved?: boolean | undefined;
|
820
840
|
}, {
|
821
841
|
profileId: string;
|
822
842
|
did: string;
|
@@ -847,6 +867,8 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
847
867
|
} | undefined;
|
848
868
|
highlightedCredentials?: string[] | undefined;
|
849
869
|
dob?: string | undefined;
|
870
|
+
country?: string | undefined;
|
871
|
+
approved?: boolean | undefined;
|
850
872
|
}>;
|
851
873
|
manager: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
852
874
|
id: z.ZodString;
|
@@ -911,6 +933,8 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
911
933
|
} | undefined;
|
912
934
|
highlightedCredentials?: string[] | undefined;
|
913
935
|
dob?: string | undefined;
|
936
|
+
country?: string | undefined;
|
937
|
+
approved?: boolean | undefined;
|
914
938
|
};
|
915
939
|
manager?: {
|
916
940
|
id: string;
|
@@ -954,6 +978,8 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
954
978
|
} | undefined;
|
955
979
|
highlightedCredentials?: string[] | undefined;
|
956
980
|
dob?: string | undefined;
|
981
|
+
country?: string | undefined;
|
982
|
+
approved?: boolean | undefined;
|
957
983
|
};
|
958
984
|
manager?: {
|
959
985
|
id: string;
|
@@ -1000,6 +1026,8 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
1000
1026
|
} | undefined;
|
1001
1027
|
highlightedCredentials?: string[] | undefined;
|
1002
1028
|
dob?: string | undefined;
|
1029
|
+
country?: string | undefined;
|
1030
|
+
approved?: boolean | undefined;
|
1003
1031
|
};
|
1004
1032
|
manager?: {
|
1005
1033
|
id: string;
|
@@ -1047,6 +1075,8 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
1047
1075
|
} | undefined;
|
1048
1076
|
highlightedCredentials?: string[] | undefined;
|
1049
1077
|
dob?: string | undefined;
|
1078
|
+
country?: string | undefined;
|
1079
|
+
approved?: boolean | undefined;
|
1050
1080
|
};
|
1051
1081
|
manager?: {
|
1052
1082
|
id: string;
|
@@ -2766,6 +2796,8 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2766
2796
|
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2767
2797
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2768
2798
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2799
|
+
country: z.ZodOptional<z.ZodString>;
|
2800
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
2769
2801
|
}, "strip", z.ZodTypeAny, {
|
2770
2802
|
profileId: string;
|
2771
2803
|
displayName: string;
|
@@ -2796,6 +2828,8 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2796
2828
|
} | undefined;
|
2797
2829
|
highlightedCredentials?: string[] | undefined;
|
2798
2830
|
dob?: string | undefined;
|
2831
|
+
country?: string | undefined;
|
2832
|
+
approved?: boolean | undefined;
|
2799
2833
|
}, {
|
2800
2834
|
profileId: string;
|
2801
2835
|
did: string;
|
@@ -2826,6 +2860,8 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2826
2860
|
} | undefined;
|
2827
2861
|
highlightedCredentials?: string[] | undefined;
|
2828
2862
|
dob?: string | undefined;
|
2863
|
+
country?: string | undefined;
|
2864
|
+
approved?: boolean | undefined;
|
2829
2865
|
}>;
|
2830
2866
|
from: z.ZodString;
|
2831
2867
|
received: z.ZodOptional<z.ZodString>;
|
@@ -2861,6 +2897,8 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2861
2897
|
} | undefined;
|
2862
2898
|
highlightedCredentials?: string[] | undefined;
|
2863
2899
|
dob?: string | undefined;
|
2900
|
+
country?: string | undefined;
|
2901
|
+
approved?: boolean | undefined;
|
2864
2902
|
};
|
2865
2903
|
from: string;
|
2866
2904
|
received?: string | undefined;
|
@@ -2896,6 +2934,8 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2896
2934
|
} | undefined;
|
2897
2935
|
highlightedCredentials?: string[] | undefined;
|
2898
2936
|
dob?: string | undefined;
|
2937
|
+
country?: string | undefined;
|
2938
|
+
approved?: boolean | undefined;
|
2899
2939
|
};
|
2900
2940
|
from: string;
|
2901
2941
|
received?: string | undefined;
|
@@ -2961,6 +3001,8 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
2961
3001
|
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2962
3002
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2963
3003
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3004
|
+
country: z.ZodOptional<z.ZodString>;
|
3005
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
2964
3006
|
}, "strip", z.ZodTypeAny, {
|
2965
3007
|
profileId: string;
|
2966
3008
|
displayName: string;
|
@@ -2991,6 +3033,8 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
2991
3033
|
} | undefined;
|
2992
3034
|
highlightedCredentials?: string[] | undefined;
|
2993
3035
|
dob?: string | undefined;
|
3036
|
+
country?: string | undefined;
|
3037
|
+
approved?: boolean | undefined;
|
2994
3038
|
}, {
|
2995
3039
|
profileId: string;
|
2996
3040
|
did: string;
|
@@ -3021,6 +3065,8 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3021
3065
|
} | undefined;
|
3022
3066
|
highlightedCredentials?: string[] | undefined;
|
3023
3067
|
dob?: string | undefined;
|
3068
|
+
country?: string | undefined;
|
3069
|
+
approved?: boolean | undefined;
|
3024
3070
|
}>;
|
3025
3071
|
from: z.ZodString;
|
3026
3072
|
received: z.ZodOptional<z.ZodString>;
|
@@ -3056,6 +3102,8 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3056
3102
|
} | undefined;
|
3057
3103
|
highlightedCredentials?: string[] | undefined;
|
3058
3104
|
dob?: string | undefined;
|
3105
|
+
country?: string | undefined;
|
3106
|
+
approved?: boolean | undefined;
|
3059
3107
|
};
|
3060
3108
|
from: string;
|
3061
3109
|
received?: string | undefined;
|
@@ -3091,6 +3139,8 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3091
3139
|
} | undefined;
|
3092
3140
|
highlightedCredentials?: string[] | undefined;
|
3093
3141
|
dob?: string | undefined;
|
3142
|
+
country?: string | undefined;
|
3143
|
+
approved?: boolean | undefined;
|
3094
3144
|
};
|
3095
3145
|
from: string;
|
3096
3146
|
received?: string | undefined;
|
@@ -3129,6 +3179,8 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3129
3179
|
} | undefined;
|
3130
3180
|
highlightedCredentials?: string[] | undefined;
|
3131
3181
|
dob?: string | undefined;
|
3182
|
+
country?: string | undefined;
|
3183
|
+
approved?: boolean | undefined;
|
3132
3184
|
};
|
3133
3185
|
from: string;
|
3134
3186
|
received?: string | undefined;
|
@@ -3168,6 +3220,8 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3168
3220
|
} | undefined;
|
3169
3221
|
highlightedCredentials?: string[] | undefined;
|
3170
3222
|
dob?: string | undefined;
|
3223
|
+
country?: string | undefined;
|
3224
|
+
approved?: boolean | undefined;
|
3171
3225
|
};
|
3172
3226
|
from: string;
|
3173
3227
|
received?: string | undefined;
|
@@ -3231,6 +3285,8 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3231
3285
|
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3232
3286
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3233
3287
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3288
|
+
country: z.ZodOptional<z.ZodString>;
|
3289
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
3234
3290
|
}, "strip", z.ZodTypeAny, {
|
3235
3291
|
profileId: string;
|
3236
3292
|
displayName: string;
|
@@ -3261,6 +3317,8 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3261
3317
|
} | undefined;
|
3262
3318
|
highlightedCredentials?: string[] | undefined;
|
3263
3319
|
dob?: string | undefined;
|
3320
|
+
country?: string | undefined;
|
3321
|
+
approved?: boolean | undefined;
|
3264
3322
|
}, {
|
3265
3323
|
profileId: string;
|
3266
3324
|
did: string;
|
@@ -3291,6 +3349,8 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3291
3349
|
} | undefined;
|
3292
3350
|
highlightedCredentials?: string[] | undefined;
|
3293
3351
|
dob?: string | undefined;
|
3352
|
+
country?: string | undefined;
|
3353
|
+
approved?: boolean | undefined;
|
3294
3354
|
}>;
|
3295
3355
|
from: z.ZodString;
|
3296
3356
|
received: z.ZodOptional<z.ZodString>;
|
@@ -3327,6 +3387,8 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3327
3387
|
} | undefined;
|
3328
3388
|
highlightedCredentials?: string[] | undefined;
|
3329
3389
|
dob?: string | undefined;
|
3390
|
+
country?: string | undefined;
|
3391
|
+
approved?: boolean | undefined;
|
3330
3392
|
};
|
3331
3393
|
from: string;
|
3332
3394
|
boostUris: string[];
|
@@ -3363,6 +3425,8 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3363
3425
|
} | undefined;
|
3364
3426
|
highlightedCredentials?: string[] | undefined;
|
3365
3427
|
dob?: string | undefined;
|
3428
|
+
country?: string | undefined;
|
3429
|
+
approved?: boolean | undefined;
|
3366
3430
|
};
|
3367
3431
|
from: string;
|
3368
3432
|
boostUris: string[];
|
@@ -3429,6 +3493,8 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3429
3493
|
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3430
3494
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3431
3495
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3496
|
+
country: z.ZodOptional<z.ZodString>;
|
3497
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
3432
3498
|
}, "strip", z.ZodTypeAny, {
|
3433
3499
|
profileId: string;
|
3434
3500
|
displayName: string;
|
@@ -3459,6 +3525,8 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3459
3525
|
} | undefined;
|
3460
3526
|
highlightedCredentials?: string[] | undefined;
|
3461
3527
|
dob?: string | undefined;
|
3528
|
+
country?: string | undefined;
|
3529
|
+
approved?: boolean | undefined;
|
3462
3530
|
}, {
|
3463
3531
|
profileId: string;
|
3464
3532
|
did: string;
|
@@ -3489,6 +3557,8 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3489
3557
|
} | undefined;
|
3490
3558
|
highlightedCredentials?: string[] | undefined;
|
3491
3559
|
dob?: string | undefined;
|
3560
|
+
country?: string | undefined;
|
3561
|
+
approved?: boolean | undefined;
|
3492
3562
|
}>;
|
3493
3563
|
from: z.ZodString;
|
3494
3564
|
received: z.ZodOptional<z.ZodString>;
|
@@ -3525,6 +3595,8 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3525
3595
|
} | undefined;
|
3526
3596
|
highlightedCredentials?: string[] | undefined;
|
3527
3597
|
dob?: string | undefined;
|
3598
|
+
country?: string | undefined;
|
3599
|
+
approved?: boolean | undefined;
|
3528
3600
|
};
|
3529
3601
|
from: string;
|
3530
3602
|
boostUris: string[];
|
@@ -3561,6 +3633,8 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3561
3633
|
} | undefined;
|
3562
3634
|
highlightedCredentials?: string[] | undefined;
|
3563
3635
|
dob?: string | undefined;
|
3636
|
+
country?: string | undefined;
|
3637
|
+
approved?: boolean | undefined;
|
3564
3638
|
};
|
3565
3639
|
from: string;
|
3566
3640
|
boostUris: string[];
|
@@ -3600,6 +3674,8 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3600
3674
|
} | undefined;
|
3601
3675
|
highlightedCredentials?: string[] | undefined;
|
3602
3676
|
dob?: string | undefined;
|
3677
|
+
country?: string | undefined;
|
3678
|
+
approved?: boolean | undefined;
|
3603
3679
|
};
|
3604
3680
|
from: string;
|
3605
3681
|
boostUris: string[];
|
@@ -3640,6 +3716,8 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3640
3716
|
} | undefined;
|
3641
3717
|
highlightedCredentials?: string[] | undefined;
|
3642
3718
|
dob?: string | undefined;
|
3719
|
+
country?: string | undefined;
|
3720
|
+
approved?: boolean | undefined;
|
3643
3721
|
};
|
3644
3722
|
from: string;
|
3645
3723
|
boostUris: string[];
|
@@ -4146,6 +4224,8 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4146
4224
|
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4147
4225
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4148
4226
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4227
|
+
country: z.ZodOptional<z.ZodString>;
|
4228
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
4149
4229
|
}, "strip", z.ZodTypeAny, {
|
4150
4230
|
profileId: string;
|
4151
4231
|
displayName: string;
|
@@ -4176,6 +4256,8 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4176
4256
|
} | undefined;
|
4177
4257
|
highlightedCredentials?: string[] | undefined;
|
4178
4258
|
dob?: string | undefined;
|
4259
|
+
country?: string | undefined;
|
4260
|
+
approved?: boolean | undefined;
|
4179
4261
|
}, {
|
4180
4262
|
profileId: string;
|
4181
4263
|
did: string;
|
@@ -4206,6 +4288,8 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4206
4288
|
} | undefined;
|
4207
4289
|
highlightedCredentials?: string[] | undefined;
|
4208
4290
|
dob?: string | undefined;
|
4291
|
+
country?: string | undefined;
|
4292
|
+
approved?: boolean | undefined;
|
4209
4293
|
}>;
|
4210
4294
|
name: z.ZodString;
|
4211
4295
|
subtitle: z.ZodOptional<z.ZodString>;
|
@@ -4274,6 +4358,8 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4274
4358
|
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4275
4359
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4276
4360
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4361
|
+
country: z.ZodOptional<z.ZodString>;
|
4362
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
4277
4363
|
}, "strip", z.ZodTypeAny, {
|
4278
4364
|
profileId: string;
|
4279
4365
|
displayName: string;
|
@@ -4304,6 +4390,8 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4304
4390
|
} | undefined;
|
4305
4391
|
highlightedCredentials?: string[] | undefined;
|
4306
4392
|
dob?: string | undefined;
|
4393
|
+
country?: string | undefined;
|
4394
|
+
approved?: boolean | undefined;
|
4307
4395
|
}, {
|
4308
4396
|
profileId: string;
|
4309
4397
|
did: string;
|
@@ -4334,6 +4422,8 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4334
4422
|
} | undefined;
|
4335
4423
|
highlightedCredentials?: string[] | undefined;
|
4336
4424
|
dob?: string | undefined;
|
4425
|
+
country?: string | undefined;
|
4426
|
+
approved?: boolean | undefined;
|
4337
4427
|
}>, "many">>;
|
4338
4428
|
}, "strip", z.ZodTypeAny, {
|
4339
4429
|
name: string;
|
@@ -4397,6 +4487,8 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4397
4487
|
} | undefined;
|
4398
4488
|
highlightedCredentials?: string[] | undefined;
|
4399
4489
|
dob?: string | undefined;
|
4490
|
+
country?: string | undefined;
|
4491
|
+
approved?: boolean | undefined;
|
4400
4492
|
};
|
4401
4493
|
description?: string | undefined;
|
4402
4494
|
image?: string | undefined;
|
@@ -4437,6 +4529,8 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4437
4529
|
} | undefined;
|
4438
4530
|
highlightedCredentials?: string[] | undefined;
|
4439
4531
|
dob?: string | undefined;
|
4532
|
+
country?: string | undefined;
|
4533
|
+
approved?: boolean | undefined;
|
4440
4534
|
}[] | undefined;
|
4441
4535
|
}, {
|
4442
4536
|
name: string;
|
@@ -4500,6 +4594,8 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4500
4594
|
} | undefined;
|
4501
4595
|
highlightedCredentials?: string[] | undefined;
|
4502
4596
|
dob?: string | undefined;
|
4597
|
+
country?: string | undefined;
|
4598
|
+
approved?: boolean | undefined;
|
4503
4599
|
};
|
4504
4600
|
description?: string | undefined;
|
4505
4601
|
image?: string | undefined;
|
@@ -4540,6 +4636,8 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4540
4636
|
} | undefined;
|
4541
4637
|
highlightedCredentials?: string[] | undefined;
|
4542
4638
|
dob?: string | undefined;
|
4639
|
+
country?: string | undefined;
|
4640
|
+
approved?: boolean | undefined;
|
4543
4641
|
}[] | undefined;
|
4544
4642
|
}>;
|
4545
4643
|
export type ConsentFlowContractDetails = z.infer<typeof ConsentFlowContractDetailsValidator>;
|
@@ -4772,6 +4870,8 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4772
4870
|
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4773
4871
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4774
4872
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4873
|
+
country: z.ZodOptional<z.ZodString>;
|
4874
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
4775
4875
|
}, "strip", z.ZodTypeAny, {
|
4776
4876
|
profileId: string;
|
4777
4877
|
displayName: string;
|
@@ -4802,6 +4902,8 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4802
4902
|
} | undefined;
|
4803
4903
|
highlightedCredentials?: string[] | undefined;
|
4804
4904
|
dob?: string | undefined;
|
4905
|
+
country?: string | undefined;
|
4906
|
+
approved?: boolean | undefined;
|
4805
4907
|
}, {
|
4806
4908
|
profileId: string;
|
4807
4909
|
did: string;
|
@@ -4832,6 +4934,8 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4832
4934
|
} | undefined;
|
4833
4935
|
highlightedCredentials?: string[] | undefined;
|
4834
4936
|
dob?: string | undefined;
|
4937
|
+
country?: string | undefined;
|
4938
|
+
approved?: boolean | undefined;
|
4835
4939
|
}>;
|
4836
4940
|
name: z.ZodString;
|
4837
4941
|
subtitle: z.ZodOptional<z.ZodString>;
|
@@ -4900,6 +5004,8 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4900
5004
|
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4901
5005
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4902
5006
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5007
|
+
country: z.ZodOptional<z.ZodString>;
|
5008
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
4903
5009
|
}, "strip", z.ZodTypeAny, {
|
4904
5010
|
profileId: string;
|
4905
5011
|
displayName: string;
|
@@ -4930,6 +5036,8 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4930
5036
|
} | undefined;
|
4931
5037
|
highlightedCredentials?: string[] | undefined;
|
4932
5038
|
dob?: string | undefined;
|
5039
|
+
country?: string | undefined;
|
5040
|
+
approved?: boolean | undefined;
|
4933
5041
|
}, {
|
4934
5042
|
profileId: string;
|
4935
5043
|
did: string;
|
@@ -4960,6 +5068,8 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4960
5068
|
} | undefined;
|
4961
5069
|
highlightedCredentials?: string[] | undefined;
|
4962
5070
|
dob?: string | undefined;
|
5071
|
+
country?: string | undefined;
|
5072
|
+
approved?: boolean | undefined;
|
4963
5073
|
}>, "many">>;
|
4964
5074
|
}, "owner">, "strip", z.ZodTypeAny, {
|
4965
5075
|
name: string;
|
@@ -5032,6 +5142,8 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
5032
5142
|
} | undefined;
|
5033
5143
|
highlightedCredentials?: string[] | undefined;
|
5034
5144
|
dob?: string | undefined;
|
5145
|
+
country?: string | undefined;
|
5146
|
+
approved?: boolean | undefined;
|
5035
5147
|
}[] | undefined;
|
5036
5148
|
}, {
|
5037
5149
|
name: string;
|
@@ -5104,6 +5216,8 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
5104
5216
|
} | undefined;
|
5105
5217
|
highlightedCredentials?: string[] | undefined;
|
5106
5218
|
dob?: string | undefined;
|
5219
|
+
country?: string | undefined;
|
5220
|
+
approved?: boolean | undefined;
|
5107
5221
|
}[] | undefined;
|
5108
5222
|
}>, "many">;
|
5109
5223
|
}>, "strip", z.ZodTypeAny, {
|
@@ -5179,6 +5293,8 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
5179
5293
|
} | undefined;
|
5180
5294
|
highlightedCredentials?: string[] | undefined;
|
5181
5295
|
dob?: string | undefined;
|
5296
|
+
country?: string | undefined;
|
5297
|
+
approved?: boolean | undefined;
|
5182
5298
|
}[] | undefined;
|
5183
5299
|
}[];
|
5184
5300
|
cursor?: string | undefined;
|
@@ -5255,6 +5371,8 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
5255
5371
|
} | undefined;
|
5256
5372
|
highlightedCredentials?: string[] | undefined;
|
5257
5373
|
dob?: string | undefined;
|
5374
|
+
country?: string | undefined;
|
5375
|
+
approved?: boolean | undefined;
|
5258
5376
|
}[] | undefined;
|
5259
5377
|
}[];
|
5260
5378
|
cursor?: string | undefined;
|
@@ -5946,6 +6064,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5946
6064
|
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
5947
6065
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5948
6066
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6067
|
+
country: z.ZodOptional<z.ZodString>;
|
6068
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
5949
6069
|
}, "strip", z.ZodTypeAny, {
|
5950
6070
|
profileId: string;
|
5951
6071
|
displayName: string;
|
@@ -5976,6 +6096,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
5976
6096
|
} | undefined;
|
5977
6097
|
highlightedCredentials?: string[] | undefined;
|
5978
6098
|
dob?: string | undefined;
|
6099
|
+
country?: string | undefined;
|
6100
|
+
approved?: boolean | undefined;
|
5979
6101
|
}, {
|
5980
6102
|
profileId: string;
|
5981
6103
|
did: string;
|
@@ -6006,6 +6128,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6006
6128
|
} | undefined;
|
6007
6129
|
highlightedCredentials?: string[] | undefined;
|
6008
6130
|
dob?: string | undefined;
|
6131
|
+
country?: string | undefined;
|
6132
|
+
approved?: boolean | undefined;
|
6009
6133
|
}>;
|
6010
6134
|
name: z.ZodString;
|
6011
6135
|
subtitle: z.ZodOptional<z.ZodString>;
|
@@ -6074,6 +6198,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6074
6198
|
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
6075
6199
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6076
6200
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6201
|
+
country: z.ZodOptional<z.ZodString>;
|
6202
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
6077
6203
|
}, "strip", z.ZodTypeAny, {
|
6078
6204
|
profileId: string;
|
6079
6205
|
displayName: string;
|
@@ -6104,6 +6230,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6104
6230
|
} | undefined;
|
6105
6231
|
highlightedCredentials?: string[] | undefined;
|
6106
6232
|
dob?: string | undefined;
|
6233
|
+
country?: string | undefined;
|
6234
|
+
approved?: boolean | undefined;
|
6107
6235
|
}, {
|
6108
6236
|
profileId: string;
|
6109
6237
|
did: string;
|
@@ -6134,6 +6262,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6134
6262
|
} | undefined;
|
6135
6263
|
highlightedCredentials?: string[] | undefined;
|
6136
6264
|
dob?: string | undefined;
|
6265
|
+
country?: string | undefined;
|
6266
|
+
approved?: boolean | undefined;
|
6137
6267
|
}>, "many">>;
|
6138
6268
|
}, "strip", z.ZodTypeAny, {
|
6139
6269
|
name: string;
|
@@ -6197,6 +6327,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6197
6327
|
} | undefined;
|
6198
6328
|
highlightedCredentials?: string[] | undefined;
|
6199
6329
|
dob?: string | undefined;
|
6330
|
+
country?: string | undefined;
|
6331
|
+
approved?: boolean | undefined;
|
6200
6332
|
};
|
6201
6333
|
description?: string | undefined;
|
6202
6334
|
image?: string | undefined;
|
@@ -6237,6 +6369,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6237
6369
|
} | undefined;
|
6238
6370
|
highlightedCredentials?: string[] | undefined;
|
6239
6371
|
dob?: string | undefined;
|
6372
|
+
country?: string | undefined;
|
6373
|
+
approved?: boolean | undefined;
|
6240
6374
|
}[] | undefined;
|
6241
6375
|
}, {
|
6242
6376
|
name: string;
|
@@ -6300,6 +6434,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6300
6434
|
} | undefined;
|
6301
6435
|
highlightedCredentials?: string[] | undefined;
|
6302
6436
|
dob?: string | undefined;
|
6437
|
+
country?: string | undefined;
|
6438
|
+
approved?: boolean | undefined;
|
6303
6439
|
};
|
6304
6440
|
description?: string | undefined;
|
6305
6441
|
image?: string | undefined;
|
@@ -6340,6 +6476,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6340
6476
|
} | undefined;
|
6341
6477
|
highlightedCredentials?: string[] | undefined;
|
6342
6478
|
dob?: string | undefined;
|
6479
|
+
country?: string | undefined;
|
6480
|
+
approved?: boolean | undefined;
|
6343
6481
|
}[] | undefined;
|
6344
6482
|
}>;
|
6345
6483
|
uri: z.ZodString;
|
@@ -6397,6 +6535,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6397
6535
|
highlightedCredentials: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
6398
6536
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6399
6537
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6538
|
+
country: z.ZodOptional<z.ZodString>;
|
6539
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
6400
6540
|
}, "strip", z.ZodTypeAny, {
|
6401
6541
|
profileId: string;
|
6402
6542
|
displayName: string;
|
@@ -6427,6 +6567,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6427
6567
|
} | undefined;
|
6428
6568
|
highlightedCredentials?: string[] | undefined;
|
6429
6569
|
dob?: string | undefined;
|
6570
|
+
country?: string | undefined;
|
6571
|
+
approved?: boolean | undefined;
|
6430
6572
|
}, {
|
6431
6573
|
profileId: string;
|
6432
6574
|
did: string;
|
@@ -6457,6 +6599,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6457
6599
|
} | undefined;
|
6458
6600
|
highlightedCredentials?: string[] | undefined;
|
6459
6601
|
dob?: string | undefined;
|
6602
|
+
country?: string | undefined;
|
6603
|
+
approved?: boolean | undefined;
|
6460
6604
|
}>;
|
6461
6605
|
status: z.ZodEnum<["live", "stale", "withdrawn"]>;
|
6462
6606
|
}, "strip", z.ZodTypeAny, {
|
@@ -6524,6 +6668,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6524
6668
|
} | undefined;
|
6525
6669
|
highlightedCredentials?: string[] | undefined;
|
6526
6670
|
dob?: string | undefined;
|
6671
|
+
country?: string | undefined;
|
6672
|
+
approved?: boolean | undefined;
|
6527
6673
|
};
|
6528
6674
|
description?: string | undefined;
|
6529
6675
|
image?: string | undefined;
|
@@ -6564,6 +6710,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6564
6710
|
} | undefined;
|
6565
6711
|
highlightedCredentials?: string[] | undefined;
|
6566
6712
|
dob?: string | undefined;
|
6713
|
+
country?: string | undefined;
|
6714
|
+
approved?: boolean | undefined;
|
6567
6715
|
}[] | undefined;
|
6568
6716
|
};
|
6569
6717
|
terms: {
|
@@ -6619,6 +6767,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6619
6767
|
} | undefined;
|
6620
6768
|
highlightedCredentials?: string[] | undefined;
|
6621
6769
|
dob?: string | undefined;
|
6770
|
+
country?: string | undefined;
|
6771
|
+
approved?: boolean | undefined;
|
6622
6772
|
};
|
6623
6773
|
expiresAt?: string | undefined;
|
6624
6774
|
oneTime?: boolean | undefined;
|
@@ -6687,6 +6837,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6687
6837
|
} | undefined;
|
6688
6838
|
highlightedCredentials?: string[] | undefined;
|
6689
6839
|
dob?: string | undefined;
|
6840
|
+
country?: string | undefined;
|
6841
|
+
approved?: boolean | undefined;
|
6690
6842
|
};
|
6691
6843
|
description?: string | undefined;
|
6692
6844
|
image?: string | undefined;
|
@@ -6727,6 +6879,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6727
6879
|
} | undefined;
|
6728
6880
|
highlightedCredentials?: string[] | undefined;
|
6729
6881
|
dob?: string | undefined;
|
6882
|
+
country?: string | undefined;
|
6883
|
+
approved?: boolean | undefined;
|
6730
6884
|
}[] | undefined;
|
6731
6885
|
};
|
6732
6886
|
terms: {
|
@@ -6782,6 +6936,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6782
6936
|
} | undefined;
|
6783
6937
|
highlightedCredentials?: string[] | undefined;
|
6784
6938
|
dob?: string | undefined;
|
6939
|
+
country?: string | undefined;
|
6940
|
+
approved?: boolean | undefined;
|
6785
6941
|
};
|
6786
6942
|
expiresAt?: string | undefined;
|
6787
6943
|
oneTime?: boolean | undefined;
|
@@ -6853,6 +7009,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6853
7009
|
} | undefined;
|
6854
7010
|
highlightedCredentials?: string[] | undefined;
|
6855
7011
|
dob?: string | undefined;
|
7012
|
+
country?: string | undefined;
|
7013
|
+
approved?: boolean | undefined;
|
6856
7014
|
};
|
6857
7015
|
description?: string | undefined;
|
6858
7016
|
image?: string | undefined;
|
@@ -6893,6 +7051,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6893
7051
|
} | undefined;
|
6894
7052
|
highlightedCredentials?: string[] | undefined;
|
6895
7053
|
dob?: string | undefined;
|
7054
|
+
country?: string | undefined;
|
7055
|
+
approved?: boolean | undefined;
|
6896
7056
|
}[] | undefined;
|
6897
7057
|
};
|
6898
7058
|
terms: {
|
@@ -6948,6 +7108,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6948
7108
|
} | undefined;
|
6949
7109
|
highlightedCredentials?: string[] | undefined;
|
6950
7110
|
dob?: string | undefined;
|
7111
|
+
country?: string | undefined;
|
7112
|
+
approved?: boolean | undefined;
|
6951
7113
|
};
|
6952
7114
|
expiresAt?: string | undefined;
|
6953
7115
|
oneTime?: boolean | undefined;
|
@@ -7020,6 +7182,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
7020
7182
|
} | undefined;
|
7021
7183
|
highlightedCredentials?: string[] | undefined;
|
7022
7184
|
dob?: string | undefined;
|
7185
|
+
country?: string | undefined;
|
7186
|
+
approved?: boolean | undefined;
|
7023
7187
|
};
|
7024
7188
|
description?: string | undefined;
|
7025
7189
|
image?: string | undefined;
|
@@ -7060,6 +7224,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
7060
7224
|
} | undefined;
|
7061
7225
|
highlightedCredentials?: string[] | undefined;
|
7062
7226
|
dob?: string | undefined;
|
7227
|
+
country?: string | undefined;
|
7228
|
+
approved?: boolean | undefined;
|
7063
7229
|
}[] | undefined;
|
7064
7230
|
};
|
7065
7231
|
terms: {
|
@@ -7115,6 +7281,8 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
7115
7281
|
} | undefined;
|
7116
7282
|
highlightedCredentials?: string[] | undefined;
|
7117
7283
|
dob?: string | undefined;
|
7284
|
+
country?: string | undefined;
|
7285
|
+
approved?: boolean | undefined;
|
7118
7286
|
};
|
7119
7287
|
expiresAt?: string | undefined;
|
7120
7288
|
oneTime?: boolean | undefined;
|
@@ -8762,6 +8930,8 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8762
8930
|
highlightedCredentials: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
8763
8931
|
role: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8764
8932
|
dob: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8933
|
+
country: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
8934
|
+
approved: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
8765
8935
|
}, "strip", z.ZodTypeAny, {
|
8766
8936
|
type?: string | undefined;
|
8767
8937
|
image?: string | undefined;
|
@@ -8792,6 +8962,8 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8792
8962
|
} | undefined;
|
8793
8963
|
highlightedCredentials?: string[] | undefined;
|
8794
8964
|
dob?: string | undefined;
|
8965
|
+
country?: string | undefined;
|
8966
|
+
approved?: boolean | undefined;
|
8795
8967
|
}, {
|
8796
8968
|
type?: string | undefined;
|
8797
8969
|
image?: string | undefined;
|
@@ -8822,6 +8994,8 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8822
8994
|
} | undefined;
|
8823
8995
|
highlightedCredentials?: string[] | undefined;
|
8824
8996
|
dob?: string | undefined;
|
8997
|
+
country?: string | undefined;
|
8998
|
+
approved?: boolean | undefined;
|
8825
8999
|
}>, z.ZodObject<{
|
8826
9000
|
did: z.ZodString;
|
8827
9001
|
}, "strip", z.ZodTypeAny, {
|
@@ -8883,6 +9057,8 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8883
9057
|
highlightedCredentials: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
8884
9058
|
role: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8885
9059
|
dob: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
9060
|
+
country: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
9061
|
+
approved: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
8886
9062
|
}, "strip", z.ZodTypeAny, {
|
8887
9063
|
type?: string | undefined;
|
8888
9064
|
image?: string | undefined;
|
@@ -8913,6 +9089,8 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8913
9089
|
} | undefined;
|
8914
9090
|
highlightedCredentials?: string[] | undefined;
|
8915
9091
|
dob?: string | undefined;
|
9092
|
+
country?: string | undefined;
|
9093
|
+
approved?: boolean | undefined;
|
8916
9094
|
}, {
|
8917
9095
|
type?: string | undefined;
|
8918
9096
|
image?: string | undefined;
|
@@ -8943,6 +9121,8 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8943
9121
|
} | undefined;
|
8944
9122
|
highlightedCredentials?: string[] | undefined;
|
8945
9123
|
dob?: string | undefined;
|
9124
|
+
country?: string | undefined;
|
9125
|
+
approved?: boolean | undefined;
|
8946
9126
|
}>, z.ZodObject<{
|
8947
9127
|
did: z.ZodString;
|
8948
9128
|
}, "strip", z.ZodTypeAny, {
|
@@ -9345,6 +9525,8 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9345
9525
|
} | undefined;
|
9346
9526
|
highlightedCredentials?: string[] | undefined;
|
9347
9527
|
dob?: string | undefined;
|
9528
|
+
country?: string | undefined;
|
9529
|
+
approved?: boolean | undefined;
|
9348
9530
|
} & {
|
9349
9531
|
did: string;
|
9350
9532
|
};
|
@@ -9378,6 +9560,8 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9378
9560
|
} | undefined;
|
9379
9561
|
highlightedCredentials?: string[] | undefined;
|
9380
9562
|
dob?: string | undefined;
|
9563
|
+
country?: string | undefined;
|
9564
|
+
approved?: boolean | undefined;
|
9381
9565
|
} & {
|
9382
9566
|
did: string;
|
9383
9567
|
};
|
@@ -9466,6 +9650,8 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9466
9650
|
} | undefined;
|
9467
9651
|
highlightedCredentials?: string[] | undefined;
|
9468
9652
|
dob?: string | undefined;
|
9653
|
+
country?: string | undefined;
|
9654
|
+
approved?: boolean | undefined;
|
9469
9655
|
} & {
|
9470
9656
|
did: string;
|
9471
9657
|
};
|
@@ -9499,6 +9685,8 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9499
9685
|
} | undefined;
|
9500
9686
|
highlightedCredentials?: string[] | undefined;
|
9501
9687
|
dob?: string | undefined;
|
9688
|
+
country?: string | undefined;
|
9689
|
+
approved?: boolean | undefined;
|
9502
9690
|
} & {
|
9503
9691
|
did: string;
|
9504
9692
|
};
|