@opexa/portal-sdk 0.59.50 → 0.59.52
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/{chunk-6BZILZI4.js → chunk-GXJX4GGR.js} +4 -4
- package/dist/{chunk-6BZILZI4.js.map → chunk-GXJX4GGR.js.map} +1 -1
- package/dist/index.cjs +16 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +15 -15
- package/dist/index.js.map +1 -1
- package/dist/services/index.cjs +2 -2
- package/dist/services/index.cjs.map +1 -1
- package/dist/services/index.d.cts +2 -2
- package/dist/services/index.d.ts +2 -2
- package/dist/services/index.js +1 -1
- package/dist/{types-GXwS5U3c.d.ts → types-CDDYRJlR.d.ts} +4 -4
- package/dist/{types-BZVQCB0h.d.cts → types-J3W8kgf1.d.cts} +4 -4
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -210,7 +210,7 @@ var MEMBER_REBATE_CONTRIBUTION_QUERY = gql`
|
|
|
210
210
|
percentage
|
|
211
211
|
loss
|
|
212
212
|
turnover
|
|
213
|
-
|
|
213
|
+
amount
|
|
214
214
|
}
|
|
215
215
|
rebatesPerGame {
|
|
216
216
|
game {
|
|
@@ -220,7 +220,7 @@ var MEMBER_REBATE_CONTRIBUTION_QUERY = gql`
|
|
|
220
220
|
percentage
|
|
221
221
|
loss
|
|
222
222
|
turnover
|
|
223
|
-
|
|
223
|
+
amount
|
|
224
224
|
}
|
|
225
225
|
}
|
|
226
226
|
}
|
|
@@ -9334,7 +9334,7 @@ var Transformer = class {
|
|
|
9334
9334
|
percentage: parseDecimal(item.percentage, 0),
|
|
9335
9335
|
loss: parseDecimal(item.loss),
|
|
9336
9336
|
turnover: parseDecimal(item.turnover),
|
|
9337
|
-
|
|
9337
|
+
amount: parseDecimal(item.amount, 0)
|
|
9338
9338
|
})),
|
|
9339
9339
|
rebatesPerGame: data.rebatesPerGame.map(
|
|
9340
9340
|
(item) => compact({
|
|
@@ -9342,7 +9342,7 @@ var Transformer = class {
|
|
|
9342
9342
|
percentage: parseDecimal(item.percentage, 0),
|
|
9343
9343
|
loss: parseDecimal(item.loss),
|
|
9344
9344
|
turnover: parseDecimal(item.turnover),
|
|
9345
|
-
|
|
9345
|
+
amount: parseDecimal(item.amount, 0)
|
|
9346
9346
|
})
|
|
9347
9347
|
)
|
|
9348
9348
|
};
|
|
@@ -11966,18 +11966,18 @@ var ENDPOINTS = {
|
|
|
11966
11966
|
opexapay: "https://external.opexapay.opexa.io"
|
|
11967
11967
|
},
|
|
11968
11968
|
staging: {
|
|
11969
|
-
auth: "https://auth.staging.
|
|
11970
|
-
game: "https://game.staging.
|
|
11971
|
-
extension: "https://extension.staging.
|
|
11972
|
-
file: "https://file.staging.
|
|
11973
|
-
report: "https://report.staging.
|
|
11974
|
-
wallet: "https://wallet.staging.
|
|
11975
|
-
account: "https://account.staging.
|
|
11976
|
-
portal: "https://portal.staging.
|
|
11977
|
-
trigger: "https://trigger.staging.
|
|
11978
|
-
static: "https://static.
|
|
11979
|
-
cmsPortal: "https://portal-api.
|
|
11980
|
-
opexapay: "https://external.opexapay.staging.
|
|
11969
|
+
auth: "https://auth.staging.opexa.io",
|
|
11970
|
+
game: "https://game.staging.opexa.io/graphql",
|
|
11971
|
+
extension: "https://extension.staging.opexa.io/graphql",
|
|
11972
|
+
file: "https://file.staging.opexa.io/graphql",
|
|
11973
|
+
report: "https://report.staging.opexa.io/graphql",
|
|
11974
|
+
wallet: "https://wallet.staging.opexa.io/graphql",
|
|
11975
|
+
account: "https://account.staging.opexa.io/graphql",
|
|
11976
|
+
portal: "https://portal.staging.opexa.io/graphql",
|
|
11977
|
+
trigger: "https://trigger.staging.opexa.io/graphql",
|
|
11978
|
+
static: "https://static.opexa.io",
|
|
11979
|
+
cmsPortal: "https://portal-api.opexacms.io",
|
|
11980
|
+
opexapay: "https://external.opexapay.staging.opexa.io "
|
|
11981
11981
|
}
|
|
11982
11982
|
};
|
|
11983
11983
|
|