60p82u21t54k 0.3.20 → 0.3.21

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.
@@ -77,7 +77,7 @@ const va = (e) => {
77
77
  __proto__: null,
78
78
  getConfig: he,
79
79
  setConfig: va
80
- }, Symbol.toStringTag, { value: "Module" })), ta = 6048e5, wa = 864e5, Ra = 6e4, Pa = 36e5, Da = 1e3, xt = Symbol.for("constructDateFrom");
80
+ }, Symbol.toStringTag, { value: "Module" })), ta = 6048e5, wa = 864e5, Pa = 6e4, Ra = 36e5, Da = 1e3, xt = Symbol.for("constructDateFrom");
81
81
  function j(e, a) {
82
82
  return typeof e == "function" ? e(a) : e && typeof e == "object" && xt in e ? e[xt](a) : e instanceof Date ? new e.constructor(a) : new Date(a);
83
83
  }
@@ -612,7 +612,7 @@ function oa(e, a) {
612
612
  const t = I(e, a == null ? void 0 : a.in), n = +U(t, a) - +gn(t, a);
613
613
  return Math.round(n / ta) + 1;
614
614
  }
615
- function R(e, a) {
615
+ function P(e, a) {
616
616
  const t = e < 0 ? "-" : "", n = Math.abs(e).toString().padStart(a, "0");
617
617
  return t + n;
618
618
  }
@@ -620,16 +620,16 @@ const H = {
620
620
  // Year
621
621
  y(e, a) {
622
622
  const t = e.getFullYear(), n = t > 0 ? t : 1 - t;
623
- return R(a === "yy" ? n % 100 : n, a.length);
623
+ return P(a === "yy" ? n % 100 : n, a.length);
624
624
  },
625
625
  // Month
626
626
  M(e, a) {
627
627
  const t = e.getMonth();
628
- return a === "M" ? String(t + 1) : R(t + 1, 2);
628
+ return a === "M" ? String(t + 1) : P(t + 1, 2);
629
629
  },
630
630
  // Day of the month
631
631
  d(e, a) {
632
- return R(e.getDate(), a.length);
632
+ return P(e.getDate(), a.length);
633
633
  },
634
634
  // AM or PM
635
635
  a(e, a) {
@@ -649,26 +649,26 @@ const H = {
649
649
  },
650
650
  // Hour [1-12]
651
651
  h(e, a) {
652
- return R(e.getHours() % 12 || 12, a.length);
652
+ return P(e.getHours() % 12 || 12, a.length);
653
653
  },
654
654
  // Hour [0-23]
655
655
  H(e, a) {
656
- return R(e.getHours(), a.length);
656
+ return P(e.getHours(), a.length);
657
657
  },
658
658
  // Minute
659
659
  m(e, a) {
660
- return R(e.getMinutes(), a.length);
660
+ return P(e.getMinutes(), a.length);
661
661
  },
662
662
  // Second
663
663
  s(e, a) {
664
- return R(e.getSeconds(), a.length);
664
+ return P(e.getSeconds(), a.length);
665
665
  },
666
666
  // Fraction of second
667
667
  S(e, a) {
668
668
  const t = a.length, n = e.getMilliseconds(), r = Math.trunc(
669
669
  n * Math.pow(10, t - 3)
670
670
  );
671
- return R(r, a.length);
671
+ return P(r, a.length);
672
672
  }
673
673
  }, X = {
674
674
  midnight: "midnight",
@@ -709,14 +709,14 @@ const H = {
709
709
  const r = Ge(e, n), s = r > 0 ? r : 1 - r;
710
710
  if (a === "YY") {
711
711
  const o = s % 100;
712
- return R(o, 2);
712
+ return P(o, 2);
713
713
  }
714
- return a === "Yo" ? t.ordinalNumber(s, { unit: "year" }) : R(s, a.length);
714
+ return a === "Yo" ? t.ordinalNumber(s, { unit: "year" }) : P(s, a.length);
715
715
  },
716
716
  // ISO week-numbering year
717
717
  R: function(e, a) {
718
718
  const t = na(e);
719
- return R(t, a.length);
719
+ return P(t, a.length);
720
720
  },
721
721
  // Extended year. This is a single number designating the year of this calendar system.
722
722
  // The main difference between `y` and `u` localizers are B.C. years:
@@ -729,7 +729,7 @@ const H = {
729
729
  // while `uu` pads single digit years to 2 characters and returns other years unchanged.
730
730
  u: function(e, a) {
731
731
  const t = e.getFullYear();
732
- return R(t, a.length);
732
+ return P(t, a.length);
733
733
  },
734
734
  // Quarter
735
735
  Q: function(e, a, t) {
@@ -740,7 +740,7 @@ const H = {
740
740
  return String(n);
741
741
  // 01, 02, 03, 04
742
742
  case "QQ":
743
- return R(n, 2);
743
+ return P(n, 2);
744
744
  // 1st, 2nd, 3rd, 4th
745
745
  case "Qo":
746
746
  return t.ordinalNumber(n, { unit: "quarter" });
@@ -774,7 +774,7 @@ const H = {
774
774
  return String(n);
775
775
  // 01, 02, 03, 04
776
776
  case "qq":
777
- return R(n, 2);
777
+ return P(n, 2);
778
778
  // 1st, 2nd, 3rd, 4th
779
779
  case "qo":
780
780
  return t.ordinalNumber(n, { unit: "quarter" });
@@ -836,7 +836,7 @@ const H = {
836
836
  return String(n + 1);
837
837
  // 01, 02, ..., 12
838
838
  case "LL":
839
- return R(n + 1, 2);
839
+ return P(n + 1, 2);
840
840
  // 1st, 2nd, ..., 12th
841
841
  case "Lo":
842
842
  return t.ordinalNumber(n + 1, { unit: "month" });
@@ -861,12 +861,12 @@ const H = {
861
861
  // Local week of year
862
862
  w: function(e, a, t, n) {
863
863
  const r = oa(e, n);
864
- return a === "wo" ? t.ordinalNumber(r, { unit: "week" }) : R(r, a.length);
864
+ return a === "wo" ? t.ordinalNumber(r, { unit: "week" }) : P(r, a.length);
865
865
  },
866
866
  // ISO week of year
867
867
  I: function(e, a, t) {
868
868
  const n = sa(e);
869
- return a === "Io" ? t.ordinalNumber(n, { unit: "week" }) : R(n, a.length);
869
+ return a === "Io" ? t.ordinalNumber(n, { unit: "week" }) : P(n, a.length);
870
870
  },
871
871
  // Day of the month
872
872
  d: function(e, a, t) {
@@ -875,7 +875,7 @@ const H = {
875
875
  // Day of year
876
876
  D: function(e, a, t) {
877
877
  const n = mn(e);
878
- return a === "Do" ? t.ordinalNumber(n, { unit: "dayOfYear" }) : R(n, a.length);
878
+ return a === "Do" ? t.ordinalNumber(n, { unit: "dayOfYear" }) : P(n, a.length);
879
879
  },
880
880
  // Day of week
881
881
  E: function(e, a, t) {
@@ -919,7 +919,7 @@ const H = {
919
919
  return String(s);
920
920
  // Padded numerical value
921
921
  case "ee":
922
- return R(s, 2);
922
+ return P(s, 2);
923
923
  // 1st, 2nd, ..., 7th
924
924
  case "eo":
925
925
  return t.ordinalNumber(s, { unit: "day" });
@@ -958,7 +958,7 @@ const H = {
958
958
  return String(s);
959
959
  // Padded numerical value
960
960
  case "cc":
961
- return R(s, a.length);
961
+ return P(s, a.length);
962
962
  // 1st, 2nd, ..., 7th
963
963
  case "co":
964
964
  return t.ordinalNumber(s, { unit: "day" });
@@ -997,7 +997,7 @@ const H = {
997
997
  return String(r);
998
998
  // 02
999
999
  case "ii":
1000
- return R(r, a.length);
1000
+ return P(r, a.length);
1001
1001
  // 2nd
1002
1002
  case "io":
1003
1003
  return t.ordinalNumber(r, { unit: "day" });
@@ -1125,12 +1125,12 @@ const H = {
1125
1125
  // Hour [0-11]
1126
1126
  K: function(e, a, t) {
1127
1127
  const n = e.getHours() % 12;
1128
- return a === "Ko" ? t.ordinalNumber(n, { unit: "hour" }) : R(n, a.length);
1128
+ return a === "Ko" ? t.ordinalNumber(n, { unit: "hour" }) : P(n, a.length);
1129
1129
  },
1130
1130
  // Hour [1-24]
1131
1131
  k: function(e, a, t) {
1132
1132
  let n = e.getHours();
1133
- return n === 0 && (n = 24), a === "ko" ? t.ordinalNumber(n, { unit: "hour" }) : R(n, a.length);
1133
+ return n === 0 && (n = 24), a === "ko" ? t.ordinalNumber(n, { unit: "hour" }) : P(n, a.length);
1134
1134
  },
1135
1135
  // Minute
1136
1136
  m: function(e, a, t) {
@@ -1225,22 +1225,22 @@ const H = {
1225
1225
  // Seconds timestamp
1226
1226
  t: function(e, a, t) {
1227
1227
  const n = Math.trunc(+e / 1e3);
1228
- return R(n, a.length);
1228
+ return P(n, a.length);
1229
1229
  },
1230
1230
  // Milliseconds timestamp
1231
1231
  T: function(e, a, t) {
1232
- return R(+e, a.length);
1232
+ return P(+e, a.length);
1233
1233
  }
1234
1234
  };
1235
1235
  function St(e, a = "") {
1236
1236
  const t = e > 0 ? "-" : "+", n = Math.abs(e), r = Math.trunc(n / 60), s = n % 60;
1237
- return s === 0 ? t + String(r) : t + String(r) + a + R(s, 2);
1237
+ return s === 0 ? t + String(r) : t + String(r) + a + P(s, 2);
1238
1238
  }
1239
1239
  function It(e, a) {
1240
- return e % 60 === 0 ? (e > 0 ? "-" : "+") + R(Math.abs(e) / 60, 2) : V(e, a);
1240
+ return e % 60 === 0 ? (e > 0 ? "-" : "+") + P(Math.abs(e) / 60, 2) : V(e, a);
1241
1241
  }
1242
1242
  function V(e, a = "") {
1243
- const t = e > 0 ? "-" : "+", n = Math.abs(e), r = R(Math.trunc(n / 60), 2), s = R(n % 60, 2);
1243
+ const t = e > 0 ? "-" : "+", n = Math.abs(e), r = P(Math.trunc(n / 60), 2), s = P(n % 60, 2);
1244
1244
  return t + r + a + s;
1245
1245
  }
1246
1246
  const jt = (e, a) => {
@@ -1306,8 +1306,8 @@ function hn(e, a, t) {
1306
1306
  const n = e[0] === "Y" ? "years" : "days of the month";
1307
1307
  return `Use \`${e.toLowerCase()}\` instead of \`${e}\` (in \`${a}\`) for formatting ${n} to the input \`${t}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`;
1308
1308
  }
1309
- const _n = /[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g, Tn = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g, vn = /^'([^]*?)'?$/, wn = /''/g, Rn = /[a-zA-Z]/;
1310
- function Pn(e, a, t) {
1309
+ const _n = /[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g, Tn = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g, vn = /^'([^]*?)'?$/, wn = /''/g, Pn = /[a-zA-Z]/;
1310
+ function Rn(e, a, t) {
1311
1311
  var c, y, p, g, T, _, k, C;
1312
1312
  const n = te(), r = (t == null ? void 0 : t.locale) ?? n.locale ?? ra, s = (t == null ? void 0 : t.firstWeekContainsDate) ?? ((y = (c = t == null ? void 0 : t.locale) == null ? void 0 : c.options) == null ? void 0 : y.firstWeekContainsDate) ?? n.firstWeekContainsDate ?? ((g = (p = n.locale) == null ? void 0 : p.options) == null ? void 0 : g.firstWeekContainsDate) ?? 1, o = (t == null ? void 0 : t.weekStartsOn) ?? ((_ = (T = t == null ? void 0 : t.locale) == null ? void 0 : T.options) == null ? void 0 : _.weekStartsOn) ?? n.weekStartsOn ?? ((C = (k = n.locale) == null ? void 0 : k.options) == null ? void 0 : C.weekStartsOn) ?? 0, l = I(e, t == null ? void 0 : t.in);
1313
1313
  if (!Ia(l))
@@ -1327,7 +1327,7 @@ function Pn(e, a, t) {
1327
1327
  return { isToken: !1, value: Dn(D) };
1328
1328
  if (Mt[h])
1329
1329
  return { isToken: !0, value: D };
1330
- if (h.match(Rn))
1330
+ if (h.match(Pn))
1331
1331
  throw new RangeError(
1332
1332
  "Format string contains an unescaped latin alphabet character `" + h + "`"
1333
1333
  );
@@ -1515,7 +1515,7 @@ function z(e, a) {
1515
1515
  };
1516
1516
  const n = t[1] === "+" ? 1 : -1, r = t[2] ? parseInt(t[2], 10) : 0, s = t[3] ? parseInt(t[3], 10) : 0, o = t[5] ? parseInt(t[5], 10) : 0;
1517
1517
  return {
1518
- value: n * (r * Pa + s * Ra + o * Da),
1518
+ value: n * (r * Ra + s * Pa + o * Da),
1519
1519
  rest: a.slice(t[0].length)
1520
1520
  };
1521
1521
  }
@@ -2942,15 +2942,15 @@ function wr(e) {
2942
2942
  }
2943
2943
  function Ct(e, a, t) {
2944
2944
  const n = la(), r = Dr(e, t.timeZone, t.locale ?? n.locale);
2945
- return "formatToParts" in r ? Rr(r, a) : Pr(r, a);
2945
+ return "formatToParts" in r ? Pr(r, a) : Rr(r, a);
2946
2946
  }
2947
- function Rr(e, a) {
2947
+ function Pr(e, a) {
2948
2948
  const t = e.formatToParts(a);
2949
2949
  for (let n = t.length - 1; n >= 0; --n)
2950
2950
  if (t[n].type === "timeZoneName")
2951
2951
  return t[n].value;
2952
2952
  }
2953
- function Pr(e, a) {
2953
+ function Rr(e, a) {
2954
2954
  const t = e.format(a).replace(/\u200E/g, ""), n = / [\w-+ ]+$/.exec(t);
2955
2955
  return n ? n[0].substr(1) : "";
2956
2956
  }
@@ -3382,7 +3382,7 @@ function Ar(e, a, t = {}) {
3382
3382
  return m ? i.substring(0, l - 1) + i.substring(l + 1) : i;
3383
3383
  }, a);
3384
3384
  }
3385
- return Pn(e, a, t);
3385
+ return Rn(e, a, t);
3386
3386
  }
3387
3387
  function Qr(e, a, t) {
3388
3388
  e = fe(e, t);
@@ -3565,7 +3565,7 @@ var Y = /* @__PURE__ */ ((e) => (e.default = "default", e.pay = "pay", e.auto =
3565
3565
  const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3566
3566
  __proto__: null,
3567
3567
  PaymentType: Y
3568
- }, Symbol.toStringTag, { value: "Module" })), Re = {
3568
+ }, Symbol.toStringTag, { value: "Module" })), Pe = {
3569
3569
  depositBank: !1,
3570
3570
  depositDateTime: !1,
3571
3571
  depositDetail: !1,
@@ -3579,7 +3579,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3579
3579
  type: Y.unknown,
3580
3580
  promo: [],
3581
3581
  bank: [],
3582
- requiredField: Re,
3582
+ requiredField: Pe,
3583
3583
  hintMsg: ""
3584
3584
  }, fs = (e) => {
3585
3585
  var a;
@@ -3629,7 +3629,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3629
3629
  paymentList: n
3630
3630
  };
3631
3631
  })) ?? [];
3632
- }, Pe = (e) => {
3632
+ }, Re = (e) => {
3633
3633
  const a = {
3634
3634
  id: -1,
3635
3635
  name: "excludePromo",
@@ -3678,7 +3678,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3678
3678
  name: "manualMethod",
3679
3679
  pathName: e,
3680
3680
  type: n,
3681
- promo: Pe(a.promo),
3681
+ promo: Re(a.promo),
3682
3682
  bank: a.bank.map((s) => {
3683
3683
  const o = s.list && s.list.length > 0 ? s.list[0].mintransaction ?? "0.00" : "0.00", l = s.list && s.list.length > 0 ? s.list[0].maxtransaction ?? "0.00" : "0.00", { amountList: m, minAmount: i, maxAmount: c } = le(
3684
3684
  Number(o),
@@ -3716,7 +3716,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3716
3716
  name: "onlineBankingMethod",
3717
3717
  pathName: e,
3718
3718
  type: n,
3719
- promo: Pe(a.promo),
3719
+ promo: Re(a.promo),
3720
3720
  bank: a.banklist.map((s) => {
3721
3721
  let o = "0.00", l = "0.00";
3722
3722
  const m = s.bankindex ?? 0;
@@ -3757,7 +3757,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3757
3757
  gateway: [p, ...g]
3758
3758
  };
3759
3759
  }),
3760
- requiredField: Re,
3760
+ requiredField: Pe,
3761
3761
  hintMsg: ""
3762
3762
  };
3763
3763
  }, ys = (e, a, t, n) => {
@@ -3804,9 +3804,9 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3804
3804
  name: "autoMethod",
3805
3805
  pathName: e,
3806
3806
  type: r,
3807
- promo: Pe(t.promo),
3807
+ promo: Re(t.promo),
3808
3808
  bank: s,
3809
- requiredField: Re,
3809
+ requiredField: Pe,
3810
3810
  hintMsg: ""
3811
3811
  };
3812
3812
  }, bs = (e, a, t) => {
@@ -3816,7 +3816,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3816
3816
  name: "fixAmountMethod",
3817
3817
  pathName: e,
3818
3818
  type: n,
3819
- promo: Pe(t.promo),
3819
+ promo: Re(t.promo),
3820
3820
  bank: t.bank.map((s) => {
3821
3821
  const o = s.amtlist.map(Number).sort((m, i) => m - i);
3822
3822
  return {
@@ -3827,7 +3827,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3827
3827
  max: o.length > 0 ? o[o.length - 1] : 0
3828
3828
  };
3829
3829
  }),
3830
- requiredField: Re,
3830
+ requiredField: Pe,
3831
3831
  hintMsg: ""
3832
3832
  };
3833
3833
  }, hs = (e) => (e == null ? void 0 : e.map((a) => ({
@@ -3856,6 +3856,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3856
3856
  list: (l.mdPlatformProducts !== null && ((m = l.mdPlatformProducts) == null ? void 0 : m.length)) ?? !1 ? ((i = l.mdPlatformProducts) == null ? void 0 : i.map((c) => ({
3857
3857
  gameId: c.id_GameMaster,
3858
3858
  platformId: c.id,
3859
+ platformName: c.shortName,
3859
3860
  platformCode: c.code,
3860
3861
  name: c.name,
3861
3862
  flag: {
@@ -3880,6 +3881,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3880
3881
  data: ((o = (s = (r = e.mdGameLists) == null ? void 0 : r.data) == null ? void 0 : s.map((l) => ({
3881
3882
  gameId: l.id ?? 0,
3882
3883
  platformId: l.id_PlatformProduct ?? 0,
3884
+ platformName: l.shortName_PlatformProduct ?? "",
3883
3885
  platformCode: l.code_PlatformProduct ?? "",
3884
3886
  name: l.name ?? "",
3885
3887
  flag: {
@@ -3896,9 +3898,9 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3896
3898
  },
3897
3899
  trialGameList: []
3898
3900
  };
3899
- }, qt = (e, a) => !a || !e || !(a != null && a[e]) ? "" : a == null ? void 0 : a[e], vs = (e) => ({
3901
+ }, qt = (e, a) => !a || !e || !(a != null && a[e]) ? "" : `/image/platform_logo/platform_logo_${e}.png?v=1`, vs = (e) => ({
3900
3902
  list: e.mdGrade.map((a) => {
3901
- var t, n, r, s, o, l, m, i, c, y, p, g, T, _, k, C, D, h, b, d, $, ne, Q, re, se, Ye, Be, He, Ue, qe, Ve, Ae, Qe, Xe, Ze, Je, Ke, et, tt, at, nt, rt, st, ot, it, ut, ct, lt, dt, mt, gt, ft, pt, yt, bt, ht, _t, Tt, vt, wt, Rt, Pt, Dt, kt;
3903
+ var t, n, r, s, o, l, m, i, c, y, p, g, T, _, k, C, D, h, b, d, $, ne, Q, re, se, Ye, Be, He, Ue, qe, Ve, Ae, Qe, Xe, Ze, Je, Ke, et, tt, at, nt, rt, st, ot, it, ut, ct, lt, dt, mt, gt, ft, pt, yt, bt, ht, _t, Tt, vt, wt, Pt, Rt, Dt, kt;
3902
3904
  return {
3903
3905
  id: a.gradeindex,
3904
3906
  is_current_level: !1,
@@ -3976,7 +3978,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3976
3978
  isShow: !0,
3977
3979
  bonus: v(((Tt = (_t = a.benefit) == null ? void 0 : _t.salary_20th) == null ? void 0 : Tt.bonus) ?? "0"),
3978
3980
  bonus_name: ((wt = (vt = a.benefit) == null ? void 0 : vt.salary_20th) == null ? void 0 : wt.bonus_name) ?? "",
3979
- turnover: v(((Pt = (Rt = a.benefit) == null ? void 0 : Rt.salary_20th) == null ? void 0 : Pt.turnover) ?? "0"),
3981
+ turnover: v(((Rt = (Pt = a.benefit) == null ? void 0 : Pt.salary_20th) == null ? void 0 : Rt.turnover) ?? "0"),
3980
3982
  turnover_name: ((kt = (Dt = a.benefit) == null ? void 0 : Dt.salary_20th) == null ? void 0 : kt.turnover_name) ?? ""
3981
3983
  }
3982
3984
  }
@@ -4099,7 +4101,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4099
4101
  amountDisplay: ((r = a.promo_cash) == null ? void 0 : r.display) ?? ""
4100
4102
  };
4101
4103
  }).sort((a, t) => a.claimable && !t.claimable ? -1 : !a.claimable && t.claimable ? 1 : 0)
4102
- }), Rs = (e) => ({
4104
+ }), Ps = (e) => ({
4103
4105
  month: {
4104
4106
  status: q(e.month)
4105
4107
  },
@@ -4125,7 +4127,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4125
4127
  claimable: e === 1,
4126
4128
  expired: e === 0,
4127
4129
  claimed: e === -1
4128
- }), Ps = (e) => e.mdVipSetting.filter((t) => t.status == 1).map((t) => ({
4130
+ }), Rs = (e) => e.mdVipSetting.filter((t) => t.status == 1).map((t) => ({
4129
4131
  fieldName: t.fieldname,
4130
4132
  showName: t.showname
4131
4133
  })), Ds = (e) => ({
@@ -4345,10 +4347,10 @@ const $s = (e) => {
4345
4347
  status: e.status == 1,
4346
4348
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
4347
4349
  flag: e.flag
4348
- }), P = (e) => ({
4350
+ }), R = (e) => ({
4349
4351
  status: e.status == 1,
4350
4352
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? ""
4351
- }), Es = (e) => P(e), Ys = (e) => {
4353
+ }), Es = (e) => R(e), Ys = (e) => {
4352
4354
  var a, t, n, r, s;
4353
4355
  return {
4354
4356
  bankCard: ((a = e.bankCard) == null ? void 0 : a.map((o) => {
@@ -4415,7 +4417,7 @@ const $s = (e) => {
4415
4417
  withdrawCount: e.withdrawCount,
4416
4418
  withdrawMin135: Number(e.withdrawMin_135) && Number(e.withdrawMin_135) > 0 ? Number(e.withdrawMin_135) : Number(e.withdrawMin),
4417
4419
  withdrawMax135: Number(e.withdrawMax_135) && Number(e.withdrawMax_135) > 0 ? Number(e.withdrawMax_135) : Number(e.withdrawMax)
4418
- }), Hs = (e) => P(e);
4420
+ }), Hs = (e) => R(e);
4419
4421
  var L = /* @__PURE__ */ ((e) => (e.deposit = "deposit", e.withdraw = "withdraw", e.promo = "promotion", e.manual = "adjustment", e.cashIn = "cashIn", e.cashOut = "cashOut", e.transfer = "transfer", e.incentive = "incentive", e.upgradeBonus = "upgradeBonus", e.extension = "extension", e.creditTransfer = "creditTransfer", e.shareHolder = "shareHolderDividend", e))(L || {});
4420
4422
  const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4421
4423
  __proto__: null,
@@ -4557,6 +4559,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4557
4559
  data: ((r = (n = e.mdGameLists) == null ? void 0 : n.data) == null ? void 0 : r.map((s) => ({
4558
4560
  gameId: s.id,
4559
4561
  platformId: s.id_PlatformProduct,
4562
+ platformName: s.name_PlatformProduct,
4560
4563
  platformCode: s.code_PlatformMaster,
4561
4564
  name: s.name,
4562
4565
  flag: {
@@ -4790,7 +4793,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4790
4793
  }
4791
4794
  }
4792
4795
  return a;
4793
- }, yo = (e) => P(e), bo = (e) => P(e), ho = (e) => {
4796
+ }, yo = (e) => R(e), bo = (e) => R(e), ho = (e) => {
4794
4797
  var a, t, n, r, s;
4795
4798
  return {
4796
4799
  status: e.status == 1,
@@ -4822,7 +4825,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4822
4825
  regex: a.regex,
4823
4826
  showName: a.showname,
4824
4827
  inputHelper: a.inputHelper
4825
- })) : [], To = (e) => P(e), vo = (e) => e, wo = (e) => {
4828
+ })) : [], To = (e) => R(e), vo = (e) => e, wo = (e) => {
4826
4829
  var a;
4827
4830
  return {
4828
4831
  status: e.status == 1,
@@ -4832,7 +4835,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4832
4835
  ledgerIndex: e.checkgame.ledgerindex ?? 0,
4833
4836
  amount: e.checkgame.amount ?? ""
4834
4837
  };
4835
- }, Ro = (e) => P(e), Po = (e) => ({
4838
+ }, Po = (e) => R(e), Ro = (e) => ({
4836
4839
  status: e.status == 1,
4837
4840
  message: e.message,
4838
4841
  user: e.user ?? ""
@@ -4840,7 +4843,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4840
4843
  status: e.status == 1,
4841
4844
  message: e.msg ?? "",
4842
4845
  amount: e.amount ?? ""
4843
- }), ko = (e) => P(e), xo = (e) => {
4846
+ }), ko = (e) => R(e), xo = (e) => {
4844
4847
  var a;
4845
4848
  return {
4846
4849
  status: e.status == 1,
@@ -4874,10 +4877,10 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4874
4877
  message: e.msg ?? "",
4875
4878
  form: e.form ?? "",
4876
4879
  gameUrl: e.data ?? ""
4877
- }), Io = (e) => P(e), jo = (e) => P(e), je = (e) => ({
4880
+ }), Io = (e) => R(e), jo = (e) => R(e), je = (e) => ({
4878
4881
  status: e.status == 1,
4879
4882
  message: e.errormessage ?? ""
4880
- }), Co = (e) => P(e), No = (e) => e, Lo = (e) => P(e), $o = (e) => {
4883
+ }), Co = (e) => R(e), No = (e) => e, Lo = (e) => R(e), $o = (e) => {
4881
4884
  var a;
4882
4885
  return {
4883
4886
  platformProduct: ((a = e.mdPlatformProduct) == null ? void 0 : a.map((t) => ({
@@ -4901,7 +4904,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4901
4904
  }))) ?? []
4902
4905
  };
4903
4906
  })) ?? [];
4904
- }, Fo = (e) => P(e), zo = (e) => P(e), Wo = (e) => P(e), Eo = (e) => P(e), Yo = (e) => P(e), Bo = (e) => P(e), Ho = (e) => P(e), Uo = (e) => ({
4907
+ }, Fo = (e) => R(e), zo = (e) => R(e), Wo = (e) => R(e), Eo = (e) => R(e), Yo = (e) => R(e), Bo = (e) => R(e), Ho = (e) => R(e), Uo = (e) => ({
4905
4908
  status: e.status == 1,
4906
4909
  message: e.msg ?? "",
4907
4910
  data: e.data
@@ -5063,7 +5066,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5063
5066
  binded: ((n = e.data) == null ? void 0 : n.binded) ?? !1
5064
5067
  }
5065
5068
  };
5066
- }, ni = (e) => P(e), ri = (e) => {
5069
+ }, ni = (e) => R(e), ri = (e) => {
5067
5070
  var a;
5068
5071
  return {
5069
5072
  status: e.status == 1,
@@ -5073,7 +5076,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5073
5076
  createdAt: t.created_at
5074
5077
  }))) ?? []
5075
5078
  };
5076
- }, si = (e) => P(e), oi = (e) => {
5079
+ }, si = (e) => R(e), oi = (e) => {
5077
5080
  var a, t, n;
5078
5081
  return {
5079
5082
  status: e.status == 1,
@@ -5098,11 +5101,11 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5098
5101
  }))) ?? []
5099
5102
  }
5100
5103
  };
5101
- }, ii = (e) => P(e), ui = (e) => ({
5104
+ }, ii = (e) => R(e), ui = (e) => ({
5102
5105
  status: e.status == 1,
5103
5106
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
5104
5107
  tokenAmount: e.token_amount
5105
- }), ci = (e) => P(e), li = (e) => {
5108
+ }), ci = (e) => R(e), li = (e) => {
5106
5109
  let a = 0;
5107
5110
  return e.data != null && typeof e.data == "object" && (a = e.data.amount), {
5108
5111
  status: e.status,
@@ -5185,7 +5188,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5185
5188
  errorMessage: e.errormessage ?? "",
5186
5189
  isAutoTransfer: e.optionkey == "auto" || ((a = e.message) == null ? void 0 : a.optionkey) == "auto" || ((t = e.mdAccountSetting) == null ? void 0 : t.optionkey) == "auto"
5187
5190
  };
5188
- }, bi = (e) => P(e), hi = (e) => ({
5191
+ }, bi = (e) => R(e), hi = (e) => ({
5189
5192
  status: e.status,
5190
5193
  message: e.msg ?? "",
5191
5194
  turnover: e.data ? e.data.turnover : 0,
@@ -5264,10 +5267,10 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5264
5267
  }, wi = (e) => {
5265
5268
  const a = (/* @__PURE__ */ new Date()).getTime(), t = new Date(e).getTime();
5266
5269
  return Math.max(0, t - a);
5267
- }, Ri = (e) => ({
5270
+ }, Pi = (e) => ({
5268
5271
  status: e.status,
5269
5272
  message: e.msg ?? ""
5270
- }), Pi = (e) => ({
5273
+ }), Ri = (e) => ({
5271
5274
  status: e.status == 1,
5272
5275
  socialLogin: e.social_login == 1,
5273
5276
  errorMessage: e.erorrmessage ?? "",
@@ -5285,6 +5288,7 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5285
5288
  data: e.mdGameLists.data && e.mdGameLists.data.length > 0 ? e.mdGameLists.data.map((a) => ({
5286
5289
  gameId: a.id,
5287
5290
  platformId: a.id_PlatformProduct,
5291
+ platformName: a.product,
5288
5292
  platformCode: a.code,
5289
5293
  name: a.name,
5290
5294
  flag: {
@@ -5298,7 +5302,7 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5298
5302
  rate: "0.00",
5299
5303
  jackpotAmount: ""
5300
5304
  })) ?? [] : []
5301
- }), ki = (e) => P(e), xi = (e) => P(e);
5305
+ }), ki = (e) => R(e), xi = (e) => R(e);
5302
5306
  var A = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(A || {});
5303
5307
  const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5304
5308
  __proto__: null,
@@ -5587,6 +5591,7 @@ const qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5587
5591
  data: ((r = (n = e.mdGameLists) == null ? void 0 : n.data) == null ? void 0 : r.map((s) => ({
5588
5592
  gameId: s.id,
5589
5593
  platformId: s.id_PlatformProduct,
5594
+ platformName: s.product,
5590
5595
  platformCode: s.code,
5591
5596
  name: s.name,
5592
5597
  flag: {
@@ -5620,7 +5625,7 @@ const qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5620
5625
  status: e.status == 1,
5621
5626
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
5622
5627
  tokenAmount: e.token_amount
5623
- }), Ki = (e) => P(e);
5628
+ }), Ki = (e) => R(e);
5624
5629
  var J = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(J || {});
5625
5630
  const Vu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5626
5631
  __proto__: null,
@@ -6190,7 +6195,7 @@ const Qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6190
6195
  })
6191
6196
  }
6192
6197
  )), e;
6193
- }, Ru = (e) => e.status == 0 ? {
6198
+ }, Pu = (e) => e.status == 0 ? {
6194
6199
  status: !1,
6195
6200
  message: e.errormessage ?? "",
6196
6201
  data: null
@@ -6208,7 +6213,7 @@ const Qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6208
6213
  replyBy: a.replyby ?? "",
6209
6214
  replyOn: a.replyon ?? ""
6210
6215
  })) ?? []
6211
- }, Pu = (e) => ({
6216
+ }, Ru = (e) => ({
6212
6217
  status: e.status == 1,
6213
6218
  message: e.message ?? ""
6214
6219
  }), Du = (e) => {
@@ -6242,6 +6247,7 @@ const Qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6242
6247
  data: ((r = (n = e.mdGameLists) == null ? void 0 : n.data) == null ? void 0 : r.map((s) => ({
6243
6248
  gameId: s.id,
6244
6249
  platformId: s.id_PlatformProduct,
6250
+ platformName: s.name_PlatformProduct,
6245
6251
  platformCode: s.code_PlatformMaster,
6246
6252
  name: s.name,
6247
6253
  flag: {
@@ -6301,10 +6307,10 @@ const Qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6301
6307
  o.result[i] = vs(c);
6302
6308
  break;
6303
6309
  case u.vipBonus:
6304
- o.result[i] = Rs(c);
6310
+ o.result[i] = Ps(c);
6305
6311
  break;
6306
6312
  case u.vipFieldStatus:
6307
- o.result[i] = Ps(c);
6313
+ o.result[i] = Rs(c);
6308
6314
  break;
6309
6315
  case u.vipStatus:
6310
6316
  o.result[i] = Ds(c);
@@ -6515,10 +6521,10 @@ const Qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6515
6521
  );
6516
6522
  break;
6517
6523
  case u.requestTacCode:
6518
- o.result[i] = Ro(c);
6524
+ o.result[i] = Po(c);
6519
6525
  break;
6520
6526
  case u.getUsernameByRefer:
6521
- o.result[i] = Po(
6527
+ o.result[i] = Ro(
6522
6528
  c
6523
6529
  );
6524
6530
  break;
@@ -6746,12 +6752,12 @@ const Qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6746
6752
  o.result[i] = vi(c);
6747
6753
  break;
6748
6754
  case u.getMissionClaim:
6749
- o.result[i] = Ri(
6755
+ o.result[i] = Pi(
6750
6756
  c
6751
6757
  );
6752
6758
  break;
6753
6759
  case u.registerForm:
6754
- o.result[i] = Pi(c);
6760
+ o.result[i] = Ri(c);
6755
6761
  break;
6756
6762
  case u.getFavouriteGame:
6757
6763
  o.result[i] = Di(
@@ -6886,10 +6892,10 @@ const Qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6886
6892
  );
6887
6893
  break;
6888
6894
  case u.getFeedback:
6889
- o.result[i] = Ru(c);
6895
+ o.result[i] = Pu(c);
6890
6896
  break;
6891
6897
  case u.submitFeedback:
6892
- o.result[i] = Pu(c);
6898
+ o.result[i] = Ru(c);
6893
6899
  break;
6894
6900
  case u.casinoGameList:
6895
6901
  o.result[i] = xu(c);
@@ -7190,10 +7196,10 @@ const Qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7190
7196
  __proto__: null
7191
7197
  }, Symbol.toStringTag, { value: "Module" })), wc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7192
7198
  __proto__: null
7193
- }, Symbol.toStringTag, { value: "Module" })), Rc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7194
- __proto__: null
7195
7199
  }, Symbol.toStringTag, { value: "Module" })), Pc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7196
7200
  __proto__: null
7201
+ }, Symbol.toStringTag, { value: "Module" })), Rc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7202
+ __proto__: null
7197
7203
  }, Symbol.toStringTag, { value: "Module" })), Dc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7198
7204
  __proto__: null
7199
7205
  }, Symbol.toStringTag, { value: "Module" })), kc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -7301,10 +7307,10 @@ const Vc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7301
