@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,28 @@
|
|
|
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 { StaffSecuredEntity } from '../index';
|
|
17
|
+
import { IndexedDb } from './index';
|
|
18
|
+
export declare class StaffDb {
|
|
19
|
+
private indexedDb;
|
|
20
|
+
constructor(indexedDb: IndexedDb);
|
|
21
|
+
getAllStaffs(companyId: string): Promise<StaffSecuredEntity[]>;
|
|
22
|
+
getById(companyId: string, staffId: string): Promise<StaffSecuredEntity>;
|
|
23
|
+
saveAllStaffs(staffs: StaffSecuredEntity[]): Promise<void>;
|
|
24
|
+
deleteById(companyId: string, staffId: string): Promise<void>;
|
|
25
|
+
deleteByStaffIds(staffIds: string[]): Promise<void>;
|
|
26
|
+
drop(): Promise<void>;
|
|
27
|
+
updateServiceSkills(companyId: string, oldServiceId: string, newServiceId?: string): void;
|
|
28
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { IndexedDb } from './index';
|
|
17
|
+
import { StaffFormsEntity } from "../data/StaffForms";
|
|
18
|
+
export declare class StaffFormsDb {
|
|
19
|
+
private indexedDb;
|
|
20
|
+
constructor(indexedDb: IndexedDb);
|
|
21
|
+
getByAccount(account: string): Promise<StaffFormsEntity>;
|
|
22
|
+
saveAllStaffs(staffs: StaffFormsEntity[]): Promise<void>;
|
|
23
|
+
deleteById(account: string): Promise<void>;
|
|
24
|
+
drop(): Promise<void>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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 { IndexedDb } from './index';
|
|
17
|
+
import { StaffGroupSecuredEntity } from "../data/StaffGroup";
|
|
18
|
+
export declare class StaffGroupDb {
|
|
19
|
+
private indexedDb;
|
|
20
|
+
constructor(indexedDb: IndexedDb);
|
|
21
|
+
getAllStaffGroups(companyId: string): Promise<StaffGroupSecuredEntity[]>;
|
|
22
|
+
saveAllStaffGroups(serviceGroups: StaffGroupSecuredEntity[]): Promise<void>;
|
|
23
|
+
getById(companyId: string, staffGroupId: string): Promise<StaffGroupSecuredEntity>;
|
|
24
|
+
deleteById(companyId: string, staffGroupId: string): Promise<void>;
|
|
25
|
+
deleteByStaffGroupIds(staffGroupIds: string[]): Promise<void>;
|
|
26
|
+
drop(): Promise<void>;
|
|
27
|
+
updateStaffs(companyId: string, oldStaffId: string, newStaff?: {
|
|
28
|
+
id: string;
|
|
29
|
+
firstName: string;
|
|
30
|
+
lastName: string;
|
|
31
|
+
}): void;
|
|
32
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
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 { UserEntity } from '../index';
|
|
17
|
+
import { IndexedDb } from './index';
|
|
18
|
+
export declare class UserDb {
|
|
19
|
+
private indexedDb;
|
|
20
|
+
private readonly table;
|
|
21
|
+
constructor(indexedDb: IndexedDb, table?: string);
|
|
22
|
+
getAllUsers(): Promise<UserEntity[]>;
|
|
23
|
+
getById(objectId: string): Promise<UserEntity>;
|
|
24
|
+
saveAllUsers(users: UserEntity[]): Promise<void>;
|
|
25
|
+
drop(): Promise<void>;
|
|
26
|
+
dropBulk(users: UserEntity[]): Promise<void>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
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 { IndexedDb } from './index';
|
|
17
|
+
import { UserDb } from "./userDb";
|
|
18
|
+
export declare class UserDefaultDb extends UserDb {
|
|
19
|
+
constructor(indexedDb: IndexedDb);
|
|
20
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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 { IndexedDb } from "./index";
|
|
17
|
+
import { UserEntity } from "../data/User";
|
|
18
|
+
export declare class UserDirectoryDB {
|
|
19
|
+
private indexedDb;
|
|
20
|
+
private readonly table;
|
|
21
|
+
constructor(indexedDb: IndexedDb, table?: string);
|
|
22
|
+
getAllUsers(): Promise<UserEntity[]>;
|
|
23
|
+
getById(objectId: string): Promise<UserEntity>;
|
|
24
|
+
saveAllUsers(users: UserEntity[]): Promise<void>;
|
|
25
|
+
drop(): Promise<void>;
|
|
26
|
+
dropBulk(users: UserEntity[]): Promise<void>;
|
|
27
|
+
deleteById(objectId: string): Promise<void>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { IndexedDb } from './index';
|
|
17
|
+
import { WidgetFormEntity } from "../data/Form";
|
|
18
|
+
export declare class WidgetFormDb {
|
|
19
|
+
private indexedDb;
|
|
20
|
+
constructor(indexedDb: IndexedDb);
|
|
21
|
+
saveAllForms(forms: WidgetFormEntity[]): Promise<void>;
|
|
22
|
+
getAllForms(): Promise<WidgetFormEntity[]>;
|
|
23
|
+
getById(objectId: string): Promise<WidgetFormEntity>;
|
|
24
|
+
drop(): Promise<void>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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 interface EventMeta {
|
|
17
|
+
account: string;
|
|
18
|
+
userId: string;
|
|
19
|
+
month: number;
|
|
20
|
+
year: number;
|
|
21
|
+
}
|
|
22
|
+
export declare class EventMetaArray extends Map<string, EventMeta[]> {
|
|
23
|
+
static fromStorage(data: string | null): EventMetaArray;
|
|
24
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
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 { EventMeta } from "./eventMeta";
|
|
17
|
+
import { LoggerInterface } from "../utils/logger";
|
|
18
|
+
export declare class EventMetaLocalStorageService {
|
|
19
|
+
STORAGE_KEY: string;
|
|
20
|
+
getCoverage(account: string, userIds: string[], start: Date, end: Date, logger?: LoggerInterface): EventMetaRangeCoverage;
|
|
21
|
+
getLocalCoverage(account: string, userIds: string[], request: DatesCoverage, logger?: LoggerInterface): EventMetaRangeCoverage;
|
|
22
|
+
saveCoverage(account: string, userIds: string[], start: Date, end: Date, logger?: LoggerInterface): void;
|
|
23
|
+
saveLocalCoverage(account: string, userIds: string[], coverage: DatesCoverage, logger?: LoggerInterface): void;
|
|
24
|
+
clearStorage(): void;
|
|
25
|
+
}
|
|
26
|
+
export declare class DatesCoverage {
|
|
27
|
+
start: DateCoverage;
|
|
28
|
+
end: DateCoverage;
|
|
29
|
+
constructor(start: DateCoverage, end: DateCoverage);
|
|
30
|
+
isIn(month: number, year: number): boolean;
|
|
31
|
+
getRange(): DateCoverage[];
|
|
32
|
+
}
|
|
33
|
+
export declare class DateCoverage {
|
|
34
|
+
month: number;
|
|
35
|
+
year: number;
|
|
36
|
+
constructor(year: number, month: number);
|
|
37
|
+
toNumber(): number;
|
|
38
|
+
static fromDate(date: Date): DateCoverage;
|
|
39
|
+
static toNumber(year: number, month: number): number;
|
|
40
|
+
}
|
|
41
|
+
export interface DateInterface {
|
|
42
|
+
month: number;
|
|
43
|
+
year: number;
|
|
44
|
+
}
|
|
45
|
+
export interface EventMetaRangeCoverage {
|
|
46
|
+
local: EventMetaRange[];
|
|
47
|
+
remote: EventMetaRange[];
|
|
48
|
+
}
|
|
49
|
+
export interface GroupEventMeta {
|
|
50
|
+
userId: string[];
|
|
51
|
+
month: number;
|
|
52
|
+
year: number;
|
|
53
|
+
}
|
|
54
|
+
export interface EventMetaRange {
|
|
55
|
+
userId: string[];
|
|
56
|
+
start: DateInterface;
|
|
57
|
+
end: DateInterface;
|
|
58
|
+
}
|
|
59
|
+
export declare const dateInterfaceToDate: (date: DateInterface) => Date;
|
|
60
|
+
export declare const isDateAround: (year1: number, month1: number, year2: number, month2: number) => boolean;
|
|
61
|
+
export declare const isRangeInList: (range: DateCoverage, localDates: EventMeta[]) => boolean;
|
|
62
|
+
export declare const groupEventMeta: (events: EventMeta[]) => GroupEventMeta[];
|
|
63
|
+
export declare const buildRangeFromGroups: (groups: GroupEventMeta[]) => EventMetaRange[];
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { CalendarWorkingDayEntity, CalendarWorkingHourEntity, SettingsPeriodWorkingDayEntity, SettingsPeriodWorkingEntity, SettingsWorkingDayEntity, SettingsWorkingHoursEntity } from "./data/WorkingHours";
|
|
2
|
+
import { AccountEntity, AccountPublicEntity, AccountSecuredEntity, AccountSettingsEntity, AclEntity, CalendarSettingsEntity, ProfileSettingsEntity, WhiteLabelSettingsPublicEntity } from './data/Account';
|
|
3
|
+
import { AddressEntity } from './data/Address';
|
|
4
|
+
import { ImageEntity } from './data/Image';
|
|
5
|
+
import { LinkEntity } from "@/data/Link";
|
|
6
|
+
import { CalendarCompanyEntity, CalendarEntity, CalendarTeamEntity } from './data/Calendar';
|
|
7
|
+
import { CompanyEntity, CompanyPublicEntity, CompanySecuredEntity } from './data/Company';
|
|
8
|
+
import { StaffEntity, StaffPublicEntity, StaffSecuredEntity } from './data/Staff';
|
|
9
|
+
import { ServiceEntity, ServicePublicEntity, ServiceSecuredEntity, ServicesListEntity, ServicesListPublicEntity, ServicesListSecuredEntity, ServiceTypeEntity } from './data/Service';
|
|
10
|
+
import { ServiceResourceEntity } from './data/ServiceResource';
|
|
11
|
+
import { AdditionalFieldsEntity, ContactAdditionalFieldEntity, ContactAdvancedSearchEntity, ContactEmailAddressEntity, ContactEntity, ContactPhoneNumberEntity, ContactTagEntity, PromoteFieldEntity } from './data/Contact';
|
|
12
|
+
import { EventEntity, EventPublicEntity, EventSecuredEntity, EventType, EventStatus } from './data/Event';
|
|
13
|
+
import { EventSearchBodyCompanyEntity, EventSearchBodyEntity, EventSearchCompanyEntity, EventSearchConflictEntity, EventSearchConflictReason, EventSearchConflictSource, EventSearchContactEntity, EventSearchEntity, EventSearchLocationEntity, EventSearchOption, EventSearchPageEntity, EventSearchServiceEntity, EventSearchStaffEntity, EventSearchStatusEntity } from './data/EventSearch';
|
|
14
|
+
import { UserEntity } from './data/User';
|
|
15
|
+
import { ServiceGroupEntity, ServiceGroupPublicEntity, ServiceGroupSecuredEntity } from "./data/ServiceGroup";
|
|
16
|
+
import { StaffGroupEntity, StaffGroupPublicEntity, StaffGroupSecuredEntity } from "./data/StaffGroup";
|
|
17
|
+
import { AgendizeError, ApiErrors, getApiErrorValueFromName } from './data/Error';
|
|
18
|
+
import { FreeSlotEntity, FreeSlotSecuredEntity, FreeSlotPublicEntity, FreeSlotItemSecuredEntity, FreeSlotMapPublicEntity, FreeSlotsRecord, FreeSlotsFilterOptions } from './data/FreeSlot';
|
|
19
|
+
import { PlanningEntity } from './data/planning/Planning';
|
|
20
|
+
import { PlanningWeekEntity } from './data/planning/PlanningWeek';
|
|
21
|
+
import type { DayProperty } from './data/planning/PlanningDay';
|
|
22
|
+
import { PlanningDayEntity } from './data/planning/PlanningDay';
|
|
23
|
+
import { PlanningHourEntity } from './data/planning/PlanningHour';
|
|
24
|
+
import { PrivacyPolicyEntity } from './data/PrivacyPolicy';
|
|
25
|
+
import { StaffFormsEntity } from './data/StaffForms';
|
|
26
|
+
import { WidgetError } from "@/service/public/WidgetError";
|
|
27
|
+
import { ClientRight, ConferenceRight, FormRight, GlobalRight, PlanningRight, QueueRight, ReportRight, RightObject, RightsEntity, SchedulingRight, SettingsRight, WhiteLabelRight, WorkflowRight, WorkingPlanningRight } from './data/Rights';
|
|
28
|
+
import { CompanySchedulingRightsEntity, SchedulingRightsEntity } from "./data/scheduling/SchedulingRights";
|
|
29
|
+
import { NoteEntity } from "./data/Note";
|
|
30
|
+
import { ShortPollingNotificationEntity } from "./data/ShortPollingNotification";
|
|
31
|
+
import { NotificationStatusEntity } from "./data/NotificationStatus";
|
|
32
|
+
import { FORM_FILE_EXTENSIONS, FORM_FILE_MAX_SIZE, FormBuilderEntity, FormBuilderPublicEntity, FormBuilderSecuredEntity, FormItemEntity, FormValueEntity, PagePublicEntity, WidgetFormEntity } from "./data/Form";
|
|
33
|
+
import { QueueEntity, QueuePublicEntity, QueueSecuredEntity } from "./data/Queue";
|
|
34
|
+
import type { BrowserStorageItemValue } from './browserStorage/browserStorage';
|
|
35
|
+
import { BrowserStorage, StorageKeys } from './browserStorage/browserStorage';
|
|
36
|
+
import { EmployeeEntity } from "./data/Employee";
|
|
37
|
+
import { QueueRegistrationEntity, QueueRegistrationPublicEntity, QueueRegistrationResultEntity, QueueRegistrationResultPublicEntity, QueueRegistrationResultSecuredEntity, QueueRegistrationSecuredEntity, QueueRegistrationStatus } from "./data/QueueRegistration";
|
|
38
|
+
import { FormResultEntity, FormResultPublicEntity, FormResultSecuredEntity } from "./data/FormResult";
|
|
39
|
+
import { FormResultStatusEntity, ResultStatusValues } from "./data/FormResultStatus";
|
|
40
|
+
import { EventUpdateEntity } from "./data/EventUpdate";
|
|
41
|
+
import { ShortPollingNotificationEvent } from "./data/shortPollingNotification/ShortPollingNotificationEvent";
|
|
42
|
+
import { ShortPollingNotificationReport } from "./data/shortPollingNotification/ShortPollingNotificationReport";
|
|
43
|
+
import { ActivityEntity, AppointmentActivityEntity, AppointmentActivitySourceType, AppointmentActivityType, AppointmentChangeTypes, AppointmentCreationActivityEntity, AppointmentDeletionActivityEntity, AppointmentUpdateDatesActivityEntity, AppointmentUpdateEndActivityEntity, AppointmentUpdateFormActivityEntity, AppointmentUpdateLocationActivityEntity, AppointmentUpdateNoteActivityEntity, AppointmentUpdateResourceActivityEntity, AppointmentUpdateServiceActivityEntity, AppointmentUpdateStaffActivityEntity, AppointmentUpdateStartActivityEntity, AppointmentUpdateStatusActivityEntity, AppointmentUpdateClientActivityEntity, ConsentActivityEntity, EmailNotificationActivityEntity, FormResultActivityEntity, NoteActivityEntity, TextMessageNotificationActivityEntity } from "./data/Activity";
|
|
44
|
+
import { applyValueToField } from "./utils/widgetForms";
|
|
45
|
+
import { CommonEnum, Gender, Language, NotificationType, PromoteFieldKey, Title, valuePromoteFieldFromContact } from "./data/CommonEnum";
|
|
46
|
+
import { WidgetUrlCipherEntity, WidgetUrlCipherInputEntity } from "./data/WidgetUrlCipher";
|
|
47
|
+
import { EventFields, getDefaultEventField } from "./service/items/EventFields";
|
|
48
|
+
import { ReportDashboardEntity, ReportDashboardFilter, ReportsEntity } from "./data/Reporting";
|
|
49
|
+
import { CompanyPerformanceEntity } from "./data/CompanyPerformance";
|
|
50
|
+
import { UserSchedulesEntity } from "./data/scheduling/schedule/UserSchedules";
|
|
51
|
+
import { CompanyScheduleEntity } from "./data/scheduling/schedule/CompanySchedule";
|
|
52
|
+
import { ScheduleWorkingDayEntity, ScheduleWorkingHourEntity } from "./data/scheduling/schedule/ScheduleWorkingHours";
|
|
53
|
+
import { jsDateToYYYYMMDD } from "./utils/date";
|
|
54
|
+
import { Action, ActionType, LogEntity } from "./data/Log";
|
|
55
|
+
import { OccupancyRateEntity, PeriodWithOccupancy, StaffWorkingPlanningEntity, WorkingPlanningDayEntity, WorkingPlanningEntity } from "./data/scheduling/WorkingPlanning";
|
|
56
|
+
import { ChangeEntity, ChangelogEntity } from "./data/Changelog";
|
|
57
|
+
import { ExportStatus, ReportingExportResponseEntity } from "./data/ReportingExportResponse";
|
|
58
|
+
import { ReportingExportBodyEntity } from "./data/ReportingExportBody";
|
|
59
|
+
import { ShortenerEntity } from "./data/Shortener";
|
|
60
|
+
import { AccountLightEntity, ConferenceEntity, ConferenceLightEntity, ConferenceSecuredEntity } from "./data/conference/Conference";
|
|
61
|
+
import { CustomStatusEntity } from "./data/CustomStatus";
|
|
62
|
+
import { ShortPollingNotificationScope } from "./service/secured/shortPollingNotificationSecuredService";
|
|
63
|
+
import { SettingsEntity } from "./data/Settings";
|
|
64
|
+
import { ConnectorEntity } from "./data/Connector";
|
|
65
|
+
import { IntegrationEntity } from "./data/Integration";
|
|
66
|
+
import { DashboardKey, DashboardStructureEntity, DashboardType, DashboardWidgetEntity } from "./data/dashboard/DashboardStructure";
|
|
67
|
+
import { ContactMatchingType, CRMSettingsEntity, CRMSettingsSyncEntity } from './data/CRMSettings';
|
|
68
|
+
import { HelpDataEntity, HelpEntity } from "./data/Help";
|
|
69
|
+
import { LoginProviderEntity } from "./data/LoginProvider";
|
|
70
|
+
import { WidgetFormFieldsAPIProperties } from "./service/secured/widgetFormSecuredService";
|
|
71
|
+
import { ConferenceSessionEntity, ConferenceSessionSearchEntity, ConferenceSessionSecuredEntity, ConferenceSessionsSearchBodyEntity, ConferenceSessionsSearchEntity } from "./data/conference/Session";
|
|
72
|
+
import { ConferenceRegistrationEntity, ConferenceRegistrationPublicEntity } from "./data/conference/Registration";
|
|
73
|
+
import { ConferenceRegistrationCancelEntity, ConferenceRegistrationCancelPublicEntity, ConferenceRegistrationCancelSecuredEntity } from "./data/conference/RegistrationCancel";
|
|
74
|
+
import { ConferenceClientEntity } from "./data/conference/RegistrationClient";
|
|
75
|
+
import { ConferenceFormEntity } from "./data/conference/ConferenceForm";
|
|
76
|
+
import { ConferenceSpeakerEntity, ConferenceSpeakerSecuredEntity } from "./data/conference/ConferenceSpeaker";
|
|
77
|
+
import { ConferenceInviteeEntity, ConferenceInviteeSecuredEntity } from "./data/conference/ConferenceInvitee";
|
|
78
|
+
import { ConferenceSubscriptionRulesEntity } from "./data/conference/ConferenceSubscriptionRules";
|
|
79
|
+
import { ConferenceMergedTagEntity, ConferenceTagEntity, ConferenceTagSecuredEntity } from "./data/conference/ConferenceTag";
|
|
80
|
+
import { ConferenceLocationEntity } from "./data/conference/ConferenceLocation";
|
|
81
|
+
import { ConferenceRegistrationResponseEntity, PrivacyConsentEntity, WidgetEntity } from "./data/conference/Widget";
|
|
82
|
+
import { LoginRealmEntity } from "./data/LoginRealm";
|
|
83
|
+
import { NotificationEntity } from "./data/Notification";
|
|
84
|
+
export { AgendizeApi } from './agendizeApi';
|
|
85
|
+
export { QUERY_TYPE } from '@/repository';
|
|
86
|
+
export * from './utils/logger';
|
|
87
|
+
export { AccountSettingsEntity, AclEntity, ProfileSettingsEntity, CalendarSettingsEntity, CalendarTeamEntity, AddressEntity, ImageEntity, CalendarEntity, ServiceTypeEntity, ContactEntity, ContactPhoneNumberEntity, ContactEmailAddressEntity, ContactAdditionalFieldEntity, ContactTagEntity, ContactAdvancedSearchEntity, type EventEntity, EventSecuredEntity, EventPublicEntity, EventType, EventStatus, FormItemEntity, FormValueEntity, FormResultStatusEntity, FORM_FILE_MAX_SIZE, FORM_FILE_EXTENSIONS, EventUpdateEntity, ApiErrors, AgendizeError, UserEntity, CalendarCompanyEntity, CalendarWorkingDayEntity, CalendarWorkingHourEntity, SettingsWorkingDayEntity, SettingsWorkingHoursEntity, SettingsPeriodWorkingEntity, SettingsPeriodWorkingDayEntity, FreeSlotItemSecuredEntity, PrivacyPolicyEntity, ServiceResourceEntity, StaffFormsEntity, RightsEntity, type SchedulingRight, type SettingsRight, type RightObject, type ReportRight, type QueueRight, type FormRight, type ClientRight, type WorkflowRight, type WorkingPlanningRight, type ConferenceRight, type PlanningRight, GlobalRight, CompanySchedulingRightsEntity, SchedulingRightsEntity, ActivityEntity, NoteEntity, ShortPollingNotificationEntity, NotificationStatusEntity, BrowserStorage, StorageKeys, BrowserStorageItemValue, EmployeeEntity, QueueRegistrationStatus, ResultStatusValues, ShortPollingNotificationEvent, ShortPollingNotificationReport, AppointmentActivityEntity, AppointmentUpdateStaffActivityEntity, AppointmentUpdateFormActivityEntity, AppointmentDeletionActivityEntity, AppointmentCreationActivityEntity, AppointmentUpdateDatesActivityEntity, AppointmentUpdateEndActivityEntity, AppointmentUpdateLocationActivityEntity, AppointmentUpdateNoteActivityEntity, AppointmentUpdateResourceActivityEntity, AppointmentUpdateServiceActivityEntity, AppointmentUpdateStartActivityEntity, AppointmentUpdateStatusActivityEntity, AppointmentUpdateClientActivityEntity, AppointmentChangeTypes, AppointmentActivityType, AppointmentActivitySourceType, TextMessageNotificationActivityEntity, EmailNotificationActivityEntity, FormResultActivityEntity, NoteActivityEntity, ConsentActivityEntity, CommonEnum, Gender, Title, Language, NotificationType, AdditionalFieldsEntity, WidgetUrlCipherEntity, DayProperty, PlanningEntity, PlanningWeekEntity, PlanningDayEntity, PlanningHourEntity, PromoteFieldEntity, PromoteFieldKey, EventFields, ReportsEntity, ReportDashboardEntity, ReportDashboardFilter, CompanyPerformanceEntity, UserSchedulesEntity, CompanyScheduleEntity, ScheduleWorkingDayEntity, ScheduleWorkingHourEntity, valuePromoteFieldFromContact, applyValueToField, getDefaultEventField, jsDateToYYYYMMDD, LogEntity, Action, ActionType, WorkingPlanningEntity, WorkingPlanningDayEntity, StaffWorkingPlanningEntity, OccupancyRateEntity, PeriodWithOccupancy, ChangelogEntity, ChangeEntity, ReportingExportResponseEntity, ReportingExportBodyEntity, ExportStatus, ShortenerEntity, type ConferenceEntity, ConferenceSecuredEntity, ConferenceLocationEntity, type ConferenceTagEntity, ConferenceTagSecuredEntity, ConferenceSubscriptionRulesEntity, type ConferenceSessionEntity, ConferenceSessionSecuredEntity, type ConferenceInviteeEntity, ConferenceInviteeSecuredEntity, type ConferenceSpeakerEntity, ConferenceSpeakerSecuredEntity, type ConferenceFormEntity, type ConferenceRegistrationEntity, ConferenceRegistrationPublicEntity, ConferenceClientEntity, ConferenceRegistrationResponseEntity, PrivacyConsentEntity, AccountLightEntity, ConferenceLightEntity, ConferenceMergedTagEntity, WidgetEntity, getApiErrorValueFromName, type ConferenceRegistrationCancelEntity, ConferenceRegistrationCancelSecuredEntity, ConferenceRegistrationCancelPublicEntity, CustomStatusEntity, ConferenceSessionSearchEntity, ConferenceSessionsSearchEntity, ConferenceSessionsSearchBodyEntity, EventSearchEntity, EventSearchLocationEntity, EventSearchCompanyEntity, EventSearchContactEntity, EventSearchServiceEntity, EventSearchStaffEntity, EventSearchPageEntity, EventSearchBodyEntity, EventSearchStatusEntity, type EventSearchOption, EventSearchBodyCompanyEntity, EventSearchConflictEntity, EventSearchConflictReason, EventSearchConflictSource, ShortPollingNotificationScope, SettingsEntity, IntegrationEntity, ConnectorEntity, DashboardStructureEntity, DashboardWidgetEntity, DashboardType, DashboardKey, ContactMatchingType, CRMSettingsEntity, CRMSettingsSyncEntity, HelpEntity, HelpDataEntity, LoginProviderEntity, WidgetUrlCipherInputEntity, WidgetFormEntity, WidgetFormFieldsAPIProperties, type CompanyEntity, CompanySecuredEntity, CompanyPublicEntity, type StaffEntity, StaffSecuredEntity, StaffPublicEntity, type StaffGroupEntity, StaffGroupSecuredEntity, StaffGroupPublicEntity, type ServiceEntity, ServiceSecuredEntity, ServicePublicEntity, type ServicesListEntity, ServicesListSecuredEntity, ServicesListPublicEntity, type ServiceGroupEntity, ServiceGroupPublicEntity, ServiceGroupSecuredEntity, type QueueEntity, QueueSecuredEntity, QueuePublicEntity, type QueueRegistrationEntity, QueueRegistrationSecuredEntity, QueueRegistrationPublicEntity, type QueueRegistrationResultEntity, QueueRegistrationResultSecuredEntity, QueueRegistrationResultPublicEntity, type FormBuilderEntity, FormBuilderPublicEntity, FormBuilderSecuredEntity, type FormResultEntity, FormResultPublicEntity, FormResultSecuredEntity, type AccountEntity, AccountPublicEntity, AccountSecuredEntity, type FreeSlotEntity, FreeSlotSecuredEntity, FreeSlotPublicEntity, FreeSlotMapPublicEntity, type FreeSlotsRecord, FreeSlotsFilterOptions, LinkEntity, WhiteLabelSettingsPublicEntity, PagePublicEntity, type WhiteLabelRight, LoginRealmEntity, WidgetError, NotificationEntity };
|
|
88
|
+
export type { SecuredEntity, PublicEntity } from './data/Common';
|
|
89
|
+
export { BodyEntity, SecuredBodyEntity, PublicBodyEntity } from './data/Common';
|
|
90
|
+
export type { ResultStatus } from "./data/FormResultStatus";
|
|
91
|
+
export type { ShortPollingNotificationType, ShortPollingNotificationSubType } from "./data/ShortPollingNotification";
|