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