@agendize/js-agendize-api 1.30.0 → 1.31.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.
@@ -190,6 +190,7 @@ export declare class AgendizeApi {
190
190
  refreshUserStorage(allUsers: UserEntity[] | undefined, meInOrganisation: UserEntity): Promise<void>;
191
191
  clearAfterAccountSwitch(): Promise<void>;
192
192
  logout(): Promise<void>;
193
+ clearLocalDB(): Promise<void>;
193
194
  getSchedulingRights(organisation: string): Promise<SchedulingRightsEntity[]>;
194
195
  getSchedulingRightsById(organisation: string, userId: string): Promise<SchedulingRightsEntity | undefined>;
195
196
  updateSchedulingRights(organisation: string, userId: string, rights: SchedulingRightsEntity): Promise<SchedulingRightsEntity>;
@@ -17,7 +17,9 @@ export declare enum StorageKeys {
17
17
  AGENDAS_TEAM_REMOVED = "agendasTeamRemoved",
18
18
  AGENDAS_ENABLED = "agendasEnabled",
19
19
  LOGGER_ORGANISATION_ID = "widgetOrganisationId",
20
- REALM = "realm"
20
+ USERS_COLORS = "usersColors",
21
+ REALM = "realm",
22
+ API_BASE_URI = "api_base_uri"
21
23
  }
22
24
  export declare class BrowserStorage {
23
25
  private readonly logger?;
@@ -88,6 +88,8 @@ export declare class ReportingExportBodyFieldAppointmentEntity {
88
88
  status?: boolean;
89
89
  notes?: boolean;
90
90
  customFields?: boolean;
91
+ sourceInterface?: boolean;
92
+ source?: boolean;
91
93
  id?: boolean;
92
94
  constructor();
93
95
  static toReportingExportBodyFieldAppointmentDto(entity: ReportingExportBodyFieldAppointmentEntity): ReportingExportBodyFieldAppointmentDto;
@@ -166,5 +168,7 @@ export declare class ReportingExportBodyFieldAppointmentDto {
166
168
  status?: boolean;
167
169
  notes?: boolean;
168
170
  customFields?: boolean;
171
+ sourceInterface?: boolean;
172
+ source?: boolean;
169
173
  id?: boolean;
170
174
  }