@dripfi/drip-sdk 1.3.11 → 1.3.12

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/CHANGELOG.md CHANGED
@@ -34,3 +34,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
34
34
 
35
35
  - Following types: `UserBalance`, `VaultClaimData` and `VaultDepositToken`
36
36
  - Following methods: `getUserBalance` and `getVaultsClaimableData`
37
+
38
+ ## [1.3.12] - 2025-01-28
39
+
40
+ ### Added
41
+
42
+ - The properites `bannerImage` and `rewardImage` were added to the `DeployedProject` type
package/README.md CHANGED
@@ -267,6 +267,8 @@ type DeployedProject = {
267
267
  projectType: string;
268
268
  isFeatured: boolean;
269
269
  yelayVersion: YelayVersion;
270
+ bannerImage?: string;
271
+ rewardImage?: string;
270
272
  };
271
273
 
272
274
  type DeployedVault = {
@@ -36,6 +36,8 @@ type DeployedProject = {
36
36
  projectType: string;
37
37
  isFeatured: boolean;
38
38
  yelayVersion: YelayVersion;
39
+ bannerImage?: string;
40
+ rewardImage?: string;
39
41
  };
40
42
  export default DeployedProject;
41
43
  export type ProjectBacker = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dripfi/drip-sdk",
3
- "version": "1.3.11",
3
+ "version": "1.3.12",
4
4
  "description": "Drip SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",