@learncard/types 5.8.0 → 5.8.3

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 CHANGED
@@ -3065,6 +3065,467 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.objectUtil
3065
3065
  cursor?: string | undefined;
3066
3066
  }>;
3067
3067
  export type PaginatedBoostRecipientsType = z.infer<typeof PaginatedBoostRecipientsValidator>;
3068
+ export declare const BoostRecipientWithChildrenValidator: z.ZodObject<{
3069
+ to: z.ZodObject<{
3070
+ profileId: z.ZodString;
3071
+ displayName: z.ZodDefault<z.ZodString>;
3072
+ shortBio: z.ZodDefault<z.ZodString>;
3073
+ bio: z.ZodDefault<z.ZodString>;
3074
+ did: z.ZodString;
3075
+ isPrivate: z.ZodOptional<z.ZodBoolean>;
3076
+ email: z.ZodOptional<z.ZodString>;
3077
+ image: z.ZodOptional<z.ZodString>;
3078
+ heroImage: z.ZodOptional<z.ZodString>;
3079
+ websiteLink: z.ZodOptional<z.ZodString>;
3080
+ isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3081
+ type: z.ZodOptional<z.ZodString>;
3082
+ notificationsWebhook: z.ZodOptional<z.ZodString>;
3083
+ display: z.ZodOptional<z.ZodObject<{
3084
+ backgroundColor: z.ZodOptional<z.ZodString>;
3085
+ backgroundImage: z.ZodOptional<z.ZodString>;
3086
+ fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3087
+ repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3088
+ fontColor: z.ZodOptional<z.ZodString>;
3089
+ accentColor: z.ZodOptional<z.ZodString>;
3090
+ accentFontColor: z.ZodOptional<z.ZodString>;
3091
+ idBackgroundImage: z.ZodOptional<z.ZodString>;
3092
+ fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3093
+ idBackgroundColor: z.ZodOptional<z.ZodString>;
3094
+ repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3095
+ }, "strip", z.ZodTypeAny, {
3096
+ backgroundColor?: string | undefined;
3097
+ backgroundImage?: string | undefined;
3098
+ fadeBackgroundImage?: boolean | undefined;
3099
+ repeatBackgroundImage?: boolean | undefined;
3100
+ fontColor?: string | undefined;
3101
+ accentColor?: string | undefined;
3102
+ accentFontColor?: string | undefined;
3103
+ idBackgroundImage?: string | undefined;
3104
+ fadeIdBackgroundImage?: boolean | undefined;
3105
+ idBackgroundColor?: string | undefined;
3106
+ repeatIdBackgroundImage?: boolean | undefined;
3107
+ }, {
3108
+ backgroundColor?: string | undefined;
3109
+ backgroundImage?: string | undefined;
3110
+ fadeBackgroundImage?: boolean | undefined;
3111
+ repeatBackgroundImage?: boolean | undefined;
3112
+ fontColor?: string | undefined;
3113
+ accentColor?: string | undefined;
3114
+ accentFontColor?: string | undefined;
3115
+ idBackgroundImage?: string | undefined;
3116
+ fadeIdBackgroundImage?: boolean | undefined;
3117
+ idBackgroundColor?: string | undefined;
3118
+ repeatIdBackgroundImage?: boolean | undefined;
3119
+ }>>;
3120
+ role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
3121
+ dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
3122
+ }, "strip", z.ZodTypeAny, {
3123
+ profileId: string;
3124
+ displayName: string;
3125
+ shortBio: string;
3126
+ bio: string;
3127
+ did: string;
3128
+ type?: string | undefined;
3129
+ image?: string | undefined;
3130
+ email?: string | undefined;
3131
+ role?: string | undefined;
3132
+ isPrivate?: boolean | undefined;
3133
+ heroImage?: string | undefined;
3134
+ websiteLink?: string | undefined;
3135
+ isServiceProfile?: boolean | undefined;
3136
+ notificationsWebhook?: string | undefined;
3137
+ display?: {
3138
+ backgroundColor?: string | undefined;
3139
+ backgroundImage?: string | undefined;
3140
+ fadeBackgroundImage?: boolean | undefined;
3141
+ repeatBackgroundImage?: boolean | undefined;
3142
+ fontColor?: string | undefined;
3143
+ accentColor?: string | undefined;
3144
+ accentFontColor?: string | undefined;
3145
+ idBackgroundImage?: string | undefined;
3146
+ fadeIdBackgroundImage?: boolean | undefined;
3147
+ idBackgroundColor?: string | undefined;
3148
+ repeatIdBackgroundImage?: boolean | undefined;
3149
+ } | undefined;
3150
+ dob?: string | undefined;
3151
+ }, {
3152
+ profileId: string;
3153
+ did: string;
3154
+ type?: string | undefined;
3155
+ image?: string | undefined;
3156
+ email?: string | undefined;
3157
+ role?: string | undefined;
3158
+ displayName?: string | undefined;
3159
+ shortBio?: string | undefined;
3160
+ bio?: string | undefined;
3161
+ isPrivate?: boolean | undefined;
3162
+ heroImage?: string | undefined;
3163
+ websiteLink?: string | undefined;
3164
+ isServiceProfile?: boolean | undefined;
3165
+ notificationsWebhook?: string | undefined;
3166
+ display?: {
3167
+ backgroundColor?: string | undefined;
3168
+ backgroundImage?: string | undefined;
3169
+ fadeBackgroundImage?: boolean | undefined;
3170
+ repeatBackgroundImage?: boolean | undefined;
3171
+ fontColor?: string | undefined;
3172
+ accentColor?: string | undefined;
3173
+ accentFontColor?: string | undefined;
3174
+ idBackgroundImage?: string | undefined;
3175
+ fadeIdBackgroundImage?: boolean | undefined;
3176
+ idBackgroundColor?: string | undefined;
3177
+ repeatIdBackgroundImage?: boolean | undefined;
3178
+ } | undefined;
3179
+ dob?: string | undefined;
3180
+ }>;
3181
+ from: z.ZodString;
3182
+ received: z.ZodOptional<z.ZodString>;
3183
+ boostUris: z.ZodArray<z.ZodString, "many">;
3184
+ credentialUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3185
+ }, "strip", z.ZodTypeAny, {
3186
+ to: {
3187
+ profileId: string;
3188
+ displayName: string;
3189
+ shortBio: string;
3190
+ bio: string;
3191
+ did: string;
3192
+ type?: string | undefined;
3193
+ image?: string | undefined;
3194
+ email?: string | undefined;
3195
+ role?: string | undefined;
3196
+ isPrivate?: boolean | undefined;
3197
+ heroImage?: string | undefined;
3198
+ websiteLink?: string | undefined;
3199
+ isServiceProfile?: boolean | undefined;
3200
+ notificationsWebhook?: string | undefined;
3201
+ display?: {
3202
+ backgroundColor?: string | undefined;
3203
+ backgroundImage?: string | undefined;
3204
+ fadeBackgroundImage?: boolean | undefined;
3205
+ repeatBackgroundImage?: boolean | undefined;
3206
+ fontColor?: string | undefined;
3207
+ accentColor?: string | undefined;
3208
+ accentFontColor?: string | undefined;
3209
+ idBackgroundImage?: string | undefined;
3210
+ fadeIdBackgroundImage?: boolean | undefined;
3211
+ idBackgroundColor?: string | undefined;
3212
+ repeatIdBackgroundImage?: boolean | undefined;
3213
+ } | undefined;
3214
+ dob?: string | undefined;
3215
+ };
3216
+ from: string;
3217
+ boostUris: string[];
3218
+ received?: string | undefined;
3219
+ credentialUris?: string[] | undefined;
3220
+ }, {
3221
+ to: {
3222
+ profileId: string;
3223
+ did: string;
3224
+ type?: string | undefined;
3225
+ image?: string | undefined;
3226
+ email?: string | undefined;
3227
+ role?: string | undefined;
3228
+ displayName?: string | undefined;
3229
+ shortBio?: string | undefined;
3230
+ bio?: string | undefined;
3231
+ isPrivate?: boolean | undefined;
3232
+ heroImage?: string | undefined;
3233
+ websiteLink?: string | undefined;
3234
+ isServiceProfile?: boolean | undefined;
3235
+ notificationsWebhook?: string | undefined;
3236
+ display?: {
3237
+ backgroundColor?: string | undefined;
3238
+ backgroundImage?: string | undefined;
3239
+ fadeBackgroundImage?: boolean | undefined;
3240
+ repeatBackgroundImage?: boolean | undefined;
3241
+ fontColor?: string | undefined;
3242
+ accentColor?: string | undefined;
3243
+ accentFontColor?: string | undefined;
3244
+ idBackgroundImage?: string | undefined;
3245
+ fadeIdBackgroundImage?: boolean | undefined;
3246
+ idBackgroundColor?: string | undefined;
3247
+ repeatIdBackgroundImage?: boolean | undefined;
3248
+ } | undefined;
3249
+ dob?: string | undefined;
3250
+ };
3251
+ from: string;
3252
+ boostUris: string[];
3253
+ received?: string | undefined;
3254
+ credentialUris?: string[] | undefined;
3255
+ }>;
3256
+ export type BoostRecipientWithChildrenInfo = z.infer<typeof BoostRecipientWithChildrenValidator>;
3257
+ export declare const PaginatedBoostRecipientsWithChildrenValidator: z.ZodObject<z.objectUtil.extendShape<{
3258
+ cursor: z.ZodOptional<z.ZodString>;
3259
+ hasMore: z.ZodBoolean;
3260
+ }, {
3261
+ records: z.ZodArray<z.ZodObject<{
3262
+ to: z.ZodObject<{
3263
+ profileId: z.ZodString;
3264
+ displayName: z.ZodDefault<z.ZodString>;
3265
+ shortBio: z.ZodDefault<z.ZodString>;
3266
+ bio: z.ZodDefault<z.ZodString>;
3267
+ did: z.ZodString;
3268
+ isPrivate: z.ZodOptional<z.ZodBoolean>;
3269
+ email: z.ZodOptional<z.ZodString>;
3270
+ image: z.ZodOptional<z.ZodString>;
3271
+ heroImage: z.ZodOptional<z.ZodString>;
3272
+ websiteLink: z.ZodOptional<z.ZodString>;
3273
+ isServiceProfile: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3274
+ type: z.ZodOptional<z.ZodString>;
3275
+ notificationsWebhook: z.ZodOptional<z.ZodString>;
3276
+ display: z.ZodOptional<z.ZodObject<{
3277
+ backgroundColor: z.ZodOptional<z.ZodString>;
3278
+ backgroundImage: z.ZodOptional<z.ZodString>;
3279
+ fadeBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3280
+ repeatBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3281
+ fontColor: z.ZodOptional<z.ZodString>;
3282
+ accentColor: z.ZodOptional<z.ZodString>;
3283
+ accentFontColor: z.ZodOptional<z.ZodString>;
3284
+ idBackgroundImage: z.ZodOptional<z.ZodString>;
3285
+ fadeIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3286
+ idBackgroundColor: z.ZodOptional<z.ZodString>;
3287
+ repeatIdBackgroundImage: z.ZodOptional<z.ZodBoolean>;
3288
+ }, "strip", z.ZodTypeAny, {
3289
+ backgroundColor?: string | undefined;
3290
+ backgroundImage?: string | undefined;
3291
+ fadeBackgroundImage?: boolean | undefined;
3292
+ repeatBackgroundImage?: boolean | undefined;
3293
+ fontColor?: string | undefined;
3294
+ accentColor?: string | undefined;
3295
+ accentFontColor?: string | undefined;
3296
+ idBackgroundImage?: string | undefined;
3297
+ fadeIdBackgroundImage?: boolean | undefined;
3298
+ idBackgroundColor?: string | undefined;
3299
+ repeatIdBackgroundImage?: boolean | undefined;
3300
+ }, {
3301
+ backgroundColor?: string | undefined;
3302
+ backgroundImage?: string | undefined;
3303
+ fadeBackgroundImage?: boolean | undefined;
3304
+ repeatBackgroundImage?: boolean | undefined;
3305
+ fontColor?: string | undefined;
3306
+ accentColor?: string | undefined;
3307
+ accentFontColor?: string | undefined;
3308
+ idBackgroundImage?: string | undefined;
3309
+ fadeIdBackgroundImage?: boolean | undefined;
3310
+ idBackgroundColor?: string | undefined;
3311
+ repeatIdBackgroundImage?: boolean | undefined;
3312
+ }>>;
3313
+ role: z.ZodOptional<z.ZodDefault<z.ZodString>>;
3314
+ dob: z.ZodOptional<z.ZodDefault<z.ZodString>>;
3315
+ }, "strip", z.ZodTypeAny, {
3316
+ profileId: string;
3317
+ displayName: string;
3318
+ shortBio: string;
3319
+ bio: string;
3320
+ did: string;
3321
+ type?: string | undefined;
3322
+ image?: string | undefined;
3323
+ email?: string | undefined;
3324
+ role?: string | undefined;
3325
+ isPrivate?: boolean | undefined;
3326
+ heroImage?: string | undefined;
3327
+ websiteLink?: string | undefined;
3328
+ isServiceProfile?: boolean | undefined;
3329
+ notificationsWebhook?: string | undefined;
3330
+ display?: {
3331
+ backgroundColor?: string | undefined;
3332
+ backgroundImage?: string | undefined;
3333
+ fadeBackgroundImage?: boolean | undefined;
3334
+ repeatBackgroundImage?: boolean | undefined;
3335
+ fontColor?: string | undefined;
3336
+ accentColor?: string | undefined;
3337
+ accentFontColor?: string | undefined;
3338
+ idBackgroundImage?: string | undefined;
3339
+ fadeIdBackgroundImage?: boolean | undefined;
3340
+ idBackgroundColor?: string | undefined;
3341
+ repeatIdBackgroundImage?: boolean | undefined;
3342
+ } | undefined;
3343
+ dob?: string | undefined;
3344
+ }, {
3345
+ profileId: string;
3346
+ did: string;
3347
+ type?: string | undefined;
3348
+ image?: string | undefined;
3349
+ email?: string | undefined;
3350
+ role?: string | undefined;
3351
+ displayName?: string | undefined;
3352
+ shortBio?: string | undefined;
3353
+ bio?: string | undefined;
3354
+ isPrivate?: boolean | undefined;
3355
+ heroImage?: string | undefined;
3356
+ websiteLink?: string | undefined;
3357
+ isServiceProfile?: boolean | undefined;
3358
+ notificationsWebhook?: string | undefined;
3359
+ display?: {
3360
+ backgroundColor?: string | undefined;
3361
+ backgroundImage?: string | undefined;
3362
+ fadeBackgroundImage?: boolean | undefined;
3363
+ repeatBackgroundImage?: boolean | undefined;
3364
+ fontColor?: string | undefined;
3365
+ accentColor?: string | undefined;
3366
+ accentFontColor?: string | undefined;
3367
+ idBackgroundImage?: string | undefined;
3368
+ fadeIdBackgroundImage?: boolean | undefined;
3369
+ idBackgroundColor?: string | undefined;
3370
+ repeatIdBackgroundImage?: boolean | undefined;
3371
+ } | undefined;
3372
+ dob?: string | undefined;
3373
+ }>;
3374
+ from: z.ZodString;
3375
+ received: z.ZodOptional<z.ZodString>;
3376
+ boostUris: z.ZodArray<z.ZodString, "many">;
3377
+ credentialUris: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3378
+ }, "strip", z.ZodTypeAny, {
3379
+ to: {
3380
+ profileId: string;
3381
+ displayName: string;
3382
+ shortBio: string;
3383
+ bio: string;
3384
+ did: string;
3385
+ type?: string | undefined;
3386
+ image?: string | undefined;
3387
+ email?: string | undefined;
3388
+ role?: string | undefined;
3389
+ isPrivate?: boolean | undefined;
3390
+ heroImage?: string | undefined;
3391
+ websiteLink?: string | undefined;
3392
+ isServiceProfile?: boolean | undefined;
3393
+ notificationsWebhook?: string | undefined;
3394
+ display?: {
3395
+ backgroundColor?: string | undefined;
3396
+ backgroundImage?: string | undefined;
3397
+ fadeBackgroundImage?: boolean | undefined;
3398
+ repeatBackgroundImage?: boolean | undefined;
3399
+ fontColor?: string | undefined;
3400
+ accentColor?: string | undefined;
3401
+ accentFontColor?: string | undefined;
3402
+ idBackgroundImage?: string | undefined;
3403
+ fadeIdBackgroundImage?: boolean | undefined;
3404
+ idBackgroundColor?: string | undefined;
3405
+ repeatIdBackgroundImage?: boolean | undefined;
3406
+ } | undefined;
3407
+ dob?: string | undefined;
3408
+ };
3409
+ from: string;
3410
+ boostUris: string[];
3411
+ received?: string | undefined;
3412
+ credentialUris?: string[] | undefined;
3413
+ }, {
3414
+ to: {
3415
+ profileId: string;
3416
+ did: string;
3417
+ type?: string | undefined;
3418
+ image?: string | undefined;
3419
+ email?: string | undefined;
3420
+ role?: string | undefined;
3421
+ displayName?: string | undefined;
3422
+ shortBio?: string | undefined;
3423
+ bio?: string | undefined;
3424
+ isPrivate?: boolean | undefined;
3425
+ heroImage?: string | undefined;
3426
+ websiteLink?: string | undefined;
3427
+ isServiceProfile?: boolean | undefined;
3428
+ notificationsWebhook?: string | undefined;
3429
+ display?: {
3430
+ backgroundColor?: string | undefined;
3431
+ backgroundImage?: string | undefined;
3432
+ fadeBackgroundImage?: boolean | undefined;
3433
+ repeatBackgroundImage?: boolean | undefined;
3434
+ fontColor?: string | undefined;
3435
+ accentColor?: string | undefined;
3436
+ accentFontColor?: string | undefined;
3437
+ idBackgroundImage?: string | undefined;
3438
+ fadeIdBackgroundImage?: boolean | undefined;
3439
+ idBackgroundColor?: string | undefined;
3440
+ repeatIdBackgroundImage?: boolean | undefined;
3441
+ } | undefined;
3442
+ dob?: string | undefined;
3443
+ };
3444
+ from: string;
3445
+ boostUris: string[];
3446
+ received?: string | undefined;
3447
+ credentialUris?: string[] | undefined;
3448
+ }>, "many">;
3449
+ }>, "strip", z.ZodTypeAny, {
3450
+ hasMore: boolean;
3451
+ records: {
3452
+ to: {
3453
+ profileId: string;
3454
+ displayName: string;
3455
+ shortBio: string;
3456
+ bio: string;
3457
+ did: string;
3458
+ type?: string | undefined;
3459
+ image?: string | undefined;
3460
+ email?: string | undefined;
3461
+ role?: string | undefined;
3462
+ isPrivate?: boolean | undefined;
3463
+ heroImage?: string | undefined;
3464
+ websiteLink?: string | undefined;
3465
+ isServiceProfile?: boolean | undefined;
3466
+ notificationsWebhook?: string | undefined;
3467
+ display?: {
3468
+ backgroundColor?: string | undefined;
3469
+ backgroundImage?: string | undefined;
3470
+ fadeBackgroundImage?: boolean | undefined;
3471
+ repeatBackgroundImage?: boolean | undefined;
3472
+ fontColor?: string | undefined;
3473
+ accentColor?: string | undefined;
3474
+ accentFontColor?: string | undefined;
3475
+ idBackgroundImage?: string | undefined;
3476
+ fadeIdBackgroundImage?: boolean | undefined;
3477
+ idBackgroundColor?: string | undefined;
3478
+ repeatIdBackgroundImage?: boolean | undefined;
3479
+ } | undefined;
3480
+ dob?: string | undefined;
3481
+ };
3482
+ from: string;
3483
+ boostUris: string[];
3484
+ received?: string | undefined;
3485
+ credentialUris?: string[] | undefined;
3486
+ }[];
3487
+ cursor?: string | undefined;
3488
+ }, {
3489
+ hasMore: boolean;
3490
+ records: {
3491
+ to: {
3492
+ profileId: string;
3493
+ did: string;
3494
+ type?: string | undefined;
3495
+ image?: string | undefined;
3496
+ email?: string | undefined;
3497
+ role?: string | undefined;
3498
+ displayName?: string | undefined;
3499
+ shortBio?: string | undefined;
3500
+ bio?: string | undefined;
3501
+ isPrivate?: boolean | undefined;
3502
+ heroImage?: string | undefined;
3503
+ websiteLink?: string | undefined;
3504
+ isServiceProfile?: boolean | undefined;
3505
+ notificationsWebhook?: string | undefined;
3506
+ display?: {
3507
+ backgroundColor?: string | undefined;
3508
+ backgroundImage?: string | undefined;
3509
+ fadeBackgroundImage?: boolean | undefined;
3510
+ repeatBackgroundImage?: boolean | undefined;
3511
+ fontColor?: string | undefined;
3512
+ accentColor?: string | undefined;
3513
+ accentFontColor?: string | undefined;
3514
+ idBackgroundImage?: string | undefined;
3515
+ fadeIdBackgroundImage?: boolean | undefined;
3516
+ idBackgroundColor?: string | undefined;
3517
+ repeatIdBackgroundImage?: boolean | undefined;
3518
+ } | undefined;
3519
+ dob?: string | undefined;
3520
+ };
3521
+ from: string;
3522
+ boostUris: string[];
3523
+ received?: string | undefined;
3524
+ credentialUris?: string[] | undefined;
3525
+ }[];
3526
+ cursor?: string | undefined;
3527
+ }>;
3528
+ export type PaginatedBoostRecipientsWithChildrenType = z.infer<typeof PaginatedBoostRecipientsWithChildrenValidator>;
3068
3529
  export declare const LCNBoostClaimLinkSigningAuthorityValidator: z.ZodObject<{
3069
3530
  endpoint: z.ZodString;
3070
3531
  name: z.ZodString;
@@ -3173,35 +3634,45 @@ export declare const ConsentFlowContractValidator: z.ZodObject<{
3173
3634
  credentials: z.ZodDefault<z.ZodObject<{
3174
3635
  categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
3175
3636
  required: z.ZodBoolean;
3637
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
3176
3638
  }, "strip", z.ZodTypeAny, {
3177
3639
  required: boolean;
3640
+ defaultEnabled?: boolean | undefined;
3178
3641
  }, {
3179
3642
  required: boolean;
3643
+ defaultEnabled?: boolean | undefined;
3180
3644
  }>>>;
3181
3645
  }, "strip", z.ZodTypeAny, {
3182
3646
  categories: Record<string, {
3183
3647
  required: boolean;
3648
+ defaultEnabled?: boolean | undefined;
3184
3649
  }>;
3185
3650
  }, {
3186
3651
  categories?: Record<string, {
3187
3652
  required: boolean;
3653
+ defaultEnabled?: boolean | undefined;
3188
3654
  }> | undefined;
3189
3655
  }>>;
3190
3656
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
3191
3657
  required: z.ZodBoolean;
3658
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
3192
3659
  }, "strip", z.ZodTypeAny, {
3193
3660
  required: boolean;
3661
+ defaultEnabled?: boolean | undefined;
3194
3662
  }, {
3195
3663
  required: boolean;
3664
+ defaultEnabled?: boolean | undefined;
3196
3665
  }>>>;
