@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
|
@@ -11455,7 +11455,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11455
11455
|
createdAt: mod2.string(),
|
|
11456
11456
|
updatedAt: mod2.string(),
|
|
11457
11457
|
expiresAt: mod2.string().optional(),
|
|
11458
|
-
autoBoosts: mod2.string().array().optional()
|
|
11458
|
+
autoBoosts: mod2.string().array().optional(),
|
|
11459
|
+
writers: mod2.array(LCNProfileValidator2).optional()
|
|
11459
11460
|
});
|
|
11460
11461
|
var PaginatedConsentFlowContractsValidator2 = PaginationResponseValidator2.extend({
|
|
11461
11462
|
records: ConsentFlowContractDetailsValidator2.omit({ owner: true }).array()
|
|
@@ -11496,7 +11497,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11496
11497
|
write: mod2.object({
|
|
11497
11498
|
credentials: mod2.object({ categories: mod2.record(mod2.boolean()).default({}) }).default({}),
|
|
11498
11499
|
personal: mod2.record(mod2.boolean()).default({})
|
|
11499
|
-
}).default({})
|
|
11500
|
+
}).default({}),
|
|
11501
|
+
deniedWriters: mod2.array(mod2.string()).optional()
|
|
11500
11502
|
});
|
|
11501
11503
|
var PaginatedConsentFlowTermsValidator2 = PaginationResponseValidator2.extend({
|
|
11502
11504
|
records: mod2.object({
|
|
@@ -15651,7 +15653,8 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
15651
15653
|
createdAt: mod.string(),
|
|
15652
15654
|
updatedAt: mod.string(),
|
|
15653
15655
|
expiresAt: mod.string().optional(),
|
|
15654
|
-
autoBoosts: mod.string().array().optional()
|
|
15656
|
+
autoBoosts: mod.string().array().optional(),
|
|
15657
|
+
writers: mod.array(LCNProfileValidator).optional()
|
|
15655
15658
|
});
|
|
15656
15659
|
var PaginatedConsentFlowContractsValidator = PaginationResponseValidator.extend({
|
|
15657
15660
|
records: ConsentFlowContractDetailsValidator.omit({ owner: true }).array()
|
|
@@ -15692,7 +15695,8 @@ var ConsentFlowTermsValidator = mod.object({
|
|
|
15692
15695
|
write: mod.object({
|
|
15693
15696
|
credentials: mod.object({ categories: mod.record(mod.boolean()).default({}) }).default({}),
|
|
15694
15697
|
personal: mod.record(mod.boolean()).default({})
|
|
15695
|
-
}).default({})
|
|
15698
|
+
}).default({}),
|
|
15699
|
+
deniedWriters: mod.array(mod.string()).optional()
|
|
15696
15700
|
});
|
|
15697
15701
|
var PaginatedConsentFlowTermsValidator = PaginationResponseValidator.extend({
|
|
15698
15702
|
records: mod.object({
|