@agendize/js-agendize-api 1.40.0 → 1.41.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.
@@ -267,12 +267,12 @@ export declare class AgendizeApi {
267
267
  local: boolean;
268
268
  }>;
269
269
  deleteStaff(organisation: string, companyId: string, staffId: string): Promise<void>;
270
- getAllServices(companyId: string, account?: string, mode?: QUERY_TYPE): Promise<{
270
+ getAllServices(companyId: string, account?: string, showDeleted?: boolean, mode?: QUERY_TYPE): Promise<{
271
271
  results: ServiceEntity[] | undefined;
272
272
  local: boolean;
273
273
  }>;
274
274
  getAllServicesAndGroups(accountId?: string, filterOptions?: ServicesFilterOptions): Promise<ServicesListEntity | undefined>;
275
- getServiceById(companyId: string, serviceId: string, account?: string, mode?: QUERY_TYPE): Promise<{
275
+ getServiceById(companyId: string, serviceId: string, account?: string, showDeleted?: boolean, mode?: QUERY_TYPE): Promise<{
276
276
  result: ServiceEntity | undefined;
277
277
  local: boolean;
278
278
  }>;
@@ -20,7 +20,8 @@ export declare enum StorageKeys {
20
20
  USERS_COLORS = "usersColors",
21
21
  REALM = "realm",
22
22
  API_BASE_URI = "api_base_uri",
23
- DARK_MODE_ENABLED = "darkModeEnabled"
23
+ DARK_MODE_ENABLED = "darkModeEnabled",
24
+ SETTINGS_COMPANY_LIST_COLUMNS = "settingsCompanyListColumns"
24
25
  }
25
26
  export declare class BrowserStorage {
26
27
  private readonly logger?;
@@ -97,6 +97,7 @@ export declare class AccountSecuredEntity extends SecuredBodyEntity {
97
97
  directories?: string[];
98
98
  help?: HelpEntity;
99
99
  accountSettings?: AccountSettingsEntity;
100
+ deploymentEnabled: boolean;
100
101
  constructor();
101
102
  static fromAccountDto(dto: AccountDto): AccountSecuredEntity;
102
103
  static fromAccountDto2(dto: AccountDto): AccountSecuredEntity;
@@ -146,6 +147,7 @@ export declare class AccountSettingsEntity {
146
147
  primaryColor?: string;
147
148
  companyTemplate?: string;
148
149
  favoriteCompany?: string;
150
+ languages?: string[];
149
151
  }
150
152
  export declare class AccountDto {
151
153
  id: string;
@@ -217,8 +219,10 @@ export declare class AccountDto {
217
219
  primaryColor?: string;
218
220
  companyTemplate?: string;
219
221
  favoriteCompany?: string;
222
+ languages?: string[];
220
223
  };
221
224
  defaultAccount?: string;
222
225
  directories?: string[];
226
+ deploymentEnabled?: boolean;
223
227
  help?: HelpDto;
224
228
  }
@@ -28,6 +28,7 @@ export declare enum ApiErrors {
28
28
  UPDATE_OWNER_PERMISSION = 201,
29
29
  MAX_USER_REACHED = 202,
30
30
  USER_ACCESS_FOUND = 203,
31
+ NAME_ALREADY_USED = 300,
31
32
  STAFF_NOT_AVAILABLE = 1000,
32
33
  MAX_APPOINTMENT_DAILY = 1001,
33
34
  MAX_APPOINTMENT_WEEKLY = 1002,
@@ -40,6 +41,7 @@ export declare enum ApiErrors {
40
41
  CONFERENCE_SESSION_FULL = 4000,
41
42
  ERROR_NO_STAFF = 2300,
42
43
  ERROR_CLIENT_LOCKED = 2303,
44
+ DEPLOYMENT_SERVICE_ALREADY_AFFECTED = 21000,
43
45
  CONFERENCE_INVALID_CONFERENCE = 26001,
44
46
  CONFERENCE_INVALID_SESSION = 26002,
45
47
  CONFERENCE_INVALID_NUMBER_OF_SEATS = 26003,
@@ -61,6 +61,11 @@ export declare class RightsEntity {
61
61
  conference?: ConferenceRight;
62
62
  dashboard?: DashboardRight;
63
63
  whiteLabel?: WhiteLabelRight;
64
+ user?: UserRight;
65
+ account?: AccountRight;
66
+ menu?: MenuRight;
67
+ privacy?: PrivacyRight;
68
+ developer?: DeveloperRight;
64
69
  static fromRightsDto(dto: RightsDto): RightsEntity;
65
70
  }
66
71
  export interface RightObject {
@@ -70,8 +75,12 @@ export interface RightObject {
70
75
  export interface SchedulingRight {
71
76
  appointment: string;
72
77
  staffAppointment: string;
78
+ dailyView: string;
79
+ weeklyView: string;
80
+ monthlyView: string;
73
81
  }
74
82
  export interface SettingsRight {
83
+ general: string;
75
84
  company: string;
76
85
  service: string;
77
86
  staff: string;
@@ -79,11 +88,35 @@ export interface SettingsRight {
79
88
  staffCustomPeriod: string;
80
89
  process: string;
81
90
  widget: string;
91
+ widgetForm: string;
82
92
  notifications: string;
83
93
  payments: string;
84
94
  messages: string;
85
95
  calendars: string;
86
96
  crm: string;
97
+ deployment: string;
98
+ dashboard: string;
99
+ reminders: string;
100
+ manager: string;
101
+ feedback: string;
102
+ items: string;
103
+ itemsService: string;
104
+ itemsServiceStaff: string;
105
+ itemsStaffService: string;
106
+ rules: string;
107
+ activities: string;
108
+ visio: string;
109
+ sms: string;
110
+ staffRole: string;
111
+ loginList: string;
112
+ paymentProviders: string;
113
+ eventStatusType: string;
114
+ groupExtId: string;
115
+ franceConnectAuth: string;
116
+ facebookAuth: string;
117
+ googleAuth: string;
118
+ myAgendizeAuth: string;
119
+ mConnectAuth: string;
87
120
  }
88
121
  export interface ReportRight {
89
122
  report: string;
@@ -93,9 +126,13 @@ export interface QueueRight {
93
126
  }
94
127
  export interface FormRight {
95
128
  form: string;
129
+ formRouting: string;
130
+ validationProviders: string;
96
131
  }
97
132
  export interface ClientRight {
98
133
  client: string;
134
+ marketingEmail: string;
135
+ marketingSMS: string;
99
136
  }
100
137
  export interface WorkflowRight {
101
138
  workflow: string;
@@ -122,6 +159,36 @@ export interface WhiteLabelRight {
122
159
  logo: string;
123
160
  favicon: string;
124
161
  }
162
+ export interface UserRight {
163
+ user: string;
164
+ userPermissions: string;
165
+ connectors: string;
166
+ }
167
+ export interface AccountRight {
168
+ account: string;
169
+ accessPermissions: string;
170
+ paymentBudget: string;
171
+ }
172
+ export interface MenuRight {
173
+ support: string;
174
+ logout: string;
175
+ privacyPolicy: string;
176
+ termsOfService: string;
177
+ about: string;
178
+ developers: string;
179
+ contactUs: string;
180
+ }
181
+ export interface PrivacyRight {
182
+ privacy: string;
183
+ }
184
+ export interface DeveloperRight {
185
+ applications: string;
186
+ watchers: string;
187
+ watcherLogs: string;
188
+ cryptoKeys: string;
189
+ apiLogs: string;
190
+ certificates: string;
191
+ }
125
192
  export declare class RightsDto {
126
193
  id: string;
127
194
  object?: RightObject;
@@ -137,4 +204,9 @@ export declare class RightsDto {
137
204
  conference?: ConferenceRight;
138
205
  whiteLabel?: WhiteLabelRight;
139
206
  dashboard?: DashboardRight;
207
+ developer?: DeveloperRight;
208
+ user?: UserRight;
209
+ account?: AccountRight;
210
+ menu?: MenuRight;
211
+ privacy?: PrivacyRight;
140
212
  }
@@ -107,7 +107,7 @@ export declare class ServiceSecuredEntity extends SecuredBodyEntity {
107
107
  color?: string;
108
108
  checkFilterColor?: string;
109
109
  type?: ServiceTypeEntity;
110
- availability?: 'public' | 'backoffice' | 'hidden' | 'disabled';
110
+ availability?: 'public' | 'backoffice' | 'hidden' | 'disabled' | 'waitDelete';
111
111
  minAppointmentDate?: string;
112
112
  maxAppointmentDate?: string;
113
113
  appointmentDateScope?: string;
@@ -181,7 +181,7 @@ export declare class ServiceSecuredDto {
181
181
  id: string;
182
182
  }[];
183
183
  color?: string;
184
- availability?: 'public' | 'backoffice' | 'hidden' | 'disabled';
184
+ availability?: 'public' | 'backoffice' | 'hidden' | 'disabled' | 'waitDelete';
185
185
  resource?: {
186
186
  id: string;
187
187
  name?: string;
package/dist/index.d.ts CHANGED
@@ -8,7 +8,7 @@ import { CompanyEntity, CompanyPublicEntity, CompanySecuredEntity } from './data
8
8
  import { StaffEntity, StaffPublicEntity, StaffSecuredEntity } from './data/Staff';
9
9
  import { LocationType, LocationValue, ServiceEntity, ServicePublicEntity, ServiceSecuredEntity, ServicesListEntity, ServicesListPublicEntity, ServicesListSecuredEntity, ServiceTypeEntity } from './data/Service';
10
10
  import { ServiceResourceEntity } from './data/ServiceResource';
11
- import { AdditionalFieldsEntity, ContactAdditionalFieldEntity, ContactAdvancedSearchEntity, ContactEmailAddressEntity, ContactEntity, ContactPhoneNumberEntity, ContactTagEntity, PromoteFieldEntity, ContactStatus } from './data/Contact';
11
+ import { AdditionalFieldsEntity, ContactAdditionalFieldEntity, ContactAdvancedSearchEntity, ContactEmailAddressEntity, ContactEntity, ContactPhoneNumberEntity, ContactStatus, ContactTagEntity, PromoteFieldEntity } from './data/Contact';
12
12
  import { EventEntity, EventPublicEntity, EventSecuredEntity, EventStatus, EventType } from './data/Event';
13
13
  import { EventSearchBodyCompanyEntity, EventSearchBodyEntity, EventSearchCompanyEntity, EventSearchConflictEntity, EventSearchConflictReason, EventSearchConflictSource, EventSearchContactEntity, EventSearchEntity, EventSearchLocationEntity, EventSearchOption, EventSearchPageEntity, EventSearchServiceEntity, EventSearchStaffEntity, EventSearchStatusEntity, EventStatusId } from './data/EventSearch';
14
14
  import { UserEntity } from './data/User';
@@ -24,7 +24,7 @@ import { PlanningHourEntity } from './data/planning/PlanningHour';
24
24
  import { PrivacyPolicyEntity } from './data/PrivacyPolicy';
25
25
  import { StaffFormsEntity } from './data/StaffForms';
26
26
  import { WidgetError } from "@/service/public/WidgetError";
27
- import { ClientRight, ConferenceRight, DashboardRight, FormRight, GlobalRight, PlanningRight, QueueRight, ReportRight, RightObject, RightsEntity, SchedulingRight, SettingsRight, WhiteLabelRight, WorkflowRight, WorkingPlanningRight } from './data/Rights';
27
+ import { AccountRight, ClientRight, ConferenceRight, DashboardRight, DeveloperRight, FormRight, GlobalRight, MenuRight, PlanningRight, PrivacyRight, QueueRight, ReportRight, RightObject, RightsEntity, SchedulingRight, SettingsRight, UserRight, WhiteLabelRight, WorkflowRight, WorkingPlanningRight } from './data/Rights';
28
28
  import { CompanySchedulingRightsEntity, SchedulingRightsEntity } from "./data/scheduling/SchedulingRights";
29
29
  import { NoteEntity } from "./data/Note";
30
30
  import { ShortPollingNotificationEntity, ShortPollingNotificationPingEntity } from "./data/ShortPollingNotification";
@@ -95,7 +95,7 @@ import { VacationEntity, VacationSlotEntity } from "@/data/Vacation";
95
95
  export { AgendizeApi } from './agendizeApi';
96
96
  export { QUERY_TYPE } from '@/repository';
97
97
  export * from './utils/logger';
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 };
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, type UserRight, type AccountRight, type MenuRight, type PrivacyRight, type DeveloperRight, 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 };
99
99
  export type { SecuredEntity, PublicEntity } from './data/Common';
100
100
  export { BodyEntity, SecuredBodyEntity, PublicBodyEntity } from './data/Common';
101
101
  export type { ResultStatus } from "./data/FormResultStatus";