@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
|
@@ -3972,6 +3972,13 @@ var LCNSigningAuthorityForUserValidator = mod.object({
|
|
|
3972
3972
|
did: mod.string()
|
|
3973
3973
|
})
|
|
3974
3974
|
});
|
|
3975
|
+
var AutoBoostConfigValidator = mod.object({
|
|
3976
|
+
boostUri: mod.string(),
|
|
3977
|
+
signingAuthority: mod.object({
|
|
3978
|
+
endpoint: mod.string(),
|
|
3979
|
+
name: mod.string()
|
|
3980
|
+
})
|
|
3981
|
+
});
|
|
3975
3982
|
var ConsentFlowTermsStatusValidator = mod.enum(["live", "stale", "withdrawn"]);
|
|
3976
3983
|
var ConsentFlowContractValidator = mod.object({
|
|
3977
3984
|
read: mod.object({
|
|
@@ -3995,6 +4002,7 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
3995
4002
|
uri: mod.string(),
|
|
3996
4003
|
needsGuardianConsent: mod.boolean().optional(),
|
|
3997
4004
|
redirectUrl: mod.string().optional(),
|
|
4005
|
+
frontDoorBoostUri: mod.string().optional(),
|
|
3998
4006
|
createdAt: mod.string(),
|
|
3999
4007
|
updatedAt: mod.string(),
|
|
4000
4008
|
expiresAt: mod.string().optional()
|
|
@@ -4010,6 +4018,15 @@ var ConsentFlowContractDataValidator = mod.object({
|
|
|
4010
4018
|
var PaginatedConsentFlowDataValidator = PaginationResponseValidator.extend({
|
|
4011
4019
|
records: ConsentFlowContractDataValidator.array()
|
|
4012
4020
|
});
|
|
4021
|
+
var ConsentFlowContractDataForDidValidator = mod.object({
|
|
4022
|
+
credentials: mod.object({ category: mod.string(), uri: mod.string() }).array(),
|
|
4023
|
+
personal: mod.record(mod.string()).default({}),
|
|
4024
|
+
date: mod.string(),
|
|
4025
|
+
contractUri: mod.string()
|
|
4026
|
+
});
|
|
4027
|
+
var PaginatedConsentFlowDataForDidValidator = PaginationResponseValidator.extend({
|
|
4028
|
+
records: ConsentFlowContractDataForDidValidator.array()
|
|
4029
|
+
});
|
|
4013
4030
|
var ConsentFlowTermValidator = mod.object({
|
|
4014
4031
|
sharing: mod.boolean().optional(),
|
|
4015
4032
|
shared: mod.string().array().optional(),
|
|
@@ -4062,6 +4079,11 @@ var ConsentFlowDataQueryValidator = mod.object({
|
|
|
4062
4079
|
credentials: mod.object({ categories: mod.record(mod.boolean()).optional() }).optional(),
|
|
4063
4080
|
personal: mod.record(mod.boolean()).optional()
|
|
4064
4081
|
});
|
|
4082
|
+
var ConsentFlowDataForDidQueryValidator = mod.object({
|
|
4083
|
+
credentials: mod.object({ categories: mod.record(mod.boolean()).optional() }).optional(),
|
|
4084
|
+
personal: mod.record(mod.boolean()).optional(),
|
|
4085
|
+
id: StringQuery.optional()
|
|
4086
|
+
});
|
|
4065
4087
|
var ConsentFlowTermsQueryValidator = mod.object({
|
|
4066
4088
|
read: mod.object({
|
|
4067
4089
|
anonymize: mod.boolean().optional(),
|
|
@@ -4081,7 +4103,8 @@ var ConsentFlowTransactionActionValidator = mod.enum([
|
|
|
4081
4103
|
"consent",
|
|
4082
4104
|
"update",
|
|
4083
4105
|
"sync",
|
|
4084
|
-
"withdraw"
|
|
4106
|
+
"withdraw",
|
|
4107
|
+
"write"
|
|
4085
4108
|
]);
|
|
4086
4109
|
var ConsentFlowTransactionsQueryValidator = mod.object({
|
|
4087
4110
|
terms: ConsentFlowTermsQueryValidator.optional(),
|
|
@@ -4098,11 +4121,23 @@ var ConsentFlowTransactionValidator = mod.object({
|
|
|
4098
4121
|
terms: ConsentFlowTermsValidator.optional(),
|
|
4099
4122
|
id: mod.string(),
|
|
4100
4123
|
action: ConsentFlowTransactionActionValidator,
|
|
4101
|
-
date: mod.string()
|
|
4124
|
+
date: mod.string(),
|
|
4125
|
+
uris: mod.string().array().optional()
|
|
4102
4126
|
});
|
|
4103
4127
|
var PaginatedConsentFlowTransactionsValidator = PaginationResponseValidator.extend({
|
|
4104
4128
|
records: ConsentFlowTransactionValidator.array()
|
|
4105
4129
|
});
|
|
4130
|
+
var ContractCredentialValidator = mod.object({
|
|
4131
|
+
credentialUri: mod.string(),
|
|
4132
|
+
termsUri: mod.string(),
|
|
4133
|
+
contractUri: mod.string(),
|
|
4134
|
+
boostUri: mod.string(),
|
|
4135
|
+
category: mod.string().optional(),
|
|
4136
|
+
date: mod.string()
|
|
4137
|
+
});
|
|
4138
|
+
var PaginatedContractCredentialsValidator = PaginationResponseValidator.extend({
|
|
4139
|
+
records: ContractCredentialValidator.array()
|
|
4140
|
+
});
|
|
4106
4141
|
var LCNNotificationTypeEnumValidator = mod.enum([
|
|
4107
4142
|
"CONNECTION_REQUEST",
|
|
4108
4143
|
"CONNECTION_ACCEPTED",
|
|
@@ -4132,7 +4167,7 @@ var LCNNotificationValidator = mod.object({
|
|
|
4132
4167
|
sent: mod.string().datetime().optional()
|
|
4133
4168
|
});
|
|
4134
4169
|
|
|
4135
|
-
// ../../../node_modules/.pnpm/@babel+runtime@7.
|
|
4170
|
+
// ../../../node_modules/.pnpm/@babel+runtime@7.27.0/node_modules/@babel/runtime/helpers/esm/typeof.js
|
|
4136
4171
|
function _typeof(o) {
|
|
4137
4172
|
"@babel/helpers - typeof";
|
|
4138
4173
|
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) {
|