@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
|
@@ -53738,6 +53738,13 @@ var LCNSigningAuthorityForUserValidator = mod.object({
|
|
|
53738
53738
|
did: mod.string()
|
|
53739
53739
|
})
|
|
53740
53740
|
});
|
|
53741
|
+
var AutoBoostConfigValidator = mod.object({
|
|
53742
|
+
boostUri: mod.string(),
|
|
53743
|
+
signingAuthority: mod.object({
|
|
53744
|
+
endpoint: mod.string(),
|
|
53745
|
+
name: mod.string()
|
|
53746
|
+
})
|
|
53747
|
+
});
|
|
53741
53748
|
var ConsentFlowTermsStatusValidator = mod.enum(["live", "stale", "withdrawn"]);
|
|
53742
53749
|
var ConsentFlowContractValidator = mod.object({
|
|
53743
53750
|
read: mod.object({
|
|
@@ -53761,6 +53768,7 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
53761
53768
|
uri: mod.string(),
|
|
53762
53769
|
needsGuardianConsent: mod.boolean().optional(),
|
|
53763
53770
|
redirectUrl: mod.string().optional(),
|
|
53771
|
+
frontDoorBoostUri: mod.string().optional(),
|
|
53764
53772
|
createdAt: mod.string(),
|
|
53765
53773
|
updatedAt: mod.string(),
|
|
53766
53774
|
expiresAt: mod.string().optional()
|
|
@@ -53776,6 +53784,15 @@ var ConsentFlowContractDataValidator = mod.object({
|
|
|
53776
53784
|
var PaginatedConsentFlowDataValidator = PaginationResponseValidator.extend({
|
|
53777
53785
|
records: ConsentFlowContractDataValidator.array()
|
|
53778
53786
|
});
|
|
53787
|
+
var ConsentFlowContractDataForDidValidator = mod.object({
|
|
53788
|
+
credentials: mod.object({ category: mod.string(), uri: mod.string() }).array(),
|
|
53789
|
+
personal: mod.record(mod.string()).default({}),
|
|
53790
|
+
date: mod.string(),
|
|
53791
|
+
contractUri: mod.string()
|
|
53792
|
+
});
|
|
53793
|
+
var PaginatedConsentFlowDataForDidValidator = PaginationResponseValidator.extend({
|
|
53794
|
+
records: ConsentFlowContractDataForDidValidator.array()
|
|
53795
|
+
});
|
|
53779
53796
|
var ConsentFlowTermValidator = mod.object({
|
|
53780
53797
|
sharing: mod.boolean().optional(),
|
|
53781
53798
|
shared: mod.string().array().optional(),
|
|
@@ -53828,6 +53845,11 @@ var ConsentFlowDataQueryValidator = mod.object({
|
|
|
53828
53845
|
credentials: mod.object({ categories: mod.record(mod.boolean()).optional() }).optional(),
|
|
53829
53846
|
personal: mod.record(mod.boolean()).optional()
|
|
53830
53847
|
});
|
|
53848
|
+
var ConsentFlowDataForDidQueryValidator = mod.object({
|
|
53849
|
+
credentials: mod.object({ categories: mod.record(mod.boolean()).optional() }).optional(),
|
|
53850
|
+
personal: mod.record(mod.boolean()).optional(),
|
|
53851
|
+
id: StringQuery.optional()
|
|
53852
|
+
});
|
|
53831
53853
|
var ConsentFlowTermsQueryValidator = mod.object({
|
|
53832
53854
|
read: mod.object({
|
|
53833
53855
|
anonymize: mod.boolean().optional(),
|
|
@@ -53847,7 +53869,8 @@ var ConsentFlowTransactionActionValidator = mod.enum([
|
|
|
53847
53869
|
"consent",
|
|
53848
53870
|
"update",
|
|
53849
53871
|
"sync",
|
|
53850
|
-
"withdraw"
|
|
53872
|
+
"withdraw",
|
|
53873
|
+
"write"
|
|
53851
53874
|
]);
|
|
53852
53875
|
var ConsentFlowTransactionsQueryValidator = mod.object({
|
|
53853
53876
|
terms: ConsentFlowTermsQueryValidator.optional(),
|
|
@@ -53864,11 +53887,23 @@ var ConsentFlowTransactionValidator = mod.object({
|
|
|
53864
53887
|
terms: ConsentFlowTermsValidator.optional(),
|
|
53865
53888
|
id: mod.string(),
|
|
53866
53889
|
action: ConsentFlowTransactionActionValidator,
|
|
53867
|
-
date: mod.string()
|
|
53890
|
+
date: mod.string(),
|
|
53891
|
+
uris: mod.string().array().optional()
|
|
53868
53892
|
});
|
|
53869
53893
|
var PaginatedConsentFlowTransactionsValidator = PaginationResponseValidator.extend({
|
|
53870
53894
|
records: ConsentFlowTransactionValidator.array()
|
|
53871
53895
|
});
|
|
53896
|
+
var ContractCredentialValidator = mod.object({
|
|
53897
|
+
credentialUri: mod.string(),
|
|
53898
|
+
termsUri: mod.string(),
|
|
53899
|
+
contractUri: mod.string(),
|
|
53900
|
+
boostUri: mod.string(),
|
|
53901
|
+
category: mod.string().optional(),
|
|
53902
|
+
date: mod.string()
|
|
53903
|
+
});
|
|
53904
|
+
var PaginatedContractCredentialsValidator = PaginationResponseValidator.extend({
|
|
53905
|
+
records: ContractCredentialValidator.array()
|
|
53906
|
+
});
|
|
53872
53907
|
var LCNNotificationTypeEnumValidator = mod.enum([
|
|
53873
53908
|
"CONNECTION_REQUEST",
|
|
53874
53909
|
"CONNECTION_ACCEPTED",
|