60p82u21t54k 0.0.11

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.
Files changed (78) hide show
  1. package/dist/60p82u21t54k.es.js +1 -0
  2. package/dist/60p82u21t54k.umd.js +1 -0
  3. package/dist/api/api.d.ts +4 -0
  4. package/dist/api/api.d.ts.map +1 -0
  5. package/dist/api/loginApi.d.ts +5 -0
  6. package/dist/api/loginApi.d.ts.map +1 -0
  7. package/dist/api/type.d.ts +37 -0
  8. package/dist/api/type.d.ts.map +1 -0
  9. package/dist/index.d.ts +1 -0
  10. package/dist/index.d.ts.map +1 -0
  11. package/dist/main.d.ts +1 -0
  12. package/dist/main.d.ts.map +1 -0
  13. package/dist/model/announcement/getAnnouncementResponse.d.ts +5 -0
  14. package/dist/model/announcement/getAnnouncementResponse.d.ts.map +1 -0
  15. package/dist/model/announcement/rawType.d.ts +7 -0
  16. package/dist/model/announcement/rawType.d.ts.map +1 -0
  17. package/dist/model/announcement/type.d.ts +7 -0
  18. package/dist/model/announcement/type.d.ts.map +1 -0
  19. package/dist/model/bankCard/type.d.ts +60 -0
  20. package/dist/model/bankCard/type.d.ts.map +1 -0
  21. package/dist/model/betReport/type.d.ts +39 -0
  22. package/dist/model/betReport/type.d.ts.map +1 -0
  23. package/dist/model/changePassword/type.d.ts +4 -0
  24. package/dist/model/changePassword/type.d.ts.map +1 -0
  25. package/dist/model/changeWithdrawalCode/type.d.ts +6 -0
  26. package/dist/model/changeWithdrawalCode/type.d.ts.map +1 -0
  27. package/dist/model/changeWithdrawalPassword/type.d.ts +6 -0
  28. package/dist/model/changeWithdrawalPassword/type.d.ts.map +1 -0
  29. package/dist/model/checkTransferCredit/type.d.ts +6 -0
  30. package/dist/model/checkTransferCredit/type.d.ts.map +1 -0
  31. package/dist/model/cms/type.d.ts +36 -0
  32. package/dist/model/cms/type.d.ts.map +1 -0
  33. package/dist/model/countLottery/type.d.ts +43 -0
  34. package/dist/model/countLottery/type.d.ts.map +1 -0
  35. package/dist/model/creditTransferReport/type.d.ts +16 -0
  36. package/dist/model/creditTransferReport/type.d.ts.map +1 -0
  37. package/dist/model/deposit/getPaymentsProviderResponse.d.ts +5 -0
  38. package/dist/model/deposit/getPaymentsProviderResponse.d.ts.map +1 -0
  39. package/dist/model/deposit/rawType.d.ts +170 -0
  40. package/dist/model/deposit/rawType.d.ts.map +1 -0
  41. package/dist/model/deposit/type.d.ts +58 -0
  42. package/dist/model/deposit/type.d.ts.map +1 -0
  43. package/dist/model/fishGameList/type.d.ts +7 -0
  44. package/dist/model/fishGameList/type.d.ts.map +1 -0
  45. package/dist/model/forgetPassword/type.d.ts +11 -0
  46. package/dist/model/forgetPassword/type.d.ts.map +1 -0
  47. package/dist/model/gameList/type.d.ts +48 -0
  48. package/dist/model/gameList/type.d.ts.map +1 -0
  49. package/dist/model/gamePassword/type.d.ts +13 -0
  50. package/dist/model/gamePassword/type.d.ts.map +1 -0
  51. package/dist/model/memberTransfer/type.d.ts +35 -0
  52. package/dist/model/memberTransfer/type.d.ts.map +1 -0
  53. package/dist/model/promotion/type.d.ts +35 -0
  54. package/dist/model/promotion/type.d.ts.map +1 -0
  55. package/dist/model/redPacket/type.d.ts +33 -0
  56. package/dist/model/redPacket/type.d.ts.map +1 -0
  57. package/dist/model/referral/type.d.ts +85 -0
  58. package/dist/model/referral/type.d.ts.map +1 -0
  59. package/dist/model/signIn/type.d.ts +23 -0
  60. package/dist/model/signIn/type.d.ts.map +1 -0
  61. package/dist/model/transactionReport/type.d.ts +30 -0
  62. package/dist/model/transactionReport/type.d.ts.map +1 -0
  63. package/dist/model/transfer/type.d.ts +19 -0
  64. package/dist/model/transfer/type.d.ts.map +1 -0
  65. package/dist/model/transferReport/type.d.ts +16 -0
  66. package/dist/model/transferReport/type.d.ts.map +1 -0
  67. package/dist/model/validation/type.d.ts +26 -0
  68. package/dist/model/validation/type.d.ts.map +1 -0
  69. package/dist/model/wallet/type.d.ts +25 -0
  70. package/dist/model/wallet/type.d.ts.map +1 -0
  71. package/dist/plugin.d.ts +5 -0
  72. package/dist/plugin.d.ts.map +1 -0
  73. package/dist/util/axiosConfig.d.ts +3 -0
  74. package/dist/util/axiosConfig.d.ts.map +1 -0
  75. package/dist/util/tool.d.ts +3 -0
  76. package/dist/util/tool.d.ts.map +1 -0
  77. package/dist/vite.svg +1 -0
  78. package/package.json +43 -0
