@agendize/js-agendize-api 1.32.0 → 1.33.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.
@@ -542,4 +542,5 @@ export declare class AgendizeApi {
542
542
  deleteUserPermission(organisationEmail: string, userId: string): Promise<void>;
543
543
  getAvailabilities(organisationEmail: string, serviceIdOrExternalId: string, filter: AvailabilityFilterOptions): Promise<QUERY_RESULT<import("@/data/scheduling/Availabilities").AvailabilityEntity>>;
544
544
  shareALink(organisationEmail: string, shareLinkQuery: ShareLinkEntity): Promise<ShareLinkResponseItemEntity[]>;
545
+ shareALinkByTextMessage(organisationEmail: string, shareLinkQuery: ShareLinkEntity): Promise<ShareLinkResponseItemEntity[]>;
545
546
  }
@@ -19,7 +19,8 @@ export declare enum StorageKeys {
19
19
  LOGGER_ORGANISATION_ID = "widgetOrganisationId",
20
20
  USERS_COLORS = "usersColors",
21
21
  REALM = "realm",
22
- API_BASE_URI = "api_base_uri"
22
+ API_BASE_URI = "api_base_uri",
23
+ DARK_MODE_ENABLED = "darkModeEnabled"
23
24
  }
24
25
  export declare class BrowserStorage {
25
26
  private readonly logger?;
@@ -2,7 +2,7 @@ import { ConsentEntity } from "./Consent";
2
2
  import { FormItemDto, FormItemEntity } from "./Form";
3
3
  import { CustomStatusDto, CustomStatusEntity } from "./CustomStatus";
4
4
  import { EntityType, PublicBodyEntity, SecuredBodyEntity, SecuredEntity } from "@/data/Common";
5
- import { ServicePublicDto, ServicePublicEntity } from "@/data/Service";
5
+ import { LocationType, ServicePublicDto, ServicePublicEntity } from "@/data/Service";
6
6
  import { StaffPublicDto, StaffPublicEntity } from "@/data/Staff";
7
7
  import { CompanyPublicDto, CompanyPublicEntity } from "@/data/Company";
8
8
  import { ContactDto, ContactEntity } from "@/data/Contact";
@@ -40,7 +40,7 @@ export declare class EventPublicEntity extends PublicBodyEntity {
40
40
  customStatus?: CustomStatusEntity;
41
41
  notes?: string;
42
42
  contact: ContactEntity;
43
- location: ('companyAddress' | 'videoconference' | 'phone' | 'custom')[];
43
+ location: LocationType[];
44
44
  locationCustom?: string;
45
45
  form?: FormItemEntity[];
46
46
  histories?: AppointmentActivityEntity[];
@@ -69,7 +69,7 @@ export declare class EventPublicDto {
69
69
  customStatus?: CustomStatusEntity;
70
70
  notes?: string;
71
71
  client: ContactDto;
72
- location: ('companyAddress' | 'videoconference' | 'phone' | 'custom')[];
72
+ location: LocationType[];
73
73
  customLocation?: string;
74
74
  cancellable?: boolean;
75
75
  locationLink?: string;
@@ -137,7 +137,7 @@ export declare class EventSecuredEntity extends SecuredBodyEntity {
137
137
  events?: EventSecuredEntity[];
138
138
  privacyConsent?: ConsentEntity;
139
139
  marketingConsent?: ConsentEntity;
140
- location: 'companyAddress' | 'videoconference' | 'phone' | 'custom';
140
+ location: LocationType;
141
141
  locationCustom?: string;
142
142
  preparationDuration?: number;
143
143
  bufferDuration?: number;
@@ -207,7 +207,7 @@ export declare class EventSecuredDto {
207
207
  events?: EventSecuredDto[];
208
208
  privacyConsent?: ConsentEntity;
209
209
  marketingConsent?: ConsentEntity;
210
- location: 'companyAddress' | 'videoconference' | 'phone' | 'custom';
210
+ location: LocationType;
211
211
  locationCustom?: string;
212
212
  preparationDuration?: number;
213
213
  bufferDuration?: number;
@@ -15,6 +15,7 @@
15
15
  */
16
16
  import { CustomStatusDto } from "./CustomStatus";
17
17
  import { EventSecuredEntity } from "./Event";
18
+ import { LocationType } from "@/data/Service";
18
19
  export declare class EventSearchEntity {
19
20
  id?: string;
20
21
  company?: EventSearchCompanyEntity;
@@ -61,7 +62,7 @@ export declare class EventSearchContactEntity {
61
62
  static fromDto(dto: EventSearchContactDto): EventSearchContactEntity;
62
63
  }
63
64
  export declare class EventSearchLocationEntity {
64
- type: 'companyAddress' | 'videoconference' | 'phone' | 'custom';
65
+ type: LocationType;
65
66
  static fromDto(dto: EventSearchLocationDto): EventSearchLocationEntity;
66
67
  }
67
68
  export declare class EventSearchStatusEntity {
@@ -192,7 +193,7 @@ export declare class EventSearchContactDto {
192
193
  reference?: string;
193
194
  }
194
195
  export declare class EventSearchLocationDto {
195
- type: 'companyAddress' | 'videoconference' | 'phone' | 'custom';
196
+ type: LocationType;
196
197
  }
197
198
  export declare class EventSearchDto {
198
199
  id?: string;
@@ -143,6 +143,7 @@ export declare class FormItemEntity {
143
143
  value: string;
144
144
  }[];
145
145
  }[] | undefined;
146
+ placeholder: string | undefined;
146
147
  bind: string | undefined;
147
148
  multiple: boolean | undefined;
148
149
  value: any;
@@ -19,6 +19,7 @@ import { EntityType, PublicBodyEntity, SecuredBodyEntity, SecuredEntity } from "
19
19
  import { ServiceGroupPublicDto, ServiceGroupPublicEntity } from "@/data/ServiceGroup";
20
20
  export type ServiceEntity<Type = EntityType> = Type extends SecuredEntity ? ServiceSecuredEntity : ServicePublicEntity;
21
21
  export type ServicesListEntity<Type = EntityType> = Type extends SecuredEntity ? ServicesListSecuredEntity : ServicesListPublicEntity;
22
+ export type LocationType = "companyAddress" | "videoconference" | "phone" | "custom";
22
23
  export declare class ServicePublicEntity extends PublicBodyEntity {
23
24
  id: string;
24
25
  name: string;
@@ -28,8 +29,10 @@ export declare class ServicePublicEntity extends PublicBodyEntity {
28
29
  picture?: ImageEntity;
29
30
  readableDuration?: string;
30
31
  duration?: number;
31
- locations: ('companyAddress' | 'videoconference' | 'phone' | 'custom')[];
32
+ locations: LocationType[];
32
33
  locationCustom?: string;
34
+ minAppointmentDate?: Date;
35
+ maxAppointmentDate?: Date;
33
36
  staffs?: string[];
34
37
  maxCancellationDelay?: number;
35
38
  externalId?: string;
@@ -51,7 +54,9 @@ export declare class ServicePublicDto {
51
54
  readableDuration?: string;
52
55
  duration?: number;
53
56
  maxCancellationDelay?: number;
54
- locations: ('companyAddress' | 'videoconference' | 'phone' | 'custom')[];
57
+ minAppointment?: string;
58
+ maxAppointment?: string;
59
+ locations: LocationType[];
55
60
  locationCustom?: string;
56
61
  staffs?: string[];
57
62
  externalId?: string;
@@ -81,7 +86,7 @@ export declare class ServiceSecuredEntity extends SecuredBodyEntity {
81
86
  validation?: 'location' | 'staff' | 'manager' | 'auto';
82
87
  externalId?: string;
83
88
  duration: number;
84
- locations: ('companyAddress' | 'videoconference' | 'phone' | 'custom')[];
89
+ locations: LocationType[];
85
90
  locationCustom?: string;
86
91
  picture?: ImageEntity;
87
92
  staffsSkill?: string[];
@@ -148,7 +153,7 @@ export declare class ServiceSecuredDto {
148
153
  };
149
154
  name: string;
150
155
  duration: number;
151
- locations: ('companyAddress' | 'videoconference' | 'phone' | 'custom')[];
156
+ locations: LocationType[];
152
157
  locationCustom?: string;
153
158
  picture?: ImageEntity;
154
159
  description?: string;
@@ -2,6 +2,7 @@ export declare class ShareLinkEntity {
2
2
  link: {
3
3
  url: string;
4
4
  };
5
+ text?: string;
5
6
  recipients: ShareLinkRecipientEntity[];
6
7
  static fromDto(dto: ShareLinkDto): ShareLinkEntity;
7
8
  static toDto(entity: ShareLinkEntity): ShareLinkDto;
@@ -10,6 +11,7 @@ export interface ShareLinkDto {
10
11
  link: {
11
12
  url: string;
12
13
  };
14
+ text?: string;
13
15
  recipients: ShareLinkRecipientDto[];
14
16
  }
15
17
  export declare class ShareLinkRecipientEntity {
@@ -18,6 +20,7 @@ export declare class ShareLinkRecipientEntity {
18
20
  externalId?: string;
19
21
  firstName?: string;
20
22
  lastName?: string;
23
+ mobilePhoneNumber?: string;
21
24
  static fromDto(dto: ShareLinkRecipientDto): ShareLinkRecipientEntity;
22
25
  static toDto(entity: ShareLinkRecipientEntity): ShareLinkRecipientDto;
23
26
  }
@@ -27,6 +30,7 @@ export interface ShareLinkRecipientDto {
27
30
  externalId?: string;
28
31
  firstName?: string;
29
32
  lastName?: string;
33
+ mobilePhoneNumber?: string;
30
34
  }
31
35
  export declare class ShareLinkResponseEntity {
32
36
  items: ShareLinkResponseItemEntity[];
package/dist/index.d.ts CHANGED
@@ -1,21 +1,21 @@
1
1
  import { CalendarWorkingDayEntity, CalendarWorkingHourEntity, SettingsPeriodWorkingDayEntity, SettingsPeriodWorkingEntity, SettingsWorkingDayEntity, SettingsWorkingHoursEntity } from "./data/WorkingHours";
2
- import { AccountEntity, AccountPublicEntity, AccountSecuredEntity, AccountSettingsEntity, AclEntity, CalendarSettingsEntity, ProfileSettingsEntity, WhiteLabelSettingsPublicEntity, AccountPropertiesEntity, AccountWidgetFiltersPublicEntity } from './data/Account';
2
+ import { AccountEntity, AccountPropertiesEntity, AccountPublicEntity, AccountSecuredEntity, AccountSettingsEntity, AccountWidgetFiltersPublicEntity, AclEntity, CalendarSettingsEntity, ProfileSettingsEntity, WhiteLabelSettingsPublicEntity } from './data/Account';
3
3
  import { AddressEntity } from './data/Address';
4
4
  import { ImageEntity } from './data/Image';
5
5
  import { LinkEntity } from "@/data/Link";
6
6
  import { CalendarCompanyEntity, CalendarEntity, CalendarTeamEntity } from './data/Calendar';
7
7
  import { CompanyEntity, CompanyPublicEntity, CompanySecuredEntity } from './data/Company';
8
8
  import { StaffEntity, StaffPublicEntity, StaffSecuredEntity } from './data/Staff';
9
- import { ServiceEntity, ServicePublicEntity, ServiceSecuredEntity, ServicesListEntity, ServicesListPublicEntity, ServicesListSecuredEntity, ServiceTypeEntity } from './data/Service';
9
+ import { LocationType, ServiceEntity, ServicePublicEntity, ServiceSecuredEntity, ServicesListEntity, ServicesListPublicEntity, ServicesListSecuredEntity, ServiceTypeEntity } from './data/Service';
10
10
  import { ServiceResourceEntity } from './data/ServiceResource';
11
11
  import { AdditionalFieldsEntity, ContactAdditionalFieldEntity, ContactAdvancedSearchEntity, ContactEmailAddressEntity, ContactEntity, ContactPhoneNumberEntity, ContactTagEntity, PromoteFieldEntity } from './data/Contact';
12
- import { EventEntity, EventPublicEntity, EventSecuredEntity, EventType, EventStatus } from './data/Event';
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 } from './data/EventSearch';
14
14
  import { UserEntity } from './data/User';
15
15
  import { ServiceGroupEntity, ServiceGroupPublicEntity, ServiceGroupSecuredEntity } from "./data/ServiceGroup";
16
16
  import { StaffGroupEntity, StaffGroupPublicEntity, StaffGroupSecuredEntity } from "./data/StaffGroup";
17
17
  import { AgendizeError, ApiErrors, getApiErrorValueFromName } from './data/Error';
18
- import { FreeSlotEntity, FreeSlotSecuredEntity, FreeSlotPublicEntity, FreeSlotItemSecuredEntity, FreeSlotMapPublicEntity, FreeSlotsRecord, FreeSlotsFilterOptions } from './data/FreeSlot';
18
+ import { FreeSlotEntity, FreeSlotItemSecuredEntity, FreeSlotMapPublicEntity, FreeSlotPublicEntity, FreeSlotSecuredEntity, FreeSlotsFilterOptions, FreeSlotsRecord } from './data/FreeSlot';
19
19
  import { PlanningEntity } from './data/planning/Planning';
20
20
  import { PlanningWeekEntity } from './data/planning/PlanningWeek';
21
21
  import type { DayProperty } from './data/planning/PlanningDay';
@@ -40,7 +40,7 @@ import { FormResultStatusEntity, ResultStatusValues } from "./data/FormResultSta
40
40
  import { EventUpdateEntity } from "./data/EventUpdate";
41
41
  import { ShortPollingNotificationEvent } from "./data/shortPollingNotification/ShortPollingNotificationEvent";
42
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";
43
+ import { ActivityEntity, AppointmentActivityEntity, AppointmentActivitySourceType, AppointmentActivityType, AppointmentChangeTypes, AppointmentCreationActivityEntity, AppointmentDeletionActivityEntity, AppointmentUpdateClientActivityEntity, AppointmentUpdateDatesActivityEntity, AppointmentUpdateEndActivityEntity, AppointmentUpdateFormActivityEntity, AppointmentUpdateLocationActivityEntity, AppointmentUpdateNoteActivityEntity, AppointmentUpdateResourceActivityEntity, AppointmentUpdateServiceActivityEntity, AppointmentUpdateStaffActivityEntity, AppointmentUpdateStartActivityEntity, AppointmentUpdateStatusActivityEntity, ConsentActivityEntity, EmailNotificationActivityEntity, FormResultActivityEntity, NoteActivityEntity, TextMessageNotificationActivityEntity } from "./data/Activity";
44
44
  import { applyValueToField } from "./utils/widgetForms";
45
45
  import { CommonEnum, Gender, Language, NotificationType, PromoteFieldKey, Title, valuePromoteFieldFromContact } from "./data/CommonEnum";
46
46
  import { WidgetUrlCipherEntity, WidgetUrlCipherInputEntity } from "./data/WidgetUrlCipher";
@@ -82,16 +82,17 @@ import { ConferenceRegistrationResponseEntity, PrivacyConsentEntity, WidgetEntit
82
82
  import { LoginRealmEntity } from "./data/LoginRealm";
83
83
  import { NotificationEntity } from "./data/Notification";
84
84
  import { CompanySettingsEntity, CompanySettingsWidgetEntity } from "./data/CompanySettings";
85
- import { AvailabilityEntity, AvailabilityDaySlotEntity, AvailabilityContextEntity, AvailabilityDaysEntity, AvailabilityDaySlotItemEntity, AvailabilityDaySlotItemLocationEntity } from "./data/scheduling/Availabilities";
86
85
  import type { AvailabilityFilterOptions } from "./data/scheduling/Availabilities";
86
+ import { AvailabilityContextEntity, AvailabilityDaysEntity, AvailabilityDaySlotEntity, AvailabilityDaySlotItemEntity, AvailabilityDaySlotItemLocationEntity, AvailabilityEntity } from "./data/scheduling/Availabilities";
87
87
  import { setLang } from "@/service";
88
+ import { PermissionEntity, PermissionRightEntity } from "@/data/account/Permission";
89
+ import { ShareLinkEntity, ShareLinkRecipientEntity, ShareLinkResponseEntity, ShareLinkResponseItemEntity } from "@/data/action/ShareLink";
88
90
  export { AgendizeApi } from './agendizeApi';
89
91
  export { QUERY_TYPE } from '@/repository';
90
92
  export * from './utils/logger';
91
- import { PermissionEntity, PermissionRightEntity } from "@/data/account/Permission";
92
- import { ShareLinkResponseEntity, ShareLinkResponseItemEntity, ShareLinkEntity, ShareLinkRecipientEntity } from "@/data/action/ShareLink";
93
- export { setLang, 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, 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, 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, AccountWidgetFiltersPublicEntity, PagePublicEntity, type WhiteLabelRight, LoginRealmEntity, WidgetError, NotificationEntity, CompanySettingsEntity, CompanySettingsWidgetEntity, PermissionEntity, PermissionRightEntity, AvailabilityEntity, AvailabilityDaySlotEntity, AvailabilityContextEntity, AvailabilityDaysEntity, AvailabilityDaySlotItemEntity, AvailabilityDaySlotItemLocationEntity, AvailabilityFilterOptions, AccountPropertiesEntity, ShareLinkResponseEntity, ShareLinkResponseItemEntity, ShareLinkEntity, ShareLinkRecipientEntity };
93
+ export { setLang, AccountSettingsEntity, AclEntity, ProfileSettingsEntity, CalendarSettingsEntity, CalendarTeamEntity, AddressEntity, ImageEntity, CalendarEntity, ServiceTypeEntity, ContactEntity, ContactPhoneNumberEntity, ContactEmailAddressEntity, ContactAdditionalFieldEntity, ContactTagEntity, ContactAdvancedSearchEntity, type EventEntity, EventSecuredEntity, EventPublicEntity, type LocationType, 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, 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, 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, AccountWidgetFiltersPublicEntity, PagePublicEntity, type WhiteLabelRight, LoginRealmEntity, WidgetError, NotificationEntity, CompanySettingsEntity, CompanySettingsWidgetEntity, PermissionEntity, PermissionRightEntity, AvailabilityEntity, AvailabilityDaySlotEntity, AvailabilityContextEntity, AvailabilityDaysEntity, AvailabilityDaySlotItemEntity, AvailabilityDaySlotItemLocationEntity, AvailabilityFilterOptions, AccountPropertiesEntity, ShareLinkResponseEntity, ShareLinkResponseItemEntity, ShareLinkEntity, ShareLinkRecipientEntity };
94
94
  export type { SecuredEntity, PublicEntity } from './data/Common';
95
95
  export { BodyEntity, SecuredBodyEntity, PublicBodyEntity } from './data/Common';
96
96
  export type { ResultStatus } from "./data/FormResultStatus";
97
97
  export type { ShortPollingNotificationType, ShortPollingNotificationSubType } from "./data/ShortPollingNotification";
98
+ export * from "./utils/colorManager";