@xoxno/types 1.0.133 → 1.0.135

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)(),
@@ -13,6 +13,6 @@ export declare class UserFavorite {
13
13
  constructor(props?: Partial<UserFavorite>);
14
14
  }
15
15
  export declare class UserFavoriteResponseDto {
16
- isFollowed: boolean;
16
+ isFavorite: boolean;
17
17
  addressFavorite: string;
18
18
  }
@@ -45,7 +45,7 @@ __decorate([
45
45
  type: Boolean,
46
46
  }),
47
47
  __metadata("design:type", Boolean)
48
- ], UserFavoriteResponseDto.prototype, "isFollowed", void 0);
48
+ ], UserFavoriteResponseDto.prototype, "isFavorite", void 0);
49
49
  __decorate([
50
50
  (0, swagger_1.ApiProperty)({
51
51
  description: 'The user that is followed or unfollowed',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.133",
3
+ "version": "1.0.135",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "exports": {
6
6
  ".": {