@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.
@@ -1,6 +1,10 @@
1
1
  import { CollectionProfileDoc } from '../../cosmos-db/documents/collection/profile';
2
- declare const CollectionInfoDto_base: import("@nestjs/common").Type<Pick<CollectionProfileDoc, "description" | "name" | "profile" | "followCount" | "holdersCount" | "isVisible" | "isVerified" | "socials" | "banner" | "owner" | "collectionSize">>;
3
- export declare class CollectionInfoDto extends CollectionInfoDto_base {
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 const CollectionProfileUpdateDto_base: import("@nestjs/common").Type<Pick<CollectionProfileDoc, "description" | "profile" | "socials">>;
3
- export declare class CollectionProfileUpdateDto extends CollectionProfileUpdateDto_base {
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 const CreatorUpdateProfileDTO_base: import("@nestjs/common").Type<Pick<CreatorProfileDto, "description" | "profile" | "socials">>;
6
- export declare class CreatorUpdateProfileDTO extends CreatorUpdateProfileDTO_base {
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 const UserUpdateDTO_base: import("@nestjs/common").Type<Pick<UserProfileDto, "description" | "profile" | "socials">>;
14
- export declare class UserUpdateDTO extends UserUpdateDTO_base {
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.83",
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 && rollup -c && node strip-types.js",
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'",