@xoxno/types 1.0.95 → 1.0.97
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/collection/stats.d.ts +2 -2
- package/dist/cosmos-db/documents/collection/stats.js +3 -3
- package/dist/cosmos-db/documents/short/short-collection-info.doc.d.ts +2 -2
- package/dist/cosmos-db/documents/short/short-collection-info.doc.js +1 -1
- package/dist/cosmos-db/documents/short/short-collection.doc.d.ts +2 -2
- package/dist/cosmos-db/documents/short/short-collection.doc.js +0 -1
- package/dist/cosmos-db/documents/short/short-nft-collection-info.doc.d.ts +2 -2
- package/dist/cosmos-db/documents/short/short-nft-collection-info.doc.js +4 -4
- package/package.json +1 -1
|
@@ -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);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { CollectionProfileDoc } from '../collection/profile';
|
|
2
|
-
declare type ShortCollectionInfoDoc_base = Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "socials" | "banner" | "chain" | "owner" | "
|
|
2
|
+
declare type ShortCollectionInfoDoc_base = Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "socials" | "banner" | "chain" | "owner" | "collectionSize">;
|
|
3
3
|
export declare type ShortCollectionInfoDoc = ShortCollectionInfoDoc_base & {
|
|
4
4
|
volume: number;
|
|
5
5
|
};
|
|
6
|
-
declare const ShortCollectionInfoDocNest_base: import("@nestjs/common").Type<Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "socials" | "banner" | "chain" | "owner" | "
|
|
6
|
+
declare const ShortCollectionInfoDocNest_base: import("@nestjs/common").Type<Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "socials" | "banner" | "chain" | "owner" | "collectionSize">>;
|
|
7
7
|
export declare class ShortCollectionInfoDocNest extends ShortCollectionInfoDocNest_base {
|
|
8
8
|
volume: number;
|
|
9
9
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CollectionProfileDoc } from '../collection/profile';
|
|
2
|
-
declare type ShortCollectionDoc_base = Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "chain" | "
|
|
2
|
+
declare type ShortCollectionDoc_base = Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "chain" | "collectionSize">;
|
|
3
3
|
export declare type ShortCollectionDoc = ShortCollectionDoc_base ;
|
|
4
|
-
declare const ShortCollectionDocNest_base: import("@nestjs/common").Type<Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "chain" | "
|
|
4
|
+
declare const ShortCollectionDocNest_base: import("@nestjs/common").Type<Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "chain" | "collectionSize">>;
|
|
5
5
|
export declare class ShortCollectionDocNest extends ShortCollectionDocNest_base {
|
|
6
6
|
}
|
|
7
7
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CollectionProfileDoc } from '../collection/profile';
|
|
2
|
-
declare type ShortNftCollectionInfoDoc_base = Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "
|
|
2
|
+
declare type ShortNftCollectionInfoDoc_base = Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "chain" | "roles" | "customConfig" | "collectionSize">;
|
|
3
3
|
export declare type ShortNftCollectionInfoDoc = ShortNftCollectionInfoDoc_base ;
|
|
4
|
-
declare const ShortNftCollectionInfoDocNest_base: import("@nestjs/common").Type<Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "
|
|
4
|
+
declare const ShortNftCollectionInfoDocNest_base: import("@nestjs/common").Type<Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "chain" | "roles" | "customConfig" | "collectionSize">>;
|
|
5
5
|
export declare class ShortNftCollectionInfoDocNest extends ShortNftCollectionInfoDocNest_base {
|
|
6
6
|
}
|
|
7
7
|
export {};
|
|
@@ -8,14 +8,14 @@ class ShortNftCollectionInfoDoc extends (0, swagger_1.PickType)(profile_1.Collec
|
|
|
8
8
|
'isVerified',
|
|
9
9
|
'isVisible',
|
|
10
10
|
'profile',
|
|
11
|
-
'banner',
|
|
12
|
-
'collectionSize',
|
|
13
11
|
'description',
|
|
14
|
-
'
|
|
12
|
+
'chain',
|
|
13
|
+
'collectionSize',
|
|
15
14
|
'followCount',
|
|
15
|
+
'holdersCount',
|
|
16
|
+
//
|
|
16
17
|
'customConfig',
|
|
17
18
|
'roles',
|
|
18
|
-
'chain',
|
|
19
19
|
]) {
|
|
20
20
|
}
|
|
21
21
|
exports.ShortNftCollectionInfoDoc = ShortNftCollectionInfoDoc;
|