@rabby-wallet/rabby-api 0.9.33-beta.0 → 0.9.33-beta.1
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.ts +11 -0
- package/dist/index.js +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -936,6 +936,17 @@ export declare class OpenApiService {
|
|
|
936
936
|
has_eligibility: boolean;
|
|
937
937
|
can_claimed_usd_value: number;
|
|
938
938
|
}>;
|
|
939
|
+
checkGasAccountGiftEligibilityBatch: (params: {
|
|
940
|
+
list: {
|
|
941
|
+
id: string;
|
|
942
|
+
}[];
|
|
943
|
+
}) => Promise<{
|
|
944
|
+
list: {
|
|
945
|
+
id: string;
|
|
946
|
+
has_eligibility: boolean;
|
|
947
|
+
can_claimed_usd_value: number;
|
|
948
|
+
}[];
|
|
949
|
+
}>;
|
|
939
950
|
confirmIapOrder: (postData: {
|
|
940
951
|
transaction_id: string;
|
|
941
952
|
device_type: 'android' | 'ios';
|
package/dist/index.js
CHANGED
|
@@ -1303,6 +1303,10 @@ export class OpenApiService {
|
|
|
1303
1303
|
});
|
|
1304
1304
|
return data;
|
|
1305
1305
|
});
|
|
1306
|
+
this.checkGasAccountGiftEligibilityBatch = (params) => __awaiter(this, void 0, void 0, function* () {
|
|
1307
|
+
const { data } = yield this.request.post('/v1/gas_account/check_eligibility/batch', params);
|
|
1308
|
+
return data;
|
|
1309
|
+
});
|
|
1306
1310
|
this.confirmIapOrder = (postData) => __awaiter(this, void 0, void 0, function* () {
|
|
1307
1311
|
const { data } = yield this.request.post('/v1/gas_account/confirm_iap_order', postData);
|
|
1308
1312
|
return data;
|