@xoxno/types 1.0.83 → 1.0.85
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/mintProfile.d.ts +9 -2
- package/dist/cosmos-db/documents/lending/lending-emode-category-profile.doc.d.ts +4 -2
- package/dist/cosmos-db/documents/ticketing/event-question-answer.doc.d.ts +4 -2
- package/dist/cosmos-db/documents/ticketing/event-referral-config-edit.dto.d.ts +4 -2
- package/dist/cosmos-db/documents/ticketing/event-stage-profile-edit.dto.d.ts +8 -2
- package/dist/cosmos-db/documents/ticketing/event-ticket-profile-edit.dto.d.ts +7 -2
- package/dist/cosmos-db/documents/ticketing/event-ticket-profile.doc.d.ts +7 -2
- package/dist/cosmos-db/documents/ticketing/event-voucher-create.dto.d.ts +15 -2
- package/dist/cosmos-db/documents/ticketing/event-voucher-edit.dto.d.ts +8 -2
- package/dist/entities/staking-data/staking-summary.dto.d.ts +4 -2
- package/dist/entities/transactions/transaction-send-result.d.ts +4 -2
- package/dist/index.d.ts +255 -5545
- package/dist/requests/collection/collection-info.dto.d.ts +6 -2
- package/dist/requests/collection/collections.d.ts +4 -2
- package/dist/requests/user-data/creator-profile.dto.d.ts +4 -2
- package/dist/requests/user-data/me-profile.d.ts +4 -2
- package/package.json +2 -2
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { CollectionProfileDoc } from '../../cosmos-db/documents/collection/profile';
|
|
2
|
-
declare
|
|
3
|
-
export declare
|
|
2
|
+
declare type CollectionInfoDto_base = Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "socials" | "banner" | "owner" | "collectionSize">;
|
|
3
|
+
export declare type CollectionInfoDto = CollectionInfoDto_base & {
|
|
4
|
+
volume: number;
|
|
5
|
+
};
|
|
6
|
+
declare const CollectionInfoDtoNest_base: import("@nestjs/common").Type<Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "socials" | "banner" | "owner" | "collectionSize">>;
|
|
7
|
+
export declare class CollectionInfoDtoNest extends CollectionInfoDtoNest_base {
|
|
4
8
|
volume: number;
|
|
5
9
|
}
|
|
6
10
|
export {};
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { CollectionProfileDoc } from '../../cosmos-db/documents/collection/profile';
|
|
2
|
-
declare
|
|
3
|
-
export declare
|
|
2
|
+
declare type CollectionProfileUpdateDto_base = Pick<CollectionProfileDoc, "description" | "profile" | "socials">;
|
|
3
|
+
export declare type CollectionProfileUpdateDto = CollectionProfileUpdateDto_base ;
|
|
4
|
+
declare const CollectionProfileUpdateDtoNest_base: import("@nestjs/common").Type<Pick<CollectionProfileDoc, "description" | "profile" | "socials">>;
|
|
5
|
+
export declare class CollectionProfileUpdateDtoNest extends CollectionProfileUpdateDtoNest_base {
|
|
4
6
|
}
|
|
5
7
|
export {};
|
|
@@ -2,7 +2,9 @@ import { CreatorProfileDoc } from '../../cosmos-db/documents/user/user-creator-p
|
|
|
2
2
|
export declare class CreatorProfileDto extends CreatorProfileDoc {
|
|
3
3
|
followCount: number;
|
|
4
4
|
}
|
|
5
|
-
declare
|
|
6
|
-
export declare
|
|
5
|
+
declare type CreatorUpdateProfileDTO_base = Pick<CreatorProfileDto, "description" | "profile" | "socials">;
|
|
6
|
+
export declare type CreatorUpdateProfileDTO = CreatorUpdateProfileDTO_base ;
|
|
7
|
+
declare const CreatorUpdateProfileDTONest_base: import("@nestjs/common").Type<Pick<CreatorProfileDto, "description" | "profile" | "socials">>;
|
|
8
|
+
export declare class CreatorUpdateProfileDTONest extends CreatorUpdateProfileDTONest_base {
|
|
7
9
|
}
|
|
8
10
|
export {};
|
|
@@ -10,7 +10,9 @@ declare class UserSettingsDto {
|
|
|
10
10
|
export declare class UserProfileDto extends UserProfileDoc {
|
|
11
11
|
userSettings: UserSettingsDto;
|
|
12
12
|
}
|
|
13
|
-
declare
|
|
14
|
-
export declare
|
|
13
|
+
declare type UserUpdateDTO_base = Pick<UserProfileDto, "description" | "profile" | "socials">;
|
|
14
|
+
export declare type UserUpdateDTO = UserUpdateDTO_base ;
|
|
15
|
+
declare const UserUpdateDTONest_base: import("@nestjs/common").Type<Pick<UserProfileDto, "description" | "profile" | "socials">>;
|
|
16
|
+
export declare class UserUpdateDTONest extends UserUpdateDTONest_base {
|
|
15
17
|
}
|
|
16
18
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xoxno/types",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.85",
|
|
4
4
|
"description": "Shared types and utilities for XOXNO API.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
|
-
"build": "node generate-barrel.mjs && eslint 'src/index.ts' --fix && tsc &&
|
|
11
|
+
"build": "node generate-barrel.mjs && eslint 'src/index.ts' --fix && tsc && node strip-types.js",
|
|
12
12
|
"build:watch": "tsc --watch",
|
|
13
13
|
"prepublishOnly": "npm run build",
|
|
14
14
|
"lint": "eslint 'src/**/*.ts'",
|