@opexa/portal-sdk 0.57.13 → 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 +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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),
|