@agendize/js-agendize-api 1.28.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/README.md +23 -0
- package/dist/agendizeApi.d.ts +522 -0
- package/dist/browserStorage/browserStorage.d.ts +43 -0
- package/dist/config.d.ts +19 -0
- package/dist/data/Account.d.ts +180 -0
- package/dist/data/Activity.d.ts +443 -0
- package/dist/data/Address.d.ts +46 -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 +15 -0
- package/dist/data/CommonEnum.d.ts +44 -0
- package/dist/data/Company.d.ts +157 -0
- package/dist/data/CompanyPerformance.d.ts +26 -0
- package/dist/data/Connector.d.ts +26 -0
- package/dist/data/Consent.d.ts +4 -0
- package/dist/data/Contact.d.ts +202 -0
- package/dist/data/CustomStatus.d.ts +16 -0
- package/dist/data/Employee.d.ts +27 -0
- package/dist/data/Error.d.ts +65 -0
- package/dist/data/Event.d.ts +216 -0
- package/dist/data/EventSearch.d.ts +217 -0
- package/dist/data/EventUpdate.d.ts +9 -0
- package/dist/data/Form.d.ts +224 -0
- package/dist/data/FormResult.d.ts +61 -0
- package/dist/data/FormResultStatus.d.ts +23 -0
- package/dist/data/FreeSlot.d.ts +71 -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 +77 -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 +42 -0
- package/dist/data/ReportingExportBody.d.ts +170 -0
- package/dist/data/ReportingExportResponse.d.ts +15 -0
- package/dist/data/Rights.d.ts +123 -0
- package/dist/data/Service.d.ts +213 -0
- package/dist/data/ServiceGroup.d.ts +57 -0
- package/dist/data/ServiceResource.d.ts +26 -0
- package/dist/data/Settings.d.ts +12 -0
- package/dist/data/ShortPollingNotification.d.ts +25 -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 +23 -0
- package/dist/data/WorkingHours.d.ts +94 -0
- package/dist/data/conference/Conference.d.ts +156 -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 +36 -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 +115 -0
- package/dist/data/conference/Widget.d.ts +92 -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/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/companyDb.d.ts +26 -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 +24 -0
- package/dist/db/index.d.ts +72 -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 +13 -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 +91 -0
- package/dist/js-agendize-api.es.js +28770 -0
- package/dist/repository/index.d.ts +84 -0
- package/dist/repository/public/accountPublicRepository.d.ts +39 -0
- package/dist/repository/public/companyPublicRepository.d.ts +23 -0
- package/dist/repository/public/conferencePublicRepository.d.ts +26 -0
- package/dist/repository/public/customStatusPublicRepository.d.ts +28 -0
- package/dist/repository/public/eventPublicRepository.d.ts +39 -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/calendarSecuredRepository.d.ts +33 -0
- package/dist/repository/secured/changelogSecuredRepository.d.ts +24 -0
- package/dist/repository/secured/companyPerformanceSecuredRepository.d.ts +37 -0
- package/dist/repository/secured/companySecuredRepository.d.ts +32 -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 +25 -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 +66 -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 +43 -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/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 +35 -0
- package/dist/repository/secured/settingsSecuredRepository.d.ts +27 -0
- package/dist/repository/secured/shortPollingNotificationSecuredRepository.d.ts +31 -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 +40 -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 +28 -0
- package/dist/service/index.d.ts +46 -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/companyPublicService.d.ts +5 -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 +29 -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 +21 -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/authenticationSecuredService.d.ts +56 -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/companyPerformanceSecuredService.d.ts +20 -0
- package/dist/service/secured/companySecuredService.d.ts +26 -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 +44 -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 +23 -0
- package/dist/service/secured/formResultStatusSecuredService.d.ts +6 -0
- package/dist/service/secured/freeSlotSecuredService.d.ts +20 -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/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/shortPollingNotificationSecuredService.d.ts +9 -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 +5 -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 +6 -0
- package/package.json +67 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
export declare class PrivacyPolicyEntity {
|
|
2
|
+
id?: string;
|
|
3
|
+
privateData: {
|
|
4
|
+
consentMode: string;
|
|
5
|
+
consentText?: ConsentTextEntity;
|
|
6
|
+
};
|
|
7
|
+
marketing: {
|
|
8
|
+
consentMode: string;
|
|
9
|
+
consentText?: ConsentTextEntity;
|
|
10
|
+
};
|
|
11
|
+
static fromPrivacyPolicyDto(dto: PrivacyPolicyDto, ownerId: string): PrivacyPolicyEntity;
|
|
12
|
+
}
|
|
13
|
+
export declare class ConsentTextEntity {
|
|
14
|
+
EN?: string;
|
|
15
|
+
FR?: string;
|
|
16
|
+
ES?: string;
|
|
17
|
+
DE?: string;
|
|
18
|
+
IT?: string;
|
|
19
|
+
PT?: string;
|
|
20
|
+
NL?: string;
|
|
21
|
+
JP?: string;
|
|
22
|
+
static fromConsentTextDto(dto: ConsentTextDto): ConsentTextEntity;
|
|
23
|
+
}
|
|
24
|
+
export declare class PrivacyPolicyDto {
|
|
25
|
+
privateData: {
|
|
26
|
+
consentMode: string;
|
|
27
|
+
consentText?: ConsentTextDto;
|
|
28
|
+
};
|
|
29
|
+
marketing: {
|
|
30
|
+
consentMode: string;
|
|
31
|
+
consentText?: ConsentTextDto;
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
export declare class ConsentTextDto {
|
|
35
|
+
EN?: string;
|
|
36
|
+
FR?: string;
|
|
37
|
+
ES?: string;
|
|
38
|
+
DE?: string;
|
|
39
|
+
IT?: string;
|
|
40
|
+
PT?: string;
|
|
41
|
+
NL?: string;
|
|
42
|
+
JP?: string;
|
|
43
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { EntityType, PublicBodyEntity, SecuredBodyEntity, SecuredEntity } from "@/data/Common";
|
|
2
|
+
import { FormBuilderPublicDto, FormBuilderPublicEntity, FormDtoOptionParser } from "@/data/Form";
|
|
3
|
+
export type QueueEntity<Type = EntityType> = Type extends SecuredEntity ? QueueSecuredEntity : QueuePublicEntity;
|
|
4
|
+
export declare class QueuePublicEntity extends PublicBodyEntity {
|
|
5
|
+
name: string;
|
|
6
|
+
welcomeMessage?: string;
|
|
7
|
+
thanksMessage?: string;
|
|
8
|
+
saveClient: boolean;
|
|
9
|
+
sendSms: boolean;
|
|
10
|
+
textSms?: string;
|
|
11
|
+
form?: FormBuilderPublicEntity;
|
|
12
|
+
static fromQueueDto(dto: QueuePublicDto, options?: FormDtoOptionParser): QueuePublicEntity;
|
|
13
|
+
}
|
|
14
|
+
export declare class QueuePublicDto {
|
|
15
|
+
name: string;
|
|
16
|
+
welcomeMessage?: string;
|
|
17
|
+
thanksMessage?: string;
|
|
18
|
+
saveClient: boolean;
|
|
19
|
+
sendSms: boolean;
|
|
20
|
+
textSms?: string;
|
|
21
|
+
form?: FormBuilderPublicDto;
|
|
22
|
+
}
|
|
23
|
+
export declare class QueueSecuredEntity extends SecuredBodyEntity {
|
|
24
|
+
id: string;
|
|
25
|
+
author: string;
|
|
26
|
+
name: string;
|
|
27
|
+
welcomeMessage: string;
|
|
28
|
+
thankMessage: string;
|
|
29
|
+
company: {
|
|
30
|
+
id: string;
|
|
31
|
+
name?: string;
|
|
32
|
+
};
|
|
33
|
+
form?: {
|
|
34
|
+
id: string;
|
|
35
|
+
name?: string;
|
|
36
|
+
};
|
|
37
|
+
static fromQueueDto(dto: QueueDto): QueueSecuredEntity;
|
|
38
|
+
static toQueueDto(entity: QueueSecuredEntity): QueueDto;
|
|
39
|
+
}
|
|
40
|
+
export declare class QueueDto {
|
|
41
|
+
id: string;
|
|
42
|
+
author: string;
|
|
43
|
+
name: string;
|
|
44
|
+
welcomeMessage: string;
|
|
45
|
+
thankMessage: string;
|
|
46
|
+
company?: {
|
|
47
|
+
id: string;
|
|
48
|
+
name?: string;
|
|
49
|
+
};
|
|
50
|
+
form?: {
|
|
51
|
+
id: string;
|
|
52
|
+
name?: string;
|
|
53
|
+
};
|
|
54
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2022 Agendize All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at.
|
|
7
|
+
*
|
|
8
|
+
* Http://www.apache.org/licenses/LICENSE-2.0.
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { ContactEntity } from "./Contact";
|
|
17
|
+
import { EntityType, PublicBodyEntity, SecuredBodyEntity, SecuredEntity } from "@/data/Common";
|
|
18
|
+
import { FormItemDto, FormItemEntity } from "@/data/Form";
|
|
19
|
+
export type QueueRegistrationEntity<Type = EntityType> = Type extends SecuredEntity ? QueueRegistrationSecuredEntity : QueueRegistrationPublicEntity;
|
|
20
|
+
export type QueueRegistrationResultEntity<Type = EntityType> = Type extends SecuredEntity ? QueueRegistrationResultSecuredEntity : QueueRegistrationResultPublicEntity;
|
|
21
|
+
export declare class QueueRegistrationPublicEntity extends PublicBodyEntity {
|
|
22
|
+
firstname: string;
|
|
23
|
+
lastname: string;
|
|
24
|
+
phone?: string;
|
|
25
|
+
formResult?: Array<FormItemEntity>;
|
|
26
|
+
dataConsent?: string;
|
|
27
|
+
marketingConsent?: string;
|
|
28
|
+
static toDto(entity: QueueRegistrationPublicEntity): QueueRegistrationPublicDto;
|
|
29
|
+
}
|
|
30
|
+
export declare class QueueRegistrationPublicDto {
|
|
31
|
+
firstname: string;
|
|
32
|
+
lastname: string;
|
|
33
|
+
phone?: string;
|
|
34
|
+
formResult?: Array<FormItemDto>;
|
|
35
|
+
dataConsent?: string;
|
|
36
|
+
marketingConsent?: string;
|
|
37
|
+
}
|
|
38
|
+
export declare class QueueRegistrationResultPublicEntity extends PublicBodyEntity {
|
|
39
|
+
id: string;
|
|
40
|
+
numInQueue: number;
|
|
41
|
+
nbPeopleAhead: number;
|
|
42
|
+
averageDurationTime: number;
|
|
43
|
+
static fromDto(dto: QueueRegistrationResultPublicDto): QueueRegistrationResultPublicEntity;
|
|
44
|
+
}
|
|
45
|
+
export declare class QueueRegistrationResultPublicDto {
|
|
46
|
+
id: string;
|
|
47
|
+
numInQueue: number;
|
|
48
|
+
nbPeopleAhead: number;
|
|
49
|
+
averageDurationTime: number;
|
|
50
|
+
}
|
|
51
|
+
export declare enum QueueRegistrationStatus {
|
|
52
|
+
REGISTERED = "registered",
|
|
53
|
+
NO_SHOW = "noShow",
|
|
54
|
+
IN_PROGRESS = "inProgress",
|
|
55
|
+
FINISHED = "finished"
|
|
56
|
+
}
|
|
57
|
+
export declare class QueueRegistrationSecuredEntity extends SecuredBodyEntity {
|
|
58
|
+
id?: string;
|
|
59
|
+
owner?: {
|
|
60
|
+
id?: string;
|
|
61
|
+
userName?: string;
|
|
62
|
+
};
|
|
63
|
+
client?: ContactEntity;
|
|
64
|
+
registeredDate?: Date;
|
|
65
|
+
status?: QueueRegistrationStatus | undefined;
|
|
66
|
+
rank?: number;
|
|
67
|
+
startedDate?: Date;
|
|
68
|
+
finishedDate?: Date;
|
|
69
|
+
static fromQueueRegistrationDto(dto: QueueRegistrationDto): QueueRegistrationSecuredEntity;
|
|
70
|
+
static toQueueRegistrationDto(entity: QueueRegistrationSecuredEntity): QueueRegistrationDto;
|
|
71
|
+
}
|
|
72
|
+
export declare class QueueRegistrationDto {
|
|
73
|
+
id?: string;
|
|
74
|
+
owner?: {
|
|
75
|
+
id?: string;
|
|
76
|
+
userName?: string;
|
|
77
|
+
};
|
|
78
|
+
client?: {
|
|
79
|
+
id?: string;
|
|
80
|
+
firstName?: string;
|
|
81
|
+
lastName?: string;
|
|
82
|
+
email?: string;
|
|
83
|
+
phone?: string;
|
|
84
|
+
};
|
|
85
|
+
registered?: {
|
|
86
|
+
dateTime: string;
|
|
87
|
+
timeZone?: string;
|
|
88
|
+
};
|
|
89
|
+
status?: QueueRegistrationStatus;
|
|
90
|
+
rank?: number;
|
|
91
|
+
started?: {
|
|
92
|
+
dateTime: string;
|
|
93
|
+
timeZone?: string;
|
|
94
|
+
};
|
|
95
|
+
finished?: {
|
|
96
|
+
dateTime: string;
|
|
97
|
+
timeZone?: string;
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
export declare class QueueRegistrationResultSecuredEntity extends SecuredBodyEntity {
|
|
101
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2022 Agendize All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at.
|
|
7
|
+
*
|
|
8
|
+
* Http://www.apache.org/licenses/LICENSE-2.0.
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export declare class ReportsEntity {
|
|
17
|
+
id: string;
|
|
18
|
+
token: string;
|
|
19
|
+
dashboards?: ReportDashboardEntity[];
|
|
20
|
+
static fromDto(dto: ReportsDto): ReportsEntity;
|
|
21
|
+
}
|
|
22
|
+
export declare class ReportDashboardEntity {
|
|
23
|
+
id: string;
|
|
24
|
+
name?: string;
|
|
25
|
+
subTitle?: string;
|
|
26
|
+
}
|
|
27
|
+
export declare class ReportDashboardDto {
|
|
28
|
+
id: string;
|
|
29
|
+
name?: string;
|
|
30
|
+
subTitle?: string;
|
|
31
|
+
}
|
|
32
|
+
export declare class ReportsDto {
|
|
33
|
+
id: string;
|
|
34
|
+
token: string;
|
|
35
|
+
dashboards?: ReportDashboardDto[];
|
|
36
|
+
}
|
|
37
|
+
export declare class ReportDashboardFilter {
|
|
38
|
+
companies: string[];
|
|
39
|
+
staffs: string[];
|
|
40
|
+
dateMin?: string;
|
|
41
|
+
dateMax?: string;
|
|
42
|
+
}
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
export declare class ReportingExportBodyEntity {
|
|
2
|
+
timeZone?: string;
|
|
3
|
+
fields?: ReportingExportBodyFieldsEntity;
|
|
4
|
+
filter?: ReportingExportBodyFilterEntity;
|
|
5
|
+
constructor();
|
|
6
|
+
static toReportingExportBodyDto(entity: ReportingExportBodyEntity): ReportingExportBodyDto;
|
|
7
|
+
}
|
|
8
|
+
export declare class ReportingExportBodyFilterEntity {
|
|
9
|
+
start?: Date;
|
|
10
|
+
end?: Date;
|
|
11
|
+
companyIds?: string[];
|
|
12
|
+
constructor();
|
|
13
|
+
static toReportingExportBodyFilterDto(entity: ReportingExportBodyFilterEntity): ReportingExportBodyFilterDto;
|
|
14
|
+
}
|
|
15
|
+
export declare class ReportingExportBodyFieldsEntity {
|
|
16
|
+
company?: ReportingExportBodyFieldCompanyEntity;
|
|
17
|
+
service?: ReportingExportBodyFieldServiceEntity;
|
|
18
|
+
staff?: ReportingExportBodyFieldStaffEntity;
|
|
19
|
+
client?: ReportingExportBodyFieldClientEntity;
|
|
20
|
+
appointment?: ReportingExportBodyFieldAppointmentEntity;
|
|
21
|
+
constructor();
|
|
22
|
+
static toReportingExportBodyFieldsDto(entity: ReportingExportBodyFieldsEntity): ReportingExportBodyFieldsDto;
|
|
23
|
+
}
|
|
24
|
+
export declare class ReportingExportBodyFieldCompanyEntity {
|
|
25
|
+
name?: boolean;
|
|
26
|
+
address?: ReportingExportBodyFieldCompanyAddressEntity;
|
|
27
|
+
email?: boolean;
|
|
28
|
+
phone?: boolean;
|
|
29
|
+
latitude?: boolean;
|
|
30
|
+
longitude?: boolean;
|
|
31
|
+
externalId?: boolean;
|
|
32
|
+
id?: boolean;
|
|
33
|
+
constructor();
|
|
34
|
+
static toReportingExportBodyFieldCompanyDto(entity: ReportingExportBodyFieldCompanyEntity): ReportingExportBodyFieldCompanyDto;
|
|
35
|
+
}
|
|
36
|
+
export declare class ReportingExportBodyFieldCompanyAddressEntity {
|
|
37
|
+
street?: boolean;
|
|
38
|
+
additionalStreet?: boolean;
|
|
39
|
+
zipCode?: boolean;
|
|
40
|
+
city?: boolean;
|
|
41
|
+
country?: boolean;
|
|
42
|
+
state?: boolean;
|
|
43
|
+
constructor();
|
|
44
|
+
static toReportingExportBodyFieldCompanyAddressDto(entity: ReportingExportBodyFieldCompanyAddressEntity): ReportingExportBodyFieldCompanyAddressDto;
|
|
45
|
+
}
|
|
46
|
+
export declare class ReportingExportBodyFieldServiceEntity {
|
|
47
|
+
name?: boolean;
|
|
48
|
+
duration?: boolean;
|
|
49
|
+
capacity?: boolean;
|
|
50
|
+
price?: boolean;
|
|
51
|
+
categoryLevel1Name?: boolean;
|
|
52
|
+
categoryLevel2Name?: boolean;
|
|
53
|
+
externalId?: boolean;
|
|
54
|
+
id?: boolean;
|
|
55
|
+
categoryLevel1ExternalId?: boolean;
|
|
56
|
+
categoryLevel1Id?: boolean;
|
|
57
|
+
categoryLevel2ExternalId?: boolean;
|
|
58
|
+
categoryLevel2Id?: boolean;
|
|
59
|
+
constructor();
|
|
60
|
+
static toReportingExportBodyFieldServiceDto(entity: ReportingExportBodyFieldServiceEntity): ReportingExportBodyFieldServiceDto;
|
|
61
|
+
}
|
|
62
|
+
export declare class ReportingExportBodyFieldStaffEntity {
|
|
63
|
+
firstName?: boolean;
|
|
64
|
+
lastName?: boolean;
|
|
65
|
+
email?: boolean;
|
|
66
|
+
phone?: boolean;
|
|
67
|
+
groupName?: boolean;
|
|
68
|
+
externalId?: boolean;
|
|
69
|
+
id?: boolean;
|
|
70
|
+
groupExternalId?: boolean;
|
|
71
|
+
groupId?: boolean;
|
|
72
|
+
constructor();
|
|
73
|
+
static toReportingExportBodyFieldStaffDto(entity: ReportingExportBodyFieldStaffEntity): ReportingExportBodyFieldStaffDto;
|
|
74
|
+
}
|
|
75
|
+
export declare class ReportingExportBodyFieldClientEntity {
|
|
76
|
+
firstName?: boolean;
|
|
77
|
+
lastName?: boolean;
|
|
78
|
+
email?: boolean;
|
|
79
|
+
phone?: boolean;
|
|
80
|
+
id?: boolean;
|
|
81
|
+
constructor();
|
|
82
|
+
static toReportingExportBodyFieldClientDto(entity: ReportingExportBodyFieldClientEntity): ReportingExportBodyFieldClientDto;
|
|
83
|
+
}
|
|
84
|
+
export declare class ReportingExportBodyFieldAppointmentEntity {
|
|
85
|
+
start?: boolean;
|
|
86
|
+
end?: boolean;
|
|
87
|
+
location?: boolean;
|
|
88
|
+
status?: boolean;
|
|
89
|
+
notes?: boolean;
|
|
90
|
+
customFields?: boolean;
|
|
91
|
+
id?: boolean;
|
|
92
|
+
constructor();
|
|
93
|
+
static toReportingExportBodyFieldAppointmentDto(entity: ReportingExportBodyFieldAppointmentEntity): ReportingExportBodyFieldAppointmentDto;
|
|
94
|
+
}
|
|
95
|
+
export declare class ReportingExportBodyDto {
|
|
96
|
+
timeZone?: string;
|
|
97
|
+
fields?: ReportingExportBodyFieldsDto;
|
|
98
|
+
filter?: ReportingExportBodyFilterDto;
|
|
99
|
+
}
|
|
100
|
+
export declare class ReportingExportBodyFilterDto {
|
|
101
|
+
start?: string;
|
|
102
|
+
end?: string;
|
|
103
|
+
companyIds?: string[];
|
|
104
|
+
}
|
|
105
|
+
export declare class ReportingExportBodyFieldsDto {
|
|
106
|
+
company?: ReportingExportBodyFieldCompanyDto;
|
|
107
|
+
service?: ReportingExportBodyFieldServiceDto;
|
|
108
|
+
staff?: ReportingExportBodyFieldStaffDto;
|
|
109
|
+
client?: ReportingExportBodyFieldClientDto;
|
|
110
|
+
appointment?: ReportingExportBodyFieldAppointmentDto;
|
|
111
|
+
}
|
|
112
|
+
export declare class ReportingExportBodyFieldCompanyDto {
|
|
113
|
+
name?: boolean;
|
|
114
|
+
address?: ReportingExportBodyFieldCompanyAddressDto;
|
|
115
|
+
email?: boolean;
|
|
116
|
+
phone?: boolean;
|
|
117
|
+
latitude?: boolean;
|
|
118
|
+
longitude?: boolean;
|
|
119
|
+
externalId?: boolean;
|
|
120
|
+
id?: boolean;
|
|
121
|
+
}
|
|
122
|
+
export declare class ReportingExportBodyFieldCompanyAddressDto {
|
|
123
|
+
street?: boolean;
|
|
124
|
+
additionalStreet?: boolean;
|
|
125
|
+
zipCode?: boolean;
|
|
126
|
+
city?: boolean;
|
|
127
|
+
country?: boolean;
|
|
128
|
+
state?: boolean;
|
|
129
|
+
}
|
|
130
|
+
export declare class ReportingExportBodyFieldServiceDto {
|
|
131
|
+
name?: boolean;
|
|
132
|
+
duration?: boolean;
|
|
133
|
+
capacity?: boolean;
|
|
134
|
+
price?: boolean;
|
|
135
|
+
categoryLevel1Name?: boolean;
|
|
136
|
+
categoryLevel2Name?: boolean;
|
|
137
|
+
externalId?: boolean;
|
|
138
|
+
id?: boolean;
|
|
139
|
+
categoryLevel1ExternalId?: boolean;
|
|
140
|
+
categoryLevel1Id?: boolean;
|
|
141
|
+
categoryLevel2ExternalId?: boolean;
|
|
142
|
+
categoryLevel2Id?: boolean;
|
|
143
|
+
}
|
|
144
|
+
export declare class ReportingExportBodyFieldStaffDto {
|
|
145
|
+
firstName?: boolean;
|
|
146
|
+
lastName?: boolean;
|
|
147
|
+
email?: boolean;
|
|
148
|
+
phone?: boolean;
|
|
149
|
+
groupName?: boolean;
|
|
150
|
+
externalId?: boolean;
|
|
151
|
+
id?: boolean;
|
|
152
|
+
groupExternalId?: boolean;
|
|
153
|
+
groupId?: boolean;
|
|
154
|
+
}
|
|
155
|
+
export declare class ReportingExportBodyFieldClientDto {
|
|
156
|
+
firstName?: boolean;
|
|
157
|
+
lastName?: boolean;
|
|
158
|
+
email?: boolean;
|
|
159
|
+
phone?: boolean;
|
|
160
|
+
id?: boolean;
|
|
161
|
+
}
|
|
162
|
+
export declare class ReportingExportBodyFieldAppointmentDto {
|
|
163
|
+
start?: boolean;
|
|
164
|
+
end?: boolean;
|
|
165
|
+
location?: boolean;
|
|
166
|
+
status?: boolean;
|
|
167
|
+
notes?: boolean;
|
|
168
|
+
customFields?: boolean;
|
|
169
|
+
id?: boolean;
|
|
170
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare enum ExportStatus {
|
|
2
|
+
REQUESTED = "requested",
|
|
3
|
+
IN_PROGRESS = "inProgress",
|
|
4
|
+
FINISHED = "finished",
|
|
5
|
+
FAILED = "failed"
|
|
6
|
+
}
|
|
7
|
+
export declare class ReportingExportResponseEntity {
|
|
8
|
+
id?: string;
|
|
9
|
+
status?: ExportStatus;
|
|
10
|
+
static fromReportingDto(dto: ReportingExportResponseDto): ReportingExportResponseEntity;
|
|
11
|
+
}
|
|
12
|
+
export declare class ReportingExportResponseDto {
|
|
13
|
+
id?: string;
|
|
14
|
+
status?: ExportStatus;
|
|
15
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2022 Agendize All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at.
|
|
7
|
+
*
|
|
8
|
+
* Http://www.apache.org/licenses/LICENSE-2.0.
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export declare enum GlobalRight {
|
|
17
|
+
owner = 0,
|
|
18
|
+
accountAdministrator = 1,
|
|
19
|
+
accountAnalytics = 2,
|
|
20
|
+
chatAdministrator = 3,
|
|
21
|
+
chatOperator = 4,
|
|
22
|
+
schedulingAdministrator = 5,
|
|
23
|
+
schedulingStaff = 6,
|
|
24
|
+
testimonialsAdministrator = 7,
|
|
25
|
+
testimonialsModeration = 8,
|
|
26
|
+
accountBilling = 9,
|
|
27
|
+
accountButtons = 10,
|
|
28
|
+
accountEmails = 11,
|
|
29
|
+
accountCalls = 12,
|
|
30
|
+
accountForms = 13,
|
|
31
|
+
accountCRM = 14,
|
|
32
|
+
accountSchedulingAdministrator = 15,
|
|
33
|
+
accountSchedulingSchedule = 16,
|
|
34
|
+
accountSchedulingRead = 17,
|
|
35
|
+
queue = 18,
|
|
36
|
+
schedulingRead = 19,
|
|
37
|
+
accountDataOfficer = 20,
|
|
38
|
+
accountWorkflows = 21,
|
|
39
|
+
accountWorkingPlanning = 22,
|
|
40
|
+
schedulingTeamManager = 23
|
|
41
|
+
}
|
|
42
|
+
export declare class RightsEntity {
|
|
43
|
+
id: string;
|
|
44
|
+
object?: RightObject;
|
|
45
|
+
scheduling?: SchedulingRight;
|
|
46
|
+
settings?: SettingsRight;
|
|
47
|
+
report?: ReportRight;
|
|
48
|
+
queue?: QueueRight;
|
|
49
|
+
form?: FormRight;
|
|
50
|
+
client?: ClientRight;
|
|
51
|
+
workflow?: WorkflowRight;
|
|
52
|
+
workingPlanning?: WorkingPlanningRight;
|
|
53
|
+
planning?: PlanningRight;
|
|
54
|
+
conference?: ConferenceRight;
|
|
55
|
+
whiteLabel?: WhiteLabelRight;
|
|
56
|
+
static fromRightsDto(dto: RightsDto): RightsEntity;
|
|
57
|
+
}
|
|
58
|
+
export interface RightObject {
|
|
59
|
+
type: 'company';
|
|
60
|
+
id: string;
|
|
61
|
+
}
|
|
62
|
+
export interface SchedulingRight {
|
|
63
|
+
appointment: string;
|
|
64
|
+
staffAppointment: string;
|
|
65
|
+
}
|
|
66
|
+
export interface SettingsRight {
|
|
67
|
+
company: string;
|
|
68
|
+
service: string;
|
|
69
|
+
staff: string;
|
|
70
|
+
resource: string;
|
|
71
|
+
staffCustomPeriod: string;
|
|
72
|
+
process: string;
|
|
73
|
+
widget: string;
|
|
74
|
+
notifications: string;
|
|
75
|
+
payments: string;
|
|
76
|
+
messages: string;
|
|
77
|
+
calendars: string;
|
|
78
|
+
crm: string;
|
|
79
|
+
}
|
|
80
|
+
export interface ReportRight {
|
|
81
|
+
report: string;
|
|
82
|
+
}
|
|
83
|
+
export interface QueueRight {
|
|
84
|
+
queue: string;
|
|
85
|
+
}
|
|
86
|
+
export interface FormRight {
|
|
87
|
+
form: string;
|
|
88
|
+
}
|
|
89
|
+
export interface ClientRight {
|
|
90
|
+
client: string;
|
|
91
|
+
}
|
|
92
|
+
export interface WorkflowRight {
|
|
93
|
+
workflow: string;
|
|
94
|
+
}
|
|
95
|
+
export interface WorkingPlanningRight {
|
|
96
|
+
workingPlanning: string;
|
|
97
|
+
}
|
|
98
|
+
export interface PlanningRight {
|
|
99
|
+
planning: string;
|
|
100
|
+
}
|
|
101
|
+
export interface ConferenceRight {
|
|
102
|
+
conference: string;
|
|
103
|
+
}
|
|
104
|
+
export interface WhiteLabelRight {
|
|
105
|
+
name: string;
|
|
106
|
+
logo: string;
|
|
107
|
+
favicon: string;
|
|
108
|
+
}
|
|
109
|
+
export declare class RightsDto {
|
|
110
|
+
id: string;
|
|
111
|
+
object?: RightObject;
|
|
112
|
+
scheduling?: SchedulingRight;
|
|
113
|
+
settings?: SettingsRight;
|
|
114
|
+
report?: ReportRight;
|
|
115
|
+
queue?: QueueRight;
|
|
116
|
+
form?: FormRight;
|
|
117
|
+
client?: ClientRight;
|
|
118
|
+
workflow?: WorkflowRight;
|
|
119
|
+
workingPlanning?: WorkingPlanningRight;
|
|
120
|
+
planning?: PlanningRight;
|
|
121
|
+
conference?: ConferenceRight;
|
|
122
|
+
whiteLabel?: WhiteLabelRight;
|
|
123
|
+
}
|