@xoxno/types 1.0.42 → 1.0.43
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CollectionProfileDoc } from '../../cosmos-db/documents/collection/profile';
|
|
2
2
|
export declare class StakingExploreDto {
|
|
3
3
|
collection: string;
|
|
4
4
|
activePools: number;
|
|
@@ -7,5 +7,5 @@ export declare class StakingExploreDto {
|
|
|
7
7
|
rewardTickers: string[];
|
|
8
8
|
}
|
|
9
9
|
export declare class StakingExploreDtoHydrated extends StakingExploreDto {
|
|
10
|
-
collectionInfo:
|
|
10
|
+
collectionInfo: Partial<CollectionProfileDoc>;
|
|
11
11
|
}
|
|
@@ -11,7 +11,6 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.StakingExploreDtoHydrated = exports.StakingExploreDto = void 0;
|
|
13
13
|
const swagger_1 = require("@nestjs/swagger");
|
|
14
|
-
const collection_info_dto_1 = require("../../requests/collection/collection-info.dto");
|
|
15
14
|
class StakingExploreDto {
|
|
16
15
|
}
|
|
17
16
|
exports.StakingExploreDto = StakingExploreDto;
|
|
@@ -39,6 +38,6 @@ class StakingExploreDtoHydrated extends StakingExploreDto {
|
|
|
39
38
|
}
|
|
40
39
|
exports.StakingExploreDtoHydrated = StakingExploreDtoHydrated;
|
|
41
40
|
__decorate([
|
|
42
|
-
(0, swagger_1.ApiProperty)({ type: () =>
|
|
43
|
-
__metadata("design:type",
|
|
41
|
+
(0, swagger_1.ApiProperty)({ type: () => swagger_1.PartialType }),
|
|
42
|
+
__metadata("design:type", Object)
|
|
44
43
|
], StakingExploreDtoHydrated.prototype, "collectionInfo", void 0);
|