@agendize/js-agendize-api 1.32.0 → 1.32.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.
@@ -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;
@@ -30,6 +30,8 @@ export declare class ServicePublicEntity extends PublicBodyEntity {
30
30
  duration?: number;
31
31
  locations: ('companyAddress' | 'videoconference' | 'phone' | 'custom')[];
32
32
  locationCustom?: string;
33
+ minAppointmentDate?: Date;
34
+ maxAppointmentDate?: Date;
33
35
  staffs?: string[];
34
36
  maxCancellationDelay?: number;
35
37
  externalId?: string;
@@ -51,6 +53,8 @@ export declare class ServicePublicDto {
51
53
  readableDuration?: string;
52
54
  duration?: number;
53
55
  maxCancellationDelay?: number;
56
+ minAppointment?: string;
57
+ maxAppointment?: string;
54
58
  locations: ('companyAddress' | 'videoconference' | 'phone' | 'custom')[];
55
59
  locationCustom?: string;
56
60
  staffs?: string[];