@xoxno/types 1.0.132 → 1.0.134

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,8 +1,9 @@
1
1
  export declare class StagePrice {
2
2
  stageId: string;
3
3
  stageName: string;
4
- ticketTypeId: string;
5
- ticketTypeName: string;
4
+ ticketId: string;
5
+ ticketType: string;
6
+ currency: string;
6
7
  normalPrice: number;
7
8
  discountedPrice: number;
8
9
  quantity: number;
@@ -30,12 +30,17 @@ __decorate([
30
30
  (0, swagger_1.ApiProperty)({ type: String }),
31
31
  (0, class_validator_1.IsString)(),
32
32
  __metadata("design:type", String)
33
- ], StagePrice.prototype, "ticketTypeId", void 0);
33
+ ], StagePrice.prototype, "ticketId", void 0);
34
34
  __decorate([
35
35
  (0, swagger_1.ApiProperty)({ type: String }),
36
36
  (0, class_validator_1.IsString)(),
37
37
  __metadata("design:type", String)
38
- ], StagePrice.prototype, "ticketTypeName", void 0);
38
+ ], StagePrice.prototype, "ticketType", void 0);
39
+ __decorate([
40
+ (0, swagger_1.ApiProperty)({ type: String }),
41
+ (0, class_validator_1.IsString)(),
42
+ __metadata("design:type", String)
43
+ ], StagePrice.prototype, "currency", void 0);
39
44
  __decorate([
40
45
  (0, swagger_1.ApiProperty)({ type: Number }),
41
46
  (0, class_validator_1.IsNumber)(),
@@ -5,6 +5,10 @@ export declare class WalletDetailDto {
5
5
  username: string;
6
6
  type: string;
7
7
  }
8
+ export declare class CollectionHoldersExportDto {
9
+ count: number;
10
+ address: string;
11
+ }
8
12
  export declare class CollectionHoldersDto {
9
13
  totalSupply: number;
10
14
  walletDetails: WalletDetailDto[];
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.CollectionHoldersDto = exports.WalletDetailDto = void 0;
12
+ exports.CollectionHoldersDto = exports.CollectionHoldersExportDto = exports.WalletDetailDto = void 0;
13
13
  // file: dtos/holder.dto.ts
14
14
  const swagger_1 = require("@nestjs/swagger");
15
15
  class WalletDetailDto {
@@ -41,6 +41,9 @@ __decorate([
41
41
  (0, swagger_1.ApiProperty)({ description: 'Type of the holder', example: 'staking' }),
42
42
  __metadata("design:type", String)
43
43
  ], WalletDetailDto.prototype, "type", void 0);
44
+ class CollectionHoldersExportDto {
45
+ }
46
+ exports.CollectionHoldersExportDto = CollectionHoldersExportDto;
44
47
  class CollectionHoldersDto {
45
48
  }
46
49
  exports.CollectionHoldersDto = CollectionHoldersDto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.132",
3
+ "version": "1.0.134",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "exports": {
6
6
  ".": {