@learncard/learn-cloud-plugin 2.1.19 → 2.1.21
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.
- package/dist/learn-cloud-plugin.cjs.development.js +14 -6
- package/dist/learn-cloud-plugin.cjs.development.js.map +2 -2
- package/dist/learn-cloud-plugin.cjs.production.min.js +5 -5
- package/dist/learn-cloud-plugin.cjs.production.min.js.map +2 -2
- package/dist/learn-cloud-plugin.esm.js +14 -6
- package/dist/learn-cloud-plugin.esm.js.map +2 -2
- package/package.json +7 -7
|
@@ -11257,7 +11257,9 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11257
11257
|
isServiceProfile: mod2.boolean().default(false).optional(),
|
|
11258
11258
|
type: mod2.string().optional(),
|
|
11259
11259
|
notificationsWebhook: mod2.string().url().startsWith("http").optional(),
|
|
11260
|
-
display: LCNProfileDisplayValidator2.optional()
|
|
11260
|
+
display: LCNProfileDisplayValidator2.optional(),
|
|
11261
|
+
role: mod2.string().default("").optional(),
|
|
11262
|
+
dob: mod2.string().default("").optional()
|
|
11261
11263
|
});
|
|
11262
11264
|
var LCNProfileQueryValidator2 = mod2.object({
|
|
11263
11265
|
profileId: StringQuery2,
|
|
@@ -11453,7 +11455,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11453
11455
|
createdAt: mod2.string(),
|
|
11454
11456
|
updatedAt: mod2.string(),
|
|
11455
11457
|
expiresAt: mod2.string().optional(),
|
|
11456
|
-
autoBoosts: mod2.string().array().optional()
|
|
11458
|
+
autoBoosts: mod2.string().array().optional(),
|
|
11459
|
+
writers: mod2.array(LCNProfileValidator2).optional()
|
|
11457
11460
|
});
|
|
11458
11461
|
var PaginatedConsentFlowContractsValidator2 = PaginationResponseValidator2.extend({
|
|
11459
11462
|
records: ConsentFlowContractDetailsValidator2.omit({ owner: true }).array()
|
|
@@ -11494,7 +11497,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11494
11497
|
write: mod2.object({
|
|
11495
11498
|
credentials: mod2.object({ categories: mod2.record(mod2.boolean()).default({}) }).default({}),
|
|
11496
11499
|
personal: mod2.record(mod2.boolean()).default({})
|
|
11497
|
-
}).default({})
|
|
11500
|
+
}).default({}),
|
|
11501
|
+
deniedWriters: mod2.array(mod2.string()).optional()
|
|
11498
11502
|
});
|
|
11499
11503
|
var PaginatedConsentFlowTermsValidator2 = PaginationResponseValidator2.extend({
|
|
11500
11504
|
records: mod2.object({
|
|
@@ -15451,7 +15455,9 @@ var LCNProfileValidator = mod.object({
|
|
|
15451
15455
|
isServiceProfile: mod.boolean().default(false).optional(),
|
|
15452
15456
|
type: mod.string().optional(),
|
|
15453
15457
|
notificationsWebhook: mod.string().url().startsWith("http").optional(),
|
|
15454
|
-
display: LCNProfileDisplayValidator.optional()
|
|
15458
|
+
display: LCNProfileDisplayValidator.optional(),
|
|
15459
|
+
role: mod.string().default("").optional(),
|
|
15460
|
+
dob: mod.string().default("").optional()
|
|
15455
15461
|
});
|
|
15456
15462
|
var LCNProfileQueryValidator = mod.object({
|
|
15457
15463
|
profileId: StringQuery,
|
|
@@ -15647,7 +15653,8 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
15647
15653
|
createdAt: mod.string(),
|
|
15648
15654
|
updatedAt: mod.string(),
|
|
15649
15655
|
expiresAt: mod.string().optional(),
|
|
15650
|
-
autoBoosts: mod.string().array().optional()
|
|
15656
|
+
autoBoosts: mod.string().array().optional(),
|
|
15657
|
+
writers: mod.array(LCNProfileValidator).optional()
|
|
15651
15658
|
});
|
|
15652
15659
|
var PaginatedConsentFlowContractsValidator = PaginationResponseValidator.extend({
|
|
15653
15660
|
records: ConsentFlowContractDetailsValidator.omit({ owner: true }).array()
|
|
@@ -15688,7 +15695,8 @@ var ConsentFlowTermsValidator = mod.object({
|
|
|
15688
15695
|
write: mod.object({
|
|
15689
15696
|
credentials: mod.object({ categories: mod.record(mod.boolean()).default({}) }).default({}),
|
|
15690
15697
|
personal: mod.record(mod.boolean()).default({})
|
|
15691
|
-
}).default({})
|
|
15698
|
+
}).default({}),
|
|
15699
|
+
deniedWriters: mod.array(mod.string()).optional()
|
|
15692
15700
|
});
|
|
15693
15701
|
var PaginatedConsentFlowTermsValidator = PaginationResponseValidator.extend({
|
|
15694
15702
|
records: mod.object({
|