@xoxno/types 1.0.327 → 1.0.328
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.
|
@@ -66,7 +66,6 @@ export declare class Web3DataAssetPositionCumFunding {
|
|
|
66
66
|
sinceOpen: string;
|
|
67
67
|
}
|
|
68
68
|
export declare class Web3DataAssetPositionLeverage {
|
|
69
|
-
rawUsd: string;
|
|
70
69
|
type: PerpPositionLeverageType;
|
|
71
70
|
value: number;
|
|
72
71
|
}
|
|
@@ -81,6 +80,7 @@ export declare class Web3DataAssetPositionPosition {
|
|
|
81
80
|
szi: string;
|
|
82
81
|
unrealizedPnl: string;
|
|
83
82
|
cumFunding: Web3DataAssetPositionCumFunding;
|
|
83
|
+
leverage: Web3DataAssetPositionLeverage;
|
|
84
84
|
}
|
|
85
85
|
export declare class Web3DataAssetPosition {
|
|
86
86
|
position: Web3DataAssetPositionPosition;
|
|
@@ -203,10 +203,6 @@ __decorate([
|
|
|
203
203
|
class Web3DataAssetPositionLeverage {
|
|
204
204
|
}
|
|
205
205
|
exports.Web3DataAssetPositionLeverage = Web3DataAssetPositionLeverage;
|
|
206
|
-
__decorate([
|
|
207
|
-
(0, swagger_1.ApiProperty)(),
|
|
208
|
-
__metadata("design:type", String)
|
|
209
|
-
], Web3DataAssetPositionLeverage.prototype, "rawUsd", void 0);
|
|
210
206
|
__decorate([
|
|
211
207
|
(0, swagger_1.ApiProperty)(),
|
|
212
208
|
__metadata("design:type", String)
|
|
@@ -258,6 +254,10 @@ __decorate([
|
|
|
258
254
|
(0, swagger_1.ApiProperty)(),
|
|
259
255
|
__metadata("design:type", Web3DataAssetPositionCumFunding)
|
|
260
256
|
], Web3DataAssetPositionPosition.prototype, "cumFunding", void 0);
|
|
257
|
+
__decorate([
|
|
258
|
+
(0, swagger_1.ApiProperty)(),
|
|
259
|
+
__metadata("design:type", Web3DataAssetPositionLeverage)
|
|
260
|
+
], Web3DataAssetPositionPosition.prototype, "leverage", void 0);
|
|
261
261
|
class Web3DataAssetPosition {
|
|
262
262
|
}
|
|
263
263
|
exports.Web3DataAssetPosition = Web3DataAssetPosition;
|