7307
  __proto__: null
7302
7308
  }, Symbol.toStringTag, { value: "Module" })), wl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7303
7309
  __proto__: null
7304
- }, Symbol.toStringTag, { value: "Module" })), Rl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7305
- __proto__: null
7306
7310
  }, Symbol.toStringTag, { value: "Module" })), Pl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7307
7311
  __proto__: null
7312
+ }, Symbol.toStringTag, { value: "Module" })), Rl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7313
+ __proto__: null
7308
7314
  }, Symbol.toStringTag, { value: "Module" })), Dl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7309
7315
  __proto__: null
7310
7316
  }, Symbol.toStringTag, { value: "Module" })), kl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -7438,7 +7444,7 @@ export {
7438
7444
  pl as commissionWithdrawType,
7439
7445
  zu as config,
7440
7446
  gc as depositType,
7441
- Pc as fishGameListType,
7447
+ Rc as fishGameListType,
7442
7448
  ll as friendListEditType,
7443
7449
  cl as friendListType,
7444
7450
  uc as gameListType,
@@ -7506,7 +7512,7 @@ export {
7506
7512
  sc as loginType,
7507
7513
  ec as logoutApi,
7508
7514
  oc as logoutType,
7509
- Rc as mailBoxType,
7515
+ Pc as mailBoxType,
7510
7516
  dc as mainWalletType,
7511
7517
  Eu as paymentsProviderType,
7512
7518
  Bc as playGame,
@@ -7515,9 +7521,9 @@ export {
7515
7521
  lc as promotionType,
7516
7522
  Xc as readMailType,
7517
7523
  Kl as rebateRefundSettingType,
7518
- Rl as referralMemberProfileType,
7524
+ Pl as referralMemberProfileType,
7519
7525
  wl as referralProfileType,
7520
- Pl as registerActionType,
7526
+ Rl as registerActionType,
7521
7527
  Vl as registerFormType,
7522
7528
  Wc as requestForgetPasswordType,
7523
7529
  Xl as requestForgetUsernameType,