@agendize/js-agendize-api 1.40.0 → 1.41.1
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 +5 -3
- package/dist/browserStorage/browserStorage.d.ts +2 -1
- package/dist/data/Account.d.ts +6 -0
- package/dist/data/Error.d.ts +2 -0
- package/dist/data/Rights.d.ts +72 -0
- package/dist/data/Service.d.ts +2 -2
- package/dist/index.d.ts +3 -3
- package/dist/js-agendize-api.es.js +215 -189
- package/dist/repository/index.d.ts +2 -1
- package/dist/repository/secured/serviceSecuredRepository.d.ts +3 -2
- package/dist/service/secured/serviceSecuredService.d.ts +2 -2
- package/package.json +1 -1
package/dist/agendizeApi.d.ts
CHANGED
|
@@ -87,6 +87,7 @@ export interface ApiOptions {
|
|
|
87
87
|
widgetBaseURL: string;
|
|
88
88
|
clientId: string;
|
|
89
89
|
logger?: Logger;
|
|
90
|
+
debug?: boolean;
|
|
90
91
|
}
|
|
91
92
|
export declare class AgendizeApi {
|
|
92
93
|
private authenticationService;
|
|
@@ -181,11 +182,12 @@ export declare class AgendizeApi {
|
|
|
181
182
|
private formIdsAccount;
|
|
182
183
|
private queueIdsAccount;
|
|
183
184
|
private logger?;
|
|
185
|
+
private debug?;
|
|
184
186
|
private baseURL;
|
|
185
187
|
private widgetBaseUrl;
|
|
186
188
|
private clientId;
|
|
187
189
|
private bearer;
|
|
188
|
-
constructor({ baseURL, widgetBaseURL, clientId, logger }: ApiOptions);
|
|
190
|
+
constructor({ baseURL, widgetBaseURL, clientId, logger, debug }: ApiOptions);
|
|
189
191
|
getBaseURL(): string;
|
|
190
192
|
getWidgetBaseURL(): string;
|
|
191
193
|
isAuthenticated(): boolean;
|
|
@@ -267,12 +269,12 @@ export declare class AgendizeApi {
|
|
|
267
269
|
local: boolean;
|
|
268
270
|
}>;
|
|
269
271
|
deleteStaff(organisation: string, companyId: string, staffId: string): Promise<void>;
|
|
270
|
-
getAllServices(companyId: string, account?: string, mode?: QUERY_TYPE): Promise<{
|
|
272
|
+
getAllServices(companyId: string, account?: string, showDeletedDeployment?: boolean, mode?: QUERY_TYPE): Promise<{
|
|
271
273
|
results: ServiceEntity[] | undefined;
|
|
272
274
|
local: boolean;
|
|
273
275
|
}>;
|
|
274
276
|
getAllServicesAndGroups(accountId?: string, filterOptions?: ServicesFilterOptions): Promise<ServicesListEntity | undefined>;
|
|
275
|
-
getServiceById(companyId: string, serviceId: string, account?: string, mode?: QUERY_TYPE): Promise<{
|
|
277
|
+
getServiceById(companyId: string, serviceId: string, account?: string, showDeletedDeployment?: boolean, mode?: QUERY_TYPE): Promise<{
|
|
276
278
|
result: ServiceEntity | undefined;
|
|
277
279
|
local: boolean;
|
|
278
280
|
}>;
|
|
@@ -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?;
|
package/dist/data/Account.d.ts
CHANGED
|
@@ -91,12 +91,14 @@ export declare class AccountSecuredEntity extends SecuredBodyEntity {
|
|
|
91
91
|
userDomain?: string;
|
|
92
92
|
userWidgetDomain: string;
|
|
93
93
|
languageVariant?: string;
|
|
94
|
+
appointmentPanelVersion?: string;
|
|
94
95
|
acls?: AclEntity[];
|
|
95
96
|
profileSettings?: ProfileSettingsEntity;
|
|
96
97
|
calendarSettings?: CalendarSettingsEntity;
|
|
97
98
|
directories?: string[];
|
|
98
99
|
help?: HelpEntity;
|
|
99
100
|
accountSettings?: AccountSettingsEntity;
|
|
101
|
+
deploymentEnabled: boolean;
|
|
100
102
|
constructor();
|
|
101
103
|
static fromAccountDto(dto: AccountDto): AccountSecuredEntity;
|
|
102
104
|
static fromAccountDto2(dto: AccountDto): AccountSecuredEntity;
|
|
@@ -146,6 +148,7 @@ export declare class AccountSettingsEntity {
|
|
|
146
148
|
primaryColor?: string;
|
|
147
149
|
companyTemplate?: string;
|
|
148
150
|
favoriteCompany?: string;
|
|
151
|
+
languages?: string[];
|
|
149
152
|
}
|
|
150
153
|
export declare class AccountDto {
|
|
151
154
|
id: string;
|
|
@@ -155,6 +158,7 @@ export declare class AccountDto {
|
|
|
155
158
|
userDomain?: string;
|
|
156
159
|
userWidgetDomain?: string;
|
|
157
160
|
languageVariant?: string;
|
|
161
|
+
appointmentPanelVersion?: string;
|
|
158
162
|
picture?: ImageEntity;
|
|
159
163
|
profileSettings?: {
|
|
160
164
|
country?: string;
|
|
@@ -217,8 +221,10 @@ export declare class AccountDto {
|
|
|
217
221
|
primaryColor?: string;
|
|
218
222
|
companyTemplate?: string;
|
|
219
223
|
favoriteCompany?: string;
|
|
224
|
+
languages?: string[];
|
|
220
225
|
};
|
|
221
226
|
defaultAccount?: string;
|
|
222
227
|
directories?: string[];
|
|
228
|
+
deploymentEnabled?: boolean;
|
|
223
229
|
help?: HelpDto;
|
|
224
230
|
}
|
package/dist/data/Error.d.ts
CHANGED
|
@@ -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,
|
package/dist/data/Rights.d.ts
CHANGED
|
@@ -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
|
}
|
package/dist/data/Service.d.ts
CHANGED
|
@@ -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
|
|
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";
|