@xoxno/types 1.0.213 → 1.0.214
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.
|
@@ -3,7 +3,7 @@ import { EventGuestStatus } from '../../../enums/event-guest-status.enum';
|
|
|
3
3
|
import { TicketingDataType } from '../../../enums/ticketing-data-type.enum';
|
|
4
4
|
import { EventTicketQrType } from '../../../enums/ticketing-visibility.enum';
|
|
5
5
|
import { CreatorProfileDoc } from '../user/user-creator-profile.doc';
|
|
6
|
-
import {
|
|
6
|
+
import { EventGuestProfile } from './event-guest.doc';
|
|
7
7
|
import { EventLocationDto, EventSeoDto, RegistrationDetailsDto } from './event-profile-create.dto';
|
|
8
8
|
import { EventUserRoleDoc } from './event-user-role.doc';
|
|
9
9
|
export declare class PremiumType {
|
|
@@ -53,7 +53,7 @@ export declare class EventProfile extends EventProfileDoc {
|
|
|
53
53
|
creatorProfile: CreatorProfileDoc;
|
|
54
54
|
guestSummary?: EventGuestSummary;
|
|
55
55
|
startsFrom?: EventStartPrice;
|
|
56
|
-
guestProfile?:
|
|
56
|
+
guestProfile?: EventGuestProfile;
|
|
57
57
|
}
|
|
58
58
|
declare const EventProfileQuery_base: {
|
|
59
59
|
new (resources: EventProfile[], count: number | null, hasMoreResults: boolean): {
|
|
@@ -374,9 +374,9 @@ __decorate([
|
|
|
374
374
|
(0, swagger_1.ApiProperty)({
|
|
375
375
|
description: 'The guest profile of the user.',
|
|
376
376
|
required: false,
|
|
377
|
-
type: () => event_guest_doc_1.
|
|
377
|
+
type: () => event_guest_doc_1.EventGuestProfile,
|
|
378
378
|
}),
|
|
379
|
-
__metadata("design:type", event_guest_doc_1.
|
|
379
|
+
__metadata("design:type", event_guest_doc_1.EventGuestProfile)
|
|
380
380
|
], EventProfile.prototype, "guestProfile", void 0);
|
|
381
381
|
class EventProfileQuery extends (0, cosmos_db_paginated_response_dto_1.createCosmosPaginatedResponse)(EventProfile) {
|
|
382
382
|
}
|