@autenticar-me/vue 0.10.0 → 0.12.0

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/index.cjs CHANGED
@@ -2412,7 +2412,8 @@ const fetchConfigurations = async (client, configurations) => {
2412
2412
  configurations.value = {
2413
2413
  project: {
2414
2414
  name: response.project.name,
2415
- domain: response.project.domain
2415
+ domain: response.project.domain,
2416
+ logo: response.project.logo
2416
2417
  },
2417
2418
  design: {
2418
2419
  primaryColor: response.design.primary_color,
@@ -2444,7 +2445,7 @@ const atmPlugin = {
2444
2445
  const atmClient = new clientJs.AtmClient({
2445
2446
  domain: pluginOptions.domain,
2446
2447
  publicKey: pluginOptions.publicKey,
2447
- ssl: false
2448
+ ssl: pluginOptions.ssl
2448
2449
  });
2449
2450
  const client = vue.ref(atmClient);
2450
2451
  const user = vue.ref(null);