3197
3666
  }, "strip", z.ZodTypeAny, {
3198
3667
  credentials: {
3199
3668
  categories: Record<string, {
3200
3669
  required: boolean;
3670
+ defaultEnabled?: boolean | undefined;
3201
3671
  }>;
3202
3672
  };
3203
3673
  personal: Record<string, {
3204
3674
  required: boolean;
3675
+ defaultEnabled?: boolean | undefined;
3205
3676
  }>;
3206
3677
  anonymize?: boolean | undefined;
3207
3678
  }, {
@@ -3209,54 +3680,68 @@ export declare const ConsentFlowContractValidator: z.ZodObject<{
3209
3680
  credentials?: {
3210
3681
  categories?: Record<string, {
3211
3682
  required: boolean;
3683
+ defaultEnabled?: boolean | undefined;
3212
3684
  }> | undefined;
3213
3685
  } | undefined;
3214
3686
  personal?: Record<string, {
3215
3687
  required: boolean;
3688
+ defaultEnabled?: boolean | undefined;
3216
3689
  }> | undefined;
3217
3690
  }>>;
3218
3691
  write: z.ZodDefault<z.ZodObject<{
3219
3692
  credentials: z.ZodDefault<z.ZodObject<{
3220
3693
  categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
3221
3694
  required: z.ZodBoolean;
3695
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
3222
3696
  }, "strip", z.ZodTypeAny, {
3223
3697
  required: boolean;
3698
+ defaultEnabled?: boolean | undefined;
3224
3699
  }, {
3225
3700
  required: boolean;
3701
+ defaultEnabled?: boolean | undefined;
3226
3702
  }>>>;
3227
3703
  }, "strip", z.ZodTypeAny, {
3228
3704
  categories: Record<string, {
3229
3705
  required: boolean;
3706
+ defaultEnabled?: boolean | undefined;
3230
3707
  }>;
3231
3708
  }, {
3232
3709
  categories?: Record<string, {
3233
3710
  required: boolean;
3711
+ defaultEnabled?: boolean | undefined;
3234
3712
  }> | undefined;
3235
3713
  }>>;
3236
3714
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
3237
3715
  required: z.ZodBoolean;
3716
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
3238
3717
  }, "strip", z.ZodTypeAny, {
3239
3718
  required: boolean;
3719
+ defaultEnabled?: boolean | undefined;
3240
3720
  }, {
3241
3721
  required: boolean;
3722
+ defaultEnabled?: boolean | undefined;
3242
3723
  }>>>;
