@haex-space/vault-sdk 2.5.18 → 2.5.19

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/vue.mjs CHANGED
@@ -1739,7 +1739,7 @@ async function respondToExternalRequest(response, request) {
1739
1739
  }
1740
1740
 
1741
1741
  // src/client.ts
1742
- var HaexVaultClient = class {
1742
+ var HaexVaultSdk = class {
1743
1743
  constructor(config = {}) {
1744
1744
  // State
1745
1745
  this.initialized = false;
@@ -2075,8 +2075,8 @@ var HaexVaultClient = class {
2075
2075
  };
2076
2076
 
2077
2077
  // src/index.ts
2078
- function createHaexVaultClient(config = {}) {
2079
- return new HaexVaultClient(config);
2078
+ function createHaexVaultSdk(config = {}) {
2079
+ return new HaexVaultSdk(config);
2080
2080
  }
2081
2081
 
2082
2082
  // src/vue.ts
@@ -2086,7 +2086,7 @@ var context = null;
2086
2086
  var isSetupComplete = null;
2087
2087
  function useHaexVaultSdk(config = {}) {
2088
2088
  if (!clientInstance) {
2089
- clientInstance = createHaexVaultClient(config);
2089
+ clientInstance = createHaexVaultSdk(config);
2090
2090
  extensionInfo = ref(clientInstance.extensionInfo);
2091
2091
  context = ref(clientInstance.context);
2092
2092
  isSetupComplete = ref(false);