@agendize/js-agendize-api 1.35.0 → 1.37.0
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/agendizeApi.d.ts +575 -0
- package/dist/browserStorage/browserStorage.d.ts +46 -0
- package/dist/config.d.ts +19 -0
- package/dist/data/Account.d.ts +224 -0
- package/dist/data/Activity.d.ts +529 -0
- package/dist/data/Address.d.ts +46 -0
- package/dist/data/Attendee.d.ts +59 -0
- package/dist/data/Batch.d.ts +41 -0
- package/dist/data/CRMSettings.d.ts +35 -0
- package/dist/data/Calendar.d.ts +78 -0
- package/dist/data/Changelog.d.ts +20 -0
- package/dist/data/Common.d.ts +33 -0
- package/dist/data/CommonEnum.d.ts +44 -0
- package/dist/data/Company.d.ts +170 -0
- package/dist/data/CompanyPerformance.d.ts +26 -0
- package/dist/data/CompanySettings.d.ts +29 -0
- package/dist/data/Connector.d.ts +26 -0
- package/dist/data/Consent.d.ts +4 -0
- package/dist/data/Contact.d.ts +208 -0
- package/dist/data/CustomStatus.d.ts +20 -0
- package/dist/data/Employee.d.ts +27 -0
- package/dist/data/Error.d.ts +65 -0
- package/dist/data/Event.d.ts +222 -0
- package/dist/data/EventSearch.d.ts +232 -0
- package/dist/data/EventUpdate.d.ts +9 -0
- package/dist/data/Form.d.ts +230 -0
- package/dist/data/FormResult.d.ts +61 -0
- package/dist/data/FormResultStatus.d.ts +23 -0
- package/dist/data/FreeSlot.d.ts +72 -0
- package/dist/data/Help.d.ts +18 -0
- package/dist/data/Image.d.ts +24 -0
- package/dist/data/Integration.d.ts +36 -0
- package/dist/data/Link.d.ts +10 -0
- package/dist/data/Log.d.ts +79 -0
- package/dist/data/LoginProvider.d.ts +17 -0
- package/dist/data/LoginRealm.d.ts +20 -0
- package/dist/data/Note.d.ts +27 -0
- package/dist/data/Notification.d.ts +51 -0
- package/dist/data/NotificationStatus.d.ts +5 -0
- package/dist/data/PrivacyPolicy.d.ts +43 -0
- package/dist/data/Queue.d.ts +54 -0
- package/dist/data/QueueRegistration.d.ts +101 -0
- package/dist/data/Reporting.d.ts +34 -0
- package/dist/data/ReportingExportBody.d.ts +176 -0
- package/dist/data/ReportingExportResponse.d.ts +20 -0
- package/dist/data/Rights.d.ts +140 -0
- package/dist/data/Service.d.ts +234 -0
- package/dist/data/ServiceGroup.d.ts +57 -0
- package/dist/data/ServiceResource.d.ts +26 -0
- package/dist/data/Settings.d.ts +29 -0
- package/dist/data/ShortPollingNotification.d.ts +35 -0
- package/dist/data/Shortener.d.ts +8 -0
- package/dist/data/Staff.d.ts +115 -0
- package/dist/data/StaffForms.d.ts +42 -0
- package/dist/data/StaffGroup.d.ts +58 -0
- package/dist/data/User.d.ts +84 -0
- package/dist/data/WidgetUrlCipher.d.ts +25 -0
- package/dist/data/WorkingHours.d.ts +94 -0
- package/dist/data/account/Permission.d.ts +46 -0
- package/dist/data/action/ShareLink.d.ts +55 -0
- package/dist/data/conference/Conference.d.ts +161 -0
- package/dist/data/conference/ConferenceAssignment.d.ts +194 -0
- package/dist/data/conference/ConferenceForm.d.ts +36 -0
- package/dist/data/conference/ConferenceInvitee.d.ts +31 -0
- package/dist/data/conference/ConferenceLocation.d.ts +359 -0
- package/dist/data/conference/ConferenceSpeaker.d.ts +28 -0
- package/dist/data/conference/ConferenceSubscriptionRules.d.ts +12 -0
- package/dist/data/conference/ConferenceTag.d.ts +29 -0
- package/dist/data/conference/Registration.d.ts +56 -0
- package/dist/data/conference/RegistrationCancel.d.ts +26 -0
- package/dist/data/conference/RegistrationClient.d.ts +16 -0
- package/dist/data/conference/Session.d.ts +140 -0
- package/dist/data/conference/Widget.d.ts +94 -0
- package/dist/data/crm/ClientMessage.d.ts +42 -0
- package/dist/data/dashboard/DashboardStructure.d.ts +42 -0
- package/dist/data/dashboard/KeyFigures.d.ts +9 -0
- package/dist/data/planning/Planning.d.ts +17 -0
- package/dist/data/planning/PlanningDay.d.ts +12 -0
- package/dist/data/planning/PlanningHour.d.ts +10 -0
- package/dist/data/planning/PlanningWeek.d.ts +13 -0
- package/dist/data/scheduling/Availabilities.d.ts +103 -0
- package/dist/data/scheduling/SchedulingRights.d.ts +40 -0
- package/dist/data/scheduling/WorkingPlanning.d.ts +119 -0
- package/dist/data/scheduling/schedule/CompanySchedule.d.ts +19 -0
- package/dist/data/scheduling/schedule/ScheduleWorkingHours.d.ts +18 -0
- package/dist/data/scheduling/schedule/UserSchedules.d.ts +20 -0
- package/dist/data/shortPollingNotification/ShortPollingNotificationEvent.d.ts +58 -0
- package/dist/data/shortPollingNotification/ShortPollingNotificationObject.d.ts +4 -0
- package/dist/data/shortPollingNotification/ShortPollingNotificationReport.d.ts +8 -0
- package/dist/db/DashboardStructureDb.d.ts +12 -0
- package/dist/db/calendarDb.d.ts +26 -0
- package/dist/db/calendarTeamDb.d.ts +27 -0
- package/dist/db/calendarTeamDefaultDb.d.ts +20 -0
- package/dist/db/clientMessageDb.d.ts +10 -0
- package/dist/db/companyDb.d.ts +26 -0
- package/dist/db/companySettingsDb.d.ts +11 -0
- package/dist/db/conferenceDb.d.ts +26 -0
- package/dist/db/conferenceInviteeDb.d.ts +27 -0
- package/dist/db/conferenceRegistrationDb.d.ts +11 -0
- package/dist/db/conferenceSessionDb.d.ts +27 -0
- package/dist/db/conferenceSpeakerDb.d.ts +27 -0
- package/dist/db/conferenceTagDb.d.ts +12 -0
- package/dist/db/contactDb.d.ts +26 -0
- package/dist/db/crmSettingsDb.d.ts +9 -0
- package/dist/db/customStatusDb.d.ts +13 -0
- package/dist/db/eventDb.d.ts +29 -0
- package/dist/db/externalEventDb.d.ts +26 -0
- package/dist/db/formBuilderDb.d.ts +26 -0
- package/dist/db/icsEventDb.d.ts +25 -0
- package/dist/db/index.d.ts +74 -0
- package/dist/db/noteDb.d.ts +27 -0
- package/dist/db/notificationDb.d.ts +9 -0
- package/dist/db/notificationStatusDb.d.ts +26 -0
- package/dist/db/planningDb.d.ts +27 -0
- package/dist/db/privacyPolicyDb.d.ts +24 -0
- package/dist/db/promoteFieldDb.d.ts +9 -0
- package/dist/db/queueDb.d.ts +27 -0
- package/dist/db/rightsDb.d.ts +25 -0
- package/dist/db/serviceDb.d.ts +28 -0
- package/dist/db/serviceGroupDb.d.ts +31 -0
- package/dist/db/serviceResourceDb.d.ts +27 -0
- package/dist/db/settingsDb.d.ts +24 -0
- package/dist/db/shortPollingNotificationDb.d.ts +28 -0
- package/dist/db/sseNotificationDb.d.ts +0 -0
- package/dist/db/staffDb.d.ts +28 -0
- package/dist/db/staffFormsDb.d.ts +25 -0
- package/dist/db/staffGroupDb.d.ts +32 -0
- package/dist/db/userDb.d.ts +27 -0
- package/dist/db/userDefaultDb.d.ts +20 -0
- package/dist/db/userDirectoryDb.d.ts +28 -0
- package/dist/db/widgetFormDb.d.ts +25 -0
- package/dist/eventFetchedMeta/eventMeta.d.ts +24 -0
- package/dist/eventFetchedMeta/eventMetaStorage.d.ts +63 -0
- package/dist/index.d.ts +102 -0
- package/dist/js-agendize-api.es.js +33381 -0
- package/dist/repository/index.d.ts +87 -0
- package/dist/repository/public/accountPublicRepository.d.ts +40 -0
- package/dist/repository/public/availabilityPublicRepository.d.ts +39 -0
- package/dist/repository/public/companyPublicRepository.d.ts +24 -0
- package/dist/repository/public/conferencePublicRepository.d.ts +27 -0
- package/dist/repository/public/customStatusPublicRepository.d.ts +28 -0
- package/dist/repository/public/eventPublicRepository.d.ts +42 -0
- package/dist/repository/public/formPublicRepository.d.ts +25 -0
- package/dist/repository/public/freeSlotPublicRepository.d.ts +40 -0
- package/dist/repository/public/queuePublicRepository.d.ts +22 -0
- package/dist/repository/public/queueRegistrationPublicRepository.d.ts +22 -0
- package/dist/repository/public/registrationPublicRepository.d.ts +22 -0
- package/dist/repository/public/servicePublicRepository.d.ts +24 -0
- package/dist/repository/public/sessionPublicRepository.d.ts +23 -0
- package/dist/repository/public/staffGroupPublicRepository.d.ts +24 -0
- package/dist/repository/public/staffPublicRepository.d.ts +24 -0
- package/dist/repository/public/widgetPublicRepository.d.ts +26 -0
- package/dist/repository/secured/CRMSettingsSecuredRepository.d.ts +25 -0
- package/dist/repository/secured/accountSecuredRepository.d.ts +44 -0
- package/dist/repository/secured/activitySecuredRepository.d.ts +43 -0
- package/dist/repository/secured/additionalFieldsSecuredRepository.d.ts +24 -0
- package/dist/repository/secured/appointmentAttendeeSecuredRepository.d.ts +47 -0
- package/dist/repository/secured/availabilitySecuredRepository.d.ts +42 -0
- package/dist/repository/secured/calendarSecuredRepository.d.ts +33 -0
- package/dist/repository/secured/changelogSecuredRepository.d.ts +24 -0
- package/dist/repository/secured/clientMessageSecuredRepository.d.ts +29 -0
- package/dist/repository/secured/companyPerformanceSecuredRepository.d.ts +37 -0
- package/dist/repository/secured/companySecuredRepository.d.ts +34 -0
- package/dist/repository/secured/companySettingsSecuredRepository.d.ts +28 -0
- package/dist/repository/secured/conferenceInviteeSecuredRepository.d.ts +47 -0
- package/dist/repository/secured/conferenceRegistrationSecuredRepository.d.ts +39 -0
- package/dist/repository/secured/conferenceSecuredRepository.d.ts +50 -0
- package/dist/repository/secured/conferenceSessionSecuredRepository.d.ts +49 -0
- package/dist/repository/secured/conferenceSpeakerSecuredRepository.d.ts +50 -0
- package/dist/repository/secured/conferenceTagSecuredRepository.d.ts +31 -0
- package/dist/repository/secured/connectorsSecuredRepository.d.ts +24 -0
- package/dist/repository/secured/contactExternalSecuredRepository.d.ts +27 -0
- package/dist/repository/secured/contactSecuredRepository.d.ts +38 -0
- package/dist/repository/secured/customStatusSecuredRepository.d.ts +32 -0
- package/dist/repository/secured/dasboardStructureSecuredRepository.d.ts +25 -0
- package/dist/repository/secured/dashboardSecuredRepository.d.ts +20 -0
- package/dist/repository/secured/eventSecuredRepository.d.ts +67 -0
- package/dist/repository/secured/exportAppointmentsSecuredRepository.d.ts +25 -0
- package/dist/repository/secured/exportCalendarSecuredRepository.d.ts +28 -0
- package/dist/repository/secured/externalEventSecuredRepository.d.ts +39 -0
- package/dist/repository/secured/formBuilderSecuredRepository.d.ts +46 -0
- package/dist/repository/secured/formResultSecuredRepository.d.ts +31 -0
- package/dist/repository/secured/formResultStatusSecuredRepository.d.ts +30 -0
- package/dist/repository/secured/freeSlotSecuredRepository.d.ts +46 -0
- package/dist/repository/secured/icsEventSecuredRepository.d.ts +34 -0
- package/dist/repository/secured/integrationsSecuredRepository.d.ts +24 -0
- package/dist/repository/secured/logSecuredRepository.d.ts +25 -0
- package/dist/repository/secured/noteSecuredRepository.d.ts +27 -0
- package/dist/repository/secured/notificationSecuredRepository.d.ts +27 -0
- package/dist/repository/secured/notificationStatusSecuredRepository.d.ts +40 -0
- package/dist/repository/secured/permissionSecuredRepository.d.ts +46 -0
- package/dist/repository/secured/planningSecuredRepository.d.ts +46 -0
- package/dist/repository/secured/privacyPolicySecuredRepository.d.ts +41 -0
- package/dist/repository/secured/promoteFieldSecuredRepository.d.ts +26 -0
- package/dist/repository/secured/queueRegistrationSecuredRepository.d.ts +46 -0
- package/dist/repository/secured/queueSecuredRepository.d.ts +46 -0
- package/dist/repository/secured/reportingSecuredRepository.d.ts +42 -0
- package/dist/repository/secured/rightsSecuredRepository.d.ts +40 -0
- package/dist/repository/secured/scheduleSecuredRepository.d.ts +25 -0
- package/dist/repository/secured/schedulingRightsSecuredRepository.d.ts +26 -0
- package/dist/repository/secured/serviceGroupSecuredRepository.d.ts +50 -0
- package/dist/repository/secured/serviceResourceSecuredRepository.d.ts +50 -0
- package/dist/repository/secured/serviceSecuredRepository.d.ts +36 -0
- package/dist/repository/secured/settingsSecuredRepository.d.ts +27 -0
- package/dist/repository/secured/shareLinkSecuredRepository.d.ts +38 -0
- package/dist/repository/secured/shortPollingNotificationSecuredRepository.d.ts +32 -0
- package/dist/repository/secured/shortenerSecuredRepository.d.ts +39 -0
- package/dist/repository/secured/sseNotificationSecuredRepository.d.ts +0 -0
- package/dist/repository/secured/staffFormsSecuredRepository.d.ts +40 -0
- package/dist/repository/secured/staffGroupSecuredRepository.d.ts +50 -0
- package/dist/repository/secured/staffSecuredRepository.d.ts +41 -0
- package/dist/repository/secured/tagSecuredRepository.d.ts +24 -0
- package/dist/repository/secured/userAbstractSecuredRepository.d.ts +55 -0
- package/dist/repository/secured/userDefaultSecuredRepository.d.ts +28 -0
- package/dist/repository/secured/userDirectorySecuredRepository.d.ts +41 -0
- package/dist/repository/secured/userSecuredRepository.d.ts +33 -0
- package/dist/repository/secured/widgetFormSecuredRepository.d.ts +45 -0
- package/dist/repository/secured/widgetUrlCipherSecuredRepository.d.ts +46 -0
- package/dist/repository/secured/workingPlanningSecuredRepository.d.ts +34 -0
- package/dist/service/index.d.ts +47 -0
- package/dist/service/items/EventFields.d.ts +30 -0
- package/dist/service/public/WidgetError.d.ts +7 -0
- package/dist/service/public/accountPublicService.d.ts +20 -0
- package/dist/service/public/availabilityPublicService.d.ts +21 -0
- package/dist/service/public/companyPublicService.d.ts +6 -0
- package/dist/service/public/conferencePublicService.d.ts +6 -0
- package/dist/service/public/customStatusPublicService.d.ts +5 -0
- package/dist/service/public/eventPublicService.d.ts +30 -0
- package/dist/service/public/formPublicService.d.ts +7 -0
- package/dist/service/public/freeSlotPublicService.d.ts +20 -0
- package/dist/service/public/queueInscriptionPublicService.d.ts +5 -0
- package/dist/service/public/queuePublicService.d.ts +5 -0
- package/dist/service/public/registrationPublicService.d.ts +8 -0
- package/dist/service/public/servicePublicService.d.ts +22 -0
- package/dist/service/public/sessionPublicService.d.ts +5 -0
- package/dist/service/public/staffGroupPublicService.d.ts +6 -0
- package/dist/service/public/staffPublicService.d.ts +6 -0
- package/dist/service/public/widgetPublicService.d.ts +5 -0
- package/dist/service/public/widgetResponse.d.ts +3 -0
- package/dist/service/secured/FormResultSecuredService.d.ts +8 -0
- package/dist/service/secured/accountSecuredService.d.ts +23 -0
- package/dist/service/secured/activitySecuredService.d.ts +22 -0
- package/dist/service/secured/additionalFieldsSecuredService.d.ts +5 -0
- package/dist/service/secured/attendeeSecuredService.d.ts +25 -0
- package/dist/service/secured/authenticationSecuredService.d.ts +56 -0
- package/dist/service/secured/availabilitiesSecuredService.d.ts +20 -0
- package/dist/service/secured/batchSecuredService.d.ts +20 -0
- package/dist/service/secured/calendarSecuredService.d.ts +28 -0
- package/dist/service/secured/changelogSecuredService.d.ts +20 -0
- package/dist/service/secured/clientMessageSecuredService.d.ts +6 -0
- package/dist/service/secured/companyPerformanceSecuredService.d.ts +20 -0
- package/dist/service/secured/companySecuredService.d.ts +27 -0
- package/dist/service/secured/companySettingsSecuredService.d.ts +6 -0
- package/dist/service/secured/conferenceInviteeSecuredService.d.ts +25 -0
- package/dist/service/secured/conferenceRegistrationSecuredService.d.ts +13 -0
- package/dist/service/secured/conferenceSecuredService.d.ts +25 -0
- package/dist/service/secured/conferenceSessionSecuredService.d.ts +26 -0
- package/dist/service/secured/conferenceSpeakerSecuredService.d.ts +30 -0
- package/dist/service/secured/conferenceTagSecuredService.d.ts +10 -0
- package/dist/service/secured/connectorsSecuredService.d.ts +5 -0
- package/dist/service/secured/contactExternalSecuredService.d.ts +21 -0
- package/dist/service/secured/contactSecuredService.d.ts +26 -0
- package/dist/service/secured/crmSettingsSecuredService.d.ts +5 -0
- package/dist/service/secured/customStatusSecuredService.d.ts +9 -0
- package/dist/service/secured/dashboardSecuredService.d.ts +5 -0
- package/dist/service/secured/dashboardStructureSecuredService.d.ts +5 -0
- package/dist/service/secured/eventSecuredService.d.ts +161 -0
- package/dist/service/secured/exportAppointmentsSecuredService.d.ts +7 -0
- package/dist/service/secured/exportCalendarSecuredService.d.ts +5 -0
- package/dist/service/secured/formBuilderSecuredService.d.ts +24 -0
- package/dist/service/secured/formResultStatusSecuredService.d.ts +6 -0
- package/dist/service/secured/freeSlotSecuredService.d.ts +21 -0
- package/dist/service/secured/freeStaffSecuredService.d.ts +19 -0
- package/dist/service/secured/integrationsSecuredService.d.ts +5 -0
- package/dist/service/secured/logSecuredService.d.ts +19 -0
- package/dist/service/secured/noteSecuredService.d.ts +22 -0
- package/dist/service/secured/notificationSecuredService.d.ts +6 -0
- package/dist/service/secured/permissionsSecuredService.d.ts +24 -0
- package/dist/service/secured/planningSecuredService.d.ts +25 -0
- package/dist/service/secured/privacyPolicySecuredService.d.ts +20 -0
- package/dist/service/secured/promoteFieldSecuredService.d.ts +5 -0
- package/dist/service/secured/queueRegistrationSecuredService.d.ts +23 -0
- package/dist/service/secured/queueSecuredService.d.ts +25 -0
- package/dist/service/secured/reportingSecuredService.d.ts +20 -0
- package/dist/service/secured/rightsSecuredService.d.ts +20 -0
- package/dist/service/secured/scheduleSecuredService.d.ts +5 -0
- package/dist/service/secured/schedulingRightsSecuredService.d.ts +7 -0
- package/dist/service/secured/serviceGroupSecuredService.d.ts +25 -0
- package/dist/service/secured/serviceResourceSecuredService.d.ts +25 -0
- package/dist/service/secured/serviceSecuredService.d.ts +25 -0
- package/dist/service/secured/settingsSecuredService.d.ts +20 -0
- package/dist/service/secured/shareLinkSecuredService.d.ts +21 -0
- package/dist/service/secured/shortPollingNotificationSecuredService.d.ts +10 -0
- package/dist/service/secured/shortenerSecuredService.d.ts +20 -0
- package/dist/service/secured/staffFormsSecuredService.d.ts +20 -0
- package/dist/service/secured/staffGroupSecuredService.d.ts +25 -0
- package/dist/service/secured/staffSecuredService.d.ts +26 -0
- package/dist/service/secured/tagSecuredService.d.ts +5 -0
- package/dist/service/secured/userDirectorySecuredService.d.ts +20 -0
- package/dist/service/secured/userSecuredService.d.ts +33 -0
- package/dist/service/secured/widgetFormSecuredService.d.ts +26 -0
- package/dist/service/secured/widgetUrlCipherSecuredService.d.ts +21 -0
- package/dist/service/secured/workingPlanningSecuredService.d.ts +6 -0
- package/dist/utils/axiosLoggerBuilder.d.ts +11 -0
- package/dist/utils/colorManager.d.ts +7 -0
- package/dist/utils/date.d.ts +12 -0
- package/dist/utils/encoding.d.ts +8 -0
- package/dist/utils/formUtils.d.ts +4 -0
- package/dist/utils/logger.d.ts +40 -0
- package/dist/utils/pkceUtils.d.ts +10 -0
- package/dist/utils/widgetForms.d.ts +7 -0
- package/package.json +3 -3
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
import { z, ZodError } from "zod";
|
|
2
|
+
declare const ConferenceLocationTypeSchema: z.ZodEnum<["address", "custom", "link", "schedulingCompanyAddress", "conferenceLocation"]>;
|
|
3
|
+
declare const ConferenceLocationSecuredDtoSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
4
|
+
type: z.ZodLiteral<"address">;
|
|
5
|
+
street: z.ZodString;
|
|
6
|
+
additionalStreet: z.ZodOptional<z.ZodString>;
|
|
7
|
+
zipCode: z.ZodString;
|
|
8
|
+
city: z.ZodString;
|
|
9
|
+
state: z.ZodOptional<z.ZodString>;
|
|
10
|
+
country: z.ZodString;
|
|
11
|
+
geolocation: z.ZodOptional<z.ZodObject<{
|
|
12
|
+
lat: z.ZodNumber;
|
|
13
|
+
lng: z.ZodNumber;
|
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
|
15
|
+
lat: number;
|
|
16
|
+
lng: number;
|
|
17
|
+
}, {
|
|
18
|
+
lat: number;
|
|
19
|
+
lng: number;
|
|
20
|
+
}>>;
|
|
21
|
+
}, "strip", z.ZodTypeAny, {
|
|
22
|
+
type: "address";
|
|
23
|
+
country: string;
|
|
24
|
+
street: string;
|
|
25
|
+
zipCode: string;
|
|
26
|
+
city: string;
|
|
27
|
+
additionalStreet?: string | undefined;
|
|
28
|
+
state?: string | undefined;
|
|
29
|
+
geolocation?: {
|
|
30
|
+
lat: number;
|
|
31
|
+
lng: number;
|
|
32
|
+
} | undefined;
|
|
33
|
+
}, {
|
|
34
|
+
type: "address";
|
|
35
|
+
country: string;
|
|
36
|
+
street: string;
|
|
37
|
+
zipCode: string;
|
|
38
|
+
city: string;
|
|
39
|
+
additionalStreet?: string | undefined;
|
|
40
|
+
state?: string | undefined;
|
|
41
|
+
geolocation?: {
|
|
42
|
+
lat: number;
|
|
43
|
+
lng: number;
|
|
44
|
+
} | undefined;
|
|
45
|
+
}>, z.ZodObject<{
|
|
46
|
+
type: z.ZodLiteral<"custom">;
|
|
47
|
+
text: z.ZodString;
|
|
48
|
+
}, "strip", z.ZodTypeAny, {
|
|
49
|
+
type: "custom";
|
|
50
|
+
text: string;
|
|
51
|
+
}, {
|
|
52
|
+
type: "custom";
|
|
53
|
+
text: string;
|
|
54
|
+
}>, z.ZodObject<{
|
|
55
|
+
type: z.ZodLiteral<"link">;
|
|
56
|
+
title: z.ZodOptional<z.ZodString>;
|
|
57
|
+
link: z.ZodString;
|
|
58
|
+
}, "strip", z.ZodTypeAny, {
|
|
59
|
+
type: "link";
|
|
60
|
+
link: string;
|
|
61
|
+
title?: string | undefined;
|
|
62
|
+
}, {
|
|
63
|
+
type: "link";
|
|
64
|
+
link: string;
|
|
65
|
+
title?: string | undefined;
|
|
66
|
+
}>, z.ZodObject<{
|
|
67
|
+
type: z.ZodLiteral<"schedulingCompanyAddress">;
|
|
68
|
+
companyId: z.ZodString;
|
|
69
|
+
street: z.ZodOptional<z.ZodString>;
|
|
70
|
+
additionalStreet: z.ZodOptional<z.ZodString>;
|
|
71
|
+
zipCode: z.ZodOptional<z.ZodString>;
|
|
72
|
+
city: z.ZodOptional<z.ZodString>;
|
|
73
|
+
state: z.ZodOptional<z.ZodString>;
|
|
74
|
+
country: z.ZodOptional<z.ZodString>;
|
|
75
|
+
}, "strip", z.ZodTypeAny, {
|
|
76
|
+
type: "schedulingCompanyAddress";
|
|
77
|
+
companyId: string;
|
|
78
|
+
country?: string | undefined;
|
|
79
|
+
street?: string | undefined;
|
|
80
|
+
additionalStreet?: string | undefined;
|
|
81
|
+
zipCode?: string | undefined;
|
|
82
|
+
city?: string | undefined;
|
|
83
|
+
state?: string | undefined;
|
|
84
|
+
}, {
|
|
85
|
+
type: "schedulingCompanyAddress";
|
|
86
|
+
companyId: string;
|
|
87
|
+
country?: string | undefined;
|
|
88
|
+
street?: string | undefined;
|
|
89
|
+
additionalStreet?: string | undefined;
|
|
90
|
+
zipCode?: string | undefined;
|
|
91
|
+
city?: string | undefined;
|
|
92
|
+
state?: string | undefined;
|
|
93
|
+
}>, z.ZodObject<{
|
|
94
|
+
type: z.ZodLiteral<"conferenceLocation">;
|
|
95
|
+
street: z.ZodOptional<z.ZodString>;
|
|
96
|
+
additionalStreet: z.ZodOptional<z.ZodString>;
|
|
97
|
+
zipCode: z.ZodOptional<z.ZodString>;
|
|
98
|
+
city: z.ZodOptional<z.ZodString>;
|
|
99
|
+
state: z.ZodOptional<z.ZodString>;
|
|
100
|
+
country: z.ZodOptional<z.ZodString>;
|
|
101
|
+
}, "strip", z.ZodTypeAny, {
|
|
102
|
+
type: "conferenceLocation";
|
|
103
|
+
country?: string | undefined;
|
|
104
|
+
street?: string | undefined;
|
|
105
|
+
additionalStreet?: string | undefined;
|
|
106
|
+
zipCode?: string | undefined;
|
|
107
|
+
city?: string | undefined;
|
|
108
|
+
state?: string | undefined;
|
|
109
|
+
}, {
|
|
110
|
+
type: "conferenceLocation";
|
|
111
|
+
country?: string | undefined;
|
|
112
|
+
street?: string | undefined;
|
|
113
|
+
additionalStreet?: string | undefined;
|
|
114
|
+
zipCode?: string | undefined;
|
|
115
|
+
city?: string | undefined;
|
|
116
|
+
state?: string | undefined;
|
|
117
|
+
}>]>;
|
|
118
|
+
declare const ConferenceLocationSecuredEntitySchema: z.ZodIntersection<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
119
|
+
type: z.ZodLiteral<"address">;
|
|
120
|
+
street: z.ZodString;
|
|
121
|
+
additionalStreet: z.ZodOptional<z.ZodString>;
|
|
122
|
+
zipCode: z.ZodString;
|
|
123
|
+
city: z.ZodString;
|
|
124
|
+
state: z.ZodOptional<z.ZodString>;
|
|
125
|
+
country: z.ZodString;
|
|
126
|
+
geolocation: z.ZodOptional<z.ZodObject<{
|
|
127
|
+
lat: z.ZodNumber;
|
|
128
|
+
lng: z.ZodNumber;
|
|
129
|
+
}, "strip", z.ZodTypeAny, {
|
|
130
|
+
lat: number;
|
|
131
|
+
lng: number;
|
|
132
|
+
}, {
|
|
133
|
+
lat: number;
|
|
134
|
+
lng: number;
|
|
135
|
+
}>>;
|
|
136
|
+
}, "strip", z.ZodTypeAny, {
|
|
137
|
+
type: "address";
|
|
138
|
+
country: string;
|
|
139
|
+
street: string;
|
|
140
|
+
zipCode: string;
|
|
141
|
+
city: string;
|
|
142
|
+
additionalStreet?: string | undefined;
|
|
143
|
+
state?: string | undefined;
|
|
144
|
+
geolocation?: {
|
|
145
|
+
lat: number;
|
|
146
|
+
lng: number;
|
|
147
|
+
} | undefined;
|
|
148
|
+
}, {
|
|
149
|
+
type: "address";
|
|
150
|
+
country: string;
|
|
151
|
+
street: string;
|
|
152
|
+
zipCode: string;
|
|
153
|
+
city: string;
|
|
154
|
+
additionalStreet?: string | undefined;
|
|
155
|
+
state?: string | undefined;
|
|
156
|
+
geolocation?: {
|
|
157
|
+
lat: number;
|
|
158
|
+
lng: number;
|
|
159
|
+
} | undefined;
|
|
160
|
+
}>, z.ZodObject<{
|
|
161
|
+
type: z.ZodLiteral<"custom">;
|
|
162
|
+
text: z.ZodString;
|
|
163
|
+
}, "strip", z.ZodTypeAny, {
|
|
164
|
+
type: "custom";
|
|
165
|
+
text: string;
|
|
166
|
+
}, {
|
|
167
|
+
type: "custom";
|
|
168
|
+
text: string;
|
|
169
|
+
}>, z.ZodObject<{
|
|
170
|
+
type: z.ZodLiteral<"link">;
|
|
171
|
+
title: z.ZodOptional<z.ZodString>;
|
|
172
|
+
link: z.ZodString;
|
|
173
|
+
}, "strip", z.ZodTypeAny, {
|
|
174
|
+
type: "link";
|
|
175
|
+
link: string;
|
|
176
|
+
title?: string | undefined;
|
|
177
|
+
}, {
|
|
178
|
+
type: "link";
|
|
179
|
+
link: string;
|
|
180
|
+
title?: string | undefined;
|
|
181
|
+
}>, z.ZodObject<{
|
|
182
|
+
type: z.ZodLiteral<"schedulingCompanyAddress">;
|
|
183
|
+
companyId: z.ZodString;
|
|
184
|
+
street: z.ZodOptional<z.ZodString>;
|
|
185
|
+
additionalStreet: z.ZodOptional<z.ZodString>;
|
|
186
|
+
zipCode: z.ZodOptional<z.ZodString>;
|
|
187
|
+
city: z.ZodOptional<z.ZodString>;
|
|
188
|
+
state: z.ZodOptional<z.ZodString>;
|
|
189
|
+
country: z.ZodOptional<z.ZodString>;
|
|
190
|
+
}, "strip", z.ZodTypeAny, {
|
|
191
|
+
type: "schedulingCompanyAddress";
|
|
192
|
+
companyId: string;
|
|
193
|
+
country?: string | undefined;
|
|
194
|
+
street?: string | undefined;
|
|
195
|
+
additionalStreet?: string | undefined;
|
|
196
|
+
zipCode?: string | undefined;
|
|
197
|
+
city?: string | undefined;
|
|
198
|
+
state?: string | undefined;
|
|
199
|
+
}, {
|
|
200
|
+
type: "schedulingCompanyAddress";
|
|
201
|
+
companyId: string;
|
|
202
|
+
country?: string | undefined;
|
|
203
|
+
street?: string | undefined;
|
|
204
|
+
additionalStreet?: string | undefined;
|
|
205
|
+
zipCode?: string | undefined;
|
|
206
|
+
city?: string | undefined;
|
|
207
|
+
state?: string | undefined;
|
|
208
|
+
}>, z.ZodObject<{
|
|
209
|
+
type: z.ZodLiteral<"conferenceLocation">;
|
|
210
|
+
street: z.ZodOptional<z.ZodString>;
|
|
211
|
+
additionalStreet: z.ZodOptional<z.ZodString>;
|
|
212
|
+
zipCode: z.ZodOptional<z.ZodString>;
|
|
213
|
+
city: z.ZodOptional<z.ZodString>;
|
|
214
|
+
state: z.ZodOptional<z.ZodString>;
|
|
215
|
+
country: z.ZodOptional<z.ZodString>;
|
|
216
|
+
}, "strip", z.ZodTypeAny, {
|
|
217
|
+
type: "conferenceLocation";
|
|
218
|
+
country?: string | undefined;
|
|
219
|
+
street?: string | undefined;
|
|
220
|
+
additionalStreet?: string | undefined;
|
|
221
|
+
zipCode?: string | undefined;
|
|
222
|
+
city?: string | undefined;
|
|
223
|
+
state?: string | undefined;
|
|
224
|
+
}, {
|
|
225
|
+
type: "conferenceLocation";
|
|
226
|
+
country?: string | undefined;
|
|
227
|
+
street?: string | undefined;
|
|
228
|
+
additionalStreet?: string | undefined;
|
|
229
|
+
zipCode?: string | undefined;
|
|
230
|
+
city?: string | undefined;
|
|
231
|
+
state?: string | undefined;
|
|
232
|
+
}>]>>;
|
|
233
|
+
declare const ConferenceLocationEntitySchema: z.ZodIntersection<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
234
|
+
type: z.ZodLiteral<"address">;
|
|
235
|
+
street: z.ZodString;
|
|
236
|
+
additionalStreet: z.ZodOptional<z.ZodString>;
|
|
237
|
+
zipCode: z.ZodString;
|
|
238
|
+
city: z.ZodString;
|
|
239
|
+
state: z.ZodOptional<z.ZodString>;
|
|
240
|
+
country: z.ZodString;
|
|
241
|
+
geolocation: z.ZodOptional<z.ZodObject<{
|
|
242
|
+
lat: z.ZodNumber;
|
|
243
|
+
lng: z.ZodNumber;
|
|
244
|
+
}, "strip", z.ZodTypeAny, {
|
|
245
|
+
lat: number;
|
|
246
|
+
lng: number;
|
|
247
|
+
}, {
|
|
248
|
+
lat: number;
|
|
249
|
+
lng: number;
|
|
250
|
+
}>>;
|
|
251
|
+
}, "strip", z.ZodTypeAny, {
|
|
252
|
+
type: "address";
|
|
253
|
+
country: string;
|
|
254
|
+
street: string;
|
|
255
|
+
zipCode: string;
|
|
256
|
+
city: string;
|
|
257
|
+
additionalStreet?: string | undefined;
|
|
258
|
+
state?: string | undefined;
|
|
259
|
+
geolocation?: {
|
|
260
|
+
lat: number;
|
|
261
|
+
lng: number;
|
|
262
|
+
} | undefined;
|
|
263
|
+
}, {
|
|
264
|
+
type: "address";
|
|
265
|
+
country: string;
|
|
266
|
+
street: string;
|
|
267
|
+
zipCode: string;
|
|
268
|
+
city: string;
|
|
269
|
+
additionalStreet?: string | undefined;
|
|
270
|
+
state?: string | undefined;
|
|
271
|
+
geolocation?: {
|
|
272
|
+
lat: number;
|
|
273
|
+
lng: number;
|
|
274
|
+
} | undefined;
|
|
275
|
+
}>, z.ZodObject<{
|
|
276
|
+
type: z.ZodLiteral<"custom">;
|
|
277
|
+
text: z.ZodString;
|
|
278
|
+
}, "strip", z.ZodTypeAny, {
|
|
279
|
+
type: "custom";
|
|
280
|
+
text: string;
|
|
281
|
+
}, {
|
|
282
|
+
type: "custom";
|
|
283
|
+
text: string;
|
|
284
|
+
}>, z.ZodObject<{
|
|
285
|
+
type: z.ZodLiteral<"link">;
|
|
286
|
+
title: z.ZodOptional<z.ZodString>;
|
|
287
|
+
link: z.ZodString;
|
|
288
|
+
}, "strip", z.ZodTypeAny, {
|
|
289
|
+
type: "link";
|
|
290
|
+
link: string;
|
|
291
|
+
title?: string | undefined;
|
|
292
|
+
}, {
|
|
293
|
+
type: "link";
|
|
294
|
+
link: string;
|
|
295
|
+
title?: string | undefined;
|
|
296
|
+
}>, z.ZodObject<{
|
|
297
|
+
type: z.ZodLiteral<"schedulingCompanyAddress">;
|
|
298
|
+
companyId: z.ZodString;
|
|
299
|
+
street: z.ZodOptional<z.ZodString>;
|
|
300
|
+
additionalStreet: z.ZodOptional<z.ZodString>;
|
|
301
|
+
zipCode: z.ZodOptional<z.ZodString>;
|
|
302
|
+
city: z.ZodOptional<z.ZodString>;
|
|
303
|
+
state: z.ZodOptional<z.ZodString>;
|
|
304
|
+
country: z.ZodOptional<z.ZodString>;
|
|
305
|
+
}, "strip", z.ZodTypeAny, {
|
|
306
|
+
type: "schedulingCompanyAddress";
|
|
307
|
+
companyId: string;
|
|
308
|
+
country?: string | undefined;
|
|
309
|
+
street?: string | undefined;
|
|
310
|
+
additionalStreet?: string | undefined;
|
|
311
|
+
zipCode?: string | undefined;
|
|
312
|
+
city?: string | undefined;
|
|
313
|
+
state?: string | undefined;
|
|
314
|
+
}, {
|
|
315
|
+
type: "schedulingCompanyAddress";
|
|
316
|
+
companyId: string;
|
|
317
|
+
country?: string | undefined;
|
|
318
|
+
street?: string | undefined;
|
|
319
|
+
additionalStreet?: string | undefined;
|
|
320
|
+
zipCode?: string | undefined;
|
|
321
|
+
city?: string | undefined;
|
|
322
|
+
state?: string | undefined;
|
|
323
|
+
}>, z.ZodObject<{
|
|
324
|
+
type: z.ZodLiteral<"conferenceLocation">;
|
|
325
|
+
street: z.ZodOptional<z.ZodString>;
|
|
326
|
+
additionalStreet: z.ZodOptional<z.ZodString>;
|
|
327
|
+
zipCode: z.ZodOptional<z.ZodString>;
|
|
328
|
+
city: z.ZodOptional<z.ZodString>;
|
|
329
|
+
state: z.ZodOptional<z.ZodString>;
|
|
330
|
+
country: z.ZodOptional<z.ZodString>;
|
|
331
|
+
}, "strip", z.ZodTypeAny, {
|
|
332
|
+
type: "conferenceLocation";
|
|
333
|
+
country?: string | undefined;
|
|
334
|
+
street?: string | undefined;
|
|
335
|
+
additionalStreet?: string | undefined;
|
|
336
|
+
zipCode?: string | undefined;
|
|
337
|
+
city?: string | undefined;
|
|
338
|
+
state?: string | undefined;
|
|
339
|
+
}, {
|
|
340
|
+
type: "conferenceLocation";
|
|
341
|
+
country?: string | undefined;
|
|
342
|
+
street?: string | undefined;
|
|
343
|
+
additionalStreet?: string | undefined;
|
|
344
|
+
zipCode?: string | undefined;
|
|
345
|
+
city?: string | undefined;
|
|
346
|
+
state?: string | undefined;
|
|
347
|
+
}>]>>;
|
|
348
|
+
export type ConferenceLocationType = z.infer<typeof ConferenceLocationTypeSchema>;
|
|
349
|
+
export type ConferenceLocationEntity = z.infer<typeof ConferenceLocationEntitySchema>;
|
|
350
|
+
export type ConferenceLocationSecuredDto = z.infer<typeof ConferenceLocationSecuredDtoSchema>;
|
|
351
|
+
export type ConferenceLocationSecuredEntity = z.infer<typeof ConferenceLocationSecuredEntitySchema>;
|
|
352
|
+
export declare const ConferenceLocationValidator: {
|
|
353
|
+
validate(entity: ConferenceLocationEntity | undefined): ZodError | undefined;
|
|
354
|
+
};
|
|
355
|
+
export declare const ConferenceLocationMapper: {
|
|
356
|
+
fromDto(dto: ConferenceLocationSecuredDto): ConferenceLocationEntity | undefined;
|
|
357
|
+
toDto(entity: ConferenceLocationEntity): ConferenceLocationSecuredDto | undefined;
|
|
358
|
+
};
|
|
359
|
+
export {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { BodyEntityInterface, EntityType, PublicBodyEntity, SecuredBodyEntity, SecuredEntity } from "@/data/Common";
|
|
2
|
+
export type ConferenceSpeakerEntity<Type = EntityType> = (Type extends SecuredEntity ? ConferenceSpeakerSecuredEntity : ConferenceSpeakerPublicEntity) & BodyEntityInterface;
|
|
3
|
+
export declare class ConferenceSpeakerPublicEntity extends PublicBodyEntity {
|
|
4
|
+
firstName: string;
|
|
5
|
+
lastName: string;
|
|
6
|
+
static fromDto(dto: ConferenceSpeakerPublicDto): ConferenceSpeakerPublicEntity;
|
|
7
|
+
}
|
|
8
|
+
export declare class ConferenceSpeakerPublicDto {
|
|
9
|
+
firstName?: string;
|
|
10
|
+
lastName?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare class ConferenceSpeakerSecuredEntity extends SecuredBodyEntity {
|
|
13
|
+
id: string;
|
|
14
|
+
userId: string;
|
|
15
|
+
conferenceId: string;
|
|
16
|
+
emailAddress: string;
|
|
17
|
+
firstName?: string;
|
|
18
|
+
lastName?: string;
|
|
19
|
+
static fromDto(dto: ConferenceSpeakerSecuredDto, conferenceId: string): ConferenceSpeakerSecuredEntity;
|
|
20
|
+
static toDto(entity: ConferenceSpeakerSecuredEntity): ConferenceSpeakerSecuredDto;
|
|
21
|
+
}
|
|
22
|
+
export declare class ConferenceSpeakerSecuredDto {
|
|
23
|
+
id: string;
|
|
24
|
+
userId: string;
|
|
25
|
+
emailAddress: string;
|
|
26
|
+
firstName?: string;
|
|
27
|
+
lastName?: string;
|
|
28
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare class ConferenceSubscriptionRulesEntity {
|
|
2
|
+
allowAdditionalSeats?: boolean;
|
|
3
|
+
numberOfAdditionalSeats?: number;
|
|
4
|
+
waitingList?: boolean;
|
|
5
|
+
static fromSubscriptionRulesDto(dto: SubscriptionRulesDto): ConferenceSubscriptionRulesEntity;
|
|
6
|
+
static toSubscriptionRulesDto(entity: ConferenceSubscriptionRulesEntity): SubscriptionRulesDto;
|
|
7
|
+
}
|
|
8
|
+
export declare class SubscriptionRulesDto {
|
|
9
|
+
allowAdditionalSeats?: boolean;
|
|
10
|
+
numberOfAdditionalSeats?: number;
|
|
11
|
+
waitingList?: boolean;
|
|
12
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { BodyEntityInterface, EntityType, PublicBodyEntity, SecuredBodyEntity, SecuredEntity } from "@/data/Common";
|
|
2
|
+
export type ConferenceTagEntity<Type = EntityType> = (Type extends SecuredEntity ? ConferenceTagSecuredEntity : ConferenceTagPublicEntity) & BodyEntityInterface;
|
|
3
|
+
export declare class ConferenceTagPublicEntity extends PublicBodyEntity {
|
|
4
|
+
id: string;
|
|
5
|
+
text: string;
|
|
6
|
+
static fromDto(dto: ConferenceTagDto): ConferenceTagPublicEntity;
|
|
7
|
+
}
|
|
8
|
+
export declare class ConferenceTagSecuredEntity extends SecuredBodyEntity {
|
|
9
|
+
id?: string;
|
|
10
|
+
tag: string;
|
|
11
|
+
numberOfConferences?: number;
|
|
12
|
+
constructor();
|
|
13
|
+
static fromConferenceTagDto(dto: ConferenceTagDto): ConferenceTagSecuredEntity;
|
|
14
|
+
static toConferenceTagDto(entity: ConferenceTagSecuredEntity): ConferenceTagDto;
|
|
15
|
+
}
|
|
16
|
+
export declare class ConferenceTagDto {
|
|
17
|
+
id?: string;
|
|
18
|
+
text?: string;
|
|
19
|
+
numberOfConferences?: number;
|
|
20
|
+
}
|
|
21
|
+
export declare class ConferenceMergedTagEntity {
|
|
22
|
+
tagIds: string[];
|
|
23
|
+
text: string;
|
|
24
|
+
static fromDto(dto: ConferenceMergedTagDto): ConferenceMergedTagEntity;
|
|
25
|
+
}
|
|
26
|
+
export declare class ConferenceMergedTagDto {
|
|
27
|
+
text?: string;
|
|
28
|
+
tagIds?: string[];
|
|
29
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { FormItemDto, FormItemEntity } from "@/data/Form";
|
|
2
|
+
import { ConferenceSessionEntity, ConferenceSessionPublicDto, ConferenceSessionSecuredDto, ConferenceSessionSecuredEntity } from "@/data/conference/Session";
|
|
3
|
+
import { ConferenceClientDto, ConferenceClientEntity } from "@/data/conference/RegistrationClient";
|
|
4
|
+
import { BodyEntityInterface, EntityType, PublicBodyEntity, SecuredBodyEntity, SecuredEntity } from "@/data/Common";
|
|
5
|
+
export type ConferenceRegistrationEntity<Type = EntityType> = (Type extends SecuredEntity ? ConferenceRegistrationSecuredEntity : ConferenceRegistrationPublicEntity) & BodyEntityInterface;
|
|
6
|
+
export declare class ConferenceRegistrationPublicEntity extends PublicBodyEntity {
|
|
7
|
+
id?: string;
|
|
8
|
+
client?: ConferenceClientEntity;
|
|
9
|
+
sessionId?: string;
|
|
10
|
+
session?: ConferenceSessionEntity;
|
|
11
|
+
form?: FormItemEntity[];
|
|
12
|
+
source?: string;
|
|
13
|
+
seats: number;
|
|
14
|
+
waitingList?: boolean;
|
|
15
|
+
marketingConsent?: boolean;
|
|
16
|
+
static fromDto(dto: ConferenceRegistrationPublicDto, conferenceId: string): ConferenceRegistrationPublicEntity;
|
|
17
|
+
static toDto(entity: ConferenceRegistrationPublicEntity): ConferenceRegistrationPublicDto;
|
|
18
|
+
}
|
|
19
|
+
export declare class ConferenceRegistrationPublicDto {
|
|
20
|
+
id?: string;
|
|
21
|
+
client?: ConferenceClientEntity;
|
|
22
|
+
sessionId?: string;
|
|
23
|
+
session?: ConferenceSessionPublicDto;
|
|
24
|
+
form?: FormItemDto[];
|
|
25
|
+
source?: string;
|
|
26
|
+
seats: number;
|
|
27
|
+
waitingList?: boolean;
|
|
28
|
+
marketingConsent?: boolean;
|
|
29
|
+
}
|
|
30
|
+
export declare class ConferenceRegistrationSecuredEntity extends SecuredBodyEntity {
|
|
31
|
+
id: string;
|
|
32
|
+
cipherId?: string;
|
|
33
|
+
seats: number;
|
|
34
|
+
registered: Date;
|
|
35
|
+
client?: ConferenceClientEntity;
|
|
36
|
+
session: ConferenceSessionSecuredEntity;
|
|
37
|
+
form?: FormItemEntity[];
|
|
38
|
+
status: 'accepted' | 'cancelled' | 'waitingList';
|
|
39
|
+
cancelReason?: string;
|
|
40
|
+
static fromDto(dto: ConferenceRegistrationSecuredDto, conferenceId: string): ConferenceRegistrationSecuredEntity;
|
|
41
|
+
static toDto(entity: ConferenceRegistrationSecuredEntity, timeZone?: string): ConferenceRegistrationSecuredDto;
|
|
42
|
+
}
|
|
43
|
+
export declare class ConferenceRegistrationSecuredDto {
|
|
44
|
+
id: string;
|
|
45
|
+
cipherId?: string;
|
|
46
|
+
seats: number;
|
|
47
|
+
registered: {
|
|
48
|
+
dateTime: string;
|
|
49
|
+
timeZone?: string;
|
|
50
|
+
};
|
|
51
|
+
client?: ConferenceClientDto;
|
|
52
|
+
session: ConferenceSessionSecuredDto;
|
|
53
|
+
form?: FormItemDto[];
|
|
54
|
+
status: 'accepted' | 'cancelled' | 'waitingList';
|
|
55
|
+
cancelReason?: string;
|
|
56
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { BodyEntityInterface, EntityType, PublicBodyEntity, SecuredBodyEntity, SecuredEntity } from "@/data/Common";
|
|
2
|
+
export type ConferenceRegistrationCancelEntity<Type = EntityType> = (Type extends SecuredEntity ? ConferenceRegistrationCancelSecuredEntity : ConferenceRegistrationCancelPublicEntity) & BodyEntityInterface;
|
|
3
|
+
export declare class ConferenceRegistrationCancelPublicEntity extends PublicBodyEntity {
|
|
4
|
+
registrationId: string;
|
|
5
|
+
reason?: string;
|
|
6
|
+
timezone?: string;
|
|
7
|
+
language?: string;
|
|
8
|
+
source?: string;
|
|
9
|
+
static toDto(entity: ConferenceRegistrationCancelPublicEntity): ConferenceRegistrationCancelPublicDto;
|
|
10
|
+
}
|
|
11
|
+
export declare class ConferenceRegistrationCancelPublicDto {
|
|
12
|
+
registrationId: string;
|
|
13
|
+
reason?: string;
|
|
14
|
+
timezone?: string;
|
|
15
|
+
language?: string;
|
|
16
|
+
source?: string;
|
|
17
|
+
}
|
|
18
|
+
export declare class ConferenceRegistrationCancelSecuredEntity extends SecuredBodyEntity {
|
|
19
|
+
reason?: string;
|
|
20
|
+
source?: string;
|
|
21
|
+
static toDto(entity: ConferenceRegistrationCancelSecuredEntity): ConferenceRegistrationCancelSecuredDto;
|
|
22
|
+
}
|
|
23
|
+
export declare class ConferenceRegistrationCancelSecuredDto {
|
|
24
|
+
reason?: string;
|
|
25
|
+
source?: string;
|
|
26
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare class ConferenceClientEntity {
|
|
2
|
+
id?: string;
|
|
3
|
+
firstName: string;
|
|
4
|
+
lastName: string;
|
|
5
|
+
emailAddress?: string;
|
|
6
|
+
phoneNumber?: string;
|
|
7
|
+
static fromDto(dto: ConferenceClientDto): ConferenceClientEntity;
|
|
8
|
+
static toDto(entity: ConferenceClientEntity): ConferenceClientDto;
|
|
9
|
+
}
|
|
10
|
+
export declare class ConferenceClientDto {
|
|
11
|
+
id?: string;
|
|
12
|
+
firstName: string;
|
|
13
|
+
lastName: string;
|
|
14
|
+
emailAddress?: string;
|
|
15
|
+
phoneNumber?: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
import { ConferenceTagDto, ConferenceTagEntity } from "@/data/conference/ConferenceTag";
|
|
2
|
+
import { DateTime } from "luxon";
|
|
3
|
+
import { BodyEntityInterface, EntityType, PublicBodyEntity, SecuredBodyEntity, SecuredEntity } from "@/data/Common";
|
|
4
|
+
import { ConferenceLocationEntity, ConferenceLocationSecuredDto } from "@/data/conference/ConferenceLocation";
|
|
5
|
+
export type ConferenceSessionEntity<Type = EntityType> = (Type extends SecuredEntity ? ConferenceSessionSecuredEntity : ConferenceSessionPublicEntity) & BodyEntityInterface;
|
|
6
|
+
export declare class ConferenceSessionPublicEntity extends PublicBodyEntity {
|
|
7
|
+
id: string;
|
|
8
|
+
start: DateTime;
|
|
9
|
+
end?: DateTime;
|
|
10
|
+
reservedSeats: number;
|
|
11
|
+
location?: ConferenceLocationEntity;
|
|
12
|
+
static fromDto(dto: ConferenceSessionPublicDto): ConferenceSessionPublicEntity;
|
|
13
|
+
}
|
|
14
|
+
export declare class ConferenceSessionPublicDto {
|
|
15
|
+
id: string;
|
|
16
|
+
start: {
|
|
17
|
+
dateTime: string;
|
|
18
|
+
timeZone: string;
|
|
19
|
+
};
|
|
20
|
+
end?: {
|
|
21
|
+
dateTime: string;
|
|
22
|
+
timeZone: string;
|
|
23
|
+
};
|
|
24
|
+
reservedSeats: number;
|
|
25
|
+
location?: ConferenceLocationSecuredDto;
|
|
26
|
+
}
|
|
27
|
+
export declare class ConferenceSessionSecuredEntity extends SecuredBodyEntity {
|
|
28
|
+
id: string;
|
|
29
|
+
cipherId?: string;
|
|
30
|
+
start: Date;
|
|
31
|
+
status: "opened" | "closed";
|
|
32
|
+
numberOfRegistrations: number;
|
|
33
|
+
numberOfRegisteredSeats: number;
|
|
34
|
+
waitingList?: {
|
|
35
|
+
numberOfRegistrations: number;
|
|
36
|
+
numberOfRegisteredSeats: number;
|
|
37
|
+
};
|
|
38
|
+
conferenceId: string;
|
|
39
|
+
location?: ConferenceLocationEntity;
|
|
40
|
+
company?: {
|
|
41
|
+
id: string;
|
|
42
|
+
name?: string;
|
|
43
|
+
};
|
|
44
|
+
static fromDto(dto: ConferenceSessionSecuredDto, conferenceId: string): ConferenceSessionSecuredEntity;
|
|
45
|
+
static fromSearchEntity(searchEntity: ConferenceSessionSearchEntity): ConferenceSessionSecuredEntity;
|
|
46
|
+
static toDto(entity: ConferenceSessionSecuredEntity, timeZone?: string): ConferenceSessionSecuredDto;
|
|
47
|
+
}
|
|
48
|
+
export declare class ConferenceSessionSecuredDto {
|
|
49
|
+
id: string;
|
|
50
|
+
cipherId?: string;
|
|
51
|
+
start: {
|
|
52
|
+
dateTime: string;
|
|
53
|
+
timeZone?: string;
|
|
54
|
+
};
|
|
55
|
+
status: "opened" | "closed";
|
|
56
|
+
numberOfRegistrations: number;
|
|
57
|
+
numberOfRegisteredSeats: number;
|
|
58
|
+
waitingList?: {
|
|
59
|
+
numberOfRegistrations: number;
|
|
60
|
+
numberOfRegisteredSeats: number;
|
|
61
|
+
};
|
|
62
|
+
location?: ConferenceLocationSecuredDto;
|
|
63
|
+
company?: {
|
|
64
|
+
id: string;
|
|
65
|
+
name?: string;
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
export declare class ConferenceSessionsSearchBodyEntity {
|
|
69
|
+
startDate: Date;
|
|
70
|
+
endDate?: Date;
|
|
71
|
+
pageNumber?: number;
|
|
72
|
+
timeZone?: string;
|
|
73
|
+
maxResults?: number;
|
|
74
|
+
}
|
|
75
|
+
export declare class ConferenceSessionsSearchEntity {
|
|
76
|
+
items: ConferenceSessionSearchEntity[];
|
|
77
|
+
totalItems: number;
|
|
78
|
+
static fromDto(dto: ConferenceSessionsSearchDto): ConferenceSessionsSearchEntity;
|
|
79
|
+
}
|
|
80
|
+
export declare class ConferenceSessionSearchEntity {
|
|
81
|
+
id: string;
|
|
82
|
+
start: Date;
|
|
83
|
+
status: "opened" | "closed";
|
|
84
|
+
numberOfRegistrations: number;
|
|
85
|
+
numberOfRegisteredSeats: number;
|
|
86
|
+
cipherId?: string;
|
|
87
|
+
conference: {
|
|
88
|
+
title: string;
|
|
89
|
+
id: string;
|
|
90
|
+
capacity: number;
|
|
91
|
+
duration: number;
|
|
92
|
+
locationType: "UNKNOWN" | "companyAddress" | "schedulingCompanyAddress" | "link" | "address" | "custom";
|
|
93
|
+
availability: 'public' | 'private';
|
|
94
|
+
numberOfSpeakers: number;
|
|
95
|
+
numberOfInvitees: number;
|
|
96
|
+
tags: ConferenceTagEntity[];
|
|
97
|
+
cipherId?: string;
|
|
98
|
+
};
|
|
99
|
+
locationType?: 'address' | 'custom' | 'link' | 'schedulingCompanyAddress' | 'conferenceLocation';
|
|
100
|
+
company?: {
|
|
101
|
+
id?: string;
|
|
102
|
+
name?: string;
|
|
103
|
+
};
|
|
104
|
+
location?: ConferenceLocationEntity;
|
|
105
|
+
static fromDto(dto: ConferenceSessionSearchDto): ConferenceSessionSearchEntity;
|
|
106
|
+
}
|
|
107
|
+
export declare class ConferenceSessionSearchDto {
|
|
108
|
+
id: string;
|
|
109
|
+
start: {
|
|
110
|
+
dateTime: string;
|
|
111
|
+
timeZone?: string;
|
|
112
|
+
};
|
|
113
|
+
status: "opened" | "closed";
|
|
114
|
+
numberOfRegistrations: number;
|
|
115
|
+
numberOfRegisteredSeats: number;
|
|
116
|
+
cipherId?: string;
|
|
117
|
+
conference: {
|
|
118
|
+
title: string;
|
|
119
|
+
id: string;
|
|
120
|
+
capacity: number;
|
|
121
|
+
duration: number;
|
|
122
|
+
locationType: "UNKNOWN" | "companyAddress" | "schedulingCompanyAddress" | "link" | "address" | "custom";
|
|
123
|
+
availability: 'public' | 'private';
|
|
124
|
+
numberOfSpeakers: number;
|
|
125
|
+
numberOfInvitees: number;
|
|
126
|
+
tags?: ConferenceTagDto[];
|
|
127
|
+
cipherId?: string;
|
|
128
|
+
};
|
|
129
|
+
locationType?: 'address' | 'custom' | 'link' | 'schedulingCompanyAddress' | 'conferenceLocation';
|
|
130
|
+
company?: {
|
|
131
|
+
id?: string;
|
|
132
|
+
name?: string;
|
|
133
|
+
};
|
|
134
|
+
location?: ConferenceLocationSecuredDto;
|
|
135
|
+
}
|
|
136
|
+
export declare class ConferenceSessionsSearchDto {
|
|
137
|
+
items: ConferenceSessionSearchDto[];
|
|
138
|
+
totalCount: number;
|
|
139
|
+
countPerPage: number;
|
|
140
|
+
}
|