@xoxno/types 1.0.411 → 1.0.413
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/cosmos-db/documents/lending/lending-account-profile.d.ts +1 -1
- package/dist/cosmos-db/documents/lending/lending-account-profile.js +0 -2
- package/dist/cosmos-db/documents/lending/lending-market-profile.doc.d.ts +0 -2
- package/dist/cosmos-db/documents/lending/lending-market-profile.doc.js +0 -16
- package/dist/requests/lending/stellar-lending-admin-args.dto.d.ts +0 -2
- package/dist/requests/lending/stellar-lending-admin-args.dto.js +0 -10
- package/dist/requests/lending/stellar-lending-events.dto.d.ts +0 -1
- package/dist/requests/lending/stellar-lending-events.dto.js +0 -7
- package/package.json +1 -1
|
@@ -31,7 +31,7 @@ export declare class LendingAccountProfileDoc {
|
|
|
31
31
|
_ts: number;
|
|
32
32
|
constructor(props?: Partial<LendingAccountProfileDoc>);
|
|
33
33
|
}
|
|
34
|
-
declare const selectFields: readonly ["token", "name", "supplyApy", "borrowApy", "decimals", "reserves", "supplyCap", "borrowCap", "supplyAmount", "supplyAmountScaled", "borrowAmountScaled", "ltv", "liquidationThreshold", "liquidationBonus", "liquidationFee", "siloed", "rewardsReserve", "maxDebtUsd", "debtCeiling", "isolated", "canBeCollateral", "timestamp", "canBeBorrowed", "canBorrowInIsolation", "extraApy", "flashLoanFee", "utilizationRate", "borrowAmount", "optimalUsageRate", "slopeRate1", "slopeRate2", "slopeRate3", "midUsageRate", "baseRate", "maxBorrowRate", "reserveFactor", "maxUtilizationRay", "
|
|
34
|
+
declare const selectFields: readonly ["token", "name", "supplyApy", "borrowApy", "decimals", "reserves", "supplyCap", "borrowCap", "supplyAmount", "supplyAmountScaled", "borrowAmountScaled", "ltv", "liquidationThreshold", "liquidationBonus", "liquidationFee", "siloed", "rewardsReserve", "maxDebtUsd", "debtCeiling", "isolated", "canBeCollateral", "timestamp", "canBeBorrowed", "canBorrowInIsolation", "extraApy", "flashLoanFee", "utilizationRate", "borrowAmount", "optimalUsageRate", "slopeRate1", "slopeRate2", "slopeRate3", "midUsageRate", "baseRate", "maxBorrowRate", "reserveFactor", "maxUtilizationRay", "address", "flashLoan", "oracleProvider", "indexes", "chain"];
|
|
35
35
|
export declare class LendingAccountProfile extends LendingAccountProfileDoc {
|
|
36
36
|
supplyAmount: string;
|
|
37
37
|
borrowAmount: string;
|
|
@@ -61,8 +61,6 @@ export declare class LendingMarketProfileDoc {
|
|
|
61
61
|
_ts: number;
|
|
62
62
|
marketStatus?: MarketStatus;
|
|
63
63
|
maxUtilizationRay?: string;
|
|
64
|
-
minCollatFloorUsdWad?: string;
|
|
65
|
-
minDebtFloorUsdWad?: string;
|
|
66
64
|
constructor(props?: Partial<LendingMarketProfileDoc>);
|
|
67
65
|
}
|
|
68
66
|
export declare class LendingMarketParticipants {
|
|
@@ -351,22 +351,6 @@ __decorate([
|
|
|
351
351
|
}),
|
|
352
352
|
__metadata("design:type", String)
|
|
353
353
|
], LendingMarketProfileDoc.prototype, "maxUtilizationRay", void 0);
|
|
354
|
-
__decorate([
|
|
355
|
-
(0, swagger_1.ApiProperty)({
|
|
356
|
-
type: String,
|
|
357
|
-
required: false,
|
|
358
|
-
description: 'Minimum collateral floor, USD WAD (1e18) decimal string (Stellar). 0 = disabled.',
|
|
359
|
-
}),
|
|
360
|
-
__metadata("design:type", String)
|
|
361
|
-
], LendingMarketProfileDoc.prototype, "minCollatFloorUsdWad", void 0);
|
|
362
|
-
__decorate([
|
|
363
|
-
(0, swagger_1.ApiProperty)({
|
|
364
|
-
type: String,
|
|
365
|
-
required: false,
|
|
366
|
-
description: 'Minimum debt floor, USD WAD (1e18) decimal string (Stellar). 0 = disabled.',
|
|
367
|
-
}),
|
|
368
|
-
__metadata("design:type", String)
|
|
369
|
-
], LendingMarketProfileDoc.prototype, "minDebtFloorUsdWad", void 0);
|
|
370
354
|
exports.LendingMarketProfileDoc = LendingMarketProfileDoc = __decorate([
|
|
371
355
|
(0, swagger_1.ApiExtraModels)(lending_oracle_1.LendingOracleUpdateStruct, lending_oracle_1.StellarLendingOracleUpdateStruct),
|
|
372
356
|
__metadata("design:paramtypes", [Object])
|
|
@@ -148,16 +148,6 @@ __decorate([
|
|
|
148
148
|
}),
|
|
149
149
|
__metadata("design:type", String)
|
|
150
150
|
], AssetConfigRawDto.prototype, "supplyCap", void 0);
|
|
151
|
-
__decorate([
|
|
152
|
-
(0, swagger_1.ApiProperty)({
|
|
153
|
-
description: 'Minimum collateral floor, USD WAD decimal string',
|
|
154
|
-
}),
|
|
155
|
-
__metadata("design:type", String)
|
|
156
|
-
], AssetConfigRawDto.prototype, "minCollatFloorUsdWad", void 0);
|
|
157
|
-
__decorate([
|
|
158
|
-
(0, swagger_1.ApiProperty)({ description: 'Minimum debt floor, USD WAD decimal string' }),
|
|
159
|
-
__metadata("design:type", String)
|
|
160
|
-
], AssetConfigRawDto.prototype, "minDebtFloorUsdWad", void 0);
|
|
161
151
|
__decorate([
|
|
162
152
|
(0, swagger_1.ApiProperty)({
|
|
163
153
|
type: 'integer',
|
|
@@ -153,13 +153,6 @@ __decorate([
|
|
|
153
153
|
}),
|
|
154
154
|
__metadata("design:type", String)
|
|
155
155
|
], StellarEventPositionDelta.prototype, "amount", void 0);
|
|
156
|
-
__decorate([
|
|
157
|
-
(0, swagger_1.ApiProperty)({
|
|
158
|
-
required: false,
|
|
159
|
-
description: 'USD WAD price used for the mutation, decimal string when present',
|
|
160
|
-
}),
|
|
161
|
-
__metadata("design:type", String)
|
|
162
|
-
], StellarEventPositionDelta.prototype, "assetPriceWad", void 0);
|
|
163
156
|
__decorate([
|
|
164
157
|
(0, swagger_1.ApiProperty)({
|
|
165
158
|
type: 'integer',
|