@learncard/didkey-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.
@@ -3990,22 +3990,22 @@ var require_types_cjs_development = __commonJS({
3990
3990
  repeatIdBackgroundImage: mod.boolean().optional()
3991
3991
  });
3992
3992
  var LCNProfileValidator = mod.object({
3993
- profileId: mod.string().min(3).max(40),
3994
- displayName: mod.string().default(""),
3995
- shortBio: mod.string().default(""),
3996
- bio: mod.string().default(""),
3997
- did: mod.string(),
3998
- isPrivate: mod.boolean().optional(),
3999
- email: mod.string().optional(),
4000
- image: mod.string().optional(),
4001
- heroImage: mod.string().optional(),
4002
- websiteLink: mod.string().optional(),
4003
- isServiceProfile: mod.boolean().default(false).optional(),
4004
- type: mod.string().optional(),
4005
- notificationsWebhook: mod.string().url().startsWith("http").optional(),
4006
- display: LCNProfileDisplayValidator.optional(),
4007
- role: mod.string().default("").optional(),
4008
- dob: mod.string().default("").optional()
3993
+ profileId: mod.string().min(3).max(40).describe("Unique, URL-safe identifier for the profile."),
3994
+ displayName: mod.string().default("").describe("Human-readable display name for the profile."),
3995
+ shortBio: mod.string().default("").describe("Short bio for the profile."),
3996
+ bio: mod.string().default("").describe("Longer bio for the profile."),
3997
+ did: mod.string().describe("Decentralized Identifier for the profile. (auto-assigned)"),
3998
+ isPrivate: mod.boolean().optional().describe("Whether the profile is private or not and shows up in search results."),
3999
+ email: mod.string().optional().describe("Contact email address for the profile."),
4000
+ image: mod.string().optional().describe("Profile image URL for the profile."),
4001
+ heroImage: mod.string().optional().describe("Hero image URL for the profile."),
4002
+ websiteLink: mod.string().optional().describe("Website link for the profile."),
4003
+ isServiceProfile: mod.boolean().default(false).optional().describe("Whether the profile is a service profile or not."),
4004
+ type: mod.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
4005
+ notificationsWebhook: mod.string().url().startsWith("http").optional().describe("URL to send notifications to."),
4006
+ display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
4007
+ role: mod.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
4008
+ dob: mod.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
4009
4009
  });
4010
4010
  var LCNProfileQueryValidator = mod.object({
4011
4011
  profileId: StringQuery,