@xoxno/types 1.0.103 → 1.0.104
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.
|
@@ -2,9 +2,9 @@ import { TicketingDataType } from '../../../enums/ticketing-data-type.enum';
|
|
|
2
2
|
export declare class EventTicketProfileDoc {
|
|
3
3
|
dataType: TicketingDataType;
|
|
4
4
|
eventId: string;
|
|
5
|
-
name
|
|
6
|
-
description
|
|
7
|
-
profile
|
|
5
|
+
name: string;
|
|
6
|
+
description: string;
|
|
7
|
+
profile: string;
|
|
8
8
|
royalties: number;
|
|
9
9
|
badgeColor?: string;
|
|
10
10
|
characteristics?: Record<string, string | number>;
|
|
@@ -45,21 +45,18 @@ __decorate([
|
|
|
45
45
|
__decorate([
|
|
46
46
|
(0, swagger_1.ApiProperty)({
|
|
47
47
|
description: 'Name of the ticket type (e.g., General, VIP).',
|
|
48
|
-
required: false,
|
|
49
48
|
}),
|
|
50
49
|
__metadata("design:type", String)
|
|
51
50
|
], EventTicketProfileDoc.prototype, "name", void 0);
|
|
52
51
|
__decorate([
|
|
53
52
|
(0, swagger_1.ApiProperty)({
|
|
54
53
|
description: 'Description of the ticket type.',
|
|
55
|
-
required: false,
|
|
56
54
|
}),
|
|
57
55
|
__metadata("design:type", String)
|
|
58
56
|
], EventTicketProfileDoc.prototype, "description", void 0);
|
|
59
57
|
__decorate([
|
|
60
58
|
(0, swagger_1.ApiProperty)({
|
|
61
59
|
description: 'URL of the image that will be used as the NFT representing this ticket type.',
|
|
62
|
-
required: false,
|
|
63
60
|
}),
|
|
64
61
|
__metadata("design:type", String)
|
|
65
62
|
], EventTicketProfileDoc.prototype, "profile", void 0);
|