@learncard/types 5.12.0 → 5.12.1

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/types.esm.js CHANGED
@@ -584,6 +584,7 @@ var SentCredentialInfoValidator = z9.object({
584
584
  });
585
585
  var BoostPermissionsValidator = z9.object({
586
586
  role: z9.string(),
587
+ canView: z9.boolean().default(true),
587
588
  canEdit: z9.boolean(),
588
589
  canIssue: z9.boolean(),
589
590
  canRevoke: z9.boolean(),
@@ -598,6 +599,7 @@ var BoostPermissionsValidator = z9.object({
598
599
  });
599
600
  var BoostPermissionsQueryValidator = z9.object({
600
601
  role: StringQuery,
602
+ canView: z9.boolean(),
601
603
  canEdit: z9.boolean(),
602
604
  canIssue: z9.boolean(),
603
605
  canRevoke: z9.boolean(),
@@ -723,7 +725,13 @@ var AutoBoostConfigValidator = z9.object({
723
725
  var SendBoostTemplateValidator = BoostValidator.partial().omit({ uri: true, claimPermissions: true }).extend({
724
726
  credential: VCValidator.or(UnsignedVCValidator),
725
727
  claimPermissions: BoostPermissionsValidator.partial().optional(),
726
- skills: z9.array(z9.object({ frameworkId: z9.string(), id: z9.string() })).min(1).optional()
728
+ skills: z9.array(
729
+ z9.object({
730
+ frameworkId: z9.string(),
731
+ id: z9.string(),
732
+ proficiencyLevel: z9.number().optional()
733
+ })
734
+ ).min(1).optional()
727
735
  });
728
736
  var SendBrandingOptionsValidator = z9.object({
729
737
  issuerName: z9.string().optional().describe("Name of the issuing organization"),