@xoxno/types 1.0.95 → 1.0.96
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,5 +1,5 @@
|
|
|
1
1
|
import { ActivityChain } from '../../../enums/common.enum';
|
|
2
|
-
import {
|
|
2
|
+
import { ShortCollectionInfoDoc } from '../short/short-collection-info.doc';
|
|
3
3
|
declare class TradingDataSummary {
|
|
4
4
|
volume: number;
|
|
5
5
|
volumeMargin: number;
|
|
@@ -41,7 +41,7 @@ export declare class CollectionStatsDoc {
|
|
|
41
41
|
constructor(props?: Partial<CollectionStatsDoc>);
|
|
42
42
|
}
|
|
43
43
|
export declare class CollectionStatsDocHydrated extends CollectionStatsDoc {
|
|
44
|
-
collectionInfo:
|
|
44
|
+
collectionInfo: ShortCollectionInfoDoc;
|
|
45
45
|
constructor(props?: Partial<CollectionStatsDocHydrated>);
|
|
46
46
|
}
|
|
47
47
|
export {};
|
|
@@ -13,7 +13,7 @@ exports.CollectionStatsDocHydrated = exports.CollectionStatsDoc = exports.Tradin
|
|
|
13
13
|
const swagger_1 = require("@nestjs/swagger");
|
|
14
14
|
const collection_enum_1 = require("../../../enums/collection.enum");
|
|
15
15
|
const common_enum_1 = require("../../../enums/common.enum");
|
|
16
|
-
const
|
|
16
|
+
const short_collection_info_doc_1 = require("../short/short-collection-info.doc");
|
|
17
17
|
class TradingDataSummary {
|
|
18
18
|
constructor() {
|
|
19
19
|
this.volume = 0;
|
|
@@ -286,7 +286,7 @@ __decorate([
|
|
|
286
286
|
(0, swagger_1.ApiProperty)({
|
|
287
287
|
description: 'Collection profile information',
|
|
288
288
|
required: false,
|
|
289
|
-
type:
|
|
289
|
+
type: short_collection_info_doc_1.ShortCollectionInfoDoc,
|
|
290
290
|
}),
|
|
291
|
-
__metadata("design:type",
|
|
291
|
+
__metadata("design:type", short_collection_info_doc_1.ShortCollectionInfoDoc)
|
|
292
292
|
], CollectionStatsDocHydrated.prototype, "collectionInfo", void 0);
|