@myx-trade/sdk 0.1.245-beta.8 → 0.1.245-beta.9
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.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +13 -1
- package/dist/index.mjs +13 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3722,7 +3722,11 @@ declare class Appeal extends BaseMyxClient {
|
|
|
3722
3722
|
getAppealReconsiderationDetail(params: GetAppealReconsiderationDetailParams): Promise<ApiResponse<AppealReconsiderationDetail>>;
|
|
3723
3723
|
getAppealReimbursementList(params: AppealReimbursementParams): Promise<ApiResponse<AppealReimbursementItem[]>>;
|
|
3724
3724
|
getAppealNodeVoteList(params: GetAppealNodeVoteListParams): Promise<ApiResponse<AppealNodeVoteListItem[]>>;
|
|
3725
|
+
getAppealNodeVoteDetail(params: GetAppealVoteNodeDetailParams): Promise<ApiResponse<AppealNodeVoteItem[]>>;
|
|
3725
3726
|
getIsVoteNode(params: GetIsVoteNodeParams): Promise<ApiResponse<IsVoteNodeEnum>>;
|
|
3727
|
+
postVoteSignature(params: PostVoteSignatureParams): Promise<ApiResponse<PostVoteResponse>>;
|
|
3728
|
+
getPedingVoteCount(): Promise<ApiResponse<number>>;
|
|
3729
|
+
getMyAppealCount(): Promise<ApiResponse<number>>;
|
|
3726
3730
|
}
|
|
3727
3731
|
|
|
3728
3732
|
declare class Referrals extends BaseMyxClient {
|
package/dist/index.d.ts
CHANGED
|
@@ -3722,7 +3722,11 @@ declare class Appeal extends BaseMyxClient {
|
|
|
3722
3722
|
getAppealReconsiderationDetail(params: GetAppealReconsiderationDetailParams): Promise<ApiResponse<AppealReconsiderationDetail>>;
|
|
3723
3723
|
getAppealReimbursementList(params: AppealReimbursementParams): Promise<ApiResponse<AppealReimbursementItem[]>>;
|
|
3724
3724
|
getAppealNodeVoteList(params: GetAppealNodeVoteListParams): Promise<ApiResponse<AppealNodeVoteListItem[]>>;
|
|
3725
|
+
getAppealNodeVoteDetail(params: GetAppealVoteNodeDetailParams): Promise<ApiResponse<AppealNodeVoteItem[]>>;
|
|
3725
3726
|
getIsVoteNode(params: GetIsVoteNodeParams): Promise<ApiResponse<IsVoteNodeEnum>>;
|
|
3727
|
+
postVoteSignature(params: PostVoteSignatureParams): Promise<ApiResponse<PostVoteResponse>>;
|
|
3728
|
+
getPedingVoteCount(): Promise<ApiResponse<number>>;
|
|
3729
|
+
getMyAppealCount(): Promise<ApiResponse<number>>;
|
|
3726
3730
|
}
|
|
3727
3731
|
|
|
3728
3732
|
declare class Referrals extends BaseMyxClient {
|
package/dist/index.js
CHANGED
|
@@ -1855,7 +1855,7 @@ var RotationProvider = class extends import_providers.BaseProvider {
|
|
|
1855
1855
|
// package.json
|
|
1856
1856
|
var package_default = {
|
|
1857
1857
|
name: "@myx-trade/sdk",
|
|
1858
|
-
version: "0.1.245-beta.
|
|
1858
|
+
version: "0.1.245-beta.9",
|
|
1859
1859
|
private: false,
|
|
1860
1860
|
publishConfig: {
|
|
1861
1861
|
access: "public"
|
|
@@ -23458,9 +23458,21 @@ var Appeal = class extends BaseMyxClient {
|
|
|
23458
23458
|
async getAppealNodeVoteList(params) {
|
|
23459
23459
|
return this.client.api.getAppealNodeVoteList(params);
|
|
23460
23460
|
}
|
|
23461
|
+
async getAppealNodeVoteDetail(params) {
|
|
23462
|
+
return this.client.api.getAppealNodeVoteDetails(params);
|
|
23463
|
+
}
|
|
23461
23464
|
async getIsVoteNode(params) {
|
|
23462
23465
|
return this.client.api.getIsVoteNode(params);
|
|
23463
23466
|
}
|
|
23467
|
+
async postVoteSignature(params) {
|
|
23468
|
+
return this.client.api.postVoteSignature(params);
|
|
23469
|
+
}
|
|
23470
|
+
async getPedingVoteCount() {
|
|
23471
|
+
return this.client.api.getPedingVoteCount();
|
|
23472
|
+
}
|
|
23473
|
+
async getMyAppealCount() {
|
|
23474
|
+
return this.client.api.getMyAppealCount();
|
|
23475
|
+
}
|
|
23464
23476
|
};
|
|
23465
23477
|
|
|
23466
23478
|
// src/manager/referrals/index.tsx
|
package/dist/index.mjs
CHANGED
|
@@ -1769,7 +1769,7 @@ var RotationProvider = class extends BaseProvider {
|
|
|
1769
1769
|
// package.json
|
|
1770
1770
|
var package_default = {
|
|
1771
1771
|
name: "@myx-trade/sdk",
|
|
1772
|
-
version: "0.1.245-beta.
|
|
1772
|
+
version: "0.1.245-beta.9",
|
|
1773
1773
|
private: false,
|
|
1774
1774
|
publishConfig: {
|
|
1775
1775
|
access: "public"
|
|
@@ -23372,9 +23372,21 @@ var Appeal = class extends BaseMyxClient {
|
|
|
23372
23372
|
async getAppealNodeVoteList(params) {
|
|
23373
23373
|
return this.client.api.getAppealNodeVoteList(params);
|
|
23374
23374
|
}
|
|
23375
|
+
async getAppealNodeVoteDetail(params) {
|
|
23376
|
+
return this.client.api.getAppealNodeVoteDetails(params);
|
|
23377
|
+
}
|
|
23375
23378
|
async getIsVoteNode(params) {
|
|
23376
23379
|
return this.client.api.getIsVoteNode(params);
|
|
23377
23380
|
}
|
|
23381
|
+
async postVoteSignature(params) {
|
|
23382
|
+
return this.client.api.postVoteSignature(params);
|
|
23383
|
+
}
|
|
23384
|
+
async getPedingVoteCount() {
|
|
23385
|
+
return this.client.api.getPedingVoteCount();
|
|
23386
|
+
}
|
|
23387
|
+
async getMyAppealCount() {
|
|
23388
|
+
return this.client.api.getMyAppealCount();
|
|
23389
|
+
}
|
|
23378
23390
|
};
|
|
23379
23391
|
|
|
23380
23392
|
// src/manager/referrals/index.tsx
|