@xoxno/types 1.0.102 → 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.
- package/dist/cosmos-db/documents/ticketing/event-profile-create.dto.d.ts +1 -1
- package/dist/cosmos-db/documents/ticketing/event-profile-create.dto.js +1 -1
- package/dist/cosmos-db/documents/ticketing/event-profile.doc.d.ts +1 -1
- package/dist/cosmos-db/documents/ticketing/event-profile.doc.js +0 -1
- package/dist/cosmos-db/documents/ticketing/event-ticket-profile.doc.d.ts +3 -3
- package/dist/cosmos-db/documents/ticketing/event-ticket-profile.doc.js +0 -3
- package/package.json +1 -1
|
@@ -132,7 +132,7 @@ __decorate([
|
|
|
132
132
|
(0, class_validator_1.IsBoolean)(),
|
|
133
133
|
(0, class_validator_1.IsOptional)(),
|
|
134
134
|
__metadata("design:type", Boolean)
|
|
135
|
-
], RegistrationDetailsDto.prototype, "
|
|
135
|
+
], RegistrationDetailsDto.prototype, "acceptCrypto", void 0);
|
|
136
136
|
__decorate([
|
|
137
137
|
(0, swagger_1.ApiProperty)({
|
|
138
138
|
type: 'integer',
|
|
@@ -50,7 +50,7 @@ export declare class EventStartPrice {
|
|
|
50
50
|
currency: string;
|
|
51
51
|
}
|
|
52
52
|
export declare class EventProfile extends EventProfileDoc {
|
|
53
|
-
creatorProfile
|
|
53
|
+
creatorProfile: CreatorProfileDoc;
|
|
54
54
|
guestSummary?: EventGuestSummary;
|
|
55
55
|
startsFrom?: EventStartPrice;
|
|
56
56
|
guestProfile?: EventGuestDoc;
|
|
@@ -304,7 +304,6 @@ __decorate([
|
|
|
304
304
|
(0, swagger_1.ApiProperty)({
|
|
305
305
|
description: 'Creator profile data including name, profile, and herotag.',
|
|
306
306
|
type: () => user_creator_profile_doc_1.CreatorProfileDoc,
|
|
307
|
-
required: false,
|
|
308
307
|
}),
|
|
309
308
|
__metadata("design:type", user_creator_profile_doc_1.CreatorProfileDoc)
|
|
310
309
|
], EventProfile.prototype, "creatorProfile", void 0);
|
|
@@ -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);
|