@agendize/js-agendize-api 1.38.0 → 1.40.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 +8 -0
- package/dist/data/CompanySettings.d.ts +28 -0
- package/dist/data/Event.d.ts +2 -1
- package/dist/data/ReportingExportBody.d.ts +2 -0
- package/dist/data/Staff.d.ts +7 -0
- package/dist/data/StaffActions.d.ts +21 -0
- package/dist/data/Vacation.d.ts +38 -0
- package/dist/db/index.d.ts +1 -0
- package/dist/db/vacationDb.d.ts +26 -0
- package/dist/index.d.ts +3 -1
- package/dist/js-agendize-api.es.js +4921 -4605
- package/dist/repository/index.d.ts +1 -0
- package/dist/repository/secured/staffActionsSecuredRepository.d.ts +23 -0
- package/dist/repository/secured/vacationSecuredRepository.d.ts +29 -0
- package/dist/service/secured/staffActionsSecuredService.d.ts +6 -0
- package/dist/service/secured/vacationSecuredService.d.ts +6 -0
- package/package.json +1 -1
package/dist/agendizeApi.d.ts
CHANGED
|
@@ -80,6 +80,8 @@ import { ShareLinkEntity, ShareLinkResponseItemEntity } from "@/data/action/Shar
|
|
|
80
80
|
import { AvailabilityFilterOptions } from "@/data/scheduling/Availabilities";
|
|
81
81
|
import { ClientMessageEntity } from "@/data/crm/ClientMessage";
|
|
82
82
|
import { AttendeeSecuredEntity } from "@/data/Attendee";
|
|
83
|
+
import { StaffCalendarSyncInvitationEntity, StaffCalendarSyncRevokeEntity } from "@/data/StaffActions";
|
|
84
|
+
import { VacationEntity, VacationsFilter } from "@/data/Vacation";
|
|
83
85
|
export interface ApiOptions {
|
|
84
86
|
baseURL: string;
|
|
85
87
|
widgetBaseURL: string;
|
|
@@ -172,6 +174,8 @@ export declare class AgendizeApi {
|
|
|
172
174
|
private shareLinkSecuredRepository;
|
|
173
175
|
private clientMessageSecuredRepository;
|
|
174
176
|
private appointmentAttendeeSecuredRepository;
|
|
177
|
+
private staffActionsSecuredRepository;
|
|
178
|
+
private vacationSecuredRepository;
|
|
175
179
|
private indexedDb;
|
|
176
180
|
private companyIdsAccount;
|
|
177
181
|
private formIdsAccount;
|
|
@@ -572,4 +576,8 @@ export declare class AgendizeApi {
|
|
|
572
576
|
getAvailabilities(organisationEmail: string, serviceIdOrExternalId: string, filter: AvailabilityFilterOptions): Promise<QUERY_RESULT<import("@/data/scheduling/Availabilities").AvailabilityEntity>>;
|
|
573
577
|
shareALink(organisationEmail: string, shareLinkQuery: ShareLinkEntity): Promise<ShareLinkResponseItemEntity[]>;
|
|
574
578
|
shareALinkByTextMessage(organisationEmail: string, shareLinkQuery: ShareLinkEntity): Promise<ShareLinkResponseItemEntity[]>;
|
|
579
|
+
sendStaffCalendarSyncInvitation(organisationEmail: string, companyId: string, staffId: string, entity: StaffCalendarSyncInvitationEntity): Promise<void>;
|
|
580
|
+
revokeStaffCalendarSync(organisationEmail: string, companyId: string, staffId: string, entity: StaffCalendarSyncRevokeEntity): Promise<void>;
|
|
581
|
+
createVacations(organisationEmail: string, vacations: VacationEntity[]): Promise<VacationEntity[]>;
|
|
582
|
+
getVacations(organisationEmail: string, filter: VacationsFilter, mode?: QUERY_TYPE): Promise<VacationEntity[]>;
|
|
575
583
|
}
|
|
@@ -2,6 +2,7 @@ export declare class CompanySettingsEntity {
|
|
|
2
2
|
id: string;
|
|
3
3
|
widget?: CompanySettingsWidgetEntity;
|
|
4
4
|
rules: CompanySettingsRulesEntity;
|
|
5
|
+
calendarSync: CompanySettingsCalendarSyncEntity;
|
|
5
6
|
constructor();
|
|
6
7
|
static fromCompanySettingsDto(dto: CompanySettingsDto, companyId: string): CompanySettingsEntity;
|
|
7
8
|
static toCompanySettingsDto(entity: CompanySettingsEntity): CompanySettingsDto;
|
|
@@ -17,9 +18,24 @@ export declare class CompanySettingsWidgetEntity {
|
|
|
17
18
|
static fromCompanySettingsWidgetDto(dto: CompanySettingsWidgetDto): CompanySettingsWidgetEntity;
|
|
18
19
|
static toCompanySettingsWidgetDto(entity: CompanySettingsWidgetEntity): CompanySettingsWidgetDto;
|
|
19
20
|
}
|
|
21
|
+
export declare class CompanySettingsCalendarSyncEntity {
|
|
22
|
+
googleCalendar: {
|
|
23
|
+
enabled: boolean;
|
|
24
|
+
};
|
|
25
|
+
liveCalendar: {
|
|
26
|
+
"office365CalendarEnabled": boolean;
|
|
27
|
+
outlookCalendarEnabled: boolean;
|
|
28
|
+
};
|
|
29
|
+
bidirectionalSync: {
|
|
30
|
+
enabled: boolean;
|
|
31
|
+
};
|
|
32
|
+
static fromCompanySettingsCalendarSyncDto(dto: CompanySettingsCalendarSyncDto): CompanySettingsCalendarSyncEntity;
|
|
33
|
+
static toCompanySettingsCalendarSyncDto(entity: CompanySettingsCalendarSyncEntity): CompanySettingsCalendarSyncDto;
|
|
34
|
+
}
|
|
20
35
|
export declare class CompanySettingsDto {
|
|
21
36
|
rules?: CompanySettingsRulesDto;
|
|
22
37
|
widget?: CompanySettingsWidgetDto;
|
|
38
|
+
calendarSync?: CompanySettingsCalendarSyncDto;
|
|
23
39
|
}
|
|
24
40
|
export declare class CompanySettingsRulesDto {
|
|
25
41
|
maxAttendeesPerAppointment?: number;
|
|
@@ -27,3 +43,15 @@ export declare class CompanySettingsRulesDto {
|
|
|
27
43
|
export declare class CompanySettingsWidgetDto {
|
|
28
44
|
displayCompanyDetails?: boolean;
|
|
29
45
|
}
|
|
46
|
+
export declare class CompanySettingsCalendarSyncDto {
|
|
47
|
+
googleCalendar: {
|
|
48
|
+
enabled: boolean;
|
|
49
|
+
};
|
|
50
|
+
liveCalendar: {
|
|
51
|
+
"office365CalendarEnabled": boolean;
|
|
52
|
+
outlookCalendarEnabled: boolean;
|
|
53
|
+
};
|
|
54
|
+
bidirectionalSync: {
|
|
55
|
+
enabled: boolean;
|
|
56
|
+
};
|
|
57
|
+
}
|
package/dist/data/Event.d.ts
CHANGED
|
@@ -78,6 +78,7 @@ export declare class ReportingExportBodyFieldClientEntity {
|
|
|
78
78
|
email?: boolean;
|
|
79
79
|
phone?: boolean;
|
|
80
80
|
id?: boolean;
|
|
81
|
+
externalId?: boolean;
|
|
81
82
|
constructor();
|
|
82
83
|
static toReportingExportBodyFieldClientDto(entity: ReportingExportBodyFieldClientEntity): ReportingExportBodyFieldClientDto;
|
|
83
84
|
}
|
|
@@ -161,6 +162,7 @@ export declare class ReportingExportBodyFieldClientDto {
|
|
|
161
162
|
email?: boolean;
|
|
162
163
|
phone?: boolean;
|
|
163
164
|
id?: boolean;
|
|
165
|
+
externalId?: boolean;
|
|
164
166
|
}
|
|
165
167
|
export declare class ReportingExportBodyFieldAppointmentDto {
|
|
166
168
|
start?: boolean;
|
package/dist/data/Staff.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import { ImageEntity } from "./Image";
|
|
|
17
17
|
import { SettingsPeriodWorkingDto, SettingsPeriodWorkingEntity, SettingsWorkingDayDto, SettingsWorkingDayEntity } from "./WorkingHours";
|
|
18
18
|
import { FormItemEntity } from "./Form";
|
|
19
19
|
import { BodyEntityInterface, EntityType, PublicBodyEntity, SecuredBodyEntity, SecuredEntity } from "@/data/Common";
|
|
20
|
+
import { CalendarSyncType } from "@/data/StaffActions";
|
|
20
21
|
export type StaffEntity<Type = EntityType> = (Type extends SecuredEntity ? StaffSecuredEntity : StaffPublicEntity) & BodyEntityInterface;
|
|
21
22
|
export declare class StaffPublicEntity extends PublicBodyEntity {
|
|
22
23
|
id: string;
|
|
@@ -71,6 +72,9 @@ export declare class StaffSecuredEntity extends SecuredBodyEntity {
|
|
|
71
72
|
mineType: string;
|
|
72
73
|
url: string;
|
|
73
74
|
};
|
|
75
|
+
connectors?: {
|
|
76
|
+
name: CalendarSyncType;
|
|
77
|
+
}[];
|
|
74
78
|
fullName(): string;
|
|
75
79
|
static fromStaffDto(dto: StaffSecuredDto): StaffSecuredEntity;
|
|
76
80
|
static toStaffDto(entity: StaffSecuredEntity): StaffSecuredDto;
|
|
@@ -112,4 +116,7 @@ export declare class StaffSecuredDto {
|
|
|
112
116
|
mineType: string;
|
|
113
117
|
url: string;
|
|
114
118
|
};
|
|
119
|
+
connectors?: {
|
|
120
|
+
name: CalendarSyncType;
|
|
121
|
+
}[];
|
|
115
122
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare enum CalendarSyncType {
|
|
2
|
+
GOOGLE = "googleCalendar",
|
|
3
|
+
OUTLOOK = "outlookCalendar",
|
|
4
|
+
OFFICE365 = "office365Calendar"
|
|
5
|
+
}
|
|
6
|
+
export declare class StaffCalendarSyncInvitationEntity {
|
|
7
|
+
emailAddress: string;
|
|
8
|
+
html: string;
|
|
9
|
+
static toDto(entity: StaffCalendarSyncInvitationEntity): StaffCalendarSyncInvitationDto;
|
|
10
|
+
}
|
|
11
|
+
export declare class StaffCalendarSyncInvitationDto {
|
|
12
|
+
emailAddress: string;
|
|
13
|
+
html: string;
|
|
14
|
+
}
|
|
15
|
+
export declare class StaffCalendarSyncRevokeEntity {
|
|
16
|
+
calendarServices: CalendarSyncType[];
|
|
17
|
+
static toDto(entity: StaffCalendarSyncRevokeEntity): StaffCalendarSyncRevokeDto;
|
|
18
|
+
}
|
|
19
|
+
export declare class StaffCalendarSyncRevokeDto {
|
|
20
|
+
calendarServices: CalendarSyncType[];
|
|
21
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export interface VacationsFilter {
|
|
2
|
+
start: Date;
|
|
3
|
+
end: Date;
|
|
4
|
+
companyIds?: string[];
|
|
5
|
+
staffIds?: string[];
|
|
6
|
+
}
|
|
7
|
+
export declare class VacationContainerEntity {
|
|
8
|
+
items: VacationEntity[];
|
|
9
|
+
static toDto(vacations: VacationContainerEntity): VacationContainerDto;
|
|
10
|
+
static fromDto(dto: VacationContainerDto): VacationContainerEntity;
|
|
11
|
+
}
|
|
12
|
+
export declare class VacationEntity {
|
|
13
|
+
companyId: string;
|
|
14
|
+
staffId: string;
|
|
15
|
+
vacationSlots: VacationSlotEntity[];
|
|
16
|
+
static toDto(entity: VacationEntity): VacationDto;
|
|
17
|
+
static fromDto(dto: VacationDto): VacationEntity;
|
|
18
|
+
}
|
|
19
|
+
export declare class VacationSlotEntity {
|
|
20
|
+
id: string;
|
|
21
|
+
start: Date;
|
|
22
|
+
end: Date;
|
|
23
|
+
static toDto(entity: VacationSlotEntity): VacationSlotDto;
|
|
24
|
+
static fromDto(dto: VacationSlotDto): VacationSlotEntity;
|
|
25
|
+
}
|
|
26
|
+
export declare class VacationContainerDto {
|
|
27
|
+
items: VacationDto[];
|
|
28
|
+
}
|
|
29
|
+
export declare class VacationSlotDto {
|
|
30
|
+
id: string;
|
|
31
|
+
start: string;
|
|
32
|
+
end: string;
|
|
33
|
+
}
|
|
34
|
+
export declare class VacationDto {
|
|
35
|
+
companyId: string;
|
|
36
|
+
staffId: string;
|
|
37
|
+
vacationSlots: VacationSlotDto[];
|
|
38
|
+
}
|
package/dist/db/index.d.ts
CHANGED
|
@@ -53,6 +53,7 @@ export declare const TABLE_CRM_SETTINGS: string;
|
|
|
53
53
|
export declare const TABLE_DASHBOARD_STRUCTURE: string;
|
|
54
54
|
export declare const TABLE_COMPANY_SETTINGS: string;
|
|
55
55
|
export declare const TABLE_CLIENT_MESSAGE: string;
|
|
56
|
+
export declare const TABLE_VACATION: string;
|
|
56
57
|
export declare const TABLE_SETTINGS: string;
|
|
57
58
|
export declare class IndexedDb {
|
|
58
59
|
private database;
|
|
@@ -0,0 +1,26 @@
|
|
|
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 { VacationEntity } from '@/data/Vacation';
|
|
17
|
+
import { IndexedDb } from '@/db';
|
|
18
|
+
export declare class VacationDb {
|
|
19
|
+
private indexedDb;
|
|
20
|
+
constructor(indexedDb: IndexedDb);
|
|
21
|
+
getAllVacations(companyIds?: string[], staffIds?: string[]): Promise<VacationEntity[]>;
|
|
22
|
+
getById(id: string): Promise<VacationEntity>;
|
|
23
|
+
saveAllVacations(objects: VacationEntity[]): Promise<void>;
|
|
24
|
+
deleteById(id: string): Promise<void>;
|
|
25
|
+
drop(): Promise<void>;
|
|
26
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -90,10 +90,12 @@ import { PermissionEntity, PermissionRightEntity } from "@/data/account/Permissi
|
|
|
90
90
|
import { ShareLinkEntity, ShareLinkRecipientEntity, ShareLinkResponseEntity, ShareLinkResponseItemEntity } from "@/data/action/ShareLink";
|
|
91
91
|
import { ClientMessageEntity } from "@/data/crm/ClientMessage";
|
|
92
92
|
import { AttendeeSecuredEntity } from "@/data/Attendee";
|
|
93
|
+
import { StaffCalendarSyncInvitationEntity, StaffCalendarSyncRevokeEntity, CalendarSyncType } from "@/data/StaffActions";
|
|
94
|
+
import { VacationEntity, VacationSlotEntity } from "@/data/Vacation";
|
|
93
95
|
export { AgendizeApi } from './agendizeApi';
|
|
94
96
|
export { QUERY_TYPE } from '@/repository';
|
|
95
97
|
export * from './utils/logger';
|
|
96
|
-
export { AttendeeSecuredEntity, setLang, AccountSettingsEntity, AclEntity, ProfileSettingsEntity, CalendarSettingsEntity, CalendarTeamEntity, AddressEntity, ImageEntity, CalendarEntity, ServiceTypeEntity, ContactEntity, ContactStatus, ContactPhoneNumberEntity, ContactEmailAddressEntity, ContactAdditionalFieldEntity, ContactTagEntity, ContactAdvancedSearchEntity, type EventEntity, EventSecuredEntity, EventPublicEntity, type LocationType, type LocationValue, EventType, EventStatus, FormItemEntity, FormValueEntity, FormResultStatusEntity, FORM_FILE_MAX_SIZE, FORM_FILE_EXTENSIONS, EventUpdateEntity, ApiErrors, AgendizeError, ErrorDto, 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, type DashboardRight, GlobalRight, CompanySchedulingRightsEntity, SchedulingRightsEntity, ActivityEntity, NoteEntity, ShortPollingNotificationEntity, ShortPollingNotificationPingEntity, 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, MarketingTextMessageNotificationActivityEntity, MarketingEmailNotificationActivityEntity, FormResultActivityEntity, NoteActivityEntity, ConsentActivityEntity, ConferenceRegistrationActivityEntity, 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, type ConferenceTagEntity, ConferenceTagSecuredEntity, ConferenceSubscriptionRulesEntity, type ConferenceSessionEntity, ConferenceSessionSecuredEntity, type ConferenceInviteeEntity, ConferenceInviteeSecuredEntity, type ConferenceSpeakerEntity, ConferenceSpeakerSecuredEntity, type ConferenceFormEntity, ConferenceFormPublicEntity, type ConferenceRegistrationEntity, ConferenceRegistrationPublicEntity, ConferenceSessionPublicEntity, ConferencePublicEntity, ConferenceClientEntity, ConferenceRegistrationResponseEntity, PrivacyConsentEntity, AccountLightEntity, ConferenceLightEntity, ConferenceMergedTagEntity, WidgetEntity, getApiErrorValueFromName, type ConferenceRegistrationCancelEntity, ConferenceRegistrationCancelSecuredEntity, ConferenceRegistrationCancelPublicEntity, type CustomStatusType, CustomStatusEntity, ConferenceSessionSearchEntity, ConferenceSessionsSearchEntity, ConferenceSessionsSearchBodyEntity, EventSearchEntity, EventSearchLocationEntity, EventSearchCompanyEntity, EventSearchContactEntity, EventSearchServiceEntity, EventSearchStaffEntity, EventSearchPageEntity, EventSearchBodyEntity, EventSearchStatusEntity, type EventSearchOption, EventSearchBodyCompanyEntity, EventSearchConflictEntity, EventSearchConflictReason, EventSearchConflictSource, EventStatusId, 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, AccountWidgetFiltersPublicEntity, PagePublicEntity, type WhiteLabelRight, LoginRealmEntity, WidgetError, NotificationEntity, CompanySettingsEntity, CompanySettingsWidgetEntity, PermissionEntity, PermissionRightEntity, AvailabilityEntity, AvailabilityDaySlotEntity, AvailabilityContextEntity, AvailabilityDaysEntity, AvailabilityDaySlotItemEntity, AvailabilityDaySlotItemLocationEntity, AvailabilityFilterOptions, AccountPropertiesEntity, ShareLinkResponseEntity, ShareLinkResponseItemEntity, ShareLinkRecipientEntity, ShareLinkEntity, type ConferenceLocationEntity, type ConferenceLocationSecuredEntity, type ConferenceLocationType, ConferenceLocationValidator, type ConferenceAssignmentEntity, type ConferenceAssignmentSecuredEntity, type ConferenceAssigmentType, ClientMessageEntity };
|
|
98
|
+
export { AttendeeSecuredEntity, setLang, AccountSettingsEntity, AclEntity, ProfileSettingsEntity, CalendarSettingsEntity, CalendarTeamEntity, AddressEntity, ImageEntity, CalendarEntity, ServiceTypeEntity, ContactEntity, ContactStatus, ContactPhoneNumberEntity, ContactEmailAddressEntity, ContactAdditionalFieldEntity, ContactTagEntity, ContactAdvancedSearchEntity, type EventEntity, EventSecuredEntity, EventPublicEntity, type LocationType, type LocationValue, EventType, EventStatus, FormItemEntity, FormValueEntity, FormResultStatusEntity, FORM_FILE_MAX_SIZE, FORM_FILE_EXTENSIONS, EventUpdateEntity, ApiErrors, AgendizeError, ErrorDto, 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, type DashboardRight, GlobalRight, CompanySchedulingRightsEntity, SchedulingRightsEntity, ActivityEntity, NoteEntity, ShortPollingNotificationEntity, ShortPollingNotificationPingEntity, 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, MarketingTextMessageNotificationActivityEntity, MarketingEmailNotificationActivityEntity, FormResultActivityEntity, NoteActivityEntity, ConsentActivityEntity, ConferenceRegistrationActivityEntity, 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, type ConferenceTagEntity, ConferenceTagSecuredEntity, ConferenceSubscriptionRulesEntity, type ConferenceSessionEntity, ConferenceSessionSecuredEntity, type ConferenceInviteeEntity, ConferenceInviteeSecuredEntity, type ConferenceSpeakerEntity, ConferenceSpeakerSecuredEntity, type ConferenceFormEntity, ConferenceFormPublicEntity, type ConferenceRegistrationEntity, ConferenceRegistrationPublicEntity, ConferenceSessionPublicEntity, ConferencePublicEntity, ConferenceClientEntity, ConferenceRegistrationResponseEntity, PrivacyConsentEntity, AccountLightEntity, ConferenceLightEntity, ConferenceMergedTagEntity, WidgetEntity, getApiErrorValueFromName, type ConferenceRegistrationCancelEntity, ConferenceRegistrationCancelSecuredEntity, ConferenceRegistrationCancelPublicEntity, type CustomStatusType, CustomStatusEntity, ConferenceSessionSearchEntity, ConferenceSessionsSearchEntity, ConferenceSessionsSearchBodyEntity, EventSearchEntity, EventSearchLocationEntity, EventSearchCompanyEntity, EventSearchContactEntity, EventSearchServiceEntity, EventSearchStaffEntity, EventSearchPageEntity, EventSearchBodyEntity, EventSearchStatusEntity, type EventSearchOption, EventSearchBodyCompanyEntity, EventSearchConflictEntity, EventSearchConflictReason, EventSearchConflictSource, EventStatusId, 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, AccountWidgetFiltersPublicEntity, PagePublicEntity, type WhiteLabelRight, LoginRealmEntity, WidgetError, NotificationEntity, CompanySettingsEntity, CompanySettingsWidgetEntity, PermissionEntity, PermissionRightEntity, AvailabilityEntity, AvailabilityDaySlotEntity, AvailabilityContextEntity, AvailabilityDaysEntity, AvailabilityDaySlotItemEntity, AvailabilityDaySlotItemLocationEntity, AvailabilityFilterOptions, AccountPropertiesEntity, ShareLinkResponseEntity, ShareLinkResponseItemEntity, ShareLinkRecipientEntity, ShareLinkEntity, type ConferenceLocationEntity, type ConferenceLocationSecuredEntity, type ConferenceLocationType, ConferenceLocationValidator, type ConferenceAssignmentEntity, type ConferenceAssignmentSecuredEntity, type ConferenceAssigmentType, ClientMessageEntity, StaffCalendarSyncInvitationEntity, StaffCalendarSyncRevokeEntity, CalendarSyncType, VacationEntity, VacationSlotEntity };
|
|
97
99
|
export type { SecuredEntity, PublicEntity } from './data/Common';
|
|
98
100
|
export { BodyEntity, SecuredBodyEntity, PublicBodyEntity } from './data/Common';
|
|
99
101
|
export type { ResultStatus } from "./data/FormResultStatus";
|