@learncard/did-web-plugin 1.0.0 → 1.0.2

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.
@@ -76775,7 +76775,7 @@ var LCNProfileValidator = mod.object({
76775
76775
  email: mod.string().optional(),
76776
76776
  image: mod.string().optional(),
76777
76777
  isServiceProfile: mod.boolean().default(false).optional(),
76778
- notificationsWebhook: mod.string().url()
76778
+ notificationsWebhook: mod.string().url().startsWith("https://").optional()
76779
76779
  });
76780
76780
  var LCNProfileConnectionStatusEnum = mod.enum([
76781
76781
  "CONNECTED",
@@ -76827,6 +76827,21 @@ var LCNNotificationValidator = mod.object({
76827
76827
  data: LCNNotificationDataValidator.optional(),
76828
76828
  sent: mod.string().datetime().optional()
76829
76829
  });
76830
+ var LCNBoostClaimLinkSigningAuthorityValidator = mod.object({
76831
+ endpoint: mod.string(),
76832
+ name: mod.string(),
76833
+ did: mod.string().optional()
76834
+ });
76835
+ var LCNSigningAuthorityValidator = mod.object({
76836
+ endpoint: mod.string()
76837
+ });
76838
+ var LCNSigningAuthorityForUserValidator = mod.object({
76839
+ signingAuthority: LCNSigningAuthorityValidator,
76840
+ relationship: mod.object({
76841
+ name: mod.string(),
76842
+ did: mod.string()
76843
+ })
76844
+ });
76830
76845
  var JWKValidator = mod.object({
76831
76846
  kty: mod.string(),
76832
76847
  crv: mod.string(),