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