@learncard/ceramic-plugin 1.0.29 → 1.0.30
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/ceramic-plugin.cjs.development.js +37 -2
- package/dist/ceramic-plugin.cjs.development.js.map +2 -2
- package/dist/ceramic-plugin.cjs.production.min.js +61 -61
- package/dist/ceramic-plugin.cjs.production.min.js.map +3 -3
- package/dist/ceramic-plugin.esm.js +37 -2
- package/dist/ceramic-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -53734,6 +53734,13 @@ var LCNSigningAuthorityForUserValidator = mod.object({
|
|
|
53734
53734
|
did: mod.string()
|
|
53735
53735
|
})
|
|
53736
53736
|
});
|
|
53737
|
+
var AutoBoostConfigValidator = mod.object({
|
|
53738
|
+
boostUri: mod.string(),
|
|
53739
|
+
signingAuthority: mod.object({
|
|
53740
|
+
endpoint: mod.string(),
|
|
53741
|
+
name: mod.string()
|
|
53742
|
+
})
|
|
53743
|
+
});
|
|
53737
53744
|
var ConsentFlowTermsStatusValidator = mod.enum(["live", "stale", "withdrawn"]);
|
|
53738
53745
|
var ConsentFlowContractValidator = mod.object({
|
|
53739
53746
|
read: mod.object({
|
|
@@ -53757,6 +53764,7 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
53757
53764
|
uri: mod.string(),
|
|
53758
53765
|
needsGuardianConsent: mod.boolean().optional(),
|
|
53759
53766
|
redirectUrl: mod.string().optional(),
|
|
53767
|
+
frontDoorBoostUri: mod.string().optional(),
|
|
53760
53768
|
createdAt: mod.string(),
|
|
53761
53769
|
updatedAt: mod.string(),
|
|
53762
53770
|
expiresAt: mod.string().optional()
|
|
@@ -53772,6 +53780,15 @@ var ConsentFlowContractDataValidator = mod.object({
|
|
|
53772
53780
|
var PaginatedConsentFlowDataValidator = PaginationResponseValidator.extend({
|
|
53773
53781
|
records: ConsentFlowContractDataValidator.array()
|
|
53774
53782
|
});
|
|
53783
|
+
var ConsentFlowContractDataForDidValidator = mod.object({
|
|
53784
|
+
credentials: mod.object({ category: mod.string(), uri: mod.string() }).array(),
|
|
53785
|
+
personal: mod.record(mod.string()).default({}),
|
|
53786
|
+
date: mod.string(),
|
|
53787
|
+
contractUri: mod.string()
|
|
53788
|
+
});
|
|
53789
|
+
var PaginatedConsentFlowDataForDidValidator = PaginationResponseValidator.extend({
|
|
53790
|
+
records: ConsentFlowContractDataForDidValidator.array()
|
|
53791
|
+
});
|
|
53775
53792
|
var ConsentFlowTermValidator = mod.object({
|
|
53776
53793
|
sharing: mod.boolean().optional(),
|
|
53777
53794
|
shared: mod.string().array().optional(),
|
|
@@ -53824,6 +53841,11 @@ var ConsentFlowDataQueryValidator = mod.object({
|
|
|
53824
53841
|
credentials: mod.object({ categories: mod.record(mod.boolean()).optional() }).optional(),
|
|
53825
53842
|
personal: mod.record(mod.boolean()).optional()
|
|
53826
53843
|
});
|
|
53844
|
+
var ConsentFlowDataForDidQueryValidator = mod.object({
|
|
53845
|
+
credentials: mod.object({ categories: mod.record(mod.boolean()).optional() }).optional(),
|
|
53846
|
+
personal: mod.record(mod.boolean()).optional(),
|
|
53847
|
+
id: StringQuery.optional()
|
|
53848
|
+
});
|
|
53827
53849
|
var ConsentFlowTermsQueryValidator = mod.object({
|
|
53828
53850
|
read: mod.object({
|
|
53829
53851
|
anonymize: mod.boolean().optional(),
|
|
@@ -53843,7 +53865,8 @@ var ConsentFlowTransactionActionValidator = mod.enum([
|
|
|
53843
53865
|
"consent",
|
|
53844
53866
|
"update",
|
|
53845
53867
|
"sync",
|
|
53846
|
-
"withdraw"
|
|
53868
|
+
"withdraw",
|
|
53869
|
+
"write"
|
|
53847
53870
|
]);
|
|
53848
53871
|
var ConsentFlowTransactionsQueryValidator = mod.object({
|
|
53849
53872
|
terms: ConsentFlowTermsQueryValidator.optional(),
|
|
@@ -53860,11 +53883,23 @@ var ConsentFlowTransactionValidator = mod.object({
|
|
|
53860
53883
|
terms: ConsentFlowTermsValidator.optional(),
|
|
53861
53884
|
id: mod.string(),
|
|
53862
53885
|
action: ConsentFlowTransactionActionValidator,
|
|
53863
|
-
date: mod.string()
|
|
53886
|
+
date: mod.string(),
|
|
53887
|
+
uris: mod.string().array().optional()
|
|
53864
53888
|
});
|
|
53865
53889
|
var PaginatedConsentFlowTransactionsValidator = PaginationResponseValidator.extend({
|
|
53866
53890
|
records: ConsentFlowTransactionValidator.array()
|
|
53867
53891
|
});
|
|
53892
|
+
var ContractCredentialValidator = mod.object({
|
|
53893
|
+
credentialUri: mod.string(),
|
|
53894
|
+
termsUri: mod.string(),
|
|
53895
|
+
contractUri: mod.string(),
|
|
53896
|
+
boostUri: mod.string(),
|
|
53897
|
+
category: mod.string().optional(),
|
|
53898
|
+
date: mod.string()
|
|
53899
|
+
});
|
|
53900
|
+
var PaginatedContractCredentialsValidator = PaginationResponseValidator.extend({
|
|
53901
|
+
records: ContractCredentialValidator.array()
|
|
53902
|
+
});
|
|
53868
53903
|
var LCNNotificationTypeEnumValidator = mod.enum([
|
|
53869
53904
|
"CONNECTION_REQUEST",
|
|
53870
53905
|
"CONNECTION_ACCEPTED",
|