@learncard/network-brain-client 2.5.15 → 2.5.16

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.
@@ -29376,6 +29376,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
29376
29376
  description: external_exports2.string().optional(),
29377
29377
  image: external_exports2.string().optional(),
29378
29378
  sourceURI: external_exports2.string().url().optional(),
29379
+ isPublic: external_exports2.boolean().default(false),
29379
29380
  status: SkillFrameworkStatusEnum.default("active"),
29380
29381
  createdAt: external_exports2.string().optional(),
29381
29382
  updatedAt: external_exports2.string().optional()
@@ -29414,6 +29415,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
29414
29415
  description: external_exports2.string().optional(),
29415
29416
  image: external_exports2.string().optional(),
29416
29417
  sourceURI: external_exports2.string().url().optional(),
29418
+ isPublic: external_exports2.boolean().optional(),
29417
29419
  status: SkillFrameworkStatusEnum.optional(),
29418
29420
  skills: external_exports2.array(SkillTreeNodeInputValidator).optional(),
29419
29421
  boostUris: external_exports2.array(external_exports2.string()).optional()
@@ -29424,9 +29426,10 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
29424
29426
  description: external_exports2.string().optional(),
29425
29427
  image: external_exports2.string().optional(),
29426
29428
  sourceURI: external_exports2.string().url().optional(),
29429
+ isPublic: external_exports2.boolean().optional(),
29427
29430
  status: SkillFrameworkStatusEnum.optional()
29428
29431
  }).refine(
29429
- (data) => data.name !== void 0 || data.description !== void 0 || data.image !== void 0 || data.sourceURI !== void 0 || data.status !== void 0,
29432
+ (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,
29430
29433
  {
29431
29434
  message: "At least one field must be provided to update",
29432
29435
  path: ["name"]
@@ -29606,7 +29609,8 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
29606
29609
  "claim",
29607
29610
  "inbox",
29608
29611
  "claimLink",
29609
- "acceptCredential"
29612
+ "acceptCredential",
29613
+ "appEvent"
29610
29614
  ]);
29611
29615
  var CredentialActivityValidator = external_exports2.object({
29612
29616
  id: external_exports2.string(),