3243
3724
  }, "strip", z.ZodTypeAny, {
3244
3725
  credentials: {
3245
3726
  categories: Record<string, {
3246
3727
  required: boolean;
3728
+ defaultEnabled?: boolean | undefined;
3247
3729
  }>;
3248
3730
  };
3249
3731
  personal: Record<string, {
3250
3732
  required: boolean;
3733
+ defaultEnabled?: boolean | undefined;
3251
3734
  }>;
3252
3735
  }, {
3253
3736
  credentials?: {
3254
3737
  categories?: Record<string, {
3255
3738
  required: boolean;
3739
+ defaultEnabled?: boolean | undefined;
3256
3740
  }> | undefined;
3257
3741
  } | undefined;
3258
3742
  personal?: Record<string, {
3259
3743
  required: boolean;
3744
+ defaultEnabled?: boolean | undefined;
3260
3745
  }> | undefined;
3261
3746
  }>>;
3262
3747
  }, "strip", z.ZodTypeAny, {
@@ -3264,10 +3749,12 @@ export declare const ConsentFlowContractValidator: z.ZodObject<{
3264
3749
  credentials: {
3265
3750
  categories: Record<string, {
3266
3751
  required: boolean;
3752
+ defaultEnabled?: boolean | undefined;
3267
3753
  }>;
3268
3754
  };
3269
3755
  personal: Record<string, {
3270
3756
  required: boolean;
3757
+ defaultEnabled?: boolean | undefined;
3271
3758
  }>;
3272
3759
  anonymize?: boolean | undefined;
3273
3760
  };
@@ -3275,10 +3762,12 @@ export declare const ConsentFlowContractValidator: z.ZodObject<{
3275
3762
  credentials: {
3276
3763
  categories: Record<string, {
3277
3764
  required: boolean;
3765
+ defaultEnabled?: boolean | undefined;
3278
3766
  }>;
3279
3767
  };
3280
3768
  personal: Record<string, {
3281
3769
  required: boolean;
3770
+ defaultEnabled?: boolean | undefined;
3282
3771
  }>;
3283
3772
  };
3284
3773
  }, {
@@ -3287,20 +3776,24 @@ export declare const ConsentFlowContractValidator: z.ZodObject<{
3287
3776
  credentials?: {
3288
3777
  categories?: Record<string, {
3289
3778
  required: boolean;
3779
+ defaultEnabled?: boolean | undefined;
3290
3780
  }> | undefined;
3291
3781
  } | undefined;
3292
3782
  personal?: Record<string, {
3293
3783
  required: boolean;
3784
+ defaultEnabled?: boolean | undefined;
3294
3785
  }> | undefined;
3295
3786
  } | undefined;
3296
3787
  write?: {
3297
3788
  credentials?: {
3298
3789
  categories?: Record<string, {
3299
3790
  required: boolean;
3791
+ defaultEnabled?: boolean | undefined;
3300
3792
  }> | undefined;
3301
3793
  } | undefined;
3302
3794
  personal?: Record<string, {
3303
3795
  required: boolean;
3796
+ defaultEnabled?: boolean | undefined;
3304
3797
  }> | undefined;
3305
3798
  } | undefined;
3306
3799
  }>;
