@learncard/types 5.8.6 → 5.8.9
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 +98 -4
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +4 -2
- package/dist/types.cjs.development.js.map +2 -2
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +2 -2
- package/dist/types.esm.js +4 -2
- package/dist/types.esm.js.map +2 -2
- package/package.json +1 -1
package/dist/lcn.d.ts
CHANGED
@@ -92,6 +92,7 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
92
92
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
93
93
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
94
94
|
country: z.ZodOptional<z.ZodString>;
|
95
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
95
96
|
}, "strip", z.ZodTypeAny, {
|
96
97
|
profileId: string;
|
97
98
|
displayName: string;
|
@@ -123,6 +124,7 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
123
124
|
highlightedCredentials?: string[] | undefined;
|
124
125
|
dob?: string | undefined;
|
125
126
|
country?: string | undefined;
|
127
|
+
approved?: boolean | undefined;
|
126
128
|
}, {
|
127
129
|
profileId: string;
|
128
130
|
did: string;
|
@@ -154,6 +156,7 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
154
156
|
highlightedCredentials?: string[] | undefined;
|
155
157
|
dob?: string | undefined;
|
156
158
|
country?: string | undefined;
|
159
|
+
approved?: boolean | undefined;
|
157
160
|
}>;
|
158
161
|
export type LCNProfile = z.infer<typeof LCNProfileValidator>;
|
159
162
|
export declare const LCNProfileQueryValidator: z.ZodObject<{
|
@@ -384,6 +387,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
384
387
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
385
388
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
386
389
|
country: z.ZodOptional<z.ZodString>;
|
390
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
387
391
|
}, "strip", z.ZodTypeAny, {
|
388
392
|
profileId: string;
|
389
393
|
displayName: string;
|
@@ -415,6 +419,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
415
419
|
highlightedCredentials?: string[] | undefined;
|
416
420
|
dob?: string | undefined;
|
417
421
|
country?: string | undefined;
|
422
|
+
approved?: boolean | undefined;
|
418
423
|
}, {
|
419
424
|
profileId: string;
|
420
425
|
did: string;
|
@@ -446,6 +451,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
446
451
|
highlightedCredentials?: string[] | undefined;
|
447
452
|
dob?: string | undefined;
|
448
453
|
country?: string | undefined;
|
454
|
+
approved?: boolean | undefined;
|
449
455
|
}>, "many">;
|
450
456
|
}>, "strip", z.ZodTypeAny, {
|
451
457
|
hasMore: boolean;
|
@@ -480,6 +486,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
480
486
|
highlightedCredentials?: string[] | undefined;
|
481
487
|
dob?: string | undefined;
|
482
488
|
country?: string | undefined;
|
489
|
+
approved?: boolean | undefined;
|
483
490
|
}[];
|
484
491
|
cursor?: string | undefined;
|
485
492
|
}, {
|
@@ -515,6 +522,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.objectUtil.ext
|
|
515
522
|
highlightedCredentials?: string[] | undefined;
|
516
523
|
dob?: string | undefined;
|
517
524
|
country?: string | undefined;
|
525
|
+
approved?: boolean | undefined;
|
518
526
|
}[];
|
519
527
|
cursor?: string | undefined;
|
520
528
|
}>;
|
@@ -796,6 +804,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
796
804
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
797
805
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
798
806
|
country: z.ZodOptional<z.ZodString>;
|
807
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
799
808
|
}, "strip", z.ZodTypeAny, {
|
800
809
|
profileId: string;
|
801
810
|
displayName: string;
|
@@ -827,6 +836,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
827
836
|
highlightedCredentials?: string[] | undefined;
|
828
837
|
dob?: string | undefined;
|
829
838
|
country?: string | undefined;
|
839
|
+
approved?: boolean | undefined;
|
830
840
|
}, {
|
831
841
|
profileId: string;
|
832
842
|
did: string;
|
@@ -858,6 +868,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
858
868
|
highlightedCredentials?: string[] | undefined;
|
859
869
|
dob?: string | undefined;
|
860
870
|
country?: string | undefined;
|
871
|
+
approved?: boolean | undefined;
|
861
872
|
}>;
|
862
873
|
manager: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
863
874
|
id: z.ZodString;
|
@@ -923,6 +934,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
923
934
|
highlightedCredentials?: string[] | undefined;
|
924
935
|
dob?: string | undefined;
|
925
936
|
country?: string | undefined;
|
937
|
+
approved?: boolean | undefined;
|
926
938
|
};
|
927
939
|
manager?: {
|
928
940
|
id: string;
|
@@ -967,6 +979,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
967
979
|
highlightedCredentials?: string[] | undefined;
|
968
980
|
dob?: string | undefined;
|
969
981
|
country?: string | undefined;
|
982
|
+
approved?: boolean | undefined;
|
970
983
|
};
|
971
984
|
manager?: {
|
972
985
|
id: string;
|
@@ -1014,6 +1027,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
1014
1027
|
highlightedCredentials?: string[] | undefined;
|
1015
1028
|
dob?: string | undefined;
|
1016
1029
|
country?: string | undefined;
|
1030
|
+
approved?: boolean | undefined;
|
1017
1031
|
};
|
1018
1032
|
manager?: {
|
1019
1033
|
id: string;
|
@@ -1062,6 +1076,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.obj
|
|
1062
1076
|
highlightedCredentials?: string[] | undefined;
|
1063
1077
|
dob?: string | undefined;
|
1064
1078
|
country?: string | undefined;
|
1079
|
+
approved?: boolean | undefined;
|
1065
1080
|
};
|
1066
1081
|
manager?: {
|
1067
1082
|
id: string;
|
@@ -2782,6 +2797,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2782
2797
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2783
2798
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2784
2799
|
country: z.ZodOptional<z.ZodString>;
|
2800
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
2785
2801
|
}, "strip", z.ZodTypeAny, {
|
2786
2802
|
profileId: string;
|
2787
2803
|
displayName: string;
|
@@ -2813,6 +2829,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2813
2829
|
highlightedCredentials?: string[] | undefined;
|
2814
2830
|
dob?: string | undefined;
|
2815
2831
|
country?: string | undefined;
|
2832
|
+
approved?: boolean | undefined;
|
2816
2833
|
}, {
|
2817
2834
|
profileId: string;
|
2818
2835
|
did: string;
|
@@ -2844,6 +2861,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2844
2861
|
highlightedCredentials?: string[] | undefined;
|
2845
2862
|
dob?: string | undefined;
|
2846
2863
|
country?: string | undefined;
|
2864
|
+
approved?: boolean | undefined;
|
2847
2865
|
}>;
|
2848
2866
|
from: z.ZodString;
|
2849
2867
|
received: z.ZodOptional<z.ZodString>;
|
@@ -2880,6 +2898,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2880
2898
|
highlightedCredentials?: string[] | undefined;
|
2881
2899
|
dob?: string | undefined;
|
2882
2900
|
country?: string | undefined;
|
2901
|
+
approved?: boolean | undefined;
|
2883
2902
|
};
|
2884
2903
|
from: string;
|
2885
2904
|
received?: string | undefined;
|
@@ -2916,6 +2935,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
2916
2935
|
highlightedCredentials?: string[] | undefined;
|
2917
2936
|
dob?: string | undefined;
|
2918
2937
|
country?: string | undefined;
|
2938
|
+
approved?: boolean | undefined;
|
2919
2939
|
};
|
2920
2940
|
from: string;
|
2921
2941
|
received?: string | undefined;
|
@@ -2982,6 +3002,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
2982
3002
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2983
3003
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
2984
3004
|
country: z.ZodOptional<z.ZodString>;
|
3005
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
2985
3006
|
}, "strip", z.ZodTypeAny, {
|
2986
3007
|
profileId: string;
|
2987
3008
|
displayName: string;
|
@@ -3013,6 +3034,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3013
3034
|
highlightedCredentials?: string[] | undefined;
|
3014
3035
|
dob?: string | undefined;
|
3015
3036
|
country?: string | undefined;
|
3037
|
+
approved?: boolean | undefined;
|
3016
3038
|
}, {
|
3017
3039
|
profileId: string;
|
3018
3040
|
did: string;
|
@@ -3044,6 +3066,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3044
3066
|
highlightedCredentials?: string[] | undefined;
|
3045
3067
|
dob?: string | undefined;
|
3046
3068
|
country?: string | undefined;
|
3069
|
+
approved?: boolean | undefined;
|
3047
3070
|
}>;
|
3048
3071
|
from: z.ZodString;
|
3049
3072
|
received: z.ZodOptional<z.ZodString>;
|
@@ -3080,6 +3103,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3080
3103
|
highlightedCredentials?: string[] | undefined;
|
3081
3104
|
dob?: string | undefined;
|
3082
3105
|
country?: string | undefined;
|
3106
|
+
approved?: boolean | undefined;
|
3083
3107
|
};
|
3084
3108
|
from: string;
|
3085
3109
|
received?: string | undefined;
|
@@ -3116,6 +3140,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3116
3140
|
highlightedCredentials?: string[] | undefined;
|
3117
3141
|
dob?: string | undefined;
|
3118
3142
|
country?: string | undefined;
|
3143
|
+
approved?: boolean | undefined;
|
3119
3144
|
};
|
3120
3145
|
from: string;
|
3121
3146
|
received?: string | undefined;
|
@@ -3155,6 +3180,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3155
3180
|
highlightedCredentials?: string[] | undefined;
|
3156
3181
|
dob?: string | undefined;
|
3157
3182
|
country?: string | undefined;
|
3183
|
+
approved?: boolean | undefined;
|
3158
3184
|
};
|
3159
3185
|
from: string;
|
3160
3186
|
received?: string | undefined;
|
@@ -3195,6 +3221,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
|
|
3195
3221
|
highlightedCredentials?: string[] | undefined;
|
3196
3222
|
dob?: string | undefined;
|
3197
3223
|
country?: string | undefined;
|
3224
|
+
approved?: boolean | undefined;
|
3198
3225
|
};
|
3199
3226
|
from: string;
|
3200
3227
|
received?: string | undefined;
|
@@ -3259,6 +3286,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3259
3286
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3260
3287
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3261
3288
|
country: z.ZodOptional<z.ZodString>;
|
3289
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
3262
3290
|
}, "strip", z.ZodTypeAny, {
|
3263
3291
|
profileId: string;
|
3264
3292
|
displayName: string;
|
@@ -3290,6 +3318,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3290
3318
|
highlightedCredentials?: string[] | undefined;
|
3291
3319
|
dob?: string | undefined;
|
3292
3320
|
country?: string | undefined;
|
3321
|
+
approved?: boolean | undefined;
|
3293
3322
|
}, {
|
3294
3323
|
profileId: string;
|
3295
3324
|
did: string;
|
@@ -3321,6 +3350,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3321
3350
|
highlightedCredentials?: string[] | undefined;
|
3322
3351
|
dob?: string | undefined;
|
3323
3352
|
country?: string | undefined;
|
3353
|
+
approved?: boolean | undefined;
|
3324
3354
|
}>;
|
3325
3355
|
from: z.ZodString;
|
3326
3356
|
received: z.ZodOptional<z.ZodString>;
|
@@ -3358,6 +3388,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3358
3388
|
highlightedCredentials?: string[] | undefined;
|
3359
3389
|
dob?: string | undefined;
|
3360
3390
|
country?: string | undefined;
|
3391
|
+
approved?: boolean | undefined;
|
3361
3392
|
};
|
3362
3393
|
from: string;
|
3363
3394
|
boostUris: string[];
|
@@ -3395,6 +3426,7 @@ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
|
|
3395
3426
|
highlightedCredentials?: string[] | undefined;
|
3396
3427
|
dob?: string | undefined;
|
3397
3428
|
country?: string | undefined;
|
3429
|
+
approved?: boolean | undefined;
|
3398
3430
|
};
|
3399
3431
|
from: string;
|
3400
3432
|
boostUris: string[];
|
@@ -3462,6 +3494,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3462
3494
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3463
3495
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3464
3496
|
country: z.ZodOptional<z.ZodString>;
|
3497
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
3465
3498
|
}, "strip", z.ZodTypeAny, {
|
3466
3499
|
profileId: string;
|
3467
3500
|
displayName: string;
|
@@ -3493,6 +3526,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3493
3526
|
highlightedCredentials?: string[] | undefined;
|
3494
3527
|
dob?: string | undefined;
|
3495
3528
|
country?: string | undefined;
|
3529
|
+
approved?: boolean | undefined;
|
3496
3530
|
}, {
|
3497
3531
|
profileId: string;
|
3498
3532
|
did: string;
|
@@ -3524,6 +3558,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3524
3558
|
highlightedCredentials?: string[] | undefined;
|
3525
3559
|
dob?: string | undefined;
|
3526
3560
|
country?: string | undefined;
|
3561
|
+
approved?: boolean | undefined;
|
3527
3562
|
}>;
|
3528
3563
|
from: z.ZodString;
|
3529
3564
|
received: z.ZodOptional<z.ZodString>;
|
@@ -3561,6 +3596,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3561
3596
|
highlightedCredentials?: string[] | undefined;
|
3562
3597
|
dob?: string | undefined;
|
3563
3598
|
country?: string | undefined;
|
3599
|
+
approved?: boolean | undefined;
|
3564
3600
|
};
|
3565
3601
|
from: string;
|
3566
3602
|
boostUris: string[];
|
@@ -3598,6 +3634,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3598
3634
|
highlightedCredentials?: string[] | undefined;
|
3599
3635
|
dob?: string | undefined;
|
3600
3636
|
country?: string | undefined;
|
3637
|
+
approved?: boolean | undefined;
|
3601
3638
|
};
|
3602
3639
|
from: string;
|
3603
3640
|
boostUris: string[];
|
@@ -3638,6 +3675,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3638
3675
|
highlightedCredentials?: string[] | undefined;
|
3639
3676
|
dob?: string | undefined;
|
3640
3677
|
country?: string | undefined;
|
3678
|
+
approved?: boolean | undefined;
|
3641
3679
|
};
|
3642
3680
|
from: string;
|
3643
3681
|
boostUris: string[];
|
@@ -3679,6 +3717,7 @@ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<
|
|
3679
3717
|
highlightedCredentials?: string[] | undefined;
|
3680
3718
|
dob?: string | undefined;
|
3681
3719
|
country?: string | undefined;
|
3720
|
+
approved?: boolean | undefined;
|
3682
3721
|
};
|
3683
3722
|
from: string;
|
3684
3723
|
boostUris: string[];
|
@@ -4186,6 +4225,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4186
4225
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4187
4226
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4188
4227
|
country: z.ZodOptional<z.ZodString>;
|
4228
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
4189
4229
|
}, "strip", z.ZodTypeAny, {
|
4190
4230
|
profileId: string;
|
4191
4231
|
displayName: string;
|
@@ -4217,6 +4257,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4217
4257
|
highlightedCredentials?: string[] | undefined;
|
4218
4258
|
dob?: string | undefined;
|
4219
4259
|
country?: string | undefined;
|
4260
|
+
approved?: boolean | undefined;
|
4220
4261
|
}, {
|
4221
4262
|
profileId: string;
|
4222
4263
|
did: string;
|
@@ -4248,6 +4289,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4248
4289
|
highlightedCredentials?: string[] | undefined;
|
4249
4290
|
dob?: string | undefined;
|
4250
4291
|
country?: string | undefined;
|
4292
|
+
approved?: boolean | undefined;
|
4251
4293
|
}>;
|
4252
4294
|
name: z.ZodString;
|
4253
4295
|
subtitle: z.ZodOptional<z.ZodString>;
|
@@ -4317,6 +4359,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4317
4359
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4318
4360
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4319
4361
|
country: z.ZodOptional<z.ZodString>;
|
4362
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
4320
4363
|
}, "strip", z.ZodTypeAny, {
|
4321
4364
|
profileId: string;
|
4322
4365
|
displayName: string;
|
@@ -4348,6 +4391,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4348
4391
|
highlightedCredentials?: string[] | undefined;
|
4349
4392
|
dob?: string | undefined;
|
4350
4393
|
country?: string | undefined;
|
4394
|
+
approved?: boolean | undefined;
|
4351
4395
|
}, {
|
4352
4396
|
profileId: string;
|
4353
4397
|
did: string;
|
@@ -4379,6 +4423,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4379
4423
|
highlightedCredentials?: string[] | undefined;
|
4380
4424
|
dob?: string | undefined;
|
4381
4425
|
country?: string | undefined;
|
4426
|
+
approved?: boolean | undefined;
|
4382
4427
|
}>, "many">>;
|
4383
4428
|
}, "strip", z.ZodTypeAny, {
|
4384
4429
|
name: string;
|
@@ -4443,6 +4488,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4443
4488
|
highlightedCredentials?: string[] | undefined;
|
4444
4489
|
dob?: string | undefined;
|
4445
4490
|
country?: string | undefined;
|
4491
|
+
approved?: boolean | undefined;
|
4446
4492
|
};
|
4447
4493
|
description?: string | undefined;
|
4448
4494
|
image?: string | undefined;
|
@@ -4484,6 +4530,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4484
4530
|
highlightedCredentials?: string[] | undefined;
|
4485
4531
|
dob?: string | undefined;
|
4486
4532
|
country?: string | undefined;
|
4533
|
+
approved?: boolean | undefined;
|
4487
4534
|
}[] | undefined;
|
4488
4535
|
}, {
|
4489
4536
|
name: string;
|
@@ -4548,6 +4595,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4548
4595
|
highlightedCredentials?: string[] | undefined;
|
4549
4596
|
dob?: string | undefined;
|
4550
4597
|
country?: string | undefined;
|
4598
|
+
approved?: boolean | undefined;
|
4551
4599
|
};
|
4552
4600
|
description?: string | undefined;
|
4553
4601
|
image?: string | undefined;
|
@@ -4589,6 +4637,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
4589
4637
|
highlightedCredentials?: string[] | undefined;
|
4590
4638
|
dob?: string | undefined;
|
4591
4639
|
country?: string | undefined;
|
4640
|
+
approved?: boolean | undefined;
|
4592
4641
|
}[] | undefined;
|
4593
4642
|
}>;
|
4594
4643
|
export type ConsentFlowContractDetails = z.infer<typeof ConsentFlowContractDetailsValidator>;
|
@@ -4822,6 +4871,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4822
4871
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4823
4872
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4824
4873
|
country: z.ZodOptional<z.ZodString>;
|
4874
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
4825
4875
|
}, "strip", z.ZodTypeAny, {
|
4826
4876
|
profileId: string;
|
4827
4877
|
displayName: string;
|
@@ -4853,6 +4903,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4853
4903
|
highlightedCredentials?: string[] | undefined;
|
4854
4904
|
dob?: string | undefined;
|
4855
4905
|
country?: string | undefined;
|
4906
|
+
approved?: boolean | undefined;
|
4856
4907
|
}, {
|
4857
4908
|
profileId: string;
|
4858
4909
|
did: string;
|
@@ -4884,6 +4935,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4884
4935
|
highlightedCredentials?: string[] | undefined;
|
4885
4936
|
dob?: string | undefined;
|
4886
4937
|
country?: string | undefined;
|
4938
|
+
approved?: boolean | undefined;
|
4887
4939
|
}>;
|
4888
4940
|
name: z.ZodString;
|
4889
4941
|
subtitle: z.ZodOptional<z.ZodString>;
|
@@ -4953,6 +5005,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4953
5005
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4954
5006
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4955
5007
|
country: z.ZodOptional<z.ZodString>;
|
5008
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
4956
5009
|
}, "strip", z.ZodTypeAny, {
|
4957
5010
|
profileId: string;
|
4958
5011
|
displayName: string;
|
@@ -4984,6 +5037,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
4984
5037
|
highlightedCredentials?: string[] | undefined;
|
4985
5038
|
dob?: string | undefined;
|
4986
5039
|
country?: string | undefined;
|
5040
|
+
approved?: boolean | undefined;
|
4987
5041
|
}, {
|
4988
5042
|
profileId: string;
|
4989
5043
|
did: string;
|
@@ -5015,6 +5069,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
5015
5069
|
highlightedCredentials?: string[] | undefined;
|
5016
5070
|
dob?: string | undefined;
|
5017
5071
|
country?: string | undefined;
|
5072
|
+
approved?: boolean | undefined;
|
5018
5073
|
}>, "many">>;
|
5019
5074
|
}, "owner">, "strip", z.ZodTypeAny, {
|
5020
5075
|
name: string;
|
@@ -5088,6 +5143,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
5088
5143
|
highlightedCredentials?: string[] | undefined;
|
5089
5144
|
dob?: string | undefined;
|
5090
5145
|
country?: string | undefined;
|
5146
|
+
approved?: boolean | undefined;
|
5091
5147
|
}[] | undefined;
|
5092
5148
|
}, {
|
5093
5149
|
name: string;
|
@@ -5161,6 +5217,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
5161
5217
|
highlightedCredentials?: string[] | undefined;
|
5162
5218
|
dob?: string | undefined;
|
5163
5219
|
country?: string | undefined;
|
5220
|
+
approved?: boolean | undefined;
|
5164
5221
|
}[] | undefined;
|
5165
5222
|
}>, "many">;
|
5166
5223
|
}>, "strip", z.ZodTypeAny, {
|
@@ -5237,6 +5294,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
5237
5294
|
highlightedCredentials?: string[] | undefined;
|
5238
5295
|
dob?: string | undefined;
|
5239
5296
|
country?: string | undefined;
|
5297
|
+
approved?: boolean | undefined;
|
5240
5298
|
}[] | undefined;
|
5241
5299
|
}[];
|
5242
5300
|
cursor?: string | undefined;
|
@@ -5314,6 +5372,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
|
|
5314
5372
|
highlightedCredentials?: string[] | undefined;
|
5315
5373
|
dob?: string | undefined;
|
5316
5374
|
country?: string | undefined;
|
5375
|
+
approved?: boolean | undefined;
|
5317
5376
|
}[] | undefined;
|
5318
5377
|
}[];
|
5319
5378
|
cursor?: string | undefined;
|
@@ -6006,6 +6065,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6006
6065
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6007
6066
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6008
6067
|
country: z.ZodOptional<z.ZodString>;
|
6068
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
6009
6069
|
}, "strip", z.ZodTypeAny, {
|
6010
6070
|
profileId: string;
|
6011
6071
|
displayName: string;
|
@@ -6037,6 +6097,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6037
6097
|
highlightedCredentials?: string[] | undefined;
|
6038
6098
|
dob?: string | undefined;
|
6039
6099
|
country?: string | undefined;
|
6100
|
+
approved?: boolean | undefined;
|
6040
6101
|
}, {
|
6041
6102
|
profileId: string;
|
6042
6103
|
did: string;
|
@@ -6068,6 +6129,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6068
6129
|
highlightedCredentials?: string[] | undefined;
|
6069
6130
|
dob?: string | undefined;
|
6070
6131
|
country?: string | undefined;
|
6132
|
+
approved?: boolean | undefined;
|
6071
6133
|
}>;
|
6072
6134
|
name: z.ZodString;
|
6073
6135
|
subtitle: z.ZodOptional<z.ZodString>;
|
@@ -6137,6 +6199,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6137
6199
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6138
6200
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6139
6201
|
country: z.ZodOptional<z.ZodString>;
|
6202
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
6140
6203
|
}, "strip", z.ZodTypeAny, {
|
6141
6204
|
profileId: string;
|
6142
6205
|
displayName: string;
|
@@ -6168,6 +6231,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6168
6231
|
highlightedCredentials?: string[] | undefined;
|
6169
6232
|
dob?: string | undefined;
|
6170
6233
|
country?: string | undefined;
|
6234
|
+
approved?: boolean | undefined;
|
6171
6235
|
}, {
|
6172
6236
|
profileId: string;
|
6173
6237
|
did: string;
|
@@ -6199,6 +6263,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6199
6263
|
highlightedCredentials?: string[] | undefined;
|
6200
6264
|
dob?: string | undefined;
|
6201
6265
|
country?: string | undefined;
|
6266
|
+
approved?: boolean | undefined;
|
6202
6267
|
}>, "many">>;
|
6203
6268
|
}, "strip", z.ZodTypeAny, {
|
6204
6269
|
name: string;
|
@@ -6263,6 +6328,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6263
6328
|
highlightedCredentials?: string[] | undefined;
|
6264
6329
|
dob?: string | undefined;
|
6265
6330
|
country?: string | undefined;
|
6331
|
+
approved?: boolean | undefined;
|
6266
6332
|
};
|
6267
6333
|
description?: string | undefined;
|
6268
6334
|
image?: string | undefined;
|
@@ -6304,6 +6370,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6304
6370
|
highlightedCredentials?: string[] | undefined;
|
6305
6371
|
dob?: string | undefined;
|
6306
6372
|
country?: string | undefined;
|
6373
|
+
approved?: boolean | undefined;
|
6307
6374
|
}[] | undefined;
|
6308
6375
|
}, {
|
6309
6376
|
name: string;
|
@@ -6368,6 +6435,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6368
6435
|
highlightedCredentials?: string[] | undefined;
|
6369
6436
|
dob?: string | undefined;
|
6370
6437
|
country?: string | undefined;
|
6438
|
+
approved?: boolean | undefined;
|
6371
6439
|
};
|
6372
6440
|
description?: string | undefined;
|
6373
6441
|
image?: string | undefined;
|
@@ -6409,6 +6477,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6409
6477
|
highlightedCredentials?: string[] | undefined;
|
6410
6478
|
dob?: string | undefined;
|
6411
6479
|
country?: string | undefined;
|
6480
|
+
approved?: boolean | undefined;
|
6412
6481
|
}[] | undefined;
|
6413
6482
|
}>;
|
6414
6483
|
uri: z.ZodString;
|
@@ -6467,6 +6536,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6467
6536
|
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6468
6537
|
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
6469
6538
|
country: z.ZodOptional<z.ZodString>;
|
6539
|
+
approved: z.ZodOptional<z.ZodBoolean>;
|
6470
6540
|
}, "strip", z.ZodTypeAny, {
|
6471
6541
|
profileId: string;
|
6472
6542
|
displayName: string;
|
@@ -6498,6 +6568,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6498
6568
|
highlightedCredentials?: string[] | undefined;
|
6499
6569
|
dob?: string | undefined;
|
6500
6570
|
country?: string | undefined;
|
6571
|
+
approved?: boolean | undefined;
|
6501
6572
|
}, {
|
6502
6573
|
profileId: string;
|
6503
6574
|
did: string;
|
@@ -6529,6 +6600,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6529
6600
|
highlightedCredentials?: string[] | undefined;
|
6530
6601
|
dob?: string | undefined;
|
6531
6602
|
country?: string | undefined;
|
6603
|
+
approved?: boolean | undefined;
|
6532
6604
|
}>;
|
6533
6605
|
status: z.ZodEnum<["live", "stale", "withdrawn"]>;
|
6534
6606
|
}, "strip", z.ZodTypeAny, {
|
@@ -6597,6 +6669,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6597
6669
|
highlightedCredentials?: string[] | undefined;
|
6598
6670
|
dob?: string | undefined;
|
6599
6671
|
country?: string | undefined;
|
6672
|
+
approved?: boolean | undefined;
|
6600
6673
|
};
|
6601
6674
|
description?: string | undefined;
|
6602
6675
|
image?: string | undefined;
|
@@ -6638,6 +6711,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6638
6711
|
highlightedCredentials?: string[] | undefined;
|
6639
6712
|
dob?: string | undefined;
|
6640
6713
|
country?: string | undefined;
|
6714
|
+
approved?: boolean | undefined;
|
6641
6715
|
}[] | undefined;
|
6642
6716
|
};
|
6643
6717
|
terms: {
|
@@ -6694,6 +6768,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6694
6768
|
highlightedCredentials?: string[] | undefined;
|
6695
6769
|
dob?: string | undefined;
|
6696
6770
|
country?: string | undefined;
|
6771
|
+
approved?: boolean | undefined;
|
6697
6772
|
};
|
6698
6773
|
expiresAt?: string | undefined;
|
6699
6774
|
oneTime?: boolean | undefined;
|
@@ -6763,6 +6838,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6763
6838
|
highlightedCredentials?: string[] | undefined;
|
6764
6839
|
dob?: string | undefined;
|
6765
6840
|
country?: string | undefined;
|
6841
|
+
approved?: boolean | undefined;
|
6766
6842
|
};
|
6767
6843
|
description?: string | undefined;
|
6768
6844
|
image?: string | undefined;
|
@@ -6804,6 +6880,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6804
6880
|
highlightedCredentials?: string[] | undefined;
|
6805
6881
|
dob?: string | undefined;
|
6806
6882
|
country?: string | undefined;
|
6883
|
+
approved?: boolean | undefined;
|
6807
6884
|
}[] | undefined;
|
6808
6885
|
};
|
6809
6886
|
terms: {
|
@@ -6860,6 +6937,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6860
6937
|
highlightedCredentials?: string[] | undefined;
|
6861
6938
|
dob?: string | undefined;
|
6862
6939
|
country?: string | undefined;
|
6940
|
+
approved?: boolean | undefined;
|
6863
6941
|
};
|
6864
6942
|
expiresAt?: string | undefined;
|
6865
6943
|
oneTime?: boolean | undefined;
|
@@ -6932,6 +7010,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6932
7010
|
highlightedCredentials?: string[] | undefined;
|
6933
7011
|
dob?: string | undefined;
|
6934
7012
|
country?: string | undefined;
|
7013
|
+
approved?: boolean | undefined;
|
6935
7014
|
};
|
6936
7015
|
description?: string | undefined;
|
6937
7016
|
image?: string | undefined;
|
@@ -6973,6 +7052,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
6973
7052
|
highlightedCredentials?: string[] | undefined;
|
6974
7053
|
dob?: string | undefined;
|
6975
7054
|
country?: string | undefined;
|
7055
|
+
approved?: boolean | undefined;
|
6976
7056
|
}[] | undefined;
|
6977
7057
|
};
|
6978
7058
|
terms: {
|
@@ -7029,6 +7109,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
7029
7109
|
highlightedCredentials?: string[] | undefined;
|
7030
7110
|
dob?: string | undefined;
|
7031
7111
|
country?: string | undefined;
|
7112
|
+
approved?: boolean | undefined;
|
7032
7113
|
};
|
7033
7114
|
expiresAt?: string | undefined;
|
7034
7115
|
oneTime?: boolean | undefined;
|
@@ -7102,6 +7183,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
7102
7183
|
highlightedCredentials?: string[] | undefined;
|
7103
7184
|
dob?: string | undefined;
|
7104
7185
|
country?: string | undefined;
|
7186
|
+
approved?: boolean | undefined;
|
7105
7187
|
};
|
7106
7188
|
description?: string | undefined;
|
7107
7189
|
image?: string | undefined;
|
@@ -7143,6 +7225,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
7143
7225
|
highlightedCredentials?: string[] | undefined;
|
7144
7226
|
dob?: string | undefined;
|
7145
7227
|
country?: string | undefined;
|
7228
|
+
approved?: boolean | undefined;
|
7146
7229
|
}[] | undefined;
|
7147
7230
|
};
|
7148
7231
|
terms: {
|
@@ -7199,6 +7282,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
|
|
7199
7282
|
highlightedCredentials?: string[] | undefined;
|
7200
7283
|
dob?: string | undefined;
|
7201
7284
|
country?: string | undefined;
|
7285
|
+
approved?: boolean | undefined;
|
7202
7286
|
};
|
7203
7287
|
expiresAt?: string | undefined;
|
7204
7288
|
oneTime?: boolean | undefined;
|
@@ -8359,7 +8443,7 @@ export declare const PaginatedContractCredentialsValidator: z.ZodObject<z.object
|
|
8359
8443
|
cursor?: string | undefined;
|
8360
8444
|
}>;
|
8361
8445
|
export type PaginatedContractCredentials = z.infer<typeof PaginatedContractCredentialsValidator>;
|
8362
|
-
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"]>;
|
8446
|
+
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", "PROFILE_PARENT_APPROVED"]>;
|
8363
8447
|
export type LCNNotificationTypeEnum = z.infer<typeof LCNNotificationTypeEnumValidator>;
|
8364
8448
|
export declare const LCNNotificationMessageValidator: z.ZodObject<{
|
8365
8449
|
title: z.ZodOptional<z.ZodString>;
|
@@ -8791,7 +8875,7 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
8791
8875
|
}>;
|
8792
8876
|
export type LCNNotificationData = z.infer<typeof LCNNotificationDataValidator>;
|
8793
8877
|
export declare const LCNNotificationValidator: z.ZodObject<{
|
8794
|
-
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"]>;
|
8878
|
+
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", "PROFILE_PARENT_APPROVED"]>;
|
8795
8879
|
to: z.ZodIntersection<z.ZodObject<{
|
8796
8880
|
profileId: z.ZodOptional<z.ZodString>;
|
8797
8881
|
displayName: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
@@ -8847,6 +8931,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8847
8931
|
role: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8848
8932
|
dob: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8849
8933
|
country: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
8934
|
+
approved: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
8850
8935
|
}, "strip", z.ZodTypeAny, {
|
8851
8936
|
type?: string | undefined;
|
8852
8937
|
image?: string | undefined;
|
@@ -8878,6 +8963,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8878
8963
|
highlightedCredentials?: string[] | undefined;
|
8879
8964
|
dob?: string | undefined;
|
8880
8965
|
country?: string | undefined;
|
8966
|
+
approved?: boolean | undefined;
|
8881
8967
|
}, {
|
8882
8968
|
type?: string | undefined;
|
8883
8969
|
image?: string | undefined;
|
@@ -8909,6 +8995,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8909
8995
|
highlightedCredentials?: string[] | undefined;
|
8910
8996
|
dob?: string | undefined;
|
8911
8997
|
country?: string | undefined;
|
8998
|
+
approved?: boolean | undefined;
|
8912
8999
|
}>, z.ZodObject<{
|
8913
9000
|
did: z.ZodString;
|
8914
9001
|
}, "strip", z.ZodTypeAny, {
|
@@ -8971,6 +9058,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
8971
9058
|
role: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8972
9059
|
dob: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
|
8973
9060
|
country: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
9061
|
+
approved: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
8974
9062
|
}, "strip", z.ZodTypeAny, {
|
8975
9063
|
type?: string | undefined;
|
8976
9064
|
image?: string | undefined;
|
@@ -9002,6 +9090,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9002
9090
|
highlightedCredentials?: string[] | undefined;
|
9003
9091
|
dob?: string | undefined;
|
9004
9092
|
country?: string | undefined;
|
9093
|
+
approved?: boolean | undefined;
|
9005
9094
|
}, {
|
9006
9095
|
type?: string | undefined;
|
9007
9096
|
image?: string | undefined;
|
@@ -9033,6 +9122,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9033
9122
|
highlightedCredentials?: string[] | undefined;
|
9034
9123
|
dob?: string | undefined;
|
9035
9124
|
country?: string | undefined;
|
9125
|
+
approved?: boolean | undefined;
|
9036
9126
|
}>, z.ZodObject<{
|
9037
9127
|
did: z.ZodString;
|
9038
9128
|
}, "strip", z.ZodTypeAny, {
|
@@ -9404,7 +9494,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9404
9494
|
sent: z.ZodOptional<z.ZodString>;
|
9405
9495
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
9406
9496
|
}, "strip", z.ZodTypeAny, {
|
9407
|
-
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";
|
9497
|
+
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" | "PROFILE_PARENT_APPROVED";
|
9408
9498
|
to: {
|
9409
9499
|
type?: string | undefined;
|
9410
9500
|
image?: string | undefined;
|
@@ -9436,6 +9526,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9436
9526
|
highlightedCredentials?: string[] | undefined;
|
9437
9527
|
dob?: string | undefined;
|
9438
9528
|
country?: string | undefined;
|
9529
|
+
approved?: boolean | undefined;
|
9439
9530
|
} & {
|
9440
9531
|
did: string;
|
9441
9532
|
};
|
@@ -9470,6 +9561,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9470
9561
|
highlightedCredentials?: string[] | undefined;
|
9471
9562
|
dob?: string | undefined;
|
9472
9563
|
country?: string | undefined;
|
9564
|
+
approved?: boolean | undefined;
|
9473
9565
|
} & {
|
9474
9566
|
did: string;
|
9475
9567
|
};
|
@@ -9527,7 +9619,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9527
9619
|
} | undefined;
|
9528
9620
|
webhookUrl?: string | undefined;
|
9529
9621
|
}, {
|
9530
|
-
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";
|
9622
|
+
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" | "PROFILE_PARENT_APPROVED";
|
9531
9623
|
to: {
|
9532
9624
|
type?: string | undefined;
|
9533
9625
|
image?: string | undefined;
|
@@ -9559,6 +9651,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9559
9651
|
highlightedCredentials?: string[] | undefined;
|
9560
9652
|
dob?: string | undefined;
|
9561
9653
|
country?: string | undefined;
|
9654
|
+
approved?: boolean | undefined;
|
9562
9655
|
} & {
|
9563
9656
|
did: string;
|
9564
9657
|
};
|
@@ -9593,6 +9686,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
9593
9686
|
highlightedCredentials?: string[] | undefined;
|
9594
9687
|
dob?: string | undefined;
|
9595
9688
|
country?: string | undefined;
|
9689
|
+
approved?: boolean | undefined;
|
9596
9690
|
} & {
|
9597
9691
|
did: string;
|
9598
9692
|
};
|