@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.
@@ -3799,7 +3799,9 @@ var LCNProfileValidator = mod.object({
3799
3799
  isServiceProfile: mod.boolean().default(false).optional(),
3800
3800
  type: mod.string().optional(),
3801
3801
  notificationsWebhook: mod.string().url().startsWith("http").optional(),
3802
- display: LCNProfileDisplayValidator.optional()
3802
+ display: LCNProfileDisplayValidator.optional(),
3803
+ role: mod.string().default("").optional(),
3804
+ dob: mod.string().default("").optional()
3803
3805
  });
3804
3806
  var LCNProfileQueryValidator = mod.object({
3805
3807
  profileId: StringQuery,
@@ -3995,7 +3997,8 @@ var ConsentFlowContractDetailsValidator = mod.object({
3995
3997
  createdAt: mod.string(),
3996
3998
  updatedAt: mod.string(),
3997
3999
  expiresAt: mod.string().optional(),
3998
- autoBoosts: mod.string().array().optional()
4000
+ autoBoosts: mod.string().array().optional(),
4001
+ writers: mod.array(LCNProfileValidator).optional()
3999
4002
  });
4000
4003
  var PaginatedConsentFlowContractsValidator = PaginationResponseValidator.extend({
4001
4004
  records: ConsentFlowContractDetailsValidator.omit({ owner: true }).array()
@@ -4036,7 +4039,8 @@ var ConsentFlowTermsValidator = mod.object({
4036
4039
  write: mod.object({
4037
4040
  credentials: mod.object({ categories: mod.record(mod.boolean()).default({}) }).default({}),
4038
4041
  personal: mod.record(mod.boolean()).default({})
4039
- }).default({})
4042
+ }).default({}),
4043
+ deniedWriters: mod.array(mod.string()).optional()
4040
4044
  });
4041
4045
  var PaginatedConsentFlowTermsValidator = PaginationResponseValidator.extend({
4042
4046
  records: mod.object({