@sonarwatch/portfolio-core 0.12.59 → 0.12.61

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
@@ -2,6 +2,14 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.12.61](https://github.com/sonarwatch/portfolio/compare/core-0.12.60...core-0.12.61) (2024-07-14)
6
+
7
+
8
+
9
+ ## [0.12.60](https://github.com/sonarwatch/portfolio/compare/core-0.12.59...core-0.12.60) (2024-07-14)
10
+
11
+
12
+
5
13
  ## [0.12.59](https://github.com/sonarwatch/portfolio/compare/core-0.12.58...core-0.12.59) (2024-07-14)
6
14
 
7
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sonarwatch/portfolio-core",
3
- "version": "0.12.59",
3
+ "version": "0.12.61",
4
4
  "type": "commonjs",
5
5
  "types": "./src/index.d.ts",
6
6
  "dependencies": {
package/src/Airdrop.d.ts CHANGED
@@ -27,10 +27,6 @@ export type AirdropRaw = {
27
27
  * The airdrop id. (e.g. 'jupiter_season1')
28
28
  */
29
29
  id: string;
30
- /**
31
- * The airdrop network id. (e.g. 'solana')
32
- */
33
- networkId: NetworkIdType;
34
30
  /**
35
31
  * A name for the airdrop. Should not container the emitter name. (e.g. 'Season #1')
36
32
  */
@@ -93,10 +89,18 @@ export type AirdropItemRaw = {
93
89
  imageUri?: string;
94
90
  };
95
91
  export type Airdrop = Omit<AirdropRaw, 'items'> & {
92
+ /**
93
+ * The airdrop network id. (e.g. 'solana')
94
+ */
95
+ networkId: NetworkIdType;
96
96
  /**
97
97
  * The airdrop status.
98
98
  */
99
99
  status: AirdropStatus;
100
+ /**
101
+ * The airdrop owner.
102
+ */
103
+ owner: string;
100
104
  /**
101
105
  * The airdrop status.
102
106
  */
@@ -107,6 +111,14 @@ export type Airdrop = Omit<AirdropRaw, 'items'> & {
107
111
  items: AirdropItem[];
108
112
  };
109
113
  export type AirdropItem = AirdropItemRaw & {
114
+ /**
115
+ * The airdrop item owner.
116
+ */
117
+ owner: string;
118
+ /**
119
+ * The airdrop id associated to the item.
120
+ */
121
+ airdropId: string;
110
122
  /**
111
123
  * The airdropped item price.
112
124
  */