@augustdigital/sdk 8.3.0 → 8.3.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "8.3.
|
|
1
|
+
export declare const SDK_VERSION = "8.3.1";
|
package/lib/types/webserver.d.ts
CHANGED
|
@@ -392,9 +392,15 @@ export interface ITokenizedVaultEoaOperator {
|
|
|
392
392
|
id: string;
|
|
393
393
|
name: string;
|
|
394
394
|
}
|
|
395
|
+
export interface IApyOverride {
|
|
396
|
+
is_show_target_apy: boolean;
|
|
397
|
+
is_show_hardcoded_apy: boolean;
|
|
398
|
+
hardcoded_apy: number | null;
|
|
399
|
+
}
|
|
395
400
|
export interface ITokenizedVaultStrategist {
|
|
396
401
|
strategist_name: string;
|
|
397
402
|
strategist_logo: string;
|
|
403
|
+
website_url: string | null;
|
|
398
404
|
id: string;
|
|
399
405
|
}
|
|
400
406
|
export interface IOTCTrade {
|
|
@@ -546,6 +552,7 @@ export interface ITokenizedVault {
|
|
|
546
552
|
}>;
|
|
547
553
|
};
|
|
548
554
|
show_cap_filled: boolean | null;
|
|
555
|
+
apy_override: IApyOverride | null;
|
|
549
556
|
}
|
|
550
557
|
export interface IWSVaultHistoricalApy {
|
|
551
558
|
data: {
|