@obb871001/api-integration-sdk 1.0.362 → 1.0.364
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 +1 -1
- package/dist/index.js +15 -14
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8134,32 +8134,33 @@ const Go = /* @__PURE__ */ yi(Lo), Mo = ({
|
|
|
8134
8134
|
//獎勵類型
|
|
8135
8135
|
rewardDetail: u?.rewards || {}
|
|
8136
8136
|
}, C = {
|
|
8137
|
-
baseValue: m
|
|
8137
|
+
baseValue: m?.base_value || 0,
|
|
8138
8138
|
//基礎數值
|
|
8139
|
-
enableRewardsLimit: m
|
|
8139
|
+
enableRewardsLimit: m?.enable_rewards_limit === 1,
|
|
8140
8140
|
//是否啟用獎勵限制
|
|
8141
|
-
enableAmountLimit: m
|
|
8141
|
+
enableAmountLimit: m?.enable_amounts_limit === 1,
|
|
8142
8142
|
//是否啟用金額限制
|
|
8143
|
-
limitAmount: m
|
|
8143
|
+
limitAmount: m?.limit_amounts,
|
|
8144
8144
|
//限制金額
|
|
8145
|
-
enableTimesLimit: m
|
|
8145
|
+
enableTimesLimit: m?.enable_times_limit === 1,
|
|
8146
8146
|
//是否啟用次數限制
|
|
8147
|
-
limitTimes: m
|
|
8147
|
+
limitTimes: m?.limit_times,
|
|
8148
8148
|
//限制次數
|
|
8149
|
-
enableWageringLimit: m
|
|
8149
|
+
enableWageringLimit: m?.enable_wagering_limit === 1,
|
|
8150
8150
|
//是否啟用投注限制
|
|
8151
|
-
wageringLimitType: m
|
|
8151
|
+
wageringLimitType: m?.wagering_limit_type,
|
|
8152
8152
|
//投注限制類型
|
|
8153
|
-
wageringLimitValue: m
|
|
8153
|
+
wageringLimitValue: m?.wagering_limit_value,
|
|
8154
8154
|
//投注限制數值
|
|
8155
|
-
expirationDays: m
|
|
8155
|
+
expirationDays: m?.expiration_days,
|
|
8156
8156
|
//獎勵過期天數
|
|
8157
|
-
rewardName: m
|
|
8157
|
+
rewardName: m?.name,
|
|
8158
8158
|
//獎勵名稱
|
|
8159
|
-
rewardUid: m
|
|
8159
|
+
rewardUid: m?.uid,
|
|
8160
8160
|
//獎勵UID
|
|
8161
|
-
rewardType: m
|
|
8161
|
+
rewardType: m?.type,
|
|
8162
8162
|
//獎勵類型
|
|
8163
|
+
origin: m
|
|
8163
8164
|
};
|
|
8164
8165
|
return {
|
|
8165
8166
|
eventBase: _,
|
|
@@ -9192,7 +9193,7 @@ const nu = ({ onIdle: e, onActive: n, onAction: t, timeout: r = 6e5 }) => fs({
|
|
|
9192
9193
|
page: U = 1,
|
|
9193
9194
|
order_token: C
|
|
9194
9195
|
} = c;
|
|
9195
|
-
return await e.get("/
|
|
9196
|
+
return await e.get("/report/cash-deposit-orders", {
|
|
9196
9197
|
params: {
|
|
9197
9198
|
str_date: f,
|
|
9198
9199
|
end_date: y,
|