@learncard/learn-card-plugin 1.1.31 → 1.1.33
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-card-plugin.cjs.development.js +38 -3
- package/dist/learn-card-plugin.cjs.development.js.map +3 -3
- package/dist/learn-card-plugin.cjs.production.min.js +1 -1
- package/dist/learn-card-plugin.cjs.production.min.js.map +4 -4
- package/dist/learn-card-plugin.esm.js +38 -3
- package/dist/learn-card-plugin.esm.js.map +3 -3
- package/package.json +4 -4
|
@@ -3948,6 +3948,13 @@ var LCNSigningAuthorityForUserValidator = mod.object({
|
|
|
3948
3948
|
did: mod.string()
|
|
3949
3949
|
})
|
|
3950
3950
|
});
|
|
3951
|
+
var AutoBoostConfigValidator = mod.object({
|
|
3952
|
+
boostUri: mod.string(),
|
|
3953
|
+
signingAuthority: mod.object({
|
|
3954
|
+
endpoint: mod.string(),
|
|
3955
|
+
name: mod.string()
|
|
3956
|
+
})
|
|
3957
|
+
});
|
|
3951
3958
|
var ConsentFlowTermsStatusValidator = mod.enum(["live", "stale", "withdrawn"]);
|
|
3952
3959
|
var ConsentFlowContractValidator = mod.object({
|
|
3953
3960
|
read: mod.object({
|
|
@@ -3971,6 +3978,7 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
3971
3978
|
uri: mod.string(),
|
|
3972
3979
|
needsGuardianConsent: mod.boolean().optional(),
|
|
3973
3980
|
redirectUrl: mod.string().optional(),
|
|
3981
|
+
frontDoorBoostUri: mod.string().optional(),
|
|
3974
3982
|
createdAt: mod.string(),
|
|
3975
3983
|
updatedAt: mod.string(),
|
|
3976
3984
|
expiresAt: mod.string().optional()
|
|
@@ -3986,6 +3994,15 @@ var ConsentFlowContractDataValidator = mod.object({
|
|
|
3986
3994
|
var PaginatedConsentFlowDataValidator = PaginationResponseValidator.extend({
|
|
3987
3995
|
records: ConsentFlowContractDataValidator.array()
|
|
3988
3996
|
});
|
|
3997
|
+
var ConsentFlowContractDataForDidValidator = mod.object({
|
|
3998
|
+
credentials: mod.object({ category: mod.string(), uri: mod.string() }).array(),
|
|
3999
|
+
personal: mod.record(mod.string()).default({}),
|
|
4000
|
+
date: mod.string(),
|
|
4001
|
+
contractUri: mod.string()
|
|
4002
|
+
});
|
|
4003
|
+
var PaginatedConsentFlowDataForDidValidator = PaginationResponseValidator.extend({
|
|
4004
|
+
records: ConsentFlowContractDataForDidValidator.array()
|
|
4005
|
+
});
|
|
3989
4006
|
var ConsentFlowTermValidator = mod.object({
|
|
3990
4007
|
sharing: mod.boolean().optional(),
|
|
3991
4008
|
shared: mod.string().array().optional(),
|
|
@@ -4038,6 +4055,11 @@ var ConsentFlowDataQueryValidator = mod.object({
|
|
|
4038
4055
|
credentials: mod.object({ categories: mod.record(mod.boolean()).optional() }).optional(),
|
|
4039
4056
|
personal: mod.record(mod.boolean()).optional()
|
|
4040
4057
|
});
|
|
4058
|
+
var ConsentFlowDataForDidQueryValidator = mod.object({
|
|
4059
|
+
credentials: mod.object({ categories: mod.record(mod.boolean()).optional() }).optional(),
|
|
4060
|
+
personal: mod.record(mod.boolean()).optional(),
|
|
4061
|
+
id: StringQuery.optional()
|
|
4062
|
+
});
|
|
4041
4063
|
var ConsentFlowTermsQueryValidator = mod.object({
|
|
4042
4064
|
read: mod.object({
|
|
4043
4065
|
anonymize: mod.boolean().optional(),
|
|
@@ -4057,7 +4079,8 @@ var ConsentFlowTransactionActionValidator = mod.enum([
|
|
|
4057
4079
|
"consent",
|
|
4058
4080
|
"update",
|
|
4059
4081
|
"sync",
|
|
4060
|
-
"withdraw"
|
|
4082
|
+
"withdraw",
|
|
4083
|
+
"write"
|
|
4061
4084
|
]);
|
|
4062
4085
|
var ConsentFlowTransactionsQueryValidator = mod.object({
|
|
4063
4086
|
terms: ConsentFlowTermsQueryValidator.optional(),
|
|
@@ -4074,11 +4097,23 @@ var ConsentFlowTransactionValidator = mod.object({
|
|
|
4074
4097
|
terms: ConsentFlowTermsValidator.optional(),
|
|
4075
4098
|
id: mod.string(),
|
|
4076
4099
|
action: ConsentFlowTransactionActionValidator,
|
|
4077
|
-
date: mod.string()
|
|
4100
|
+
date: mod.string(),
|
|
4101
|
+
uris: mod.string().array().optional()
|
|
4078
4102
|
});
|
|
4079
4103
|
var PaginatedConsentFlowTransactionsValidator = PaginationResponseValidator.extend({
|
|
4080
4104
|
records: ConsentFlowTransactionValidator.array()
|
|
4081
4105
|
});
|
|
4106
|
+
var ContractCredentialValidator = mod.object({
|
|
4107
|
+
credentialUri: mod.string(),
|
|
4108
|
+
termsUri: mod.string(),
|
|
4109
|
+
contractUri: mod.string(),
|
|
4110
|
+
boostUri: mod.string(),
|
|
4111
|
+
category: mod.string().optional(),
|
|
4112
|
+
date: mod.string()
|
|
4113
|
+
});
|
|
4114
|
+
var PaginatedContractCredentialsValidator = PaginationResponseValidator.extend({
|
|
4115
|
+
records: ContractCredentialValidator.array()
|
|
4116
|
+
});
|
|
4082
4117
|
var LCNNotificationTypeEnumValidator = mod.enum([
|
|
4083
4118
|
"CONNECTION_REQUEST",
|
|
4084
4119
|
"CONNECTION_ACCEPTED",
|
|
@@ -4108,7 +4143,7 @@ var LCNNotificationValidator = mod.object({
|
|
|
4108
4143
|
sent: mod.string().datetime().optional()
|
|
4109
4144
|
});
|
|
4110
4145
|
|
|
4111
|
-
// ../../../node_modules/.pnpm/@babel+runtime@7.
|
|
4146
|
+
// ../../../node_modules/.pnpm/@babel+runtime@7.27.0/node_modules/@babel/runtime/helpers/esm/typeof.js
|
|
4112
4147
|
function _typeof(o) {
|
|
4113
4148
|
"@babel/helpers - typeof";
|
|
4114
4149
|
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) {
|