@synsci/sdk 2.0.58 → 2.0.59
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.
|
@@ -605,7 +605,9 @@ export declare class Wallet extends HeyApiClient {
|
|
|
605
605
|
/**
|
|
606
606
|
* Get purchased wallet and Ace ledger
|
|
607
607
|
*/
|
|
608
|
-
get<ThrowOnError extends boolean = false>(
|
|
608
|
+
get<ThrowOnError extends boolean = false>(parameters?: {
|
|
609
|
+
summary?: "true" | "false";
|
|
610
|
+
}, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsWalletGetResponses, unknown, ThrowOnError, "fields">;
|
|
609
611
|
}
|
|
610
612
|
export declare class Skills extends HeyApiClient {
|
|
611
613
|
/**
|
|
@@ -1087,10 +1087,12 @@ export class Wallet extends HeyApiClient {
|
|
|
1087
1087
|
/**
|
|
1088
1088
|
* Get purchased wallet and Ace ledger
|
|
1089
1089
|
*/
|
|
1090
|
-
get(options) {
|
|
1090
|
+
get(parameters, options) {
|
|
1091
|
+
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "summary" }] }]);
|
|
1091
1092
|
return (options?.client ?? this.client).get({
|
|
1092
1093
|
url: "/settings/wallet",
|
|
1093
1094
|
...options,
|
|
1095
|
+
...params,
|
|
1094
1096
|
});
|
|
1095
1097
|
}
|
|
1096
1098
|
}
|
|
@@ -7381,7 +7381,12 @@ export type SettingsBillingUpdateResponse = SettingsBillingUpdateResponses[keyof
|
|
|
7381
7381
|
export type SettingsWalletGetData = {
|
|
7382
7382
|
body?: never;
|
|
7383
7383
|
path?: never;
|
|
7384
|
-
query?:
|
|
7384
|
+
query?: {
|
|
7385
|
+
/**
|
|
7386
|
+
* Return a fast account summary without ledger history
|
|
7387
|
+
*/
|
|
7388
|
+
summary?: "true" | "false";
|
|
7389
|
+
};
|
|
7385
7390
|
url: "/settings/wallet";
|
|
7386
7391
|
};
|
|
7387
7392
|
export type SettingsWalletGetResponses = {
|