@sonarwatch/portfolio-core 0.12.59 → 0.12.60
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 +4 -0
- package/package.json +1 -1
- package/src/Airdrop.d.ts +12 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.12.60](https://github.com/sonarwatch/portfolio/compare/core-0.12.59...core-0.12.60) (2024-07-14)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
## [0.12.59](https://github.com/sonarwatch/portfolio/compare/core-0.12.58...core-0.12.59) (2024-07-14)
|
|
6
10
|
|
|
7
11
|
|
package/package.json
CHANGED
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,10 @@ 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;
|
|
110
118
|
/**
|
|
111
119
|
* The airdropped item price.
|
|
112
120
|
*/
|