60p82u21t54k 0.0.80 → 0.0.82

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 (34) hide show
  1. package/dist/60p82u21t54k.es.js +1040 -957
  2. package/dist/60p82u21t54k.umd.js +1 -1
  3. package/dist/api/api.d.ts.map +1 -1
  4. package/dist/api/type.d.ts +16 -1
  5. package/dist/api/type.d.ts.map +1 -1
  6. package/dist/index.d.ts +11 -1
  7. package/dist/index.d.ts.map +1 -1
  8. package/dist/model/claimIncentiveRebate/getClaimIncentiveRebateResponse.d.ts +13 -0
  9. package/dist/model/claimIncentiveRebate/getClaimIncentiveRebateResponse.d.ts.map +1 -0
  10. package/dist/model/claimIncentiveRebate/type.d.ts +6 -0
  11. package/dist/model/claimIncentiveRebate/type.d.ts.map +1 -0
  12. package/dist/model/cmsList/getCmsListResponse.d.ts +1 -0
  13. package/dist/model/cmsList/getCmsListResponse.d.ts.map +1 -1
  14. package/dist/model/cmsList/type.d.ts +3 -1
  15. package/dist/model/cmsList/type.d.ts.map +1 -1
  16. package/dist/model/getIncentiveData/getGetIncentiveDataResponse.d.ts +15 -0
  17. package/dist/model/getIncentiveData/getGetIncentiveDataResponse.d.ts.map +1 -0
  18. package/dist/model/getIncentiveData/type.d.ts +9 -0
  19. package/dist/model/getIncentiveData/type.d.ts.map +1 -0
  20. package/dist/model/getIncentiveRebate/getGetIncentiveRebateResponse.d.ts +13 -0
  21. package/dist/model/getIncentiveRebate/getGetIncentiveRebateResponse.d.ts.map +1 -0
  22. package/dist/model/getIncentiveRebate/type.d.ts +6 -0
  23. package/dist/model/getIncentiveRebate/type.d.ts.map +1 -0
  24. package/dist/model/transfer/getTransferResponse.d.ts +7 -0
  25. package/dist/model/transfer/getTransferResponse.d.ts.map +1 -0
  26. package/dist/model/transfer/type.d.ts +4 -0
  27. package/dist/model/transfer/type.d.ts.map +1 -0
  28. package/dist/model/transferSetting/getTransferSettingResponse.d.ts +15 -0
  29. package/dist/model/transferSetting/getTransferSettingResponse.d.ts.map +1 -0
  30. package/dist/model/transferSetting/type.d.ts +6 -0
  31. package/dist/model/transferSetting/type.d.ts.map +1 -0
  32. package/dist/plugin.d.ts +6 -1
  33. package/dist/plugin.d.ts.map +1 -1
  34. package/package.json +1 -1