@@ -3313,35 +3806,45 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3313
3806
  credentials: z.ZodDefault<z.ZodObject<{
3314
3807
  categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
3315
3808
  required: z.ZodBoolean;
3809
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
3316
3810
  }, "strip", z.ZodTypeAny, {
3317
3811
  required: boolean;
3812
+ defaultEnabled?: boolean | undefined;
3318
3813
  }, {
3319
3814
  required: boolean;
3815
+ defaultEnabled?: boolean | undefined;
3320
3816
  }>>>;
3321
3817
  }, "strip", z.ZodTypeAny, {
3322
3818
  categories: Record<string, {
3323
3819
  required: boolean;
3820
+ defaultEnabled?: boolean | undefined;
3324
3821
  }>;
3325
3822
  }, {
3326
3823
  categories?: Record<string, {
3327
3824
  required: boolean;
3825
+ defaultEnabled?: boolean | undefined;
3328
3826
  }> | undefined;
3329
3827
  }>>;
3330
3828
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
3331
3829
  required: z.ZodBoolean;
3830
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
3332
3831
  }, "strip", z.ZodTypeAny, {
3333
3832
  required: boolean;
3833
+ defaultEnabled?: boolean | undefined;
3334
3834
  }, {
3335
3835
  required: boolean;
3836
+ defaultEnabled?: boolean | undefined;
3336
3837
  }>>>;
