@evergonlabs/tmi-protocol-api-client 0.17.2 → 0.17.3
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/dist/index.d.cts +15 -3
- package/dist/index.d.ts +15 -3
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -675,11 +675,18 @@ type FractionsActivity = {
|
|
|
675
675
|
purchaser: string;
|
|
676
676
|
priceId: string;
|
|
677
677
|
amountOfFractions: string;
|
|
678
|
+
amountPaid: string;
|
|
679
|
+
amountBurnt: string;
|
|
678
680
|
} | {
|
|
679
681
|
type: 'claim';
|
|
680
682
|
receiver: string;
|
|
681
|
-
|
|
682
|
-
|
|
683
|
+
claimId: string;
|
|
684
|
+
fractionsBurnt: string;
|
|
685
|
+
received: Array<{
|
|
686
|
+
tokenAddress: string;
|
|
687
|
+
amount: string;
|
|
688
|
+
tokenId: string;
|
|
689
|
+
}>;
|
|
683
690
|
} | {
|
|
684
691
|
type: 'refund';
|
|
685
692
|
amount: string;
|
|
@@ -688,7 +695,12 @@ type FractionsActivity = {
|
|
|
688
695
|
amount: string;
|
|
689
696
|
} | {
|
|
690
697
|
type: 'withdraw_non_wrapped';
|
|
691
|
-
|
|
698
|
+
receiver: string;
|
|
699
|
+
received: Array<{
|
|
700
|
+
tokenAddress: string;
|
|
701
|
+
amount: string;
|
|
702
|
+
tokenId: string;
|
|
703
|
+
}>;
|
|
692
704
|
};
|
|
693
705
|
};
|
|
694
706
|
type SetFeeCapLimitRequestSchema = {
|
package/dist/index.d.ts
CHANGED
|
@@ -675,11 +675,18 @@ type FractionsActivity = {
|
|
|
675
675
|
purchaser: string;
|
|
676
676
|
priceId: string;
|
|
677
677
|
amountOfFractions: string;
|
|
678
|
+
amountPaid: string;
|
|
679
|
+
amountBurnt: string;
|
|
678
680
|
} | {
|
|
679
681
|
type: 'claim';
|
|
680
682
|
receiver: string;
|
|
681
|
-
|
|
682
|
-
|
|
683
|
+
claimId: string;
|
|
684
|
+
fractionsBurnt: string;
|
|
685
|
+
received: Array<{
|
|
686
|
+
tokenAddress: string;
|
|
687
|
+
amount: string;
|
|
688
|
+
tokenId: string;
|
|
689
|
+
}>;
|
|
683
690
|
} | {
|
|
684
691
|
type: 'refund';
|
|
685
692
|
amount: string;
|
|
@@ -688,7 +695,12 @@ type FractionsActivity = {
|
|
|
688
695
|
amount: string;
|
|
689
696
|
} | {
|
|
690
697
|
type: 'withdraw_non_wrapped';
|
|
691
|
-
|
|
698
|
+
receiver: string;
|
|
699
|
+
received: Array<{
|
|
700
|
+
tokenAddress: string;
|
|
701
|
+
amount: string;
|
|
702
|
+
tokenId: string;
|
|
703
|
+
}>;
|
|
692
704
|
};
|
|
693
705
|
};
|
|
694
706
|
type SetFeeCapLimitRequestSchema = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evergonlabs/tmi-protocol-api-client",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"rimraf": "^6.0.1",
|
|
36
36
|
"tsx": "^4.19.2",
|
|
37
37
|
"typescript": "5.7.3",
|
|
38
|
-
"@evergonlabs/
|
|
39
|
-
"@evergonlabs/
|
|
38
|
+
"@evergonlabs/internal": "0.0.0",
|
|
39
|
+
"@evergonlabs/tmi-protocol-api": "0.1.5"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=18.14"
|