@learncard/learn-cloud-plugin 2.1.20 → 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 +8 -4
- 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 +8 -4
- package/dist/learn-cloud-plugin.esm.js.map +2 -2
- package/package.json +7 -7
|
@@ -11468,7 +11468,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11468
11468
|
createdAt: mod2.string(),
|
|
11469
11469
|
updatedAt: mod2.string(),
|
|
11470
11470
|
expiresAt: mod2.string().optional(),
|
|
11471
|
-
autoBoosts: mod2.string().array().optional()
|
|
11471
|
+
autoBoosts: mod2.string().array().optional(),
|
|
11472
|
+
writers: mod2.array(LCNProfileValidator2).optional()
|
|
11472
11473
|
});
|
|
11473
11474
|
var PaginatedConsentFlowContractsValidator2 = PaginationResponseValidator2.extend({
|
|
11474
11475
|
records: ConsentFlowContractDetailsValidator2.omit({ owner: true }).array()
|
|
@@ -11509,7 +11510,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11509
11510
|
write: mod2.object({
|
|
11510
11511
|
credentials: mod2.object({ categories: mod2.record(mod2.boolean()).default({}) }).default({}),
|
|
11511
11512
|
personal: mod2.record(mod2.boolean()).default({})
|
|
11512
|
-
}).default({})
|
|
11513
|
+
}).default({}),
|
|
11514
|
+
deniedWriters: mod2.array(mod2.string()).optional()
|
|
11513
11515
|
});
|
|
11514
11516
|
var PaginatedConsentFlowTermsValidator2 = PaginationResponseValidator2.extend({
|
|
11515
11517
|
records: mod2.object({
|
|
@@ -15664,7 +15666,8 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
15664
15666
|
createdAt: mod.string(),
|
|
15665
15667
|
updatedAt: mod.string(),
|
|
15666
15668
|
expiresAt: mod.string().optional(),
|
|
15667
|
-
autoBoosts: mod.string().array().optional()
|
|
15669
|
+
autoBoosts: mod.string().array().optional(),
|
|
15670
|
+
writers: mod.array(LCNProfileValidator).optional()
|
|
15668
15671
|
});
|
|
15669
15672
|
var PaginatedConsentFlowContractsValidator = PaginationResponseValidator.extend({
|
|
15670
15673
|
records: ConsentFlowContractDetailsValidator.omit({ owner: true }).array()
|
|
@@ -15705,7 +15708,8 @@ var ConsentFlowTermsValidator = mod.object({
|
|
|
15705
15708
|
write: mod.object({
|
|
15706
15709
|
credentials: mod.object({ categories: mod.record(mod.boolean()).default({}) }).default({}),
|
|
15707
15710
|
personal: mod.record(mod.boolean()).default({})
|
|
15708
|
-
}).default({})
|
|
15711
|
+
}).default({}),
|
|
15712
|
+
deniedWriters: mod.array(mod.string()).optional()
|
|
15709
15713
|
});
|
|
15710
15714
|
var PaginatedConsentFlowTermsValidator = PaginationResponseValidator.extend({
|
|
15711
15715
|
records: mod.object({
|