@learncard/helpers 1.2.7 → 1.2.8

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.
@@ -14952,6 +14952,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
14952
14952
  description: external_exports.string().optional(),
14953
14953
  image: external_exports.string().optional(),
14954
14954
  sourceURI: external_exports.string().url().optional(),
14955
+ isPublic: external_exports.boolean().default(false),
14955
14956
  status: SkillFrameworkStatusEnum.default("active"),
14956
14957
  createdAt: external_exports.string().optional(),
14957
14958
  updatedAt: external_exports.string().optional()
@@ -14990,6 +14991,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
14990
14991
  description: external_exports.string().optional(),
14991
14992
  image: external_exports.string().optional(),
14992
14993
  sourceURI: external_exports.string().url().optional(),
14994
+ isPublic: external_exports.boolean().optional(),
14993
14995
  status: SkillFrameworkStatusEnum.optional(),
14994
14996
  skills: external_exports.array(SkillTreeNodeInputValidator).optional(),
14995
14997
  boostUris: external_exports.array(external_exports.string()).optional()
@@ -15000,9 +15002,10 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
15000
15002
  description: external_exports.string().optional(),
15001
15003
  image: external_exports.string().optional(),
15002
15004
  sourceURI: external_exports.string().url().optional(),
15005
+ isPublic: external_exports.boolean().optional(),
15003
15006
  status: SkillFrameworkStatusEnum.optional()
15004
15007
  }).refine(
15005
- (data) => data.name !== void 0 || data.description !== void 0 || data.image !== void 0 || data.sourceURI !== void 0 || data.status !== void 0,
15008
+ (data) => data.name !== void 0 || data.description !== void 0 || data.image !== void 0 || data.sourceURI !== void 0 || data.isPublic !== void 0 || data.status !== void 0,
15006
15009
  {
15007
15010
  message: "At least one field must be provided to update",
15008
15011
  path: ["name"]
@@ -15182,7 +15185,8 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
15182
15185
  "claim",
15183
15186
  "inbox",
15184
15187
  "claimLink",
15185
- "acceptCredential"
15188
+ "acceptCredential",
15189
+ "appEvent"
15186
15190
  ]);
15187
15191
  var CredentialActivityValidator = external_exports.object({
15188
15192
  id: external_exports.string(),