@learncard/helpers 1.2.6 → 1.2.7

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.
@@ -14186,6 +14186,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
14186
14186
  });
14187
14187
  var BoostPermissionsValidator = external_exports.object({
14188
14188
  role: external_exports.string(),
14189
+ canView: external_exports.boolean().default(true),
14189
14190
  canEdit: external_exports.boolean(),
14190
14191
  canIssue: external_exports.boolean(),
14191
14192
  canRevoke: external_exports.boolean(),
@@ -14200,6 +14201,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
14200
14201
  });
14201
14202
  var BoostPermissionsQueryValidator = external_exports.object({
14202
14203
  role: StringQuery,
14204
+ canView: external_exports.boolean(),
14203
14205
  canEdit: external_exports.boolean(),
14204
14206
  canIssue: external_exports.boolean(),
14205
14207
  canRevoke: external_exports.boolean(),
@@ -14325,7 +14327,13 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
14325
14327
  var SendBoostTemplateValidator = BoostValidator.partial().omit({ uri: true, claimPermissions: true }).extend({
14326
14328
  credential: VCValidator.or(UnsignedVCValidator),
14327
14329
  claimPermissions: BoostPermissionsValidator.partial().optional(),
14328
- skills: external_exports.array(external_exports.object({ frameworkId: external_exports.string(), id: external_exports.string() })).min(1).optional()
14330
+ skills: external_exports.array(
14331
+ external_exports.object({
14332
+ frameworkId: external_exports.string(),
14333
+ id: external_exports.string(),
14334
+ proficiencyLevel: external_exports.number().optional()
14335
+ })
14336
+ ).min(1).optional()
14329
14337
  });
14330
14338
  var SendBrandingOptionsValidator = external_exports.object({
14331
14339
  issuerName: external_exports.string().optional().describe("Name of the issuing organization"),