@opexa/portal-sdk 0.57.12 → 0.57.14

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
@@ -1638,6 +1638,7 @@ var MEMBER_ACCOUNT_QUERY_DEVELOPMENT = gql`
1638
1638
  dateTimeLastUpdated
1639
1639
  domain
1640
1640
  branchCode
1641
+ partition
1641
1642
  agent {
1642
1643
  code
1643
1644
  }
@@ -8006,7 +8007,8 @@ var Transformer = class {
8006
8007
  branchCode: data.branchCode ?? void 0,
8007
8008
  agent: data.agent ?? null,
8008
8009
  level: data.level ?? 0,
8009
- dateTimeLastActive: data.dateTimeLastActive ? new Date(data.dateTimeLastActive) : void 0
8010
+ dateTimeLastActive: data.dateTimeLastActive ? new Date(data.dateTimeLastActive) : void 0,
8011
+ partition: data.partition
8010
8012
  };
8011
8013
  return compact(o);
8012
8014
  }
@@ -8295,6 +8297,7 @@ var Transformer = class {
8295
8297
  data.currentTurnoverRequirementContributionPercentage,
8296
8298
  0
8297
8299
  ),
8300
+ // @ts-expect-error ""
8298
8301
  turnoverRequirementContributionPercentagePerGameProvider: data.turnoverRequirementContributionPercentagePerGameProvider,
8299
8302
  enabledGameProviders: data.enabledGameProviders,
8300
8303
  dateTimeCreated: new Date(data.dateTimeCreated),
@@ -8991,14 +8994,14 @@ var Sdk = class {
8991
8994
  */
8992
8995
  get fingerprintMiddleware() {
8993
8996
  return async (request) => {
8994
- const fingerprint = await this.getFingerprint();
8997
+ const fingerprint = await this.fingerprint();
8995
8998
  if (fingerprint) {
8996
8999
  request.headers.set("Fingerprint", fingerprint);
8997
9000
  }
8998
9001
  return request;
8999
9002
  };
9000
9003
  }
9001
- async getFingerprint() {
9004
+ async fingerprint() {
9002
9005
  return await getFingerprint();
9003
9006
  }
9004
9007
  /*