@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
|
@@ -11270,7 +11270,9 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11270
11270
|
isServiceProfile: mod2.boolean().default(false).optional(),
|
|
11271
11271
|
type: mod2.string().optional(),
|
|
11272
11272
|
notificationsWebhook: mod2.string().url().startsWith("http").optional(),
|
|
11273
|
-
display: LCNProfileDisplayValidator2.optional()
|
|
11273
|
+
display: LCNProfileDisplayValidator2.optional(),
|
|
11274
|
+
role: mod2.string().default("").optional(),
|
|
11275
|
+
dob: mod2.string().default("").optional()
|
|
11274
11276
|
});
|
|
11275
11277
|
var LCNProfileQueryValidator2 = mod2.object({
|
|
11276
11278
|
profileId: StringQuery2,
|
|
@@ -11466,7 +11468,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11466
11468
|
createdAt: mod2.string(),
|
|
11467
11469
|
updatedAt: mod2.string(),
|
|
11468
11470
|
expiresAt: mod2.string().optional(),
|
|
11469
|
-
autoBoosts: mod2.string().array().optional()
|
|
11471
|
+
autoBoosts: mod2.string().array().optional(),
|
|
11472
|
+
writers: mod2.array(LCNProfileValidator2).optional()
|
|
11470
11473
|
});
|
|
11471
11474
|
var PaginatedConsentFlowContractsValidator2 = PaginationResponseValidator2.extend({
|
|
11472
11475
|
records: ConsentFlowContractDetailsValidator2.omit({ owner: true }).array()
|
|
@@ -11507,7 +11510,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11507
11510
|
write: mod2.object({
|
|
11508
11511
|
credentials: mod2.object({ categories: mod2.record(mod2.boolean()).default({}) }).default({}),
|
|
11509
11512
|
personal: mod2.record(mod2.boolean()).default({})
|
|
11510
|
-
}).default({})
|
|
11513
|
+
}).default({}),
|
|
11514
|
+
deniedWriters: mod2.array(mod2.string()).optional()
|
|
11511
11515
|
});
|
|
11512
11516
|
var PaginatedConsentFlowTermsValidator2 = PaginationResponseValidator2.extend({
|
|
11513
11517
|
records: mod2.object({
|
|
@@ -15464,7 +15468,9 @@ var LCNProfileValidator = mod.object({
|
|
|
15464
15468
|
isServiceProfile: mod.boolean().default(false).optional(),
|
|
15465
15469
|
type: mod.string().optional(),
|
|
15466
15470
|
notificationsWebhook: mod.string().url().startsWith("http").optional(),
|
|
15467
|
-
display: LCNProfileDisplayValidator.optional()
|
|
15471
|
+
display: LCNProfileDisplayValidator.optional(),
|
|
15472
|
+
role: mod.string().default("").optional(),
|
|
15473
|
+
dob: mod.string().default("").optional()
|
|
15468
15474
|
});
|
|
15469
15475
|
var LCNProfileQueryValidator = mod.object({
|
|
15470
15476
|
profileId: StringQuery,
|
|
@@ -15660,7 +15666,8 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
15660
15666
|
createdAt: mod.string(),
|
|
15661
15667
|
updatedAt: mod.string(),
|
|
15662
15668
|
expiresAt: mod.string().optional(),
|
|
15663
|
-
autoBoosts: mod.string().array().optional()
|
|
15669
|
+
autoBoosts: mod.string().array().optional(),
|
|
15670
|
+
writers: mod.array(LCNProfileValidator).optional()
|
|
15664
15671
|
});
|
|
15665
15672
|
var PaginatedConsentFlowContractsValidator = PaginationResponseValidator.extend({
|
|
15666
15673
|
records: ConsentFlowContractDetailsValidator.omit({ owner: true }).array()
|
|
@@ -15701,7 +15708,8 @@ var ConsentFlowTermsValidator = mod.object({
|
|
|
15701
15708
|
write: mod.object({
|
|
15702
15709
|
credentials: mod.object({ categories: mod.record(mod.boolean()).default({}) }).default({}),
|
|
15703
15710
|
personal: mod.record(mod.boolean()).default({})
|
|
15704
|
-
}).default({})
|
|
15711
|
+
}).default({}),
|
|
15712
|
+
deniedWriters: mod.array(mod.string()).optional()
|
|
15705
15713
|
});
|
|
15706
15714
|
var PaginatedConsentFlowTermsValidator = PaginationResponseValidator.extend({
|
|
15707
15715
|
records: mod.object({
|