@@ -0,0 +1,15 @@
1
+ import { GetIncentiveDataResponse } from './type';
2
+
3
+ export declare const getGetIncentiveDataResponse: (raw: RawGetIncentiveDataResponse) => GetIncentiveDataResponse;
4
+ type RawGetIncentiveDataResponse = {
5
+ status: number;
6
+ msg: string | null;
7
+ data: {
8
+ account_id: string;
9
+ turnover: number;
10
+ percentage: number | null;
11
+ incentive: number;
12
+ };
13
+ };
14
+ export {};
15
+ //# sourceMappingURL=getGetIncentiveDataResponse.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getGetIncentiveDataResponse.d.ts","sourceRoot":"","sources":["../../../src/model/getIncentiveData/getGetIncentiveDataResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,QAAQ,CAAA;AAGjD,eAAO,MAAM,2BAA2B,QACjC,2BAA2B,KAC/B,wBASF,CAAA;AAED,KAAK,2BAA2B,GAAG;IACjC,MAAM,EAAE,MAAM,CAAA;IACd,GAAG,EAAE,MAAM,GAAG,IAAI,CAAA;IAClB,IAAI,EAAE;QACJ,UAAU,EAAE,MAAM,CAAA;QAClB,QAAQ,EAAE,MAAM,CAAA;QAChB,UAAU,EAAE,MAAM,GAAG,IAAI,CAAA;QACzB,SAAS,EAAE,MAAM,CAAA;KAClB,CAAA;CACF,CAAA"}
@@ -0,0 +1,9 @@
1
+ export type GetIncentiveDataResponse = {
2
+ status: number;
3
+ message: string;
4
+ turnover: number;
5
+ percentage: number;
6
+ incentive: number;
7
+ claimable: number;
8
+ };
9
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/getIncentiveData/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,wBAAwB,GAAG;IACrC,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,MAAM,CAAA;IAClB,SAAS,EAAE,MAAM,CAAA;IACjB,SAAS,EAAE,MAAM,CAAA;CAClB,CAAA"}
@@ -0,0 +1,13 @@
1
+ import { GetIncentiveRebateResponse } from './type';
2
+
3
+ export declare const getGetIncentiveRebateResponse: (raw: RawGetIncentiveRebateResponse) => GetIncentiveRebateResponse;
4
+ type RawGetIncentiveRebateResponse = {
5
+ status: number;
6
+ msg: string | null;
7
+ data: {
8
+ accountid: string;
9
+ incentive: string;
10
+ } | null;
11
+ };
12
+ export {};
13
+ //# sourceMappingURL=getGetIncentiveRebateResponse.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getGetIncentiveRebateResponse.d.ts","sourceRoot":"","sources":["../../../src/model/getIncentiveRebate/getGetIncentiveRebateResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,QAAQ,CAAA;AAGnD,eAAO,MAAM,6BAA6B,QACnC,6BAA6B,KACjC,0BAWF,CAAA;AAED,KAAK,6BAA6B,GAAG;IACnC,MAAM,EAAE,MAAM,CAAA;IACd,GAAG,EAAE,MAAM,GAAG,IAAI,CAAA;IAClB,IAAI,EAAE;QACJ,SAAS,EAAE,MAAM,CAAA;QACjB,SAAS,EAAE,MAAM,CAAA;KAClB,GAAG,IAAI,CAAA;CACT,CAAA"}
@@ -0,0 +1,6 @@
1
+ export type GetIncentiveRebateResponse = {
2
+ status: number;
3
+ message: string;
4
+ amount: string;
5
+ };
6
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/getIncentiveRebate/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,0BAA0B,GAAG;IACvC,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,MAAM,EAAE,MAAM,CAAA;CACf,CAAA"}
@@ -0,0 +1,7 @@
1
+ import { RawBaseResponse } from '../../util/baseResponse/type';
2
+ import { TransferResponse } from './type';
3
+
4
+ export declare const getTransferResponse: (raw: RawTransferResponse) => TransferResponse;
5
+ type RawTransferResponse = RawBaseResponse;
6
+ export {};
7
+ //# sourceMappingURL=getTransferResponse.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getTransferResponse.d.ts","sourceRoot":"","sources":["../../../src/model/transfer/getTransferResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC1D,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAA;AAGzC,eAAO,MAAM,mBAAmB,QAAS,mBAAmB,KAAG,gBAE9D,CAAA;AAGD,KAAK,mBAAmB,GAAG,eAAe,CAAA"}
@@ -0,0 +1,4 @@
1
+ import { BaseResponse } from '../../util/baseResponse/type';
2
+
3
+ export type TransferResponse = BaseResponse;
4
+ //# 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,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAEvD,MAAM,MAAM,gBAAgB,GAAG,YAAY,CAAA"}
@@ -0,0 +1,15 @@
1
+ import { TransferSettingResponse } from './type';
2
+
3
+ export declare const getTransferSettingResponse: (raw: RawTransferSettingResponse) => TransferSettingResponse;
4
+ type RawTransferSettingResponse = {
5
+ status: number;
6
+ message: {
7
+ accountid: string;
8
+ optionkey: string;
9
+ cdate: string;
10
+ };
11
+ errormessage?: string | null;
12
+ optionkey: string;
13
+ };
14
+ export {};
15
+ //# sourceMappingURL=getTransferSettingResponse.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getTransferSettingResponse.d.ts","sourceRoot":"","sources":["../../../src/model/transferSetting/getTransferSettingResponse.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,QAAQ,CAAA;AAGhD,eAAO,MAAM,0BAA0B,QAChC,0BAA0B,KAC9B,uBAMF,CAAA;AAGD,KAAK,0BAA0B,GAAG;IAChC,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE;QACP,SAAS,EAAE,MAAM,CAAA;QACjB,SAAS,EAAE,MAAM,CAAA;QACjB,KAAK,EAAE,MAAM,CAAA;KACd,CAAA;IACD,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC5B,SAAS,EAAE,MAAM,CAAA;CAClB,CAAA"}
@@ -0,0 +1,6 @@
1
+ export type TransferSettingResponse = {
2
+ status: boolean;
3
+ errorMessage: string;
4
+ isAutoTransfer: boolean;
5
+ };
6
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/model/transferSetting/type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,uBAAuB,GAAG;IACpC,MAAM,EAAE,OAAO,CAAA;IACf,YAAY,EAAE,MAAM,CAAA;IACpB,cAAc,EAAE,OAAO,CAAA;CACxB,CAAA"}
package/dist/plugin.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { App } from 'vue';
2
- import { api, loginApi, logoutApi, autoRegisterApi, setLocaleApi, apiType, loginType, logoutType, announcementType, paymentsProviderType, gameListType, vipListType, promotionType, cmsListType, mainWalletType, upcomingMatchType, depositType, applyVipBonusType, withdrawalGetType, addBankCardType, withdrawType, getSettingType, transactionReportType, changePasswordType, walletType, getEventListType, getEventTokenType, getExtraGameType, mailBoxType, fishGameListType, slotGameListType, getTurnOverRewardDataType, getTurnOverRewardReportType, getInviteRewardDataType, getInviteRewardReportType, getTopupRewardDataType, getTopupRewardReportType, getRewardReferralType, getDepositPromotionType, getInviteRewardClaimType, getTopUpRewardClaimType, getTurnOverRewardClaimType, getInviteRewardSettingType, getTopUpRewardSettingType, getTurnOverRewardSettingType, requestForgetPasswordType, submitForgetPasswordType, submitGiftCode, playGame, requestUpdateMobileTacCode, submitUpdateMobileTacCode, getVerifyPromo, getImageType, getValidateType, updateProfilePictureType, readMailType, checkRedPacketValidateType, getUserProfileType, requestTacCodeType, getUsernameByReferType, applyPromoType, applySignInType, applyRedPacketType, getCountryType, transferToMainType, transferProcessType, submitValidateType, checkTransferCreditType, friendListType, friendListEditType, getActivePPType, getActiveProductType, requestWithdrawTacType, requestWithdrawalCodeType, commissionWithdrawType, submitWithdrawalCodeType, submitCryptoAccountType, requestTransferMoneyType, submitTransferMoneyType, signInViewInfoType, signInRecordType, referralProfileType, referralMemberProfileType, registerActionType, transferReportType, agTransferCreditReportType, betReportType, getTwoFactorAuthenticateType, submitTwoFactorAuthenticateType, getUserDeviceListType, unbindUserDeviceType, searchNumberHistoryType, changeWithdrawalCodeType, checkRedPacketTokenType, submitWithdrawalAlipayType, applyReliefFund, getReliefFundData, getReliefFundReport, getWeekCardClaim, getWeekCardData, applyWeekCard } from './index';
2
+ import { api, loginApi, logoutApi, autoRegisterApi, setLocaleApi, apiType, loginType, logoutType, announcementType, paymentsProviderType, gameListType, vipListType, promotionType, cmsListType, mainWalletType, upcomingMatchType, depositType, applyVipBonusType, withdrawalGetType, addBankCardType, withdrawType, getSettingType, transactionReportType, changePasswordType, walletType, getEventListType, getEventTokenType, getExtraGameType, mailBoxType, fishGameListType, slotGameListType, getTurnOverRewardDataType, getTurnOverRewardReportType, getInviteRewardDataType, getInviteRewardReportType, getTopupRewardDataType, getTopupRewardReportType, getRewardReferralType, getDepositPromotionType, getInviteRewardClaimType, getTopUpRewardClaimType, getTurnOverRewardClaimType, getInviteRewardSettingType, getTopUpRewardSettingType, getTurnOverRewardSettingType, requestForgetPasswordType, submitForgetPasswordType, submitGiftCode, playGame, requestUpdateMobileTacCode, submitUpdateMobileTacCode, getVerifyPromo, getImageType, getValidateType, updateProfilePictureType, readMailType, checkRedPacketValidateType, getUserProfileType, requestTacCodeType, getUsernameByReferType, applyPromoType, applySignInType, applyRedPacketType, getCountryType, transferToMainType, transferProcessType, submitValidateType, checkTransferCreditType, friendListType, friendListEditType, getActivePPType, getActiveProductType, requestWithdrawTacType, requestWithdrawalCodeType, commissionWithdrawType, submitWithdrawalCodeType, submitCryptoAccountType, requestTransferMoneyType, submitTransferMoneyType, signInViewInfoType, signInRecordType, referralProfileType, referralMemberProfileType, registerActionType, transferReportType, agTransferCreditReportType, betReportType, getTwoFactorAuthenticateType, submitTwoFactorAuthenticateType, getUserDeviceListType, unbindUserDeviceType, searchNumberHistoryType, changeWithdrawalCodeType, checkRedPacketTokenType, submitWithdrawalAlipayType, applyReliefFund, getReliefFundData, getReliefFundReport, getWeekCardClaim, getWeekCardData, applyWeekCard, transferSettingType, transferType, claimIncentiveRebate, getIncentiveData, getIncentiveRebate } from './index';
3
3
 
