@learncard/core 8.5.1 → 8.5.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -46025,6 +46025,7 @@ __export(src_exports2, {
46025
46025
  getDidKitPlugin: () => getDidKitPlugin,
46026
46026
  getEthereumPlugin: () => getEthereumPlugin,
46027
46027
  getIDXPlugin: () => getIDXPlugin,
46028
+ getLearnCardPlugin: () => getLearnCardPlugin,
46028
46029
  getTestCache: () => getTestCache,
46029
46030
  getTestStorage: () => getTestStorage,
46030
46031
  getVCAPIPlugin: () => getVCAPIPlugin,
@@ -52685,6 +52686,12 @@ var LCNProfileValidator = mod.object({
52685
52686
  image: mod.string().optional(),
52686
52687
  isServiceProfile: mod.boolean().default(false).optional()
52687
52688
  });
52689
+ var LCNProfileConnectionStatusEnum = mod.enum([
52690
+ "CONNECTED",
52691
+ "PENDING_REQUEST_SENT",
52692
+ "PENDING_REQUEST_RECEIVED",
52693
+ "NOT_CONNECTED"
52694
+ ]);
52688
52695
  var SentCredentialInfoValidator = mod.object({
52689
52696
  uri: mod.string(),
52690
52697
  to: mod.string(),