@learncard/network-brain-client 2.5.13 → 2.5.15

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.
@@ -28610,6 +28610,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
28610
28610
  });
28611
28611
  var BoostPermissionsValidator = external_exports2.object({
28612
28612
  role: external_exports2.string(),
28613
+ canView: external_exports2.boolean().default(true),
28613
28614
  canEdit: external_exports2.boolean(),
28614
28615
  canIssue: external_exports2.boolean(),
28615
28616
  canRevoke: external_exports2.boolean(),
@@ -28624,6 +28625,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
28624
28625
  });
28625
28626
  var BoostPermissionsQueryValidator = external_exports2.object({
28626
28627
  role: StringQuery,
28628
+ canView: external_exports2.boolean(),
28627
28629
  canEdit: external_exports2.boolean(),
28628
28630
  canIssue: external_exports2.boolean(),
28629
28631
  canRevoke: external_exports2.boolean(),
@@ -28749,7 +28751,13 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
28749
28751
  var SendBoostTemplateValidator = BoostValidator.partial().omit({ uri: true, claimPermissions: true }).extend({
28750
28752
  credential: VCValidator.or(UnsignedVCValidator),
28751
28753
  claimPermissions: BoostPermissionsValidator.partial().optional(),
28752
- skills: external_exports2.array(external_exports2.object({ frameworkId: external_exports2.string(), id: external_exports2.string() })).min(1).optional()
28754
+ skills: external_exports2.array(
28755
+ external_exports2.object({
28756
+ frameworkId: external_exports2.string(),
28757
+ id: external_exports2.string(),
28758
+ proficiencyLevel: external_exports2.number().optional()
28759
+ })
28760
+ ).min(1).optional()
28753
28761
  });
28754
28762
  var SendBrandingOptionsValidator = external_exports2.object({
28755
28763
  issuerName: external_exports2.string().optional().describe("Name of the issuing organization"),