@opexa/portal-sdk 0.54.12 → 0.54.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 +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +22 -2
- package/dist/index.d.ts +22 -2
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -7946,7 +7946,8 @@ var Transformer = class {
|
|
|
7946
7946
|
downline: data.downline,
|
|
7947
7947
|
turnover: parseDecimal(data.turnover, 0),
|
|
7948
7948
|
commission: parseDecimal(data.commission, 0),
|
|
7949
|
-
dateTimeCreated: new Date(data.dateTimeCreated)
|
|
7949
|
+
dateTimeCreated: new Date(data.dateTimeCreated),
|
|
7950
|
+
qualified: data.qualified
|
|
7950
7951
|
};
|
|
7951
7952
|
return o;
|
|
7952
7953
|
}
|
|
@@ -10335,7 +10336,7 @@ var Sdk = class {
|
|
|
10335
10336
|
return {
|
|
10336
10337
|
ok: true,
|
|
10337
10338
|
data: {
|
|
10338
|
-
|
|
10339
|
+
_jackpots: res.data.edges.map(({ cursor, node }) => ({
|
|
10339
10340
|
...this.transformer.transform.jackpots(node),
|
|
10340
10341
|
cursor
|
|
10341
10342
|
})),
|