3337
3838
  }, "strip", z.ZodTypeAny, {
3338
3839
  credentials: {
3339
3840
  categories: Record<string, {
3340
3841
  required: boolean;
3842
+ defaultEnabled?: boolean | undefined;
3341
3843
  }>;
3342
3844
  };
3343
3845
  personal: Record<string, {
3344
3846
  required: boolean;
3847
+ defaultEnabled?: boolean | undefined;
3345
3848
  }>;
3346
3849
  anonymize?: boolean | undefined;
3347
3850
  }, {
@@ -3349,54 +3852,68 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3349
3852
  credentials?: {
3350
3853
  categories?: Record<string, {
3351
3854
  required: boolean;
3855
+ defaultEnabled?: boolean | undefined;
3352
3856
  }> | undefined;
3353
3857
  } | undefined;
3354
3858
  personal?: Record<string, {
3355
3859
  required: boolean;
3860
+ defaultEnabled?: boolean | undefined;
3356
3861
  }> | undefined;
3357
3862
  }>>;
3358
3863
  write: z.ZodDefault<z.ZodObject<{
3359
3864
  credentials: z.ZodDefault<z.ZodObject<{
3360
3865
  categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
3361
3866
  required: z.ZodBoolean;
3867
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
3362
3868
  }, "strip", z.ZodTypeAny, {
3363
3869
  required: boolean;
3870
+ defaultEnabled?: boolean | undefined;
3364
3871
  }, {
3365
3872
  required: boolean;
3873
+ defaultEnabled?: boolean | undefined;
3366
3874
  }>>>;
3367
3875
  }, "strip", z.ZodTypeAny, {
3368
3876
  categories: Record<string, {
3369
3877
  required: boolean;
3878
+ defaultEnabled?: boolean | undefined;
3370
3879
  }>;
3371
3880
  }, {
3372
3881
  categories?: Record<string, {
3373
3882
  required: boolean;
3883
+ defaultEnabled?: boolean | undefined;
3374
3884
  }> | undefined;
3375
3885
  }>>;
3376
3886
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
3377
3887
  required: z.ZodBoolean;
3888
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
3378
3889
  }, "strip", z.ZodTypeAny, {
3379
3890
  required: boolean;
3891
+ defaultEnabled?: boolean | undefined;
3380
3892
  }, {
3381
3893
  required: boolean;
3894
+ defaultEnabled?: boolean | undefined;
3382
3895
  }>>>;
3383
3896
  }, "strip", z.ZodTypeAny, {
3384
3897
  credentials: {
3385
3898
  categories: Record<string, {
3386
3899
  required: boolean;
3900
+ defaultEnabled?: boolean | undefined;
3387
3901
  }>;
3388
3902
  };
3389
3903
  personal: Record<string, {
3390
3904
  required: boolean;
3905
+ defaultEnabled?: boolean | undefined;
3391
3906
  }>;
3392
3907
  }, {
3393
3908
  credentials?: {
3394
3909
  categories?: Record<string, {
3395
3910
  required: boolean;
3911
+ defaultEnabled?: boolean | undefined;
3396
3912
  }> | undefined;
3397
3913
  } | undefined;
3398
3914
  personal?: Record<string, {
3399
3915
  required: boolean;
3916
+ defaultEnabled?: boolean | undefined;
3400
3917
  }> | undefined;
3401
3918
  }>>;
3402
3919
  }, "strip", z.ZodTypeAny, {
@@ -3404,10 +3921,12 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3404
3921
  credentials: {
3405
3922
  categories: Record<string, {
3406
3923
  required: boolean;
3924
+ defaultEnabled?: boolean | undefined;
3407
3925
  }>;
3408
3926
  };
3409
3927
  personal: Record<string, {
3410
3928
  required: boolean;
3929
+ defaultEnabled?: boolean | undefined;
3411
3930
  }>;
3412
3931
  anonymize?: boolean | undefined;
3413
3932
  };
@@ -3415,10 +3934,12 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3415
3934
  credentials: {
3416
3935
  categories: Record<string, {
3417
3936
  required: boolean;
3937
+ defaultEnabled?: boolean | undefined;
3418
3938
  }>;
3419
3939
  };
3420
3940
  personal: Record<string, {
3421
3941
  required: boolean;
3942
+ defaultEnabled?: boolean | undefined;
3422
3943
  }>;
3423
3944
  };
3424
3945
  }, {
@@ -3427,20 +3948,24 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3427
3948
  credentials?: {
3428
3949
  categories?: Record<string, {
3429
3950
  required: boolean;
3951
+ defaultEnabled?: boolean | undefined;
3430
3952
  }> | undefined;
3431
3953
  } | undefined;
3432
3954
  personal?: Record<string, {
3433
3955
  required: boolean;
3956
+ defaultEnabled?: boolean | undefined;
3434
3957
  }> | undefined;
3435
3958
  } | undefined;
3436
3959
  write?: {
3437
3960
  credentials?: {
3438
3961
  categories?: Record<string, {
3439
3962
  required: boolean;
3963
+ defaultEnabled?: boolean | undefined;
3440
3964
  }> | undefined;
3441
3965
  } | undefined;
3442
3966
  personal?: Record<string, {
3443
3967
  required: boolean;
3968
+ defaultEnabled?: boolean | undefined;
3444
3969
  }> | undefined;
3445
3970
  } | undefined;
3446
3971
  }>;
@@ -3691,10 +4216,12 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3691
4216
  credentials: {
3692
4217
  categories: Record<string, {
3693
4218
  required: boolean;
4219
+ defaultEnabled?: boolean | undefined;
3694
4220
  }>;
3695
4221
  };
3696
4222
  personal: Record<string, {
3697
4223
  required: boolean;
4224
+ defaultEnabled?: boolean | undefined;
3698
4225
  }>;
3699
4226
  anonymize?: boolean | undefined;
3700
4227
  };
@@ -3702,10 +4229,12 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3702
4229
  credentials: {
3703
4230
  categories: Record<string, {
3704
4231
  required: boolean;
4232
+ defaultEnabled?: boolean | undefined;
3705
4233
  }>;
3706
4234
  };
3707
4235
  personal: Record<string, {
3708
4236
  required: boolean;
4237
+ defaultEnabled?: boolean | undefined;
3709
4238
  }>;
3710
4239
  };
3711
4240
  };
@@ -3789,20 +4318,24 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
3789
4318
  credentials?: {
3790
4319
  categories?: Record<string, {
3791
4320
  required: boolean;
4321
+ defaultEnabled?: boolean | undefined;
3792
4322
  }> | undefined;
3793
4323
  } | undefined;
3794
4324
  personal?: Record<string, {
3795
4325
  required: boolean;
4326
+ defaultEnabled?: boolean | undefined;
3796
4327
  }> | undefined;
3797
4328
  } | undefined;
3798
4329
  write?: {
3799
4330
  credentials?: {
3800
4331
  categories?: Record<string, {
3801
4332
  required: boolean;
4333
+ defaultEnabled?: boolean | undefined;
3802
4334
  }> | undefined;
3803
4335
  } | undefined;
3804
4336
  personal?: Record<string, {
3805
4337
  required: boolean;
4338
+ defaultEnabled?: boolean | undefined;
3806
4339
  }> | undefined;
3807
4340
  } | undefined;
3808
4341
  };
@@ -3889,35 +4422,45 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
3889
4422
  credentials: z.ZodDefault<z.ZodObject<{
3890
4423
  categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
3891
4424
  required: z.ZodBoolean;
4425
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
3892
4426
  }, "strip", z.ZodTypeAny, {
3893
4427
  required: boolean;
4428
+ defaultEnabled?: boolean | undefined;
3894
4429
  }, {
3895
4430
  required: boolean;
4431
+ defaultEnabled?: boolean | undefined;
3896
4432
  }>>>;
