@opexa/portal-sdk 0.57.12 → 0.57.13

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
@@ -8991,14 +8991,14 @@ var Sdk = class {
8991
8991
  */
8992
8992
  get fingerprintMiddleware() {
8993
8993
  return async (request) => {
8994
- const fingerprint = await this.getFingerprint();
8994
+ const fingerprint = await this.fingerprint();
8995
8995
  if (fingerprint) {
8996
8996
  request.headers.set("Fingerprint", fingerprint);
8997
8997
  }
8998
8998
  return request;
8999
8999
  };
9000
9000
  }
9001
- async getFingerprint() {
9001
+ async fingerprint() {
9002
9002
  return await getFingerprint();
9003
9003
  }
9004
9004
  /*