@learncard/didkey-plugin 1.0.44 → 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.
@@ -77,6 +77,7 @@ var require_types_cjs_development = __commonJS({
77
77
  BoostPermissionsValidator: () => BoostPermissionsValidator,
78
78
  BoostQueryValidator: () => BoostQueryValidator,
79
79
  BoostRecipientValidator: () => BoostRecipientValidator,
80
+ BoostRecipientWithChildrenValidator: () => BoostRecipientWithChildrenValidator,
80
81
  BoostValidator: () => BoostValidator,
81
82
  ClaimHookQueryValidator: () => ClaimHookQueryValidator,
82
83
  ClaimHookTypeValidator: () => ClaimHookTypeValidator,
@@ -152,6 +153,7 @@ var require_types_cjs_development = __commonJS({
152
153
  LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator,
153
154
  LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator,
154
155
  PaginatedBoostRecipientsValidator: () => PaginatedBoostRecipientsValidator,
156
+ PaginatedBoostRecipientsWithChildrenValidator: () => PaginatedBoostRecipientsWithChildrenValidator,
155
157
  PaginatedBoostsValidator: () => PaginatedBoostsValidator,
156
158
  PaginatedClaimHooksValidator: () => PaginatedClaimHooksValidator,
157
159
  PaginatedConsentFlowContractsValidator: () => PaginatedConsentFlowContractsValidator,
@@ -4839,6 +4841,16 @@ var require_types_cjs_development = __commonJS({
4839
4841
  var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
4840
4842
  records: BoostRecipientValidator.array()
4841
4843
  });
4844
+ var BoostRecipientWithChildrenValidator = z.object({
4845
+ to: LCNProfileValidator,
4846
+ from: z.string(),
4847
+ received: z.string().optional(),
4848
+ boostUris: z.array(z.string()),
4849
+ credentialUris: z.array(z.string()).optional()
4850
+ });
4851
+ var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
4852
+ records: BoostRecipientWithChildrenValidator.array()
4853
+ });
4842
4854
  var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
4843
4855
  endpoint: z.string(),
4844
4856
  name: z.string(),