3897
4433
  }, "strip", z.ZodTypeAny, {
3898
4434
  categories: Record<string, {
3899
4435
  required: boolean;
4436
+ defaultEnabled?: boolean | undefined;
3900
4437
  }>;
3901
4438
  }, {
3902
4439
  categories?: Record<string, {
3903
4440
  required: boolean;
4441
+ defaultEnabled?: boolean | undefined;
3904
4442
  }> | undefined;
3905
4443
  }>>;
3906
4444
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
3907
4445
  required: z.ZodBoolean;
4446
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
3908
4447
  }, "strip", z.ZodTypeAny, {
3909
4448
  required: boolean;
4449
+ defaultEnabled?: boolean | undefined;
3910
4450
  }, {
3911
4451
  required: boolean;
4452
+ defaultEnabled?: boolean | undefined;
3912
4453
  }>>>;
3913
4454
  }, "strip", z.ZodTypeAny, {
3914
4455
  credentials: {
3915
4456
  categories: Record<string, {
3916
4457
  required: boolean;
4458
+ defaultEnabled?: boolean | undefined;
3917
4459
  }>;
3918
4460
  };
3919
4461
  personal: Record<string, {
3920
4462
  required: boolean;
4463
+ defaultEnabled?: boolean | undefined;
3921
4464
  }>;
3922
4465
  anonymize?: boolean | undefined;
3923
4466
  }, {
@@ -3925,54 +4468,68 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
3925
4468
  credentials?: {
3926
4469
  categories?: Record<string, {
3927
4470
  required: boolean;
4471
+ defaultEnabled?: boolean | undefined;
3928
4472
  }> | undefined;
3929
4473
  } | undefined;
3930
4474
  personal?: Record<string, {
3931
4475
  required: boolean;
4476
+ defaultEnabled?: boolean | undefined;
3932
4477
  }> | undefined;
3933
4478
  }>>;
3934
4479
  write: z.ZodDefault<z.ZodObject<{
3935
4480
  credentials: z.ZodDefault<z.ZodObject<{
3936
4481
  categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
3937
4482
  required: z.ZodBoolean;
4483
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
3938
4484
  }, "strip", z.ZodTypeAny, {
3939
4485
  required: boolean;
4486
+ defaultEnabled?: boolean | undefined;
3940
4487
  }, {
3941
4488
  required: boolean;
4489
+ defaultEnabled?: boolean | undefined;
3942
4490
  }>>>;
3943
4491
  }, "strip", z.ZodTypeAny, {
3944
4492
  categories: Record<string, {
3945
4493
  required: boolean;
4494
+ defaultEnabled?: boolean | undefined;
3946
4495
  }>;
3947
4496
  }, {
3948
4497
  categories?: Record<string, {
3949
4498
  required: boolean;
4499
+ defaultEnabled?: boolean | undefined;
3950
4500
  }> | undefined;
3951
4501
  }>>;
3952
4502
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
3953
4503
  required: z.ZodBoolean;
4504
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
3954
4505
  }, "strip", z.ZodTypeAny, {
3955
4506
  required: boolean;
4507
+ defaultEnabled?: boolean | undefined;
3956
4508
  }, {
3957
4509
  required: boolean;
4510
+ defaultEnabled?: boolean | undefined;
3958
4511
  }>>>;
3959
4512
  }, "strip", z.ZodTypeAny, {
3960
4513
  credentials: {
3961
4514
  categories: Record<string, {
3962
4515
  required: boolean;
4516
+ defaultEnabled?: boolean | undefined;
3963
4517
  }>;
3964
4518
  };
3965
4519
  personal: Record<string, {
3966
4520
  required: boolean;
4521
+ defaultEnabled?: boolean | undefined;
3967
4522
  }>;
3968
4523
  }, {
3969
4524
  credentials?: {
3970
4525
  categories?: Record<string, {
3971
4526
  required: boolean;
4527
+ defaultEnabled?: boolean | undefined;
3972
4528
  }> | undefined;
3973
4529
  } | undefined;
3974
4530
  personal?: Record<string, {
3975
4531
  required: boolean;
4532
+ defaultEnabled?: boolean | undefined;
3976
4533
  }> | undefined;
3977
4534
  }>>;
3978
4535
  }, "strip", z.ZodTypeAny, {
@@ -3980,10 +4537,12 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
3980
4537
  credentials: {
3981
4538
  categories: Record<string, {
3982
4539
  required: boolean;
4540
+ defaultEnabled?: boolean | undefined;
3983
4541
  }>;
3984
4542
  };
3985
4543
  personal: Record<string, {
3986
4544
  required: boolean;
4545
+ defaultEnabled?: boolean | undefined;
3987
4546
  }>;
3988
4547
  anonymize?: boolean | undefined;
3989
4548
  };
@@ -3991,10 +4550,12 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
3991
4550
  credentials: {
3992
4551
  categories: Record<string, {
3993
4552
  required: boolean;
4553
+ defaultEnabled?: boolean | undefined;
3994
4554
  }>;
3995
4555
  };
3996
4556
  personal: Record<string, {
3997
4557
  required: boolean;
4558
+ defaultEnabled?: boolean | undefined;
3998
4559
  }>;
3999
4560
  };
4000
4561
  }, {
@@ -4003,20 +4564,24 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
4003
4564
  credentials?: {
4004
4565
  categories?: Record<string, {
4005
4566
  required: boolean;
4567
+ defaultEnabled?: boolean | undefined;
4006
4568
  }> | undefined;
4007
4569
  } | undefined;
4008
4570
  personal?: Record<string, {
4009
4571
  required: boolean;
4572
+ defaultEnabled?: boolean | undefined;
4010
4573
  }> | undefined;
4011
4574
  } | undefined;
4012
4575
  write?: {
4013
4576
  credentials?: {
4014
4577
  categories?: Record<string, {
4015
4578
  required: boolean;
4579
+ defaultEnabled?: boolean | undefined;
4016
4580
  }> | undefined;
4017
4581
  } | undefined;
4018
4582
  personal?: Record<string, {
4019
4583
  required: boolean;
4584
+ defaultEnabled?: boolean | undefined;
4020
4585
  }> | undefined;
4021
4586
  } | undefined;
4022
4587
  }>;
@@ -4267,10 +4832,12 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
4267
4832
  credentials: {
4268
4833
  categories: Record<string, {
4269
4834
  required: boolean;
4835
+ defaultEnabled?: boolean | undefined;
4270
4836
  }>;
4271
4837
  };
4272
4838
  personal: Record<string, {
4273
4839
  required: boolean;
4840
+ defaultEnabled?: boolean | undefined;
4274
4841
  }>;
4275
4842
  anonymize?: boolean | undefined;
4276
4843
  };
@@ -4278,10 +4845,12 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
4278
4845
  credentials: {
4279
4846
  categories: Record<string, {
4280
4847
  required: boolean;
4848
+ defaultEnabled?: boolean | undefined;
4281
4849
  }>;
4282
4850
  };
4283
4851
  personal: Record<string, {
4284
4852
  required: boolean;
4853
+ defaultEnabled?: boolean | undefined;
4285
4854
  }>;
4286
4855
  };
4287
4856
  };
@@ -4335,20 +4904,24 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
4335
4904
  credentials?: {
4336
4905
  categories?: Record<string, {
4337
4906
  required: boolean;
4907
+ defaultEnabled?: boolean | undefined;
4338
4908
  }> | undefined;
4339
4909
  } | undefined;
