@xoxno/types 1.0.96 → 1.0.98
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/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.js +5 -4
- package/package.json +1 -1
|
@@ -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 {};
|
|
@@ -8,14 +8,15 @@ 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
|
-
'
|
|
19
|
+
'banner',
|
|
19
20
|
]) {
|
|
20
21
|
}
|
|
21
22
|
exports.ShortNftCollectionInfoDoc = ShortNftCollectionInfoDoc;
|