@learncard/ceramic-plugin 1.0.43 → 1.0.46

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.
@@ -54530,6 +54530,16 @@ var BoostRecipientValidator = z.object({
54530
54530
  var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
54531
54531
  records: BoostRecipientValidator.array()
54532
54532
  });
54533
+ var BoostRecipientWithChildrenValidator = z.object({
54534
+ to: LCNProfileValidator,
54535
+ from: z.string(),
54536
+ received: z.string().optional(),
54537
+ boostUris: z.array(z.string()),
54538
+ credentialUris: z.array(z.string()).optional()
54539
+ });
54540
+ var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
54541
+ records: BoostRecipientWithChildrenValidator.array()
54542
+ });
54533
54543
  var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
54534
54544
  endpoint: z.string(),
54535
54545
  name: z.string(),
@@ -54563,12 +54573,12 @@ var ConsentFlowTermsStatusValidator = z.enum(["live", "stale", "withdrawn"]);
54563
54573
  var ConsentFlowContractValidator = z.object({
54564
54574
  read: z.object({
54565
54575
  anonymize: z.boolean().optional(),
54566
- credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
54567
- personal: z.record(z.object({ required: z.boolean() })).default({})
54576
+ credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
54577
+ personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
54568
54578
  }).default({}),
54569
54579
  write: z.object({
54570
- credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
54571
- personal: z.record(z.object({ required: z.boolean() })).default({})
54580
+ credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
54581
+ personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
54572
54582
  }).default({})
54573
54583
  });
54574
54584
  var ConsentFlowContractDetailsValidator = z.object({