@@ -0,0 +1,11 @@
1
+ export type RequestForgetPassword = {
2
+ status: number;
3
+ message: string;
4
+ errormessage: string;
5
+ };
6
+ export type submitForgetPassword = {
7
+ status: number;
8
+ message: string;
9
+ errormessage: string;
10
+ };
11
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/forgetPassword/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,qBAAqB,GAAG;IAClC,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,MAAM,MAAM,oBAAoB,GAAG;IACjC,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA"}
@@ -0,0 +1,48 @@
1
+ export type RawGameListResponse = {
2
+ mdGameListResult: RawProduct[];
3
+ mdCategoryMaster: RawCategoryMaster[];
4
+ mdDomains: string[];
5
+ mdGameLists: RawGame[];
6
+ };
7
+ export type RawProduct = {
8
+ id: number;
9
+ code: string;
10
+ name: string;
11
+ nextPage: number;
12
+ mdPlatformProducts: RawPlatform[];
13
+ };
14
+ export type RawCategoryMaster = {
15
+ id: string;
16
+ name: string;
17
+ };
18
+ export type RawGame = {
19
+ id: string;
20
+ name: string;
21
+ img: string;
22
+ id_PlatformProduct: string;
23
+ filemtime: string;
24
+ mdDomains_id: number;
25
+ };
26
+ export type RawPlatform = {
27
+ id: string;
28
+ shortName: string;
29
+ code: string;
30
+ flag: number;
31
+ id_GameMaster: string;
32
+ d_filemtime: string;
33
+ d_img: string;
34
+ mdDomains_id: number;
35
+ };
36
+ export type GameListResponse = Product[];
37
+ export type Product = {
38
+ code: string;
39
+ id: number;
40
+ name: string;
41
+ nextPage: boolean;
42
+ };
43
+ export type Platform = {
44
+ id: number;
45
+ name: string;
46
+ img_url: string;
47
+ };
48
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/gameList/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,mBAAmB,GAAG;IAChC,gBAAgB,EAAE,UAAU,EAAE,CAAA;IAC9B,gBAAgB,EAAE,iBAAiB,EAAE,CAAA;IACrC,SAAS,EAAE,MAAM,EAAE,CAAA;IACnB,WAAW,EAAE,OAAO,EAAE,CAAA;CACvB,CAAA;AAED,MAAM,MAAM,UAAU,GAAG;IACvB,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,QAAQ,EAAE,MAAM,CAAA;IAChB,kBAAkB,EAAE,WAAW,EAAE,CAAA;CAClC,CAAA;AAED,MAAM,MAAM,iBAAiB,GAAG;IAC9B,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;CACb,CAAA;AAED,MAAM,MAAM,OAAO,GAAG;IACpB,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,kBAAkB,EAAE,MAAM,CAAA;IAC1B,SAAS,EAAE,MAAM,CAAA;IACjB,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,MAAM,MAAM,WAAW,GAAG;IACxB,EAAE,EAAE,MAAM,CAAA;IACV,SAAS,EAAE,MAAM,CAAA;IACjB,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,aAAa,EAAE,MAAM,CAAA;IACrB,WAAW,EAAE,MAAM,CAAA;IACnB,KAAK,EAAE,MAAM,CAAA;IACb,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,MAAM,MAAM,gBAAgB,GAAG,OAAO,EAAE,CAAA;AAExC,MAAM,MAAM,OAAO,GAAG;IACpB,IAAI,EAAE,MAAM,CAAA;IACZ,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,QAAQ,EAAE,OAAO,CAAA;CAElB,CAAA;AAED,MAAM,MAAM,QAAQ,GAAG;IACrB,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,EAAE,MAAM,CAAA;CAChB,CAAA"}
@@ -0,0 +1,13 @@
1
+ export type GamePassword = {
2
+ status: string;
3
+ account: string;
4
+ };
5
+ export type GamePasswordPlatform = {
6
+ subPlatformMaster: string[];
7
+ };
8
+ export type GamePasswordUpdate = {
9
+ status: string;
10
+ message: string;
11
+ errorMessage: string;
12
+ };
13
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/gamePassword/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GAAG;IACzB,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;CAChB,CAAA;AAED,MAAM,MAAM,oBAAoB,GAAG;IACjC,iBAAiB,EAAE,MAAM,EAAE,CAAA;CAC5B,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG;IAC/B,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA"}
@@ -0,0 +1,35 @@
1
+ export type FriendList = {
2
+ data: FriendListData[];
3
+ };
4
+ export type FriendListData = {
5
+ id: number;
6
+ username: string;
7
+ nickname: string;
8
+ };
9
+ export type FriendListEdit = {
10
+ status: number;
11
+ message: string;
12
+ errormessage: string;
13
+ };
14
+ export type GetTAC = {
15
+ status: number;
16
+ message: string;
17
+ errormessage: string;
18
+ };
19
+ export type GetUsername = {
20
+ status: number;
21
+ message: string;
22
+ user: string;
23
+ };
24
+ export type SubmitTransfer = {
25
+ status: number;
26
+ message: string;
27
+ errormessage: string;
28
+ data: {
29
+ date: string;
30
+ amount: string;
31
+ sender: string;
32
+ receiver: string;
33
+ };
34
+ };
35
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/memberTransfer/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,UAAU,GAAG;IACvB,IAAI,EAAE,cAAc,EAAE,CAAA;CACvB,CAAA;AAED,MAAM,MAAM,cAAc,GAAG;IAC3B,EAAE,EAAE,MAAM,CAAA;IACV,QAAQ,EAAE,MAAM,CAAA;IAChB,QAAQ,EAAE,MAAM,CAAA;CACjB,CAAA;AAED,MAAM,MAAM,cAAc,GAAG;IAC3B,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,MAAM,MAAM,MAAM,GAAG;IACnB,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,MAAM,MAAM,WAAW,GAAG;IACxB,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,IAAI,EAAE,MAAM,CAAA;CACb,CAAA;AAED,MAAM,MAAM,cAAc,GAAG;IAC3B,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;IACpB,IAAI,EAAE;QACJ,IAAI,EAAE,MAAM,CAAA;QACZ,MAAM,EAAE,MAAM,CAAA;QACd,MAAM,EAAE,MAAM,CAAA;QACd,QAAQ,EAAE,MAAM,CAAA;KACjB,CAAA;CACF,CAAA"}
@@ -0,0 +1,35 @@
1
+ export type ApplyPromo = {
2
+ status: number;
3
+ msg: string;
4
+ amount: string;
5
+ };
6
+ export type PromotionCategory = {
7
+ catid: number;
8
+ name: string;
9
+ };
10
+ export type PromotionList = {
11
+ promoindex: number;
12
+ title: string;
13
+ display_time: string;
14
+ content: string;
15
+ sequence: number;
16
+ status: number;
17
+ timer: string;
18
+ stime: string;
19
+ etime: string;
20
+ banner: string;
21
+ promo_category: {
22
+ catid: number;
23
+ name: string;
24
+ };
25
+ promo_image: {
26
+ filename: string;
27
+ lastupdated: string;
28
+ };
29
+ link: string;
30
+ };
31
+ export type Promotion = {
32
+ category: PromotionCategory[];
33
+ list: PromotionList[];
34
+ };
35
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/promotion/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,UAAU,GAAG;IACvB,MAAM,EAAE,MAAM,CAAA;IACd,GAAG,EAAE,MAAM,CAAA;IACX,MAAM,EAAE,MAAM,CAAA;CACf,CAAA;AAED,MAAM,MAAM,iBAAiB,GAAG;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;CACb,CAAA;AAED,MAAM,MAAM,aAAa,GAAG;IAC1B,UAAU,EAAE,MAAM,CAAA;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,YAAY,EAAE,MAAM,CAAA;IACpB,OAAO,EAAE,MAAM,CAAA;IACf,QAAQ,EAAE,MAAM,CAAA;IAChB,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;IACd,cAAc,EAAE;QACd,KAAK,EAAE,MAAM,CAAA;QACb,IAAI,EAAE,MAAM,CAAA;KACb,CAAA;IACD,WAAW,EAAE;QACX,QAAQ,EAAE,MAAM,CAAA;QAChB,WAAW,EAAE,MAAM,CAAA;KACpB,CAAA;IACD,IAAI,EAAE,MAAM,CAAA;CACb,CAAA;AAED,MAAM,MAAM,SAAS,GAAG;IACtB,QAAQ,EAAE,iBAAiB,EAAE,CAAA;IAC7B,IAAI,EAAE,aAAa,EAAE,CAAA;CACtB,CAAA"}
@@ -0,0 +1,33 @@
1
+ export type ApplyRedpacket = {
2
+ status: number;
3
+ message: string;
4
+ errormessage: string;
5
+ };
6
+ export type CheckGameData = {
7
+ unfinishgame: number;
8
+ ledgerindex: string;
9
+ amount: string;
10
+ };
11
+ export type CheckRedPacketToken = {
12
+ status: number;
13
+ message: string;
14
+ errormessage: string;
15
+ token_amount: number;
16
+ };
17
+ export type CheckRedpacketValidate = {
18
+ status: number;
19
+ message: string;
20
+ errormessage: string;
21
+ data: CheckRedpacketValidateData;
22
+ checkgame: CheckGameData;
23
+ };
24
+ export type CheckRedpacketValidateData = {
25
+ top_banner_setting: {
26
+ text: {
27
+ mainTitle: string;
28
+ secondTitle: string;
29
+ };
30
+ };
31
+ bottomDescriptionSetting: string;
32
+ };
33
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/redPacket/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,cAAc,GAAG;IAC3B,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,MAAM,MAAM,aAAa,GAAG;IAC1B,YAAY,EAAE,MAAM,CAAA;IACpB,WAAW,EAAE,MAAM,CAAA;IACnB,MAAM,EAAE,MAAM,CAAA;CACf,CAAA;AAED,MAAM,MAAM,mBAAmB,GAAG;IAChC,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;IACpB,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,MAAM,MAAM,sBAAsB,GAAG;IACnC,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;IACpB,IAAI,EAAE,0BAA0B,CAAA;IAChC,SAAS,EAAE,aAAa,CAAA;CACzB,CAAA;AAED,MAAM,MAAM,0BAA0B,GAAG;IACvC,kBAAkB,EAAE;QAClB,IAAI,EAAE;YACJ,SAAS,EAAE,MAAM,CAAA;YACjB,WAAW,EAAE,MAAM,CAAA;SACpB,CAAA;KACF,CAAA;IACD,wBAAwB,EAAE,MAAM,CAAA;CACjC,CAAA"}
@@ -0,0 +1,85 @@
1
+ export type ReferralCommissionTransaction = {
2
+ status: string;
3
+ msg: ReferralCommissionTransactionDetail[];
4
+ };
5
+ export type ReferralCommissionTransactionDetail = {
6
+ amount: string;
7
+ transferdatetime: string;
8
+ };
9
+ export type ReferralCommissionWithdraw = {
10
+ status: number;
11
+ message: string;
12
+ errormessage: string;
13
+ };
14
+ export type ReferralMemberProfile = {
15
+ status: string;
16
+ message: string;
17
+ errorMessage: string;
18
+ id: number;
19
+ page: number;
20
+ lastpage: number;
21
+ data: ReferralMemberProfileData[];
22
+ };
23
+ export type ReferralMemberProfileData = {
24
+ date: string;
25
+ downlineadded: string;
26
+ commission: string;
27
+ validturnover: string;
28
+ };
29
+ export type ReferralProfile = {
30
+ status: number;
31
+ message: string;
32
+ errorMessage: string;
33
+ downline_info: ReferralProfileDownline[];
34
+ extension_list: ReferralProfileExtension[];
35
+ my_info: MyInfo;
36
+ pagination: Pagination;
37
+ };
38
+ export type MyInfo = {
39
+ accountid: string;
40
+ upline: string;
41
+ referral_code: string;
42
+ teammember: string;
43
+ teamadded: string;
44
+ downlinemember: string;
45
+ downlineadded: string;
46
+ teamachieve: string;
47
+ downlineachieve: string;
48
+ totalcommission: string;
49
+ withdrawablecommission: string;
50
+ sma_nickname: string;
51
+ };
52
+ export type Pagination = {
53
+ current_page: number;
54
+ total_page: number;
55
+ };
56
+ export type ReferralProfileDownline = {
57
+ accountid: string;
58
+ accountcode: string;
59
+ validturnover: string;
60
+ totalvalidturnover: string;
61
+ teammember: string;
62
+ teamadded: string;
63
+ downlinemember: string;
64
+ downlineadded: string;
65
+ teamachieve: string;
66
+ downlineachieve: string;
67
+ commission: string;
68
+ totalcommission: string;
69
+ withdrawablecommission: string;
70
+ createddate: string;
71
+ };
72
+ export type ReferralProfileExtension = {
73
+ extensionid: string;
74
+ name: string;
75
+ id_productmaster: string;
76
+ detail: ReferralProfileExtensionDetail[];
77
+ achieved_level: string;
78
+ };
79
+ export type ReferralProfileExtensionDetail = {
80
+ level: string;
81
+ levelname: string;
82
+ achievement: string;
83
+ commission: string;
84
+ };
85
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/referral/type.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,23 @@
1
+ export type ApplySignIn = {
2
+ status: string;
3
+ message: string;
4
+ errormessage: string;
5
+ data: {
6
+ continuousDay: number;
7
+ };
8
+ };
9
+ export type SignInInfo = {
10
+ bottomDescription: {
11
+ signinCondition: string;
12
+ signinPrize: string;
13
+ };
14
+ firstDayOfMonth: number;
15
+ };
16
+ export type SignInRecord = {
17
+ status: string;
18
+ todayIsSign: string;
19
+ continuousDay: string;
20
+ canSign: string;
21
+ days: string[];
22
+ };
23
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/signIn/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG;IACxB,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;IACpB,IAAI,EAAE;QACJ,aAAa,EAAE,MAAM,CAAA;KACtB,CAAA;CACF,CAAA;AAED,MAAM,MAAM,UAAU,GAAG;IACvB,iBAAiB,EAAE;QACjB,eAAe,EAAE,MAAM,CAAA;QACvB,WAAW,EAAE,MAAM,CAAA;KACpB,CAAA;IACD,eAAe,EAAE,MAAM,CAAA;CACxB,CAAA;AAED,MAAM,MAAM,YAAY,GAAG;IACzB,MAAM,EAAE,MAAM,CAAA;IACd,WAAW,EAAE,MAAM,CAAA;IACnB,aAAa,EAAE,MAAM,CAAA;IACrB,OAAO,EAAE,MAAM,CAAA;IACf,IAAI,EAAE,MAAM,EAAE,CAAA;CACf,CAAA"}
@@ -0,0 +1,30 @@
1
+ export type TransactionReport = {
2
+ subStatusModes: TransactionReportStatus[];
3
+ subTransactionMethods: TransactionReportMethod[];
4
+ mdCashLedgers: TransactionReportCashLedger;
5
+ };
6
+ export type TransactionReportCashLedger = {
7
+ current_page: number;
8
+ last_page: number;
9
+ data: TransactionReportCashLedgerData[];
10
+ };
11
+ export type TransactionReportCashLedgerData = {
12
+ ledgerindex: number;
13
+ transactionindex: number;
14
+ fundindex: number;
15
+ status: number;
16
+ amount: string;
17
+ ledgerdatetime: string;
18
+ promo_cash: string;
19
+ reasonsimplified: string;
20
+ fundmethod: string;
21
+ };
22
+ export type TransactionReportMethod = {
23
+ key: number;
24
+ value: string;
25
+ };
26
+ export type TransactionReportStatus = {
27
+ key: number;
28
+ value: string;
29
+ };
30
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/transactionReport/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,iBAAiB,GAAG;IAC9B,cAAc,EAAE,uBAAuB,EAAE,CAAA;IACzC,qBAAqB,EAAE,uBAAuB,EAAE,CAAA;IAChD,aAAa,EAAE,2BAA2B,CAAA;CAC3C,CAAA;AAED,MAAM,MAAM,2BAA2B,GAAG;IACxC,YAAY,EAAE,MAAM,CAAA;IACpB,SAAS,EAAE,MAAM,CAAA;IACjB,IAAI,EAAE,+BAA+B,EAAE,CAAA;CACxC,CAAA;AAED,MAAM,MAAM,+BAA+B,GAAG;IAC5C,WAAW,EAAE,MAAM,CAAA;IACnB,gBAAgB,EAAE,MAAM,CAAA;IACxB,SAAS,EAAE,MAAM,CAAA;IACjB,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,MAAM,CAAA;IACd,cAAc,EAAE,MAAM,CAAA;IACtB,UAAU,EAAE,MAAM,CAAA;IAClB,gBAAgB,EAAE,MAAM,CAAA;IACxB,UAAU,EAAE,MAAM,CAAA;CACnB,CAAA;AAED,MAAM,MAAM,uBAAuB,GAAG;IACpC,GAAG,EAAE,MAAM,CAAA;IACX,KAAK,EAAE,MAAM,CAAA;CACd,CAAA;AAED,MAAM,MAAM,uBAAuB,GAAG;IACpC,GAAG,EAAE,MAAM,CAAA;IACX,KAAK,EAAE,MAAM,CAAA;CACd,CAAA"}
@@ -0,0 +1,19 @@
1
+ export type Transfer = {
2
+ message: string;
3
+ errormessage: string;
4
+ status: number;
5
+ };
6
+ export type TransferSetting = {
7
+ mdAccountSetting: {
8
+ optionkey: string;
9
+ };
10
+ message: string;
11
+ errormessage: string;
12
+ status: number;
13
+ };
14
+ export type TransferToMain = {
15
+ message: string;
16
+ errormessage: string;
17
+ status: number;
18
+ };
19
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/transfer/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,QAAQ,GAAG;IACrB,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;IACpB,MAAM,EAAE,MAAM,CAAA;CACf,CAAA;AAED,MAAM,MAAM,eAAe,GAAG;IAC5B,gBAAgB,EAAE;QAChB,SAAS,EAAE,MAAM,CAAA;KAClB,CAAA;IACD,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;IACpB,MAAM,EAAE,MAAM,CAAA;CACf,CAAA;AAED,MAAM,MAAM,cAAc,GAAG;IAC3B,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;IACpB,MAAM,EAAE,MAAM,CAAA;CACf,CAAA"}
@@ -0,0 +1,16 @@
1
+ export type TransferReport = {
2
+ mdGameCreditLimitTransfers: GameCreditLimitTransfer;
3
+ };
4
+ export type GameCreditLimitTransfer = {
5
+ current_page: number;
6
+ last_page: number;
7
+ data: CreditLimitTransferData[];
8
+ };
9
+ export type CreditLimitTransferData = {
10
+ clindex: string;
11
+ com_from: string;
12
+ com_to: string;
13
+ amount: string;
14
+ transferdatetime: string;
15
+ };
16
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/transferReport/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,cAAc,GAAG;IAC3B,0BAA0B,EAAE,uBAAuB,CAAA;CACpD,CAAA;AAED,MAAM,MAAM,uBAAuB,GAAG;IACpC,YAAY,EAAE,MAAM,CAAA;IACpB,SAAS,EAAE,MAAM,CAAA;IACjB,IAAI,EAAE,uBAAuB,EAAE,CAAA;CAChC,CAAA;AAED,MAAM,MAAM,uBAAuB,GAAG;IACpC,OAAO,EAAE,MAAM,CAAA;IACf,QAAQ,EAAE,MAAM,CAAA;IAChB,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,MAAM,CAAA;IACd,gBAAgB,EAAE,MAAM,CAAA;CACzB,CAAA"}
@@ -0,0 +1,26 @@
1
+ export type SubmitDepositValidate = {
2
+ status: number;
3
+ message: string;
4
+ errormessage: string;
5
+ };
6
+ export type SubmitTransferCreditValidate = {
7
+ status: number;
8
+ message: string;
9
+ errormessage: string;
10
+ };
11
+ export type Validate = {
12
+ withdrawValidate: number;
13
+ depositValidate: number;
14
+ TransferCreditValidate: number;
15
+ subWithdrawForms: ValidateForm[];
16
+ subDepositForms: ValidateForm[];
17
+ subTransferForms: ValidateForm[];
18
+ };
19
+ export type ValidateForm = {
20
+ id: number;
21
+ fieldname: string;
22
+ regex: string;
23
+ showname: string;
24
+ inputHelper: string;
25
+ };
26
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/validation/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,qBAAqB,GAAG;IAClC,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,MAAM,MAAM,4BAA4B,GAAG;IACzC,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,MAAM,MAAM,QAAQ,GAAG;IACrB,gBAAgB,EAAE,MAAM,CAAA;IACxB,eAAe,EAAE,MAAM,CAAA;IACvB,sBAAsB,EAAE,MAAM,CAAA;IAC9B,gBAAgB,EAAE,YAAY,EAAE,CAAA;IAChC,eAAe,EAAE,YAAY,EAAE,CAAA;IAC/B,gBAAgB,EAAE,YAAY,EAAE,CAAA;CACjC,CAAA;AAED,MAAM,MAAM,YAAY,GAAG;IACzB,EAAE,EAAE,MAAM,CAAA;IACV,SAAS,EAAE,MAAM,CAAA;IACjB,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,EAAE,MAAM,CAAA;IAChB,WAAW,EAAE,MAAM,CAAA;CACpB,CAAA"}
@@ -0,0 +1,25 @@
1
+ export type GetActiveCom = {
2
+ code: string;
3
+ category_id: string;
4
+ name: string;
5
+ maintenance: number;
6
+ };
7
+ export type GetCategory = {
8
+ id: string;
9
+ label: string;
10
+ };
11
+ export type MainWallet = {
12
+ mainWallet: number;
13
+ message: string;
14
+ errormessage: string;
15
+ status: number;
16
+ };
17
+ export type Wallet = WalletDetail[];
18
+ export type WalletDetail = {
19
+ active_com: GetActiveCom[];
20
+ category: GetCategory[];
21
+ platformwallet: string;
22
+ com: string;
23
+ maintenance: boolean;
24
+ };
25
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/wallet/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW,EAAE,MAAM,CAAA;IACnB,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW,EAAE,MAAM,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,WAAW,GAAG;IACxB,EAAE,EAAE,MAAM,CAAA;IACV,KAAK,EAAE,MAAM,CAAA;CACd,CAAA;AAED,MAAM,MAAM,UAAU,GAAG;IACvB,UAAU,EAAE,MAAM,CAAA;IAClB,OAAO,EAAE,MAAM,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;IACpB,MAAM,EAAE,MAAM,CAAA;CACf,CAAA;AAED,MAAM,MAAM,MAAM,GAAG,YAAY,EAAE,CAAA;AAEnC,MAAM,MAAM,YAAY,GAAG;IACzB,UAAU,EAAE,YAAY,EAAE,CAAA;IAC1B,QAAQ,EAAE,WAAW,EAAE,CAAA;IACvB,cAAc,EAAE,MAAM,CAAA;IACtB,GAAG,EAAE,MAAM,CAAA;IACX,WAAW,EAAE,OAAO,CAAA;CACrB,CAAA"}
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ install(): void;
3
+ };
4
+ export default _default;
5
+ //# sourceMappingURL=plugin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":";;;AAAA,wBAEC"}
@@ -0,0 +1,3 @@
1
+ declare const axiosInstance: import('axios').AxiosInstance;
2
+ export default axiosInstance;
3
+ //# sourceMappingURL=axiosConfig.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"axiosConfig.d.ts","sourceRoot":"","sources":["../../src/util/axiosConfig.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,aAAa,+BA4CjB,CAAA;AAyDF,eAAe,aAAa,CAAA"}
@@ -0,0 +1,3 @@
1
+ export declare const stringToBytes: (str: string) => Uint8Array;
2
+ export declare const base64Decode: (encodedData: string) => string;
3
+ //# sourceMappingURL=tool.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tool.d.ts","sourceRoot":"","sources":["../../src/util/tool.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,QAAS,MAAM,KAAG,UAE3C,CAAA;AAED,eAAO,MAAM,YAAY,gBAAiB,MAAM,KAAG,MAOlD,CAAA"}
package/dist/vite.svg ADDED
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "60p82u21t54k",
3
+ "version": "0.0.11",
4
+ "description": "A description of your library",
5
+ "main": "dist/60p82u21t54k.umd.js",
6
+ "module": "dist/60p82u21t54k.es.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "author": "ramen87x",
12
+ "license": "MIT",
13
+ "private": false,
14
+ "type": "module",
15
+ "scripts": {
16
+ "dev": "vite",
17
+ "build": "tsc && vite build",
18
+ "preview": "vite preview",
19
+ "lint": "eslint --ignore-path .eslintignore --ext .js,.ts src",
20
+ "lint:fix": "eslint --ext .js,.ts src --fix",
21
+ "prettier": "prettier --write 'src/**/*.{js,ts,json}'"
22
+ },
23
+ "devDependencies": {
24
+ "@types/node": "^20.12.12",
25
+ "@typescript-eslint/eslint-plugin": "^7.9.0",
26
+ "@typescript-eslint/parser": "^7.9.0",
27
+ "eslint": "^8.57.0",
28
+ "eslint-config-prettier": "^9.1.0",
29
+ "eslint-plugin-import": "^2.29.1",
30
+ "eslint-plugin-node": "^11.1.0",
31
+ "eslint-plugin-prettier": "^5.1.3",
32
+ "eslint-plugin-promise": "^6.1.1",
33
+ "eslint-plugin-standard": "^5.0.0",
34
+ "prettier": "^3.2.5",
35
+ "typescript": "^5.2.2",
36
+ "vite": "^5.2.0",
37
+ "vite-plugin-dts": "^3.9.1"
38
+ },
39
+ "dependencies": {
40
+ "axios": "^1.7.2",
41
+ "vue": "^3.4.27"
42
+ }
43
+ }