@learncard/learn-card-plugin 1.1.51 → 1.1.53

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.
@@ -4609,6 +4609,16 @@ var BoostRecipientValidator = z.object({
4609
4609
  var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
4610
4610
  records: BoostRecipientValidator.array()
4611
4611
  });
4612
+ var BoostRecipientWithChildrenValidator = z.object({
4613
+ to: LCNProfileValidator,
4614
+ from: z.string(),
4615
+ received: z.string().optional(),
4616
+ boostUris: z.array(z.string()),
4617
+ credentialUris: z.array(z.string()).optional()
4618
+ });
4619
+ var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
4620
+ records: BoostRecipientWithChildrenValidator.array()
4621
+ });
4612
4622
  var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
4613
4623
  endpoint: z.string(),
4614
4624
  name: z.string(),