@learncard/types 5.6.12 → 5.6.13
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 +758 -24
- 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
@@ -3556,6 +3556,118 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3556
3556
|
updatedAt: z.ZodString;
|
3557
3557
|
expiresAt: z.ZodOptional<z.ZodString>;
|
3558
3558
|
autoBoosts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3559
|
+
writers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
3560
|
+
profileId: z.ZodString;
|
3561
|
+
displayName: z.ZodDefault<z.ZodString>;
|
3562
|
+
shortBio: z.ZodDefault<z.ZodString>;
|
3563
|
+
bio: z.ZodDefault<z.ZodString>;
|
3564
|
+
did: z.ZodString;
|
3565
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
3566
|
+
email: z.ZodOptional<z.ZodString>;
|
3567
|
+
image: z.ZodOptional<z.ZodString>;
|
3568
|
+
heroImage: z.ZodOptional<z.ZodString>;
|
3569
|
+
websiteLink: z.ZodOptional<z.ZodString>;
|
3570
|
+
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3571
|
+
type: z.ZodOptional<z.ZodString>;
|
3572
|
+
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
3573
|
+
display: z.ZodOptional<z.ZodObject<{
|
3574
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
3575
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
3576
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3577
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3578
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
3579
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
3580
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
3581
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
3582
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3583
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
3584
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
3585
|
+
}, "strip", z.ZodTypeAny, {
|
3586
|
+
backgroundColor?: string | undefined;
|
3587
|
+
backgroundImage?: string | undefined;
|
3588
|
+
fadeBackgroundImage?: boolean | undefined;
|
3589
|
+
repeatBackgroundImage?: boolean | undefined;
|
3590
|
+
fontColor?: string | undefined;
|
3591
|
+
accentColor?: string | undefined;
|
3592
|
+
accentFontColor?: string | undefined;
|
3593
|
+
idBackgroundImage?: string | undefined;
|
3594
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3595
|
+
idBackgroundColor?: string | undefined;
|
3596
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3597
|
+
}, {
|
3598
|
+
backgroundColor?: string | undefined;
|
3599
|
+
backgroundImage?: string | undefined;
|
3600
|
+
fadeBackgroundImage?: boolean | undefined;
|
3601
|
+
repeatBackgroundImage?: boolean | undefined;
|
3602
|
+
fontColor?: string | undefined;
|
3603
|
+
accentColor?: string | undefined;
|
3604
|
+
accentFontColor?: string | undefined;
|
3605
|
+
idBackgroundImage?: string | undefined;
|
3606
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3607
|
+
idBackgroundColor?: string | undefined;
|
3608
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3609
|
+
}>>;
|
3610
|
+
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3611
|
+
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
3612
|
+
}, "strip", z.ZodTypeAny, {
|
3613
|
+
type?: string | undefined;
|
3614
|
+
image?: string | undefined;
|
3615
|
+
email?: string | undefined;
|
3616
|
+
role?: string | undefined;
|
3617
|
+
isPrivate?: boolean | undefined;
|
3618
|
+
heroImage?: string | undefined;
|
3619
|
+
websiteLink?: string | undefined;
|
3620
|
+
isServiceProfile?: boolean | undefined;
|
3621
|
+
notificationsWebhook?: string | undefined;
|
3622
|
+
display?: {
|
3623
|
+
backgroundColor?: string | undefined;
|
3624
|
+
backgroundImage?: string | undefined;
|
3625
|
+
fadeBackgroundImage?: boolean | undefined;
|
3626
|
+
repeatBackgroundImage?: boolean | undefined;
|
3627
|
+
fontColor?: string | undefined;
|
3628
|
+
accentColor?: string | undefined;
|
3629
|
+
accentFontColor?: string | undefined;
|
3630
|
+
idBackgroundImage?: string | undefined;
|
3631
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3632
|
+
idBackgroundColor?: string | undefined;
|
3633
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3634
|
+
} | undefined;
|
3635
|
+
dob?: string | undefined;
|
3636
|
+
profileId: string;
|
3637
|
+
displayName: string;
|
3638
|
+
shortBio: string;
|
3639
|
+
bio: string;
|
3640
|
+
did: string;
|
3641
|
+
}, {
|
3642
|
+
type?: string | undefined;
|
3643
|
+
image?: string | undefined;
|
3644
|
+
email?: string | undefined;
|
3645
|
+
role?: string | undefined;
|
3646
|
+
displayName?: string | undefined;
|
3647
|
+
shortBio?: string | undefined;
|
3648
|
+
bio?: string | undefined;
|
3649
|
+
isPrivate?: boolean | undefined;
|
3650
|
+
heroImage?: string | undefined;
|
3651
|
+
websiteLink?: string | undefined;
|
3652
|
+
isServiceProfile?: boolean | undefined;
|
3653
|
+
notificationsWebhook?: string | undefined;
|
3654
|
+
display?: {
|
3655
|
+
backgroundColor?: string | undefined;
|
3656
|
+
backgroundImage?: string | undefined;
|
3657
|
+
fadeBackgroundImage?: boolean | undefined;
|
3658
|
+
repeatBackgroundImage?: boolean | undefined;
|
3659
|
+
fontColor?: string | undefined;
|
3660
|
+
accentColor?: string | undefined;
|
3661
|
+
accentFontColor?: string | undefined;
|
3662
|
+
idBackgroundImage?: string | undefined;
|
3663
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3664
|
+
idBackgroundColor?: string | undefined;
|
3665
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3666
|
+
} | undefined;
|
3667
|
+
dob?: string | undefined;
|
3668
|
+
profileId: string;
|
3669
|
+
did: string;
|
3670
|
+
}>, "many">>;
|
3559
3671
|
}, "strip", z.ZodTypeAny, {
|
3560
3672
|
description?: string | undefined;
|
3561
3673
|
image?: string | undefined;
|
@@ -3566,6 +3678,36 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3566
3678
|
frontDoorBoostUri?: string | undefined;
|
3567
3679
|
expiresAt?: string | undefined;
|
3568
3680
|
autoBoosts?: string[] | undefined;
|
3681
|
+
writers?: {
|
3682
|
+
type?: string | undefined;
|
3683
|
+
image?: string | undefined;
|
3684
|
+
email?: string | undefined;
|
3685
|
+
role?: string | undefined;
|
3686
|
+
isPrivate?: boolean | undefined;
|
3687
|
+
heroImage?: string | undefined;
|
3688
|
+
websiteLink?: string | undefined;
|
3689
|
+
isServiceProfile?: boolean | undefined;
|
3690
|
+
notificationsWebhook?: string | undefined;
|
3691
|
+
display?: {
|
3692
|
+
backgroundColor?: string | undefined;
|
3693
|
+
backgroundImage?: string | undefined;
|
3694
|
+
fadeBackgroundImage?: boolean | undefined;
|
3695
|
+
repeatBackgroundImage?: boolean | undefined;
|
3696
|
+
fontColor?: string | undefined;
|
3697
|
+
accentColor?: string | undefined;
|
3698
|
+
accentFontColor?: string | undefined;
|
3699
|
+
idBackgroundImage?: string | undefined;
|
3700
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3701
|
+
idBackgroundColor?: string | undefined;
|
3702
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3703
|
+
} | undefined;
|
3704
|
+
dob?: string | undefined;
|
3705
|
+
profileId: string;
|
3706
|
+
displayName: string;
|
3707
|
+
shortBio: string;
|
3708
|
+
bio: string;
|
3709
|
+
did: string;
|
3710
|
+
}[] | undefined;
|
3569
3711
|
name: string;
|
3570
3712
|
createdAt: string;
|
3571
3713
|
uri: string;
|
@@ -3633,6 +3775,36 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
3633
3775
|
frontDoorBoostUri?: string | undefined;
|
3634
3776
|
expiresAt?: string | undefined;
|
3635
3777
|
autoBoosts?: string[] | undefined;
|
3778
|
+
writers?: {
|
3779
|
+
type?: string | undefined;
|
3780
|
+
image?: string | undefined;
|
3781
|
+
email?: string | undefined;
|
3782
|
+
role?: string | undefined;
|
3783
|
+
displayName?: string | undefined;
|
3784
|
+
shortBio?: string | undefined;
|
3785
|
+
bio?: string | undefined;
|
3786
|
+
isPrivate?: boolean | undefined;
|
3787
|
+
heroImage?: string | undefined;
|
3788
|
+
websiteLink?: string | undefined;
|
3789
|
+
isServiceProfile?: boolean | undefined;
|
3790
|
+
notificationsWebhook?: string | undefined;
|
3791
|
+
display?: {
|
3792
|
+
backgroundColor?: string | undefined;
|
3793
|
+
backgroundImage?: string | undefined;
|
3794
|
+
fadeBackgroundImage?: boolean | undefined;
|
3795
|
+
repeatBackgroundImage?: boolean | undefined;
|
3796
|
+
fontColor?: string | undefined;
|
3797
|
+
accentColor?: string | undefined;
|
3798
|
+
accentFontColor?: string | undefined;
|
3799
|
+
idBackgroundImage?: string | undefined;
|
3800
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
3801
|
+
idBackgroundColor?: string | undefined;
|
3802
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
3803
|
+
} | undefined;
|
3804
|
+
dob?: string | undefined;
|
3805
|
+
profileId: string;
|
3806
|
+
did: string;
|
3807
|
+
}[] | undefined;
|
3636
3808
|
name: string;
|
3637
3809
|
createdAt: string;
|
3638
3810
|
uri: string;
|
@@ -3960,6 +4132,118 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
3960
4132
|
updatedAt: z.ZodString;
|
3961
4133
|
expiresAt: z.ZodOptional<z.ZodString>;
|
3962
4134
|
autoBoosts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4135
|
+
writers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
4136
|
+
profileId: z.ZodString;
|
4137
|
+
displayName: z.ZodDefault<z.ZodString>;
|
4138
|
+
shortBio: z.ZodDefault<z.ZodString>;
|
4139
|
+
bio: z.ZodDefault<z.ZodString>;
|
4140
|
+
did: z.ZodString;
|
4141
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
4142
|
+
email: z.ZodOptional<z.ZodString>;
|
4143
|
+
image: z.ZodOptional<z.ZodString>;
|
4144
|
+
heroImage: z.ZodOptional<z.ZodString>;
|
4145
|
+
websiteLink: z.ZodOptional<z.ZodString>;
|
4146
|
+
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4147
|
+
type: z.ZodOptional<z.ZodString>;
|
4148
|
+
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
4149
|
+
display: z.ZodOptional<z.ZodObject<{
|
4150
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
4151
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
4152
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
4153
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
4154
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
4155
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
4156
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
4157
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
4158
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
4159
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
4160
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
4161
|
+
}, "strip", z.ZodTypeAny, {
|
4162
|
+
backgroundColor?: string | undefined;
|
4163
|
+
backgroundImage?: string | undefined;
|
4164
|
+
fadeBackgroundImage?: boolean | undefined;
|
4165
|
+
repeatBackgroundImage?: boolean | undefined;
|
4166
|
+
fontColor?: string | undefined;
|
4167
|
+
accentColor?: string | undefined;
|
4168
|
+
accentFontColor?: string | undefined;
|
4169
|
+
idBackgroundImage?: string | undefined;
|
4170
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
4171
|
+
idBackgroundColor?: string | undefined;
|
4172
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
4173
|
+
}, {
|
4174
|
+
backgroundColor?: string | undefined;
|
4175
|
+
backgroundImage?: string | undefined;
|
4176
|
+
fadeBackgroundImage?: boolean | undefined;
|
4177
|
+
repeatBackgroundImage?: boolean | undefined;
|
4178
|
+
fontColor?: string | undefined;
|
4179
|
+
accentColor?: string | undefined;
|
4180
|
+
accentFontColor?: string | undefined;
|
4181
|
+
idBackgroundImage?: string | undefined;
|
4182
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
4183
|
+
idBackgroundColor?: string | undefined;
|
4184
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
4185
|
+
}>>;
|
4186
|
+
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4187
|
+
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
4188
|
+
}, "strip", z.ZodTypeAny, {
|
4189
|
+
type?: string | undefined;
|
4190
|
+
image?: string | undefined;
|
4191
|
+
email?: string | undefined;
|
4192
|
+
role?: string | undefined;
|
4193
|
+
isPrivate?: boolean | undefined;
|
4194
|
+
heroImage?: string | undefined;
|
4195
|
+
websiteLink?: string | undefined;
|
4196
|
+
isServiceProfile?: boolean | undefined;
|
4197
|
+
notificationsWebhook?: string | undefined;
|
4198
|
+
display?: {
|
4199
|
+
backgroundColor?: string | undefined;
|
4200
|
+
backgroundImage?: string | undefined;
|
4201
|
+
fadeBackgroundImage?: boolean | undefined;
|
4202
|
+
repeatBackgroundImage?: boolean | undefined;
|
4203
|
+
fontColor?: string | undefined;
|
4204
|
+
accentColor?: string | undefined;
|
4205
|
+
accentFontColor?: string | undefined;
|
4206
|
+
idBackgroundImage?: string | undefined;
|
4207
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
4208
|
+
idBackgroundColor?: string | undefined;
|
4209
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
4210
|
+
} | undefined;
|
4211
|
+
dob?: string | undefined;
|
4212
|
+
profileId: string;
|
4213
|
+
displayName: string;
|
4214
|
+
shortBio: string;
|
4215
|
+
bio: string;
|
4216
|
+
did: string;
|
4217
|
+
}, {
|
4218
|
+
type?: string | undefined;
|
4219
|
+
image?: string | undefined;
|
4220
|
+
email?: string | undefined;
|
4221
|
+
role?: string | undefined;
|
4222
|
+
displayName?: string | undefined;
|
4223
|
+
shortBio?: string | undefined;
|
4224
|
+
bio?: string | undefined;
|
4225
|
+
isPrivate?: boolean | undefined;
|
4226
|
+
heroImage?: string | undefined;
|
4227
|
+
websiteLink?: string | undefined;
|
4228
|
+
isServiceProfile?: boolean | undefined;
|
4229
|
+
notificationsWebhook?: string | undefined;
|
4230
|
+
display?: {
|
4231
|
+
backgroundColor?: string | undefined;
|
4232
|
+
backgroundImage?: string | undefined;
|
4233
|
+
fadeBackgroundImage?: boolean | undefined;
|
4234
|
+
repeatBackgroundImage?: boolean | undefined;
|
4235
|
+
fontColor?: string | undefined;
|
4236
|
+
accentColor?: string | undefined;
|
4237
|
+
accentFontColor?: string | undefined;
|
4238
|
+
idBackgroundImage?: string | undefined;
|
4239
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
4240
|
+
idBackgroundColor?: string | undefined;
|
4241
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
4242
|
+
} | undefined;
|
4243
|
+
dob?: string | undefined;
|
4244
|
+
profileId: string;
|
4245
|
+
did: string;
|
4246
|
+
}>, "many">>;
|
3963
4247
|
}, "owner">, "strip", z.ZodTypeAny, {
|
3964
4248
|
description?: string | undefined;
|
3965
4249
|
image?: string | undefined;
|
@@ -3970,6 +4254,36 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
3970
4254
|
frontDoorBoostUri?: string | undefined;
|
3971
4255
|
expiresAt?: string | undefined;
|
3972
4256
|
autoBoosts?: string[] | undefined;
|
4257
|
+
writers?: {
|
4258
|
+
type?: string | undefined;
|
4259
|
+
image?: string | undefined;
|
4260
|
+
email?: string | undefined;
|
4261
|
+
role?: string | undefined;
|
4262
|
+
isPrivate?: boolean | undefined;
|
4263
|
+
heroImage?: string | undefined;
|
4264
|
+
websiteLink?: string | undefined;
|
4265
|
+
isServiceProfile?: boolean | undefined;
|
4266
|
+
notificationsWebhook?: string | undefined;
|
4267
|
+
display?: {
|
4268
|
+
backgroundColor?: string | undefined;
|
4269
|
+
backgroundImage?: string | undefined;
|
4270
|
+
fadeBackgroundImage?: boolean | undefined;
|
4271
|
+
repeatBackgroundImage?: boolean | undefined;
|
4272
|
+
fontColor?: string | undefined;
|
4273
|
+
accentColor?: string | undefined;
|
4274
|
+
accentFontColor?: string | undefined;
|
4275
|
+
idBackgroundImage?: string | undefined;
|
4276
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
4277
|
+
idBackgroundColor?: string | undefined;
|
4278
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
4279
|
+
} | undefined;
|
4280
|
+
dob?: string | undefined;
|
4281
|
+
profileId: string;
|
4282
|
+
displayName: string;
|
4283
|
+
shortBio: string;
|
4284
|
+
bio: string;
|
4285
|
+
did: string;
|
4286
|
+
}[] | undefined;
|
3973
4287
|
name: string;
|
3974
4288
|
createdAt: string;
|
3975
4289
|
uri: string;
|
@@ -4007,6 +4321,36 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4007
4321
|
frontDoorBoostUri?: string | undefined;
|
4008
4322
|
expiresAt?: string | undefined;
|
4009
4323
|
autoBoosts?: string[] | undefined;
|
4324
|
+
writers?: {
|
4325
|
+
type?: string | undefined;
|
4326
|
+
image?: string | undefined;
|
4327
|
+
email?: string | undefined;
|
4328
|
+
role?: string | undefined;
|
4329
|
+
displayName?: string | undefined;
|
4330
|
+
shortBio?: string | undefined;
|
4331
|
+
bio?: string | undefined;
|
4332
|
+
isPrivate?: boolean | undefined;
|
4333
|
+
heroImage?: string | undefined;
|
4334
|
+
websiteLink?: string | undefined;
|
4335
|
+
isServiceProfile?: boolean | undefined;
|
4336
|
+
notificationsWebhook?: string | undefined;
|
4337
|
+
display?: {
|
4338
|
+
backgroundColor?: string | undefined;
|
4339
|
+
backgroundImage?: string | undefined;
|
4340
|
+
fadeBackgroundImage?: boolean | undefined;
|
4341
|
+
repeatBackgroundImage?: boolean | undefined;
|
4342
|
+
fontColor?: string | undefined;
|
4343
|
+
accentColor?: string | undefined;
|
4344
|
+
accentFontColor?: string | undefined;
|
4345
|
+
idBackgroundImage?: string | undefined;
|
4346
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
4347
|
+
idBackgroundColor?: string | undefined;
|
4348
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
4349
|
+
} | undefined;
|
4350
|
+
dob?: string | undefined;
|
4351
|
+
profileId: string;
|
4352
|
+
did: string;
|
4353
|
+
}[] | undefined;
|
4010
4354
|
name: string;
|
4011
4355
|
createdAt: string;
|
4012
4356
|
uri: string;
|
@@ -4048,6 +4392,36 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4048
4392
|
frontDoorBoostUri?: string | undefined;
|
4049
4393
|
expiresAt?: string | undefined;
|
4050
4394
|
autoBoosts?: string[] | undefined;
|
4395
|
+
writers?: {
|
4396
|
+
type?: string | undefined;
|
4397
|
+
image?: string | undefined;
|
4398
|
+
email?: string | undefined;
|
4399
|
+
role?: string | undefined;
|
4400
|
+
isPrivate?: boolean | undefined;
|
4401
|
+
heroImage?: string | undefined;
|
4402
|
+
websiteLink?: string | undefined;
|
4403
|
+
isServiceProfile?: boolean | undefined;
|
4404
|
+
notificationsWebhook?: string | undefined;
|
4405
|
+
display?: {
|
4406
|
+
backgroundColor?: string | undefined;
|
4407
|
+
backgroundImage?: string | undefined;
|
4408
|
+
fadeBackgroundImage?: boolean | undefined;
|
4409
|
+
repeatBackgroundImage?: boolean | undefined;
|
4410
|
+
fontColor?: string | undefined;
|
4411
|
+
accentColor?: string | undefined;
|
4412
|
+
accentFontColor?: string | undefined;
|
4413
|
+
idBackgroundImage?: string | undefined;
|
4414
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
4415
|
+
idBackgroundColor?: string | undefined;
|
4416
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
4417
|
+
} | undefined;
|
4418
|
+
dob?: string | undefined;
|
4419
|
+
profileId: string;
|
4420
|
+
displayName: string;
|
4421
|
+
shortBio: string;
|
4422
|
+
bio: string;
|
4423
|
+
did: string;
|
4424
|
+
}[] | undefined;
|
4051
4425
|
name: string;
|
4052
4426
|
createdAt: string;
|
4053
4427
|
uri: string;
|
@@ -4089,6 +4463,36 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
4089
4463
|
frontDoorBoostUri?: string | undefined;
|
4090
4464
|
expiresAt?: string | undefined;
|
4091
4465
|
autoBoosts?: string[] | undefined;
|
4466
|
+
writers?: {
|
4467
|
+
type?: string | undefined;
|
4468
|
+
image?: string | undefined;
|
4469
|
+
email?: string | undefined;
|
4470
|
+
role?: string | undefined;
|
4471
|
+
displayName?: string | undefined;
|
4472
|
+
shortBio?: string | undefined;
|
4473
|
+
bio?: string | undefined;
|
4474
|
+
isPrivate?: boolean | undefined;
|
4475
|
+
heroImage?: string | undefined;
|
4476
|
+
websiteLink?: string | undefined;
|
4477
|
+
isServiceProfile?: boolean | undefined;
|
4478
|
+
notificationsWebhook?: string | undefined;
|
4479
|
+
display?: {
|
4480
|
+
backgroundColor?: string | undefined;
|
4481
|
+
backgroundImage?: string | undefined;
|
4482
|
+
fadeBackgroundImage?: boolean | undefined;
|
4483
|
+
repeatBackgroundImage?: boolean | undefined;
|
4484
|
+
fontColor?: string | undefined;
|
4485
|
+
accentColor?: string | undefined;
|
4486
|
+
accentFontColor?: string | undefined;
|
4487
|
+
idBackgroundImage?: string | undefined;
|
4488
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
4489
|
+
idBackgroundColor?: string | undefined;
|
4490
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
4491
|
+
} | undefined;
|
4492
|
+
dob?: string | undefined;
|
4493
|
+
profileId: string;
|
4494
|
+
did: string;
|
4495
|
+
}[] | undefined;
|
4092
4496
|
name: string;
|
4093
4497
|
createdAt: string;
|
4094
4498
|
uri: string;
|
@@ -4391,7 +4795,9 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
|
|
4391
4795
|
} | undefined;
|
4392
4796
|
personal?: Record<string, boolean> | undefined;
|
4393
4797
|
}>>;
|
4798
|
+
deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4394
4799
|
}, "strip", z.ZodTypeAny, {
|
4800
|
+
deniedWriters?: string[] | undefined;
|
4395
4801
|
read: {
|
4396
4802
|
anonymize?: boolean | undefined;
|
4397
4803
|
credentials: {
|
@@ -4433,6 +4839,7 @@ export declare const ConsentFlowTermsValidator: z.ZodObject<{
|
|
4433
4839
|
} | undefined;
|
4434
4840
|
personal?: Record<string, boolean> | undefined;
|
4435
4841
|
} | undefined;
|
4842
|
+
deniedWriters?: string[] | undefined;
|
4436
4843
|
}>;
|
4437
4844
|
export type ConsentFlowTerms = z.infer<typeof ConsentFlowTermsValidator>;
|
4438
4845
|
export type ConsentFlowTermsInput = z.input<typeof ConsentFlowTermsValidator>;
|
@@ -4532,7 +4939,9 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
4532
4939
|
} | undefined;
|
4533
4940
|
personal?: Record<string, boolean> | undefined;
|
4534
4941
|
}>>;
|
4942
|
+
deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
4535
4943
|
}, "strip", z.ZodTypeAny, {
|
4944
|
+
deniedWriters?: string[] | undefined;
|
4536
4945
|
read: {
|
4537
4946
|
anonymize?: boolean | undefined;
|
4538
4947
|
credentials: {
|
@@ -4574,6 +4983,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
4574
4983
|
} | undefined;
|
4575
4984
|
personal?: Record<string, boolean> | undefined;
|
4576
4985
|
} | undefined;
|
4986
|
+
deniedWriters?: string[] | undefined;
|
4577
4987
|
}>;
|
4578
4988
|
contract: z.ZodObject<{
|
4579
4989
|
contract: z.ZodObject<{
|
@@ -4702,18 +5112,143 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
4702
5112
|
required: boolean;
|
4703
5113
|
}> | undefined;
|
4704
5114
|
} | undefined;
|
4705
|
-
write?: {
|
4706
|
-
credentials?: {
|
4707
|
-
categories?: Record<string, {
|
4708
|
-
required: boolean;
|
4709
|
-
}> | undefined;
|
4710
|
-
} | undefined;
|
4711
|
-
personal?: Record<string, {
|
4712
|
-
required: boolean;
|
4713
|
-
}> | undefined;
|
5115
|
+
write?: {
|
5116
|
+
credentials?: {
|
5117
|
+
categories?: Record<string, {
|
5118
|
+
required: boolean;
|
5119
|
+
}> | undefined;
|
5120
|
+
} | undefined;
|
5121
|
+
personal?: Record<string, {
|
5122
|
+
required: boolean;
|
5123
|
+
}> | undefined;
|
5124
|
+
} | undefined;
|
5125
|
+
}>;
|
5126
|
+
owner: z.ZodObject<{
|
5127
|
+
profileId: z.ZodString;
|
5128
|
+
displayName: z.ZodDefault<z.ZodString>;
|
5129
|
+
shortBio: z.ZodDefault<z.ZodString>;
|
5130
|
+
bio: z.ZodDefault<z.ZodString>;
|
5131
|
+
did: z.ZodString;
|
5132
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
5133
|
+
email: z.ZodOptional<z.ZodString>;
|
5134
|
+
image: z.ZodOptional<z.ZodString>;
|
5135
|
+
heroImage: z.ZodOptional<z.ZodString>;
|
5136
|
+
websiteLink: z.ZodOptional<z.ZodString>;
|
5137
|
+
isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5138
|
+
type: z.ZodOptional<z.ZodString>;
|
5139
|
+
notificationsWebhook: z.ZodOptional<z.ZodString>;
|
5140
|
+
display: z.ZodOptional<z.ZodObject<{
|
5141
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
5142
|
+
backgroundImage: z.ZodOptional<z.ZodString>;
|
5143
|
+
fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
5144
|
+
repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
5145
|
+
fontColor: z.ZodOptional<z.ZodString>;
|
5146
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
5147
|
+
accentFontColor: z.ZodOptional<z.ZodString>;
|
5148
|
+
idBackgroundImage: z.ZodOptional<z.ZodString>;
|
5149
|
+
fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
5150
|
+
idBackgroundColor: z.ZodOptional<z.ZodString>;
|
5151
|
+
repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
|
5152
|
+
}, "strip", z.ZodTypeAny, {
|
5153
|
+
backgroundColor?: string | undefined;
|
5154
|
+
backgroundImage?: string | undefined;
|
5155
|
+
fadeBackgroundImage?: boolean | undefined;
|
5156
|
+
repeatBackgroundImage?: boolean | undefined;
|
5157
|
+
fontColor?: string | undefined;
|
5158
|
+
accentColor?: string | undefined;
|
5159
|
+
accentFontColor?: string | undefined;
|
5160
|
+
idBackgroundImage?: string | undefined;
|
5161
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5162
|
+
idBackgroundColor?: string | undefined;
|
5163
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5164
|
+
}, {
|
5165
|
+
backgroundColor?: string | undefined;
|
5166
|
+
backgroundImage?: string | undefined;
|
5167
|
+
fadeBackgroundImage?: boolean | undefined;
|
5168
|
+
repeatBackgroundImage?: boolean | undefined;
|
5169
|
+
fontColor?: string | undefined;
|
5170
|
+
accentColor?: string | undefined;
|
5171
|
+
accentFontColor?: string | undefined;
|
5172
|
+
idBackgroundImage?: string | undefined;
|
5173
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5174
|
+
idBackgroundColor?: string | undefined;
|
5175
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5176
|
+
}>>;
|
5177
|
+
role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5178
|
+
dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
5179
|
+
}, "strip", z.ZodTypeAny, {
|
5180
|
+
type?: string | undefined;
|
5181
|
+
image?: string | undefined;
|
5182
|
+
email?: string | undefined;
|
5183
|
+
role?: string | undefined;
|
5184
|
+
isPrivate?: boolean | undefined;
|
5185
|
+
heroImage?: string | undefined;
|
5186
|
+
websiteLink?: string | undefined;
|
5187
|
+
isServiceProfile?: boolean | undefined;
|
5188
|
+
notificationsWebhook?: string | undefined;
|
5189
|
+
display?: {
|
5190
|
+
backgroundColor?: string | undefined;
|
5191
|
+
backgroundImage?: string | undefined;
|
5192
|
+
fadeBackgroundImage?: boolean | undefined;
|
5193
|
+
repeatBackgroundImage?: boolean | undefined;
|
5194
|
+
fontColor?: string | undefined;
|
5195
|
+
accentColor?: string | undefined;
|
5196
|
+
accentFontColor?: string | undefined;
|
5197
|
+
idBackgroundImage?: string | undefined;
|
5198
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5199
|
+
idBackgroundColor?: string | undefined;
|
5200
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5201
|
+
} | undefined;
|
5202
|
+
dob?: string | undefined;
|
5203
|
+
profileId: string;
|
5204
|
+
displayName: string;
|
5205
|
+
shortBio: string;
|
5206
|
+
bio: string;
|
5207
|
+
did: string;
|
5208
|
+
}, {
|
5209
|
+
type?: string | undefined;
|
5210
|
+
image?: string | undefined;
|
5211
|
+
email?: string | undefined;
|
5212
|
+
role?: string | undefined;
|
5213
|
+
displayName?: string | undefined;
|
5214
|
+
shortBio?: string | undefined;
|
5215
|
+
bio?: string | undefined;
|
5216
|
+
isPrivate?: boolean | undefined;
|
5217
|
+
heroImage?: string | undefined;
|
5218
|
+
websiteLink?: string | undefined;
|
5219
|
+
isServiceProfile?: boolean | undefined;
|
5220
|
+
notificationsWebhook?: string | undefined;
|
5221
|
+
display?: {
|
5222
|
+
backgroundColor?: string | undefined;
|
5223
|
+
backgroundImage?: string | undefined;
|
5224
|
+
fadeBackgroundImage?: boolean | undefined;
|
5225
|
+
repeatBackgroundImage?: boolean | undefined;
|
5226
|
+
fontColor?: string | undefined;
|
5227
|
+
accentColor?: string | undefined;
|
5228
|
+
accentFontColor?: string | undefined;
|
5229
|
+
idBackgroundImage?: string | undefined;
|
5230
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5231
|
+
idBackgroundColor?: string | undefined;
|
5232
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
4714
5233
|
} | undefined;
|
5234
|
+
dob?: string | undefined;
|
5235
|
+
profileId: string;
|
5236
|
+
did: string;
|
4715
5237
|
}>;
|
4716
|
-
|
5238
|
+
name: z.ZodString;
|
5239
|
+
subtitle: z.ZodOptional<z.ZodString>;
|
5240
|
+
description: z.ZodOptional<z.ZodString>;
|
5241
|
+
reasonForAccessing: z.ZodOptional<z.ZodString>;
|
5242
|
+
image: z.ZodOptional<z.ZodString>;
|
5243
|
+
uri: z.ZodString;
|
5244
|
+
needsGuardianConsent: z.ZodOptional<z.ZodBoolean>;
|
5245
|
+
redirectUrl: z.ZodOptional<z.ZodString>;
|
5246
|
+
frontDoorBoostUri: z.ZodOptional<z.ZodString>;
|
5247
|
+
createdAt: z.ZodString;
|
5248
|
+
updatedAt: z.ZodString;
|
5249
|
+
expiresAt: z.ZodOptional<z.ZodString>;
|
5250
|
+
autoBoosts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
5251
|
+
writers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
4717
5252
|
profileId: z.ZodString;
|
4718
5253
|
displayName: z.ZodDefault<z.ZodString>;
|
4719
5254
|
shortBio: z.ZodDefault<z.ZodString>;
|
@@ -4824,20 +5359,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
4824
5359
|
dob?: string | undefined;
|
4825
5360
|
profileId: string;
|
4826
5361
|
did: string;
|
4827
|
-
}
|
4828
|
-
name: z.ZodString;
|
4829
|
-
subtitle: z.ZodOptional<z.ZodString>;
|
4830
|
-
description: z.ZodOptional<z.ZodString>;
|
4831
|
-
reasonForAccessing: z.ZodOptional<z.ZodString>;
|
4832
|
-
image: z.ZodOptional<z.ZodString>;
|
4833
|
-
uri: z.ZodString;
|
4834
|
-
needsGuardianConsent: z.ZodOptional<z.ZodBoolean>;
|
4835
|
-
redirectUrl: z.ZodOptional<z.ZodString>;
|
4836
|
-
frontDoorBoostUri: z.ZodOptional<z.ZodString>;
|
4837
|
-
createdAt: z.ZodString;
|
4838
|
-
updatedAt: z.ZodString;
|
4839
|
-
expiresAt: z.ZodOptional<z.ZodString>;
|
4840
|
-
autoBoosts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
5362
|
+
}>, "many">>;
|
4841
5363
|
}, "strip", z.ZodTypeAny, {
|
4842
5364
|
description?: string | undefined;
|
4843
5365
|
image?: string | undefined;
|
@@ -4848,6 +5370,36 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
4848
5370
|
frontDoorBoostUri?: string | undefined;
|
4849
5371
|
expiresAt?: string | undefined;
|
4850
5372
|
autoBoosts?: string[] | undefined;
|
5373
|
+
writers?: {
|
5374
|
+
type?: string | undefined;
|
5375
|
+
image?: string | undefined;
|
5376
|
+
email?: string | undefined;
|
5377
|
+
role?: string | undefined;
|
5378
|
+
isPrivate?: boolean | undefined;
|
5379
|
+
heroImage?: string | undefined;
|
5380
|
+
websiteLink?: string | undefined;
|
5381
|
+
isServiceProfile?: boolean | undefined;
|
5382
|
+
notificationsWebhook?: string | undefined;
|
5383
|
+
display?: {
|
5384
|
+
backgroundColor?: string | undefined;
|
5385
|
+
backgroundImage?: string | undefined;
|
5386
|
+
fadeBackgroundImage?: boolean | undefined;
|
5387
|
+
repeatBackgroundImage?: boolean | undefined;
|
5388
|
+
fontColor?: string | undefined;
|
5389
|
+
accentColor?: string | undefined;
|
5390
|
+
accentFontColor?: string | undefined;
|
5391
|
+
idBackgroundImage?: string | undefined;
|
5392
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5393
|
+
idBackgroundColor?: string | undefined;
|
5394
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5395
|
+
} | undefined;
|
5396
|
+
dob?: string | undefined;
|
5397
|
+
profileId: string;
|
5398
|
+
displayName: string;
|
5399
|
+
shortBio: string;
|
5400
|
+
bio: string;
|
5401
|
+
did: string;
|
5402
|
+
}[] | undefined;
|
4851
5403
|
name: string;
|
4852
5404
|
createdAt: string;
|
4853
5405
|
uri: string;
|
@@ -4915,6 +5467,36 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
4915
5467
|
frontDoorBoostUri?: string | undefined;
|
4916
5468
|
expiresAt?: string | undefined;
|
4917
5469
|
autoBoosts?: string[] | undefined;
|
5470
|
+
writers?: {
|
5471
|
+
type?: string | undefined;
|
5472
|
+
image?: string | undefined;
|
5473
|
+
email?: string | undefined;
|
5474
|
+
role?: string | undefined;
|
5475
|
+
displayName?: string | undefined;
|
5476
|
+
shortBio?: string | undefined;
|
5477
|
+
bio?: string | undefined;
|
5478
|
+
isPrivate?: boolean | undefined;
|
5479
|
+
heroImage?: string | undefined;
|
5480
|
+
websiteLink?: string | undefined;
|
5481
|
+
isServiceProfile?: boolean | undefined;
|
5482
|
+
notificationsWebhook?: string | undefined;
|
5483
|
+
display?: {
|
5484
|
+
backgroundColor?: string | undefined;
|
5485
|
+
backgroundImage?: string | undefined;
|
5486
|
+
fadeBackgroundImage?: boolean | undefined;
|
5487
|
+
repeatBackgroundImage?: boolean | undefined;
|
5488
|
+
fontColor?: string | undefined;
|
5489
|
+
accentColor?: string | undefined;
|
5490
|
+
accentFontColor?: string | undefined;
|
5491
|
+
idBackgroundImage?: string | undefined;
|
5492
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5493
|
+
idBackgroundColor?: string | undefined;
|
5494
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5495
|
+
} | undefined;
|
5496
|
+
dob?: string | undefined;
|
5497
|
+
profileId: string;
|
5498
|
+
did: string;
|
5499
|
+
}[] | undefined;
|
4918
5500
|
name: string;
|
4919
5501
|
createdAt: string;
|
4920
5502
|
uri: string;
|
@@ -5102,6 +5684,36 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5102
5684
|
frontDoorBoostUri?: string | undefined;
|
5103
5685
|
expiresAt?: string | undefined;
|
5104
5686
|
autoBoosts?: string[] | undefined;
|
5687
|
+
writers?: {
|
5688
|
+
type?: string | undefined;
|
5689
|
+
image?: string | undefined;
|
5690
|
+
email?: string | undefined;
|
5691
|
+
role?: string | undefined;
|
5692
|
+
isPrivate?: boolean | undefined;
|
5693
|
+
heroImage?: string | undefined;
|
5694
|
+
websiteLink?: string | undefined;
|
5695
|
+
isServiceProfile?: boolean | undefined;
|
5696
|
+
notificationsWebhook?: string | undefined;
|
5697
|
+
display?: {
|
5698
|
+
backgroundColor?: string | undefined;
|
5699
|
+
backgroundImage?: string | undefined;
|
5700
|
+
fadeBackgroundImage?: boolean | undefined;
|
5701
|
+
repeatBackgroundImage?: boolean | undefined;
|
5702
|
+
fontColor?: string | undefined;
|
5703
|
+
accentColor?: string | undefined;
|
5704
|
+
accentFontColor?: string | undefined;
|
5705
|
+
idBackgroundImage?: string | undefined;
|
5706
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5707
|
+
idBackgroundColor?: string | undefined;
|
5708
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5709
|
+
} | undefined;
|
5710
|
+
dob?: string | undefined;
|
5711
|
+
profileId: string;
|
5712
|
+
displayName: string;
|
5713
|
+
shortBio: string;
|
5714
|
+
bio: string;
|
5715
|
+
did: string;
|
5716
|
+
}[] | undefined;
|
5105
5717
|
name: string;
|
5106
5718
|
createdAt: string;
|
5107
5719
|
uri: string;
|
@@ -5161,6 +5773,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5161
5773
|
};
|
5162
5774
|
};
|
5163
5775
|
terms: {
|
5776
|
+
deniedWriters?: string[] | undefined;
|
5164
5777
|
read: {
|
5165
5778
|
anonymize?: boolean | undefined;
|
5166
5779
|
credentials: {
|
@@ -5227,6 +5840,36 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5227
5840
|
frontDoorBoostUri?: string | undefined;
|
5228
5841
|
expiresAt?: string | undefined;
|
5229
5842
|
autoBoosts?: string[] | undefined;
|
5843
|
+
writers?: {
|
5844
|
+
type?: string | undefined;
|
5845
|
+
image?: string | undefined;
|
5846
|
+
email?: string | undefined;
|
5847
|
+
role?: string | undefined;
|
5848
|
+
displayName?: string | undefined;
|
5849
|
+
shortBio?: string | undefined;
|
5850
|
+
bio?: string | undefined;
|
5851
|
+
isPrivate?: boolean | undefined;
|
5852
|
+
heroImage?: string | undefined;
|
5853
|
+
websiteLink?: string | undefined;
|
5854
|
+
isServiceProfile?: boolean | undefined;
|
5855
|
+
notificationsWebhook?: string | undefined;
|
5856
|
+
display?: {
|
5857
|
+
backgroundColor?: string | undefined;
|
5858
|
+
backgroundImage?: string | undefined;
|
5859
|
+
fadeBackgroundImage?: boolean | undefined;
|
5860
|
+
repeatBackgroundImage?: boolean | undefined;
|
5861
|
+
fontColor?: string | undefined;
|
5862
|
+
accentColor?: string | undefined;
|
5863
|
+
accentFontColor?: string | undefined;
|
5864
|
+
idBackgroundImage?: string | undefined;
|
5865
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
5866
|
+
idBackgroundColor?: string | undefined;
|
5867
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
5868
|
+
} | undefined;
|
5869
|
+
dob?: string | undefined;
|
5870
|
+
profileId: string;
|
5871
|
+
did: string;
|
5872
|
+
}[] | undefined;
|
5230
5873
|
name: string;
|
5231
5874
|
createdAt: string;
|
5232
5875
|
uri: string;
|
@@ -5306,6 +5949,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5306
5949
|
} | undefined;
|
5307
5950
|
personal?: Record<string, boolean> | undefined;
|
5308
5951
|
} | undefined;
|
5952
|
+
deniedWriters?: string[] | undefined;
|
5309
5953
|
};
|
5310
5954
|
consenter: {
|
5311
5955
|
type?: string | undefined;
|
@@ -5356,6 +6000,36 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5356
6000
|
frontDoorBoostUri?: string | undefined;
|
5357
6001
|
expiresAt?: string | undefined;
|
5358
6002
|
autoBoosts?: string[] | undefined;
|
6003
|
+
writers?: {
|
6004
|
+
type?: string | undefined;
|
6005
|
+
image?: string | undefined;
|
6006
|
+
email?: string | undefined;
|
6007
|
+
role?: string | undefined;
|
6008
|
+
isPrivate?: boolean | undefined;
|
6009
|
+
heroImage?: string | undefined;
|
6010
|
+
websiteLink?: string | undefined;
|
6011
|
+
isServiceProfile?: boolean | undefined;
|
6012
|
+
notificationsWebhook?: string | undefined;
|
6013
|
+
display?: {
|
6014
|
+
backgroundColor?: string | undefined;
|
6015
|
+
backgroundImage?: string | undefined;
|
6016
|
+
fadeBackgroundImage?: boolean | undefined;
|
6017
|
+
repeatBackgroundImage?: boolean | undefined;
|
6018
|
+
fontColor?: string | undefined;
|
6019
|
+
accentColor?: string | undefined;
|
6020
|
+
accentFontColor?: string | undefined;
|
6021
|
+
idBackgroundImage?: string | undefined;
|
6022
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
6023
|
+
idBackgroundColor?: string | undefined;
|
6024
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
6025
|
+
} | undefined;
|
6026
|
+
dob?: string | undefined;
|
6027
|
+
profileId: string;
|
6028
|
+
displayName: string;
|
6029
|
+
shortBio: string;
|
6030
|
+
bio: string;
|
6031
|
+
did: string;
|
6032
|
+
}[] | undefined;
|
5359
6033
|
name: string;
|
5360
6034
|
createdAt: string;
|
5361
6035
|
uri: string;
|
@@ -5415,6 +6089,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5415
6089
|
};
|
5416
6090
|
};
|
5417
6091
|
terms: {
|
6092
|
+
deniedWriters?: string[] | undefined;
|
5418
6093
|
read: {
|
5419
6094
|
anonymize?: boolean | undefined;
|
5420
6095
|
credentials: {
|
@@ -5485,6 +6160,36 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5485
6160
|
frontDoorBoostUri?: string | undefined;
|
5486
6161
|
expiresAt?: string | undefined;
|
5487
6162
|
autoBoosts?: string[] | undefined;
|
6163
|
+
writers?: {
|
6164
|
+
type?: string | undefined;
|
6165
|
+
image?: string | undefined;
|
6166
|
+
email?: string | undefined;
|
6167
|
+
role?: string | undefined;
|
6168
|
+
displayName?: string | undefined;
|
6169
|
+
shortBio?: string | undefined;
|
6170
|
+
bio?: string | undefined;
|
6171
|
+
isPrivate?: boolean | undefined;
|
6172
|
+
heroImage?: string | undefined;
|
6173
|
+
websiteLink?: string | undefined;
|
6174
|
+
isServiceProfile?: boolean | undefined;
|
6175
|
+
notificationsWebhook?: string | undefined;
|
6176
|
+
display?: {
|
6177
|
+
backgroundColor?: string | undefined;
|
6178
|
+
backgroundImage?: string | undefined;
|
6179
|
+
fadeBackgroundImage?: boolean | undefined;
|
6180
|
+
repeatBackgroundImage?: boolean | undefined;
|
6181
|
+
fontColor?: string | undefined;
|
6182
|
+
accentColor?: string | undefined;
|
6183
|
+
accentFontColor?: string | undefined;
|
6184
|
+
idBackgroundImage?: string | undefined;
|
6185
|
+
fadeIdBackgroundImage?: boolean | undefined;
|
6186
|
+
idBackgroundColor?: string | undefined;
|
6187
|
+
repeatIdBackgroundImage?: boolean | undefined;
|
6188
|
+
} | undefined;
|
6189
|
+
dob?: string | undefined;
|
6190
|
+
profileId: string;
|
6191
|
+
did: string;
|
6192
|
+
}[] | undefined;
|
5488
6193
|
name: string;
|
5489
6194
|
createdAt: string;
|
5490
6195
|
uri: string;
|
@@ -5564,6 +6269,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
5564
6269
|
} | undefined;
|
5565
6270
|
personal?: Record<string, boolean> | undefined;
|
5566
6271
|
} | undefined;
|
6272
|
+
deniedWriters?: string[] | undefined;
|
5567
6273
|
};
|
5568
6274
|
consenter: {
|
5569
6275
|
type?: string | undefined;
|
@@ -6289,7 +6995,9 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
6289
6995
|
} | undefined;
|
6290
6996
|
personal?: Record<string, boolean> | undefined;
|
6291
6997
|
}>>;
|
6998
|
+
deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
6292
6999
|
}, "strip", z.ZodTypeAny, {
|
7000
|
+
deniedWriters?: string[] | undefined;
|
6293
7001
|
read: {
|
6294
7002
|
anonymize?: boolean | undefined;
|
6295
7003
|
credentials: {
|
@@ -6331,6 +7039,7 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
6331
7039
|
} | undefined;
|
6332
7040
|
personal?: Record<string, boolean> | undefined;
|
6333
7041
|
} | undefined;
|
7042
|
+
deniedWriters?: string[] | undefined;
|
6334
7043
|
}>>;
|
6335
7044
|
id: z.ZodString;
|
6336
7045
|
action: z.ZodEnum<["consent", "update", "sync", "withdraw", "write"]>;
|
@@ -6340,6 +7049,7 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
6340
7049
|
expiresAt?: string | undefined;
|
6341
7050
|
oneTime?: boolean | undefined;
|
6342
7051
|
terms?: {
|
7052
|
+
deniedWriters?: string[] | undefined;
|
6343
7053
|
read: {
|
6344
7054
|
anonymize?: boolean | undefined;
|
6345
7055
|
credentials: {
|
@@ -6389,6 +7099,7 @@ export declare const ConsentFlowTransactionValidator: z.ZodObject<{
|
|
6389
7099
|
} | undefined;
|
6390
7100
|
personal?: Record<string, boolean> | undefined;
|
6391
7101
|
} | undefined;
|
7102
|
+
deniedWriters?: string[] | undefined;
|
6392
7103
|
} | undefined;
|
6393
7104
|
uris?: string[] | undefined;
|
6394
7105
|
date: string;
|
@@ -6492,7 +7203,9 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
6492
7203
|
} | undefined;
|
6493
7204
|
personal?: Record<string, boolean> | undefined;
|
6494
7205
|
}>>;
|
7206
|
+
deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
6495
7207
|
}, "strip", z.ZodTypeAny, {
|
7208
|
+
deniedWriters?: string[] | undefined;
|
6496
7209
|
read: {
|
6497
7210
|
anonymize?: boolean | undefined;
|
6498
7211
|
credentials: {
|
@@ -6534,6 +7247,7 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
6534
7247
|
} | undefined;
|
6535
7248
|
personal?: Record<string, boolean> | undefined;
|
6536
7249
|
} | undefined;
|
7250
|
+
deniedWriters?: string[] | undefined;
|
6537
7251
|
}>>;
|
6538
7252
|
id: z.ZodString;
|
6539
7253
|
action: z.ZodEnum<["consent", "update", "sync", "withdraw", "write"]>;
|
@@ -6543,6 +7257,7 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
6543
7257
|
expiresAt?: string | undefined;
|
6544
7258
|
oneTime?: boolean | undefined;
|
6545
7259
|
terms?: {
|
7260
|
+
deniedWriters?: string[] | undefined;
|
6546
7261
|
read: {
|
6547
7262
|
anonymize?: boolean | undefined;
|
6548
7263
|
credentials: {
|
@@ -6592,6 +7307,7 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
6592
7307
|
} | undefined;
|
6593
7308
|
personal?: Record<string, boolean> | undefined;
|
6594
7309
|
} | undefined;
|
7310
|
+
deniedWriters?: string[] | undefined;
|
6595
7311
|
} | undefined;
|
6596
7312
|
uris?: string[] | undefined;
|
6597
7313
|
date: string;
|
@@ -6605,6 +7321,7 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
6605
7321
|
expiresAt?: string | undefined;
|
6606
7322
|
oneTime?: boolean | undefined;
|
6607
7323
|
terms?: {
|
7324
|
+
deniedWriters?: string[] | undefined;
|
6608
7325
|
read: {
|
6609
7326
|
anonymize?: boolean | undefined;
|
6610
7327
|
credentials: {
|
@@ -6658,6 +7375,7 @@ export declare const PaginatedConsentFlowTransactionsValidator: z.ZodObject<z.ex
|
|
6658
7375
|
} | undefined;
|
6659
7376
|
personal?: Record<string, boolean> | undefined;
|
6660
7377
|
} | undefined;
|
7378
|
+
deniedWriters?: string[] | undefined;
|
6661
7379
|
} | undefined;
|
6662
7380
|
uris?: string[] | undefined;
|
6663
7381
|
date: string;
|
@@ -6847,7 +7565,9 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
6847
7565
|
} | undefined;
|
6848
7566
|
personal?: Record<string, boolean> | undefined;
|
6849
7567
|
}>>;
|
7568
|
+
deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
6850
7569
|
}, "strip", z.ZodTypeAny, {
|
7570
|
+
deniedWriters?: string[] | undefined;
|
6851
7571
|
read: {
|
6852
7572
|
anonymize?: boolean | undefined;
|
6853
7573
|
credentials: {
|
@@ -6889,6 +7609,7 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
6889
7609
|
} | undefined;
|
6890
7610
|
personal?: Record<string, boolean> | undefined;
|
6891
7611
|
} | undefined;
|
7612
|
+
deniedWriters?: string[] | undefined;
|
6892
7613
|
}>>;
|
6893
7614
|
id: z.ZodString;
|
6894
7615
|
action: z.ZodEnum<["consent", "update", "sync", "withdraw", "write"]>;
|
@@ -6898,6 +7619,7 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
6898
7619
|
expiresAt?: string | undefined;
|
6899
7620
|
oneTime?: boolean | undefined;
|
6900
7621
|
terms?: {
|
7622
|
+
deniedWriters?: string[] | undefined;
|
6901
7623
|
read: {
|
6902
7624
|
anonymize?: boolean | undefined;
|
6903
7625
|
credentials: {
|
@@ -6947,6 +7669,7 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
6947
7669
|
} | undefined;
|
6948
7670
|
personal?: Record<string, boolean> | undefined;
|
6949
7671
|
} | undefined;
|
7672
|
+
deniedWriters?: string[] | undefined;
|
6950
7673
|
} | undefined;
|
6951
7674
|
uris?: string[] | undefined;
|
6952
7675
|
date: string;
|
@@ -6960,6 +7683,7 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
6960
7683
|
expiresAt?: string | undefined;
|
6961
7684
|
oneTime?: boolean | undefined;
|
6962
7685
|
terms?: {
|
7686
|
+
deniedWriters?: string[] | undefined;
|
6963
7687
|
read: {
|
6964
7688
|
anonymize?: boolean | undefined;
|
6965
7689
|
credentials: {
|
@@ -7013,6 +7737,7 @@ export declare const LCNNotificationDataValidator: z.ZodObject<{
|
|
7013
7737
|
} | undefined;
|
7014
7738
|
personal?: Record<string, boolean> | undefined;
|
7015
7739
|
} | undefined;
|
7740
|
+
deniedWriters?: string[] | undefined;
|
7016
7741
|
} | undefined;
|
7017
7742
|
uris?: string[] | undefined;
|
7018
7743
|
date: string;
|
@@ -7364,7 +8089,9 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
7364
8089
|
} | undefined;
|
7365
8090
|
personal?: Record<string, boolean> | undefined;
|
7366
8091
|
}>>;
|
8092
|
+
deniedWriters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
7367
8093
|
}, "strip", z.ZodTypeAny, {
|
8094
|
+
deniedWriters?: string[] | undefined;
|
7368
8095
|
read: {
|
7369
8096
|
anonymize?: boolean | undefined;
|
7370
8097
|
credentials: {
|
@@ -7406,6 +8133,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
7406
8133
|
} | undefined;
|
7407
8134
|
personal?: Record<string, boolean> | undefined;
|
7408
8135
|
} | undefined;
|
8136
|
+
deniedWriters?: string[] | undefined;
|
7409
8137
|
}>>;
|
7410
8138
|
id: z.ZodString;
|
7411
8139
|
action: z.ZodEnum<["consent", "update", "sync", "withdraw", "write"]>;
|
@@ -7415,6 +8143,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
7415
8143
|
expiresAt?: string | undefined;
|
7416
8144
|
oneTime?: boolean | undefined;
|
7417
8145
|
terms?: {
|
8146
|
+
deniedWriters?: string[] | undefined;
|
7418
8147
|
read: {
|
7419
8148
|
anonymize?: boolean | undefined;
|
7420
8149
|
credentials: {
|
@@ -7464,6 +8193,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
7464
8193
|
} | undefined;
|
7465
8194
|
personal?: Record<string, boolean> | undefined;
|
7466
8195
|
} | undefined;
|
8196
|
+
deniedWriters?: string[] | undefined;
|
7467
8197
|
} | undefined;
|
7468
8198
|
uris?: string[] | undefined;
|
7469
8199
|
date: string;
|
@@ -7477,6 +8207,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
7477
8207
|
expiresAt?: string | undefined;
|
7478
8208
|
oneTime?: boolean | undefined;
|
7479
8209
|
terms?: {
|
8210
|
+
deniedWriters?: string[] | undefined;
|
7480
8211
|
read: {
|
7481
8212
|
anonymize?: boolean | undefined;
|
7482
8213
|
credentials: {
|
@@ -7530,6 +8261,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
7530
8261
|
} | undefined;
|
7531
8262
|
personal?: Record<string, boolean> | undefined;
|
7532
8263
|
} | undefined;
|
8264
|
+
deniedWriters?: string[] | undefined;
|
7533
8265
|
} | undefined;
|
7534
8266
|
uris?: string[] | undefined;
|
7535
8267
|
date: string;
|
@@ -7550,6 +8282,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
7550
8282
|
expiresAt?: string | undefined;
|
7551
8283
|
oneTime?: boolean | undefined;
|
7552
8284
|
terms?: {
|
8285
|
+
deniedWriters?: string[] | undefined;
|
7553
8286
|
read: {
|
7554
8287
|
anonymize?: boolean | undefined;
|
7555
8288
|
credentials: {
|
@@ -7675,6 +8408,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
7675
8408
|
} | undefined;
|
7676
8409
|
personal?: Record<string, boolean> | undefined;
|
7677
8410
|
} | undefined;
|
8411
|
+
deniedWriters?: string[] | undefined;
|
7678
8412
|
} | undefined;
|
7679
8413
|
uris?: string[] | undefined;
|
7680
8414
|
date: string;
|