@learncard/learn-card-plugin 1.1.38 → 1.1.40

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.
@@ -3823,7 +3823,9 @@ var LCNProfileValidator = mod.object({
3823
3823
  isServiceProfile: mod.boolean().default(false).optional(),
3824
3824
  type: mod.string().optional(),
3825
3825
  notificationsWebhook: mod.string().url().startsWith("http").optional(),
3826
- display: LCNProfileDisplayValidator.optional()
3826
+ display: LCNProfileDisplayValidator.optional(),
3827
+ role: mod.string().default("").optional(),
3828
+ dob: mod.string().default("").optional()
3827
3829
  });
3828
3830
  var LCNProfileQueryValidator = mod.object({
3829
3831
  profileId: StringQuery,
@@ -4019,7 +4021,8 @@ var ConsentFlowContractDetailsValidator = mod.object({
4019
4021
  createdAt: mod.string(),
4020
4022
  updatedAt: mod.string(),
4021
4023
  expiresAt: mod.string().optional(),
4022
- autoBoosts: mod.string().array().optional()
4024
+ autoBoosts: mod.string().array().optional(),
4025
+ writers: mod.array(LCNProfileValidator).optional()
4023
4026
  });
4024
4027
  var PaginatedConsentFlowContractsValidator = PaginationResponseValidator.extend({
4025
4028
  records: ConsentFlowContractDetailsValidator.omit({ owner: true }).array()
@@ -4060,7 +4063,8 @@ var ConsentFlowTermsValidator = mod.object({
4060
4063
  write: mod.object({
4061
4064
  credentials: mod.object({ categories: mod.record(mod.boolean()).default({}) }).default({}),
4062
4065
  personal: mod.record(mod.boolean()).default({})
4063
- }).default({})
4066
+ }).default({}),
4067
+ deniedWriters: mod.array(mod.string()).optional()
4064
4068
  });
4065
4069
  var PaginatedConsentFlowTermsValidator = PaginationResponseValidator.extend({
4066
4070
  records: mod.object({