@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.d.cts CHANGED
@@ -2168,7 +2168,7 @@ declare class Sdk {
2168
2168
  private get locale();
2169
2169
  private get authMiddleware();
2170
2170
  private get fingerprintMiddleware();
2171
- getFingerprint(): Promise<string | null>;
2171
+ fingerprint(): Promise<string | null>;
2172
2172
  private get domainMiddleware();
2173
2173
  private get miscMiddleware();
2174
2174
  signIn(input: NameAndPasswordSignInInput): Promise<NameAndPasswordSignInReturn>;
package/dist/index.d.ts CHANGED
@@ -2168,7 +2168,7 @@ declare class Sdk {
2168
2168
  private get locale();
2169
2169
  private get authMiddleware();
2170
2170
  private get fingerprintMiddleware();
2171
- getFingerprint(): Promise<string | null>;
2171
+ fingerprint(): Promise<string | null>;
2172
2172
  private get domainMiddleware();
2173
2173
  private get miscMiddleware();
2174
2174
  signIn(input: NameAndPasswordSignInInput): Promise<NameAndPasswordSignInReturn>;
package/dist/index.js CHANGED
@@ -8986,14 +8986,14 @@ var Sdk = class {
8986
8986
  */
8987
8987
  get fingerprintMiddleware() {
8988
8988
  return async (request) => {
8989
- const fingerprint = await this.getFingerprint();
8989
+ const fingerprint = await this.fingerprint();
8990
8990
  if (fingerprint) {
8991
8991
  request.headers.set("Fingerprint", fingerprint);
8992
8992
  }
8993
8993
  return request;
8994
8994
  };
8995
8995
  }
8996
- async getFingerprint() {
8996
+ async fingerprint() {
8997
8997
  return await getFingerprint();
8998
8998
  }
8999
8999
  /*