@learncard/ceramic-plugin 1.0.37 → 1.0.39

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.
@@ -53711,22 +53711,22 @@ var LCNProfileDisplayValidator = mod.object({
53711
53711
  repeatIdBackgroundImage: mod.boolean().optional()
53712
53712
  });
53713
53713
  var LCNProfileValidator = mod.object({
53714
- profileId: mod.string().min(3).max(40),
53715
- displayName: mod.string().default(""),
53716
- shortBio: mod.string().default(""),
53717
- bio: mod.string().default(""),
53718
- did: mod.string(),
53719
- isPrivate: mod.boolean().optional(),
53720
- email: mod.string().optional(),
53721
- image: mod.string().optional(),
53722
- heroImage: mod.string().optional(),
53723
- websiteLink: mod.string().optional(),
53724
- isServiceProfile: mod.boolean().default(false).optional(),
53725
- type: mod.string().optional(),
53726
- notificationsWebhook: mod.string().url().startsWith("http").optional(),
53727
- display: LCNProfileDisplayValidator.optional(),
53728
- role: mod.string().default("").optional(),
53729
- dob: mod.string().default("").optional()
53714
+ profileId: mod.string().min(3).max(40).describe("Unique, URL-safe identifier for the profile."),
53715
+ displayName: mod.string().default("").describe("Human-readable display name for the profile."),
53716
+ shortBio: mod.string().default("").describe("Short bio for the profile."),
53717
+ bio: mod.string().default("").describe("Longer bio for the profile."),
53718
+ did: mod.string().describe("Decentralized Identifier for the profile. (auto-assigned)"),
53719
+ isPrivate: mod.boolean().optional().describe("Whether the profile is private or not and shows up in search results."),
53720
+ email: mod.string().optional().describe("Contact email address for the profile."),
53721
+ image: mod.string().optional().describe("Profile image URL for the profile."),
53722
+ heroImage: mod.string().optional().describe("Hero image URL for the profile."),
53723
+ websiteLink: mod.string().optional().describe("Website link for the profile."),
53724
+ isServiceProfile: mod.boolean().default(false).optional().describe("Whether the profile is a service profile or not."),
53725
+ type: mod.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
53726
+ notificationsWebhook: mod.string().url().startsWith("http").optional().describe("URL to send notifications to."),
53727
+ display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
53728
+ role: mod.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
53729
+ dob: mod.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
53730
53730
  });
53731
53731
  var LCNProfileQueryValidator = mod.object({
53732
53732
  profileId: StringQuery,