4
4
  export declare const Repository: {
5
5
  api: typeof api;
@@ -105,6 +105,11 @@ export declare const Repository: {
105
105
  getWeekCardClaim: typeof getWeekCardClaim;
106
106
  getWeekCardData: typeof getWeekCardData;
107
107
  applyWeekCard: typeof applyWeekCard;
108
+ transferSettingType: typeof transferSettingType;
109
+ transferType: typeof transferType;
110
+ claimIncentiveRebate: typeof claimIncentiveRebate;
111
+ getIncentiveData: typeof getIncentiveData;
112
+ getIncentiveRebate: typeof getIncentiveRebate;
108
113
  };
109
114
  declare const _default: {
110
115
  install(app: App): void;
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AACzB,OAAO,EACL,GAAG,EACH,QAAQ,EACR,SAAS,EACT,eAAe,EACf,YAAY,EACZ,OAAO,EACP,SAAS,EACT,UAAU,EACV,gBAAgB,EAChB,oBAAoB,EACpB,YAAY,EACZ,WAAW,EACX,aAAa,EACb,WAAW,EACX,cAAc,EACd,iBAAiB,EACjB,WAAW,EACX,iBAAiB,EACjB,iBAAiB,EACjB,eAAe,EACf,YAAY,EACZ,cAAc,EACd,qBAAqB,EACrB,kBAAkB,EAClB,UAAU,EACV,gBAAgB,EAChB,iBAAiB,EACjB,gBAAgB,EAChB,WAAW,EACX,gBAAgB,EAChB,gBAAgB,EAChB,yBAAyB,EACzB,2BAA2B,EAC3B,uBAAuB,EACvB,yBAAyB,EACzB,sBAAsB,EACtB,wBAAwB,EACxB,qBAAqB,EACrB,uBAAuB,EACvB,wBAAwB,EACxB,uBAAuB,EACvB,0BAA0B,EAC1B,0BAA0B,EAC1B,yBAAyB,EACzB,4BAA4B,EAC5B,yBAAyB,EACzB,wBAAwB,EACxB,cAAc,EACd,QAAQ,EACR,0BAA0B,EAC1B,yBAAyB,EACzB,cAAc,EACd,YAAY,EACZ,eAAe,EACf,wBAAwB,EACxB,YAAY,EACZ,0BAA0B,EAC1B,kBAAkB,EAClB,kBAAkB,EAClB,sBAAsB,EACtB,cAAc,EACd,eAAe,EACf,kBAAkB,EAClB,cAAc,EAGd,kBAAkB,EAClB,mBAAmB,EACnB,kBAAkB,EAClB,uBAAuB,EACvB,cAAc,EACd,kBAAkB,EAClB,eAAe,EACf,oBAAoB,EACpB,sBAAsB,EACtB,yBAAyB,EACzB,sBAAsB,EACtB,wBAAwB,EACxB,uBAAuB,EACvB,wBAAwB,EACxB,uBAAuB,EACvB,kBAAkB,EAClB,gBAAgB,EAChB,mBAAmB,EACnB,yBAAyB,EACzB,kBAAkB,EAClB,kBAAkB,EAClB,0BAA0B,EAC1B,aAAa,EACb,4BAA4B,EAC5B,+BAA+B,EAC/B,qBAAqB,EACrB,oBAAoB,EACpB,uBAAuB,EACvB,wBAAwB,EACxB,uBAAuB,EACvB,0BAA0B,EAC1B,eAAe,EACf,iBAAiB,EACjB,mBAAmB,EACnB,gBAAgB,EAChB,eAAe,EACf,aAAa,EACd,MAAM,SAAS,CAAA;AAEhB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwGtB,CAAA;;iBAGc,GAAG;;AADlB,wBAIC"}
1
+ {"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AACzB,OAAO,EACL,GAAG,EACH,QAAQ,EACR,SAAS,EACT,eAAe,EACf,YAAY,EACZ,OAAO,EACP,SAAS,EACT,UAAU,EACV,gBAAgB,EAChB,oBAAoB,EACpB,YAAY,EACZ,WAAW,EACX,aAAa,EACb,WAAW,EACX,cAAc,EACd,iBAAiB,EACjB,WAAW,EACX,iBAAiB,EACjB,iBAAiB,EACjB,eAAe,EACf,YAAY,EACZ,cAAc,EACd,qBAAqB,EACrB,kBAAkB,EAClB,UAAU,EACV,gBAAgB,EAChB,iBAAiB,EACjB,gBAAgB,EAChB,WAAW,EACX,gBAAgB,EAChB,gBAAgB,EAChB,yBAAyB,EACzB,2BAA2B,EAC3B,uBAAuB,EACvB,yBAAyB,EACzB,sBAAsB,EACtB,wBAAwB,EACxB,qBAAqB,EACrB,uBAAuB,EACvB,wBAAwB,EACxB,uBAAuB,EACvB,0BAA0B,EAC1B,0BAA0B,EAC1B,yBAAyB,EACzB,4BAA4B,EAC5B,yBAAyB,EACzB,wBAAwB,EACxB,cAAc,EACd,QAAQ,EACR,0BAA0B,EAC1B,yBAAyB,EACzB,cAAc,EACd,YAAY,EACZ,eAAe,EACf,wBAAwB,EACxB,YAAY,EACZ,0BAA0B,EAC1B,kBAAkB,EAClB,kBAAkB,EAClB,sBAAsB,EACtB,cAAc,EACd,eAAe,EACf,kBAAkB,EAClB,cAAc,EAGd,kBAAkB,EAClB,mBAAmB,EACnB,kBAAkB,EAClB,uBAAuB,EACvB,cAAc,EACd,kBAAkB,EAClB,eAAe,EACf,oBAAoB,EACpB,sBAAsB,EACtB,yBAAyB,EACzB,sBAAsB,EACtB,wBAAwB,EACxB,uBAAuB,EACvB,wBAAwB,EACxB,uBAAuB,EACvB,kBAAkB,EAClB,gBAAgB,EAChB,mBAAmB,EACnB,yBAAyB,EACzB,kBAAkB,EAClB,kBAAkB,EAClB,0BAA0B,EAC1B,aAAa,EACb,4BAA4B,EAC5B,+BAA+B,EAC/B,qBAAqB,EACrB,oBAAoB,EACpB,uBAAuB,EACvB,wBAAwB,EACxB,uBAAuB,EACvB,0BAA0B,EAC1B,eAAe,EACf,iBAAiB,EACjB,mBAAmB,EACnB,gBAAgB,EAChB,eAAe,EACf,aAAa,EACb,mBAAmB,EACnB,YAAY,EACZ,oBAAoB,EACpB,gBAAgB,EAChB,kBAAkB,EACnB,MAAM,SAAS,CAAA;AAEhB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6GtB,CAAA;;iBAGc,GAAG;;AADlB,wBAIC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "60p82u21t54k",
3
- "version": "0.0.80",
3
+ "version": "0.0.82",
4
4
  "description": "A description of your library",
5
5
  "main": "dist/60p82u21t54k.umd.js",
6
6
  "module": "dist/60p82u21t54k.es.js",