@xoxno/types 1.0.42 → 1.0.44
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.
|
@@ -54,7 +54,7 @@ __decorate([
|
|
|
54
54
|
__metadata("design:type", Number)
|
|
55
55
|
], CollectionDto.prototype, "floorPrice", void 0);
|
|
56
56
|
__decorate([
|
|
57
|
-
(0, swagger_1.ApiProperty)({
|
|
57
|
+
(0, swagger_1.ApiProperty)({ enum: enums_1.ActivityChain, required: false }),
|
|
58
58
|
__metadata("design:type", String)
|
|
59
59
|
], CollectionDto.prototype, "chain", void 0);
|
|
60
60
|
class UserDto {
|
|
@@ -89,7 +89,7 @@ __decorate([
|
|
|
89
89
|
__metadata("design:type", String)
|
|
90
90
|
], UserDto.prototype, "addressTrimmed", void 0);
|
|
91
91
|
__decorate([
|
|
92
|
-
(0, swagger_1.ApiProperty)({
|
|
92
|
+
(0, swagger_1.ApiProperty)({ enum: enums_1.ActivityChain, required: false }),
|
|
93
93
|
__metadata("design:type", String)
|
|
94
94
|
], UserDto.prototype, "chain", void 0);
|
|
95
95
|
class CreatorDto {
|
|
@@ -137,7 +137,7 @@ __decorate([
|
|
|
137
137
|
__metadata("design:type", String)
|
|
138
138
|
], CreatorDto.prototype, "profile", void 0);
|
|
139
139
|
__decorate([
|
|
140
|
-
(0, swagger_1.ApiProperty)({
|
|
140
|
+
(0, swagger_1.ApiProperty)({ enum: enums_1.ActivityChain, required: false }),
|
|
141
141
|
__metadata("design:type", String)
|
|
142
142
|
], CreatorDto.prototype, "chain", void 0);
|
|
143
143
|
class NftDto {
|
|
@@ -177,7 +177,7 @@ __decorate([
|
|
|
177
177
|
__metadata("design:type", listings_1.MetadataDto)
|
|
178
178
|
], NftDto.prototype, "metadata", void 0);
|
|
179
179
|
__decorate([
|
|
180
|
-
(0, swagger_1.ApiProperty)({
|
|
180
|
+
(0, swagger_1.ApiProperty)({ enum: enums_1.ActivityChain, required: false }),
|
|
181
181
|
__metadata("design:type", String)
|
|
182
182
|
], NftDto.prototype, "chain", void 0);
|
|
183
183
|
class GlobalSearchResourcesDto {
|
|
@@ -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);
|