4340
4910
  personal?: Record<string, {
4341
4911
  required: boolean;
4912
+ defaultEnabled?: boolean | undefined;
4342
4913
  }> | undefined;
4343
4914
  } | undefined;
4344
4915
  write?: {
4345
4916
  credentials?: {
4346
4917
  categories?: Record<string, {
4347
4918
  required: boolean;
4919
+ defaultEnabled?: boolean | undefined;
4348
4920
  }> | undefined;
4349
4921
  } | undefined;
4350
4922
  personal?: Record<string, {
4351
4923
  required: boolean;
4924
+ defaultEnabled?: boolean | undefined;
4352
4925
  }> | undefined;
4353
4926
  } | undefined;
4354
4927
  };
@@ -4404,10 +4977,12 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
4404
4977
  credentials: {
4405
4978
  categories: Record<string, {
4406
4979
  required: boolean;
4980
+ defaultEnabled?: boolean | undefined;
4407
4981
  }>;
4408
4982
  };
4409
4983
  personal: Record<string, {
4410
4984
  required: boolean;
4985
+ defaultEnabled?: boolean | undefined;
4411
4986
  }>;
4412
4987
  anonymize?: boolean | undefined;
4413
4988
  };
@@ -4415,10 +4990,12 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
4415
4990
  credentials: {
4416
4991
  categories: Record<string, {
4417
4992
  required: boolean;
4993
+ defaultEnabled?: boolean | undefined;
4418
4994
  }>;
4419
4995
  };
4420
4996
  personal: Record<string, {
4421
4997
  required: boolean;
4998
+ defaultEnabled?: boolean | undefined;
4422
4999
  }>;
4423
5000
  };
4424
5001
  };
@@ -4476,20 +5053,24 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.objec
4476
5053
  credentials?: {
4477
5054
  categories?: Record<string, {
4478
5055
  required: boolean;
5056
+ defaultEnabled?: boolean | undefined;
4479
5057
  }> | undefined;
4480
5058
  } | undefined;
4481
5059
  personal?: Record<string, {
4482
5060
  required: boolean;
5061
+ defaultEnabled?: boolean | undefined;
4483
5062
  }> | undefined;
4484
5063
  } | undefined;
4485
5064
  write?: {
4486
5065
  credentials?: {
4487
5066
  categories?: Record<string, {
4488
5067
  required: boolean;
5068
+ defaultEnabled?: boolean | undefined;
4489
5069
  }> | undefined;
4490
5070
  } | undefined;
4491
5071
  personal?: Record<string, {
4492
5072
  required: boolean;
5073
+ defaultEnabled?: boolean | undefined;
4493
5074
  }> | undefined;
4494
5075
  } | undefined;
4495
5076
  };
@@ -5005,35 +5586,45 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
5005
5586
  credentials: z.ZodDefault<z.ZodObject<{
5006
5587
  categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
5007
5588
  required: z.ZodBoolean;
5589
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
5008
5590
  }, "strip", z.ZodTypeAny, {
5009
5591
  required: boolean;
5592
+ defaultEnabled?: boolean | undefined;
5010
5593
  }, {
5011
5594
  required: boolean;
5595
+ defaultEnabled?: boolean | undefined;
5012
5596
  }>>>;
5013
5597
  }, "strip", z.ZodTypeAny, {
5014
5598
  categories: Record<string, {
5015
5599
  required: boolean;
5600
+ defaultEnabled?: boolean | undefined;
5016
5601
  }>;
5017
5602
  }, {
5018
5603
  categories?: Record<string, {
5019
5604
  required: boolean;
5605
+ defaultEnabled?: boolean | undefined;
5020
5606
  }> | undefined;
5021
5607
  }>>;
5022
5608
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
5023
5609
  required: z.ZodBoolean;
5610
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
5024
5611
  }, "strip", z.ZodTypeAny, {
5025
5612
  required: boolean;
5613
+ defaultEnabled?: boolean | undefined;
5026
5614
  }, {
5027
5615
  required: boolean;
5616
+ defaultEnabled?: boolean | undefined;
5028
5617
  }>>>;
5029
5618
  }, "strip", z.ZodTypeAny, {
5030
5619
  credentials: {
5031
5620
  categories: Record<string, {
5032
5621
  required: boolean;
5622
+ defaultEnabled?: boolean | undefined;
5033
5623
  }>;
5034
5624
  };
5035
5625
  personal: Record<string, {
5036
5626
  required: boolean;
5627
+ defaultEnabled?: boolean | undefined;
5037
5628
  }>;
5038
5629
  anonymize?: boolean | undefined;
5039
5630
  }, {
@@ -5041,54 +5632,68 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
5041
5632
  credentials?: {
5042
5633
  categories?: Record<string, {
5043
5634
  required: boolean;
5635
+ defaultEnabled?: boolean | undefined;
5044
5636
  }> | undefined;
5045
5637
  } | undefined;
5046
5638
  personal?: Record<string, {
5047
5639
  required: boolean;
5640
+ defaultEnabled?: boolean | undefined;
5048
5641
  }> | undefined;
5049
5642
  }>>;
5050
5643
  write: z.ZodDefault<z.ZodObject<{
5051
5644
  credentials: z.ZodDefault<z.ZodObject<{
5052
5645
  categories: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
5053
5646
  required: z.ZodBoolean;
5647
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
5054
5648
  }, "strip", z.ZodTypeAny, {
5055
5649
  required: boolean;
5650
+ defaultEnabled?: boolean | undefined;
5056
5651
  }, {
5057
5652
  required: boolean;
5653
+ defaultEnabled?: boolean | undefined;
5058
5654
  }>>>;
5059
5655
  }, "strip", z.ZodTypeAny, {
5060
5656
  categories: Record<string, {
5061
5657
  required: boolean;
5658
+ defaultEnabled?: boolean | undefined;
5062
5659
  }>;
5063
5660
  }, {
5064
5661
  categories?: Record<string, {
5065
5662
  required: boolean;
5663
+ defaultEnabled?: boolean | undefined;
5066
5664
  }> | undefined;
5067
5665
  }>>;
5068
5666
  personal: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
5069
5667
  required: z.ZodBoolean;
5668
+ defaultEnabled: z.ZodOptional<z.ZodBoolean>;
5070
5669
  }, "strip", z.ZodTypeAny, {
5071
5670
  required: boolean;
5671
+ defaultEnabled?: boolean | undefined;
5072
5672
  }, {
5073
5673
  required: boolean;
5674
+ defaultEnabled?: boolean | undefined;
5074
5675
  }>>>;
5075
5676
  }, "strip", z.ZodTypeAny, {
5076
5677
  credentials: {
5077
5678
  categories: Record<string, {
5078
5679
  required: boolean;
5680
+ defaultEnabled?: boolean | undefined;
5079
5681
  }>;
5080
5682
  };
5081
5683
  personal: Record<string, {
5082
5684
  required: boolean;
5685
+ defaultEnabled?: boolean | undefined;
5083
5686
  }>;
5084
5687
  }, {
5085
5688
  credentials?: {
5086
5689
  categories?: Record<string, {
5087
5690
  required: boolean;
5691
+ defaultEnabled?: boolean | undefined;
5088
5692
  }> | undefined;
5089
5693
  } | undefined;
5090
5694
  personal?: Record<string, {
5091
5695
  required: boolean;
5696
+ defaultEnabled?: boolean | undefined;
5092
5697
  }> | undefined;
5093
5698
  }>>;
5094
5699
  }, "strip", z.ZodTypeAny, {
@@ -5096,10 +5701,12 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
5096
5701
  credentials: {
5097
5702
  categories: Record<string, {
5098
5703
  required: boolean;
5704
+ defaultEnabled?: boolean | undefined;
5099
5705
  }>;
5100
5706
  };
5101
5707
  personal: Record<string, {
5102
5708
  required: boolean;
5709
+ defaultEnabled?: boolean | undefined;
5103
5710
  }>;
5104
5711
  anonymize?: boolean | undefined;
5105
5712
  };
@@ -5107,10 +5714,12 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
5107
5714
  credentials: {
5108
5715
  categories: Record<string, {
5109
5716
  required: boolean;
5717
+ defaultEnabled?: boolean | undefined;
5110
5718
  }>;
5111
5719
  };
5112
5720
  personal: Record<string, {
5113
5721
  required: boolean;
5722
+ defaultEnabled?: boolean | undefined;
5114
5723
  }>;
5115
5724
  };
5116
5725
  }, {
@@ -5119,20 +5728,24 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
5119
5728
  credentials?: {
5120
5729
  categories?: Record<string, {
5121
5730
  required: boolean;
5731
+ defaultEnabled?: boolean | undefined;
5122
5732
  }> | undefined;
5123
5733
  } | undefined;
5124
5734
  personal?: Record<string, {
5125
5735
  required: boolean;
5736
+ defaultEnabled?: boolean | undefined;
5126
5737
  }> | undefined;
5127
5738
  } | undefined;
5128
5739
  write?: {
5129
5740
  credentials?: {
5130
5741
  categories?: Record<string, {
5131
5742
  required: boolean;
5743
+ defaultEnabled?: boolean | undefined;
5132
5744
  }> | undefined;
5133
5745
  } | undefined;
5134
5746
  personal?: Record<string, {
5135
5747
  required: boolean;
5748
+ defaultEnabled?: boolean | undefined;
5136
5749
  }> | undefined;
5137
5750
  } | undefined;
5138
5751
  }>;
@@ -5383,10 +5996,12 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
5383
5996
  credentials: {
5384
5997
  categories: Record<string, {
5385
5998
  required: boolean;
5999
+ defaultEnabled?: boolean | undefined;
5386
6000
  }>;
5387
6001
  };
5388
6002
  personal: Record<string, {
5389
6003
  required: boolean;
6004
+ defaultEnabled?: boolean | undefined;
5390
6005
  }>;
5391
6006
  anonymize?: boolean | undefined;
5392
6007
  };
@@ -5394,10 +6009,12 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
5394
6009
  credentials: {
5395
6010
  categories: Record<string, {
5396
6011
  required: boolean;
6012
+ defaultEnabled?: boolean | undefined;
5397
6013
  }>;
5398
6014
  };
5399
6015
  personal: Record<string, {
5400
6016
  required: boolean;
6017
+ defaultEnabled?: boolean | undefined;
5401
6018
  }>;
5402
6019
  };
5403
6020
  };
@@ -5481,20 +6098,24 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
5481
6098
  credentials?: {
5482
6099
  categories?: Record<string, {
5483
6100
  required: boolean;
6101
+ defaultEnabled?: boolean | undefined;
5484
6102
  }> | undefined;
5485
6103
  } | undefined;
5486
6104
  personal?: Record<string, {
5487
6105
  required: boolean;
6106
+ defaultEnabled?: boolean | undefined;
5488
6107
  }> | undefined;
5489
6108
  } | undefined;
5490
6109
  write?: {
5491
6110
  credentials?: {
5492
6111
  categories?: Record<string, {
5493
6112
  required: boolean;
6113
+ defaultEnabled?: boolean | undefined;
5494
6114
  }> | undefined;
5495
6115
  } | undefined;
5496
6116
  personal?: Record<string, {
5497
6117
  required: boolean;
6118
+ defaultEnabled?: boolean | undefined;
5498
6119
  }> | undefined;
5499
6120
  } | undefined;
5500
6121
  };
@@ -5695,10 +6316,12 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
5695
6316
  credentials: {
5696
6317
  categories: Record<string, {
5697
6318
  required: boolean;
6319
+ defaultEnabled?: boolean | undefined;
5698
6320
  }>;
5699
6321
  };
5700
6322
  personal: Record<string, {
5701
6323
  required: boolean;
6324
+ defaultEnabled?: boolean | undefined;
5702
6325
  }>;
5703
6326
  anonymize?: boolean | undefined;
5704
6327
  };
@@ -5706,10 +6329,12 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
5706
6329
  credentials: {
5707
6330
  categories: Record<string, {
5708
6331
  required: boolean;
6332
+ defaultEnabled?: boolean | undefined;
5709
6333
  }>;
5710
6334
  };
5711
6335
  personal: Record<string, {
5712
6336
  required: boolean;
6337
+ defaultEnabled?: boolean | undefined;
5713
6338
  }>;
5714
6339
  };
5715
6340
  };
@@ -5852,20 +6477,24 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
5852
6477
  credentials?: {
5853
6478
  categories?: Record<string, {
5854
6479
  required: boolean;
6480
+ defaultEnabled?: boolean | undefined;
5855
6481
  }> | undefined;
5856
6482
  } | undefined;
5857
6483
  personal?: Record<string, {
5858
6484
  required: boolean;
6485
+ defaultEnabled?: boolean | undefined;
5859
6486
  }> | undefined;
5860
6487
  } | undefined;
5861
6488
  write?: {
5862
6489
  credentials?: {
5863
6490
  categories?: Record<string, {
5864
6491
  required: boolean;
6492
+ defaultEnabled?: boolean | undefined;
5865
6493
  }> | undefined;
5866
6494
  } | undefined;
5867
6495
  personal?: Record<string, {
5868
6496
  required: boolean;
6497
+ defaultEnabled?: boolean | undefined;
5869
6498
  }> | undefined;
5870
6499
  } | undefined;
5871
6500
  };
@@ -6010,10 +6639,12 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
6010
6639
  credentials: {
6011
6640
  categories: Record<string, {
6012
6641
  required: boolean;
6642
+ defaultEnabled?: boolean | undefined;
6013
6643
  }>;
6014
6644
  };
6015
6645
  personal: Record<string, {
6016
6646
  required: boolean;
6647
+ defaultEnabled?: boolean | undefined;
6017
6648
  }>;
6018
6649
  anonymize?: boolean | undefined;
6019
6650
  };
@@ -6021,10 +6652,12 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
6021
6652
  credentials: {
6022
6653
  categories: Record<string, {
6023
6654
  required: boolean;
6655
+ defaultEnabled?: boolean | undefined;
6024
6656
  }>;
6025
6657
  };
6026
6658
  personal: Record<string, {
6027
6659
  required: boolean;
6660
+ defaultEnabled?: boolean | undefined;
6028
6661
  }>;
6029
6662
  };
6030
6663
  };
@@ -6171,20 +6804,24 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.objectUti
6171
6804
  credentials?: {
6172
6805
  categories?: Record<string, {
6173
6806
  required: boolean;
6807
+ defaultEnabled?: boolean | undefined;
6174
6808
  }> | undefined;
6175
6809
  } | undefined;
6176
6810
  personal?: Record<string, {
6177
6811
  required: boolean;
6812
+ defaultEnabled?: boolean | undefined;
6178
6813
  }> | undefined;
6179
6814
  } | undefined;
6180
6815
  write?: {
6181
6816
  credentials?: {
6182
6817
  categories?: Record<string, {
6183
6818
  required: boolean;
6819
+ defaultEnabled?: boolean | undefined;
6184
6820
  }> | undefined;
6185
6821
  } | undefined;
6186
6822
  personal?: Record<string, {
6187
6823
  required: boolean;
6824
+ defaultEnabled?: boolean | undefined;
6188
6825
  }> | undefined;
6189
6826
  } | undefined;
6190
6827
  };