@pexip-engage-public/graphql 1.0.55 → 1.0.56

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/src/schema.ts CHANGED
@@ -72,6 +72,9 @@ export type AllowedPluginDomainsEnterpriseSetting = {
72
72
  value: Array<Scalars['String']['output']>;
73
73
  };
74
74
 
75
+ export type AnonymizableEntity =
76
+ | 'CUSTOMER';
77
+
75
78
  export type AnswerOption = {
76
79
  createdAt: Scalars['ISO8601']['output'];
77
80
  deletedAt?: Maybe<Scalars['ISO8601']['output']>;
@@ -85,17 +88,11 @@ export type AnswerOption = {
85
88
  value?: Maybe<Scalars['String']['output']>;
86
89
  };
87
90
 
88
- export type AnswerOptionCreateInput = {
89
- externalId?: InputMaybe<Scalars['String']['input']>;
90
- order?: InputMaybe<Scalars['Int']['input']>;
91
- translations: AnswerOptionTranslationsCreateInput;
92
- value?: InputMaybe<Scalars['String']['input']>;
93
- };
94
-
95
91
  export type AnswerOptionPatchInput = {
96
92
  externalId?: InputMaybe<Scalars['String']['input']>;
93
+ id?: InputMaybe<Scalars['ID']['input']>;
97
94
  order?: InputMaybe<Scalars['Int']['input']>;
98
- translations?: InputMaybe<AnswerOptionTranslationsPatchInput>;
95
+ translations: AnswerOptionTranslationsCreateInput;
99
96
  value?: InputMaybe<Scalars['String']['input']>;
100
97
  };
101
98
 
@@ -107,10 +104,6 @@ export type AnswerOptionTranslationsCreateInput = {
107
104
  label: Array<TranslationObjectInput>;
108
105
  };
109
106
 
110
- export type AnswerOptionTranslationsPatchInput = {
111
- label?: InputMaybe<Array<TranslationObjectInput>>;
112
- };
113
-
114
107
  export type ApiClient = {
115
108
  clientId: Scalars['String']['output'];
116
109
  };
@@ -191,6 +184,8 @@ export type Appointment = {
191
184
  updatedBy?: Maybe<AppointmentActor>;
192
185
  updatedByType: UserType;
193
186
  updatedFrom: AppointmentSource;
187
+ /** Indicates if the appointment will sent out notifications and reminders to participants. */
188
+ userCommunication: AppointmentUserCommunication;
194
189
  };
195
190
 
196
191
 
@@ -199,6 +194,10 @@ export type AppointmentAppointmentParticipantsArgs = {
199
194
  type?: InputMaybe<ParticipantType>;
200
195
  };
201
196
 
197
+ export type AppointmentAcceptInput = {
198
+ userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
199
+ };
200
+
202
201
  export type AppointmentActor = Customer | Employee | { __typename?: "%other" };
203
202
 
204
203
  export type AppointmentAnswer = {
@@ -232,6 +231,7 @@ export type AppointmentAutoAcceptEnterpriseSetting = {
232
231
  export type AppointmentCancelInput = {
233
232
  answers?: InputMaybe<Array<AppointmentAnswerInput>>;
234
233
  messageForCustomer?: InputMaybe<Scalars['String']['input']>;
234
+ userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
235
235
  };
236
236
 
237
237
  export type AppointmentCompleteInput = {
@@ -239,6 +239,7 @@ export type AppointmentCompleteInput = {
239
239
  end?: InputMaybe<Scalars['ISO8601']['input']>;
240
240
  noShow?: InputMaybe<Scalars['Boolean']['input']>;
241
241
  start?: InputMaybe<Scalars['ISO8601']['input']>;
242
+ userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
242
243
  };
243
244
 
244
245
  export type AppointmentCompletionAllowedDaysBeforeStartEnterpriseSetting = {
@@ -281,6 +282,7 @@ export type AppointmentCreateInput = {
281
282
  listingId?: InputMaybe<Scalars['ID']['input']>;
282
283
  location?: InputMaybe<LocationInput>;
283
284
  meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
285
+ meetingRoomMinimumCapacity?: InputMaybe<Scalars['Int']['input']>;
284
286
  meetingType: MeetingType;
285
287
  messageForCustomer?: InputMaybe<Scalars['String']['input']>;
286
288
  metadata?: InputMaybe<Scalars['JSONObject']['input']>;
@@ -288,6 +290,7 @@ export type AppointmentCreateInput = {
288
290
  start: Scalars['ISO8601']['input'];
289
291
  subjectId: Scalars['ID']['input'];
290
292
  trailingBufferTime?: InputMaybe<Scalars['Int']['input']>;
293
+ userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
291
294
  };
292
295
 
293
296
  export type AppointmentCrossOfficeParticipantSelectionEnabledEnterpriseSetting = {
@@ -362,6 +365,7 @@ export type AppointmentInviteInput = {
362
365
  officeId: Scalars['ID']['input'];
363
366
  subjectId: Scalars['ID']['input'];
364
367
  trailingBufferTime?: InputMaybe<Scalars['Int']['input']>;
368
+ userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
365
369
  };
366
370
 
367
371
  export type AppointmentLatestPossibleEnterpriseSetting = {
@@ -416,16 +420,23 @@ export type AppointmentPatchInput = {
416
420
  location?: InputMaybe<LocationInput>;
417
421
  meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
418
422
  metadata?: InputMaybe<Scalars['JSONObject']['input']>;
423
+ userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
419
424
  };
420
425
 
421
426
  export type AppointmentReassignInput = {
422
427
  messageForCustomer?: InputMaybe<Scalars['String']['input']>;
423
428
  officeId: Scalars['ID']['input'];
424
429
  primaryEmployeeId: Scalars['ID']['input'];
430
+ userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
431
+ };
432
+
433
+ export type AppointmentReopenInput = {
434
+ userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
425
435
  };
426
436
 
427
437
  export type AppointmentRequestRescheduleInput = {
428
438
  messageForCustomer?: InputMaybe<Scalars['String']['input']>;
439
+ userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
429
440
  };
430
441
 
431
442
  export type AppointmentRescheduleInput = {
@@ -433,6 +444,7 @@ export type AppointmentRescheduleInput = {
433
444
  end: Scalars['ISO8601']['input'];
434
445
  messageForCustomer?: InputMaybe<Scalars['String']['input']>;
435
446
  start: Scalars['ISO8601']['input'];
447
+ userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
436
448
  };
437
449
 
438
450
  export type AppointmentSort = {
@@ -498,6 +510,21 @@ export type AppointmentTravelBufferTimeEnterpriseSetting = {
498
510
  value: Scalars['Int']['output'];
499
511
  };
500
512
 
513
+ export type AppointmentUserCommunication = {
514
+ notifications: AppointmentUserCommunicationSettingValue;
515
+ reminders: AppointmentUserCommunicationSettingValue;
516
+ };
517
+
518
+ export type AppointmentUserCommunicationInput = {
519
+ notifications?: InputMaybe<AppointmentUserCommunicationSettingValue>;
520
+ notificationsOverrideCurrentAction?: InputMaybe<AppointmentUserCommunicationSettingValue>;
521
+ reminders?: InputMaybe<AppointmentUserCommunicationSettingValue>;
522
+ };
523
+
524
+ export type AppointmentUserCommunicationSettingValue =
525
+ | 'DEFAULT'
526
+ | 'DISABLED';
527
+
501
528
  export type AuditLog = {
502
529
  action: Scalars['String']['output'];
503
530
  actorEmployeeId?: Maybe<Scalars['ID']['output']>;
@@ -968,6 +995,15 @@ export type DailyAvailabilityInsight = {
968
995
  officeId: Scalars['ID']['output'];
969
996
  };
970
997
 
998
+ export type DataRetentionDurationEnterpriseSetting = {
999
+ createdAt: Scalars['ISO8601']['output'];
1000
+ /** Indicates if the enterprise setting can be managed by an administrator of the enterprise. Non-manageable settings can only be modified by Pexip Engage Support. */
1001
+ manageable: Scalars['Boolean']['output'];
1002
+ updatedAt: Scalars['ISO8601']['output'];
1003
+ /** The duration in minutes stale data is retained before it is anonymized. */
1004
+ value: Scalars['Int']['output'];
1005
+ };
1006
+
971
1007
  export type DataSelectedSessionEvent = {
972
1008
  application: SessionEventApplication;
973
1009
  payload: DataSelectedSessionEventPayload;
@@ -1002,6 +1038,15 @@ export type DataShownSessionEventPayload = {
1002
1038
  timetable?: InputMaybe<TimetableDataShownSessionEventPayload>;
1003
1039
  };
1004
1040
 
1041
+ export type DataToAnonymizeEnterpriseSetting = {
1042
+ createdAt: Scalars['ISO8601']['output'];
1043
+ /** Indicates if the enterprise setting can be managed by an administrator of the enterprise. Non-manageable settings can only be modified by Pexip Engage Support. */
1044
+ manageable: Scalars['Boolean']['output'];
1045
+ updatedAt: Scalars['ISO8601']['output'];
1046
+ /** List of entities that should be considered for anonymization. */
1047
+ value: Array<AnonymizableEntity>;
1048
+ };
1049
+
1005
1050
  export type DayOfWeek =
1006
1051
  | 'FRIDAY'
1007
1052
  | 'MONDAY'
@@ -1297,7 +1342,7 @@ export type EmployeeCreateInput = {
1297
1342
  communicationEmail?: InputMaybe<Scalars['String']['input']>;
1298
1343
  email: Scalars['String']['input'];
1299
1344
  externalId?: InputMaybe<Scalars['String']['input']>;
1300
- firstName?: InputMaybe<Scalars['String']['input']>;
1345
+ firstName: Scalars['String']['input'];
1301
1346
  language?: InputMaybe<Language>;
1302
1347
  languageExpertise?: InputMaybe<Array<Language>>;
1303
1348
  lastName: Scalars['String']['input'];
@@ -1445,6 +1490,10 @@ export type EnterpriseSettings = {
1445
1490
  customerNotificationSettings: CustomerNotificationSettingsEnterpriseSetting;
1446
1491
  /** The settings used to calculate which reminders should be sent to the customer. */
1447
1492
  customerReminderSettings: CustomerReminderSettingsEnterpriseSetting;
1493
+ /** The duration in minutes stale data is retained before it is anonymized. */
1494
+ dataRetentionDuration: DataRetentionDurationEnterpriseSetting;
1495
+ /** List of entities that should be considered for anonymization. */
1496
+ dataToAnonymize: DataToAnonymizeEnterpriseSetting;
1448
1497
  defaultCallbackRequestForm?: Maybe<Form>;
1449
1498
  /** The default form to be used when creating a callback request. */
1450
1499
  defaultCallbackRequestFormId: DefaultCallbackRequestFormIdEnterpriseSetting;
@@ -1554,6 +1603,10 @@ export type EnterpriseSettingsPatchInput = {
1554
1603
  customerNotificationSettings?: InputMaybe<CustomerNotificationSettingsInput>;
1555
1604
  /** The settings used to calculate which reminders should be sent to the customer. */
1556
1605
  customerReminderSettings?: InputMaybe<CustomerReminderSettingsInput>;
1606
+ /** The duration in minutes stale data is retained before it is anonymized. */
1607
+ dataRetentionDuration?: InputMaybe<DataRetentionDurationInput>;
1608
+ /** List of entities that should be considered for anonymization. */
1609
+ dataToAnonymize?: InputMaybe<DataToAnonymizeInput>;
1557
1610
  /** The default form to be used when creating a callback request. */
1558
1611
  defaultCallbackRequestFormId?: InputMaybe<DefaultCallbackRequestFormIdInput>;
1559
1612
  /** The default country used wherever no country is provided. */
@@ -2611,7 +2664,7 @@ export type MaxConcurrentAppointmentsEnterpriseSetting = {
2611
2664
 
2612
2665
  export type MeetingRoom = {
2613
2666
  active: Scalars['Boolean']['output'];
2614
- capacity?: Maybe<Scalars['Int']['output']>;
2667
+ capacity: Scalars['Int']['output'];
2615
2668
  createdAt: Scalars['ISO8601']['output'];
2616
2669
  deletedAt?: Maybe<Scalars['ISO8601']['output']>;
2617
2670
  email: Scalars['String']['output'];
@@ -2623,6 +2676,7 @@ export type MeetingRoom = {
2623
2676
  name: Scalars['String']['output'];
2624
2677
  offices: Array<Office>;
2625
2678
  provider: ExternalCalendarProvider;
2679
+ schedulingSettings: Array<MeetingRoomSchedulingSetting>;
2626
2680
  timeZone: Scalars['String']['output'];
2627
2681
  updatedAt: Scalars['ISO8601']['output'];
2628
2682
  };
@@ -2687,6 +2741,20 @@ export type MeetingRoomPatchInput = {
2687
2741
  active?: InputMaybe<Scalars['Boolean']['input']>;
2688
2742
  };
2689
2743
 
2744
+ export type MeetingRoomSchedulingSetting = {
2745
+ meetingRoom: MeetingRoom;
2746
+ meetingType: MeetingType;
2747
+ };
2748
+
2749
+ export type MeetingRoomSchedulingSettingInput = {
2750
+ meetingType: MeetingType;
2751
+ };
2752
+
2753
+ export type MeetingRoomSelection =
2754
+ | 'IF_AVAILABLE'
2755
+ | 'NO_MEETING_ROOM'
2756
+ | 'REQUIRED';
2757
+
2690
2758
  export type MeetingRoomSort = {
2691
2759
  direction: SortDirection;
2692
2760
  field: SortableMeetingRoomFields;
@@ -2760,7 +2828,6 @@ export type Mutation = {
2760
2828
  anonymizeCustomer: Customer;
2761
2829
  cancelAppointment: Appointment;
2762
2830
  completeAppointment: Appointment;
2763
- createAnswerOption: AnswerOption;
2764
2831
  createAppliedTemplate: AppliedTemplate;
2765
2832
  createAppointment: Appointment;
2766
2833
  createAppointmentConfirmedSessionEvent: Scalars['Boolean']['output'];
@@ -2805,10 +2872,8 @@ export type Mutation = {
2805
2872
  createUnavailability: Unavailability;
2806
2873
  createUploadFileLink: FileCreateUploadLinkResult;
2807
2874
  createVPaaSMeeting: PexipVPaaSParticipant;
2808
- createValidator: Validator;
2809
2875
  createWebhookConfiguration: WebhookConfiguration;
2810
2876
  createWebhookConfigurationHeaders: Array<WebhookConfigurationHeader>;
2811
- deleteAnswerOption: AnswerOption;
2812
2877
  deleteAppliedTemplate: AppliedTemplate;
2813
2878
  deleteAvailabilityTemplate: AvailabilityTemplate;
2814
2879
  deleteAvailabilityTimeRange: AvailabilityTimeRange;
@@ -2830,7 +2895,6 @@ export type Mutation = {
2830
2895
  deleteSubject: Subject;
2831
2896
  deleteSubjectGroup: SubjectGroup;
2832
2897
  deleteUnavailability: Unavailability;
2833
- deleteValidator: Validator;
2834
2898
  deleteWebhookConfiguration: WebhookConfiguration;
2835
2899
  deleteWebhookConfigurationHeaders: Array<WebhookConfigurationHeader>;
2836
2900
  disconnectExternalCalendarAccount: ExternalCalendarAccount;
@@ -2839,7 +2903,6 @@ export type Mutation = {
2839
2903
  generateAppointmentOffice365CalendarUrl: Scalars['String']['output'];
2840
2904
  generateLocalizedPluginUrl: Scalars['String']['output'];
2841
2905
  generateVideoUrl: Scalars['String']['output'];
2842
- patchAnswerOption: AnswerOption;
2843
2906
  patchAppointment: Appointment;
2844
2907
  patchAvailabilityTemplate: AvailabilityTemplate;
2845
2908
  patchAvailabilityTimeRange: AvailabilityTimeRange;
@@ -2870,7 +2933,6 @@ export type Mutation = {
2870
2933
  patchSubject: Subject;
2871
2934
  patchSubjectGroup: SubjectGroup;
2872
2935
  patchTextMessageTemplate: TextMessageTemplate;
2873
- patchValidator: Validator;
2874
2936
  patchVideoURLTemplate: VideoUrlTemplate;
2875
2937
  patchWebhookConfiguration: WebhookConfiguration;
2876
2938
  patchWebhookConfigurationHeaders: Array<WebhookConfigurationHeader>;
@@ -2881,6 +2943,7 @@ export type Mutation = {
2881
2943
  putLeadSegmentSchedulingSettings: Array<LeadSegmentSchedulingSetting>;
2882
2944
  putListingSchedulingSettings: ListingSchedulingSetting;
2883
2945
  putListingTimeSlot: ListingTimeSlot;
2946
+ putMeetingRoomSchedulingSettings: Array<MeetingRoomSchedulingSetting>;
2884
2947
  putOfficeEmployeeCoverageRegionSchedulingSettings: Array<OfficeEmployeeCoverageRegionSchedulingSetting>;
2885
2948
  putOfficeEmployeeSubjectCoverageRegionSchedulingSettings: Array<OfficeEmployeeSubjectCoverageRegionSchedulingSetting>;
2886
2949
  putOfficeRelationsForOffice: Array<GroupedOfficeRelation>;
@@ -2908,6 +2971,7 @@ export type Mutation = {
2908
2971
  renderExampleListingTimeSlotCalendarEventTemplate: CalendarEventTemplateRender;
2909
2972
  renderExternalCalendarAccountBrokenEmailTemplate: EmailTemplateRender;
2910
2973
  renderListingTimeSlotCalendarEventTemplate: CalendarEventTemplateRender;
2974
+ renderWebhookDeliveryFailEmailTemplate: EmailTemplateRender;
2911
2975
  reopenAppointment: Appointment;
2912
2976
  replayFailedWebhooks: Scalars['Int']['output'];
2913
2977
  replayWebhook: Scalars['Boolean']['output'];
@@ -2939,6 +3003,7 @@ export type Mutation = {
2939
3003
 
2940
3004
 
2941
3005
  export type MutationAcceptAppointmentArgs = {
3006
+ appointmentAcceptInput: AppointmentAcceptInput;
2942
3007
  id: Scalars['ID']['input'];
2943
3008
  };
2944
3009
 
@@ -2972,12 +3037,6 @@ export type MutationCompleteAppointmentArgs = {
2972
3037
  };
2973
3038
 
2974
3039
 
2975
- export type MutationCreateAnswerOptionArgs = {
2976
- answerOptionCreateInput: AnswerOptionCreateInput;
2977
- questionId: Scalars['ID']['input'];
2978
- };
2979
-
2980
-
2981
3040
  export type MutationCreateAppliedTemplateArgs = {
2982
3041
  availabilityTemplateId: Scalars['ID']['input'];
2983
3042
  input: AppliedTemplateCreateInput;
@@ -3190,12 +3249,6 @@ export type MutationCreateVPaaSMeetingArgs = {
3190
3249
  };
3191
3250
 
3192
3251
 
3193
- export type MutationCreateValidatorArgs = {
3194
- questionId: Scalars['ID']['input'];
3195
- validatorCreateInput: ValidatorCreateInput;
3196
- };
3197
-
3198
-
3199
3252
  export type MutationCreateWebhookConfigurationArgs = {
3200
3253
  input: WebhookConfigurationCreateInput;
3201
3254
  };
@@ -3207,11 +3260,6 @@ export type MutationCreateWebhookConfigurationHeadersArgs = {
3207
3260
  };
3208
3261
 
3209
3262
 
3210
- export type MutationDeleteAnswerOptionArgs = {
3211
- id: Scalars['ID']['input'];
3212
- };
3213
-
3214
-
3215
3263
  export type MutationDeleteAppliedTemplateArgs = {
3216
3264
  id: Scalars['ID']['input'];
3217
3265
  };
@@ -3314,11 +3362,6 @@ export type MutationDeleteUnavailabilityArgs = {
3314
3362
  };
3315
3363
 
3316
3364
 
3317
- export type MutationDeleteValidatorArgs = {
3318
- id: Scalars['ID']['input'];
3319
- };
3320
-
3321
-
3322
3365
  export type MutationDeleteWebhookConfigurationArgs = {
3323
3366
  id: Scalars['ID']['input'];
3324
3367
  };
@@ -3361,12 +3404,6 @@ export type MutationGenerateVideoUrlArgs = {
3361
3404
  };
3362
3405
 
3363
3406
 
3364
- export type MutationPatchAnswerOptionArgs = {
3365
- answerOptionPatchInput: AnswerOptionPatchInput;
3366
- id: Scalars['ID']['input'];
3367
- };
3368
-
3369
-
3370
3407
  export type MutationPatchAppointmentArgs = {
3371
3408
  appointmentPatchInput: AppointmentPatchInput;
3372
3409
  id: Scalars['ID']['input'];
@@ -3543,12 +3580,6 @@ export type MutationPatchTextMessageTemplateArgs = {
3543
3580
  };
3544
3581
 
3545
3582
 
3546
- export type MutationPatchValidatorArgs = {
3547
- id: Scalars['ID']['input'];
3548
- validatorPatchInput: ValidatorPatchInput;
3549
- };
3550
-
3551
-
3552
3583
  export type MutationPatchVideoUrlTemplateArgs = {
3553
3584
  id: Scalars['ID']['input'];
3554
3585
  input: VideoUrlTemplatePatchInput;
@@ -3609,6 +3640,12 @@ export type MutationPutListingTimeSlotArgs = {
3609
3640
  };
3610
3641
 
3611
3642
 
3643
+ export type MutationPutMeetingRoomSchedulingSettingsArgs = {
3644
+ meetingRoomId: Scalars['ID']['input'];
3645
+ meetingRoomSchedulingSettingInput: Array<MeetingRoomSchedulingSettingInput>;
3646
+ };
3647
+
3648
+
3612
3649
  export type MutationPutOfficeEmployeeCoverageRegionSchedulingSettingsArgs = {
3613
3650
  employeeId: Scalars['ID']['input'];
3614
3651
  officeId: Scalars['ID']['input'];
@@ -3772,7 +3809,13 @@ export type MutationRenderListingTimeSlotCalendarEventTemplateArgs = {
3772
3809
  };
3773
3810
 
3774
3811
 
3812
+ export type MutationRenderWebhookDeliveryFailEmailTemplateArgs = {
3813
+ webhookDeliveryId: Scalars['String']['input'];
3814
+ };
3815
+
3816
+
3775
3817
  export type MutationReopenAppointmentArgs = {
3818
+ appointmentReopenInput: AppointmentReopenInput;
3776
3819
  id: Scalars['ID']['input'];
3777
3820
  };
3778
3821
 
@@ -4183,6 +4226,7 @@ export type Query = {
4183
4226
  questions: Array<Question>;
4184
4227
  regions: RegionConnection;
4185
4228
  schedulableEmployees: Array<Employee>;
4229
+ schedulableMeetingRooms: Array<MeetingRoom>;
4186
4230
  schedulableMeetingTypes: Array<MeetingType>;
4187
4231
  schedulableOffices: Array<Office>;
4188
4232
  schedulableSubjects: Array<Subject>;
@@ -4203,8 +4247,8 @@ export type Query = {
4203
4247
  timetable: Timetable;
4204
4248
  treeListRegions: Array<Region>;
4205
4249
  unavailability: UnavailabilityConnection;
4250
+ validateTimetableSlot: ValidatedTimetableSlot;
4206
4251
  validator: Validator;
4207
- validators: Array<Validator>;
4208
4252
  videoURLTemplate: VideoUrlTemplate;
4209
4253
  videoURLTemplates: Array<VideoUrlTemplate>;
4210
4254
  webhookConfiguration: WebhookConfiguration;
@@ -4744,7 +4788,7 @@ export type QueryMeetingRoomAvailabilityArgs = {
4744
4788
  end: Scalars['ISO8601']['input'];
4745
4789
  exclude?: InputMaybe<Array<Scalars['ID']['input']>>;
4746
4790
  first?: InputMaybe<Scalars['Int']['input']>;
4747
- id: Array<Scalars['ID']['input']>;
4791
+ id?: InputMaybe<Array<Scalars['ID']['input']>>;
4748
4792
  last?: InputMaybe<Scalars['Int']['input']>;
4749
4793
  search?: InputMaybe<Scalars['String']['input']>;
4750
4794
  start: Scalars['ISO8601']['input'];
@@ -4864,6 +4908,30 @@ export type QuerySchedulableEmployeesArgs = {
4864
4908
  listingExternalId?: InputMaybe<Scalars['String']['input']>;
4865
4909
  listingId?: InputMaybe<Scalars['ID']['input']>;
4866
4910
  location?: InputMaybe<GeolocationInput>;
4911
+ meetingRoomIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4912
+ meetingRoomMinimumCapacity?: InputMaybe<Scalars['Int']['input']>;
4913
+ meetingTypes?: InputMaybe<Array<MeetingType>>;
4914
+ officeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
4915
+ officeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4916
+ orderByDistanceTo?: InputMaybe<GeolocationInput>;
4917
+ subjectExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
4918
+ subjectGroupExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
4919
+ subjectGroupIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4920
+ subjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4921
+ };
4922
+
4923
+
4924
+ export type QuerySchedulableMeetingRoomsArgs = {
4925
+ employeeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
4926
+ employeeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4927
+ employeeLanguages?: InputMaybe<Array<Language>>;
4928
+ leadSegmentCode?: InputMaybe<Scalars['String']['input']>;
4929
+ leadSegmentId?: InputMaybe<Scalars['ID']['input']>;
4930
+ listingExternalId?: InputMaybe<Scalars['String']['input']>;
4931
+ listingId?: InputMaybe<Scalars['ID']['input']>;
4932
+ location?: InputMaybe<GeolocationInput>;
4933
+ meetingRoomIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4934
+ meetingRoomMinimumCapacity?: InputMaybe<Scalars['Int']['input']>;
4867
4935
  meetingTypes?: InputMaybe<Array<MeetingType>>;
4868
4936
  officeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
4869
4937
  officeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -4884,6 +4952,8 @@ export type QuerySchedulableMeetingTypesArgs = {
4884
4952
  listingExternalId?: InputMaybe<Scalars['String']['input']>;
4885
4953
  listingId?: InputMaybe<Scalars['ID']['input']>;
4886
4954
  location?: InputMaybe<GeolocationInput>;
4955
+ meetingRoomIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4956
+ meetingRoomMinimumCapacity?: InputMaybe<Scalars['Int']['input']>;
4887
4957
  meetingTypes?: InputMaybe<Array<MeetingType>>;
4888
4958
  officeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
4889
4959
  officeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -4904,6 +4974,8 @@ export type QuerySchedulableOfficesArgs = {
4904
4974
  listingExternalId?: InputMaybe<Scalars['String']['input']>;
4905
4975
  listingId?: InputMaybe<Scalars['ID']['input']>;
4906
4976
  location?: InputMaybe<GeolocationInput>;
4977
+ meetingRoomIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4978
+ meetingRoomMinimumCapacity?: InputMaybe<Scalars['Int']['input']>;
4907
4979
  meetingTypes?: InputMaybe<Array<MeetingType>>;
4908
4980
  officeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
4909
4981
  officeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -4924,6 +4996,8 @@ export type QuerySchedulableSubjectsArgs = {
4924
4996
  listingExternalId?: InputMaybe<Scalars['String']['input']>;
4925
4997
  listingId?: InputMaybe<Scalars['ID']['input']>;
4926
4998
  location?: InputMaybe<GeolocationInput>;
4999
+ meetingRoomIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5000
+ meetingRoomMinimumCapacity?: InputMaybe<Scalars['Int']['input']>;
4927
5001
  meetingTypes?: InputMaybe<Array<MeetingType>>;
4928
5002
  officeExternalIds?: InputMaybe<Array<Scalars['String']['input']>>;
4929
5003
  officeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -5025,6 +5099,8 @@ export type QueryTimetableArgs = {
5025
5099
  leadSegmentId?: InputMaybe<Scalars['ID']['input']>;
5026
5100
  listingId?: InputMaybe<Scalars['ID']['input']>;
5027
5101
  location?: InputMaybe<GeolocationInput>;
5102
+ meetingRoomId?: InputMaybe<Array<Scalars['ID']['input']>>;
5103
+ meetingRoomMinimumCapacity?: InputMaybe<Scalars['Int']['input']>;
5028
5104
  meetingType: MeetingType;
5029
5105
  officeId: Scalars['ID']['input'];
5030
5106
  subjectId: Scalars['ID']['input'];
@@ -5054,15 +5130,24 @@ export type QueryUnavailabilityArgs = {
5054
5130
  };
5055
5131
 
5056
5132
 
5057
- export type QueryValidatorArgs = {
5058
- id: Scalars['ID']['input'];
5133
+ export type QueryValidateTimetableSlotArgs = {
5134
+ employeeId?: InputMaybe<Array<Scalars['ID']['input']>>;
5135
+ employeeLanguages?: InputMaybe<Array<Language>>;
5136
+ from: Scalars['ISO8601']['input'];
5137
+ leadSegmentId?: InputMaybe<Scalars['ID']['input']>;
5138
+ listingId?: InputMaybe<Scalars['ID']['input']>;
5139
+ location?: InputMaybe<GeolocationInput>;
5140
+ meetingRoomId?: InputMaybe<Array<Scalars['ID']['input']>>;
5141
+ meetingRoomMinimumCapacity?: InputMaybe<Scalars['Int']['input']>;
5142
+ meetingType: MeetingType;
5143
+ officeId: Scalars['ID']['input'];
5144
+ subjectId: Scalars['ID']['input'];
5145
+ to: Scalars['ISO8601']['input'];
5059
5146
  };
5060
5147
 
5061
5148
 
5062
- export type QueryValidatorsArgs = {
5063
- id?: InputMaybe<Array<Scalars['ID']['input']>>;
5064
- questionId: Array<Scalars['ID']['input']>;
5065
- withDeleted?: InputMaybe<Scalars['Boolean']['input']>;
5149
+ export type QueryValidatorArgs = {
5150
+ id: Scalars['ID']['input'];
5066
5151
  };
5067
5152
 
5068
5153
 
@@ -5142,7 +5227,7 @@ export type QuestionDataShownSessionEventPayload = {
5142
5227
  };
5143
5228
 
5144
5229
  export type QuestionPatchInput = {
5145
- answerOptions?: InputMaybe<Array<AnswerOptionCreateInput>>;
5230
+ answerOptions?: InputMaybe<Array<AnswerOptionPatchInput>>;
5146
5231
  defaultValue?: InputMaybe<Scalars['String']['input']>;
5147
5232
  externalId?: InputMaybe<Scalars['String']['input']>;
5148
5233
  fetchConfigurationId?: InputMaybe<Scalars['ID']['input']>;
@@ -5156,7 +5241,7 @@ export type QuestionPatchInput = {
5156
5241
  };
5157
5242
 
5158
5243
  export type QuestionPutInput = {
5159
- answerOptions?: InputMaybe<Array<AnswerOptionCreateInput>>;
5244
+ answerOptions?: InputMaybe<Array<AnswerOptionPatchInput>>;
5160
5245
  defaultValue?: InputMaybe<Scalars['String']['input']>;
5161
5246
  externalId?: InputMaybe<Scalars['String']['input']>;
5162
5247
  fetchConfigurationId?: InputMaybe<Scalars['ID']['input']>;
@@ -5471,6 +5556,8 @@ export type SortableManagedExternalCalendarEventFields =
5471
5556
  | 'updatedAt';
5472
5557
 
5473
5558
  export type SortableMeetingRoomFields =
5559
+ | 'active'
5560
+ | 'capacity'
5474
5561
  | 'createdAt'
5475
5562
  | 'email'
5476
5563
  | 'externalId'
@@ -5803,12 +5890,14 @@ export type SubjectOfficeMeetingTypeAvailabilitySettingPutInput = {
5803
5890
  };
5804
5891
 
5805
5892
  export type SubjectOfficeSchedulingSetting = {
5893
+ meetingRoomSelection: MeetingRoomSelection;
5806
5894
  meetingType: MeetingType;
5807
5895
  office: Office;
5808
5896
  subject: Subject;
5809
5897
  };
5810
5898
 
5811
5899
  export type SubjectOfficeSchedulingSettingInput = {
5900
+ meetingRoomSelection?: InputMaybe<MeetingRoomSelection>;
5812
5901
  meetingType: MeetingType;
5813
5902
  subjectId: Scalars['ID']['input'];
5814
5903
  };
@@ -5864,7 +5953,8 @@ export type TemplateContext =
5864
5953
  | 'CALLBACK_REQUEST'
5865
5954
  | 'EMPLOYEE'
5866
5955
  | 'EXTERNAL_CALENDAR_ACCOUNT'
5867
- | 'LISTING_TIME_SLOT';
5956
+ | 'LISTING_TIME_SLOT'
5957
+ | 'WEBHOOK_DELIVERY';
5868
5958
 
5869
5959
  export type TemplateReceiverType =
5870
5960
  | 'CUSTOMER'
@@ -6023,6 +6113,7 @@ export type TranslationObjectInput = {
6023
6113
  };
6024
6114
 
6025
6115
  export type UiFeature =
6116
+ | 'APPOINTMENT_COMPLETION'
6026
6117
  | 'APPOINTMENT_CREATION'
6027
6118
  | 'APPOINTMENT_CREATION_MESSAGE_FOR_CUSTOMER'
6028
6119
  | 'APPOINTMENT_CUSTOMER_SELECTION'
@@ -6038,6 +6129,7 @@ export type UiFeature =
6038
6129
  | 'LEAD_SEGMENTS'
6039
6130
  | 'LISTINGS'
6040
6131
  | 'MEETING_LINK_CREATION'
6132
+ | 'MULTI_PARTICIPANTS'
6041
6133
  | 'MY_APPOINTMENTS'
6042
6134
  | 'MY_APPOINTMENT_HOURS'
6043
6135
  | 'MY_AUTHENTICATION'
@@ -6134,6 +6226,13 @@ export type UserType =
6134
6226
  | 'EMPLOYEE'
6135
6227
  | 'OTHER';
6136
6228
 
6229
+ export type ValidatedTimetableSlot = {
6230
+ availableMeetingRooms: Array<MeetingRoom>;
6231
+ slot: TimetableSlot;
6232
+ /** Expressed in minutes. */
6233
+ trailingBufferTime: Scalars['Int']['output'];
6234
+ };
6235
+
6137
6236
  export type Validator = {
6138
6237
  createdAt: Scalars['ISO8601']['output'];
6139
6238
  deletedAt?: Maybe<Scalars['ISO8601']['output']>;
@@ -6215,6 +6314,7 @@ export type WebhookConfiguration = {
6215
6314
  headers: Array<WebhookConfigurationHeader>;
6216
6315
  id: Scalars['ID']['output'];
6217
6316
  method: HttpMethod;
6317
+ notificationEmailAddresses: Array<Scalars['String']['output']>;
6218
6318
  token: Scalars['String']['output'];
6219
6319
  updatedAt: Scalars['ISO8601']['output'];
6220
6320
  url: Scalars['String']['output'];
@@ -6229,6 +6329,7 @@ export type WebhookConfigurationCreateInput = {
6229
6329
  active: Scalars['Boolean']['input'];
6230
6330
  eventTypes: Array<WebhookEventType>;
6231
6331
  method: HttpMethod;
6332
+ notificationEmailAddresses?: InputMaybe<Array<Scalars['String']['input']>>;
6232
6333
  token: Scalars['String']['input'];
6233
6334
  url: Scalars['String']['input'];
6234
6335
  };
@@ -6254,6 +6355,7 @@ export type WebhookConfigurationPatchInput = {
6254
6355
  active?: InputMaybe<Scalars['Boolean']['input']>;
6255
6356
  eventTypes?: InputMaybe<Array<WebhookEventType>>;
6256
6357
  method?: InputMaybe<HttpMethod>;
6358
+ notificationEmailAddresses?: InputMaybe<Array<Scalars['String']['input']>>;
6257
6359
  token?: InputMaybe<Scalars['String']['input']>;
6258
6360
  url?: InputMaybe<Scalars['String']['input']>;
6259
6361
  };
@@ -6396,6 +6498,18 @@ export type CustomerReminderSettingsInput = {
6396
6498
  value?: InputMaybe<Array<CustomerReminderSettingsEnterpriseSettingInput>>;
6397
6499
  };
6398
6500
 
6501
+ export type DataRetentionDurationInput = {
6502
+ manageable?: InputMaybe<Scalars['Boolean']['input']>;
6503
+ /** The duration in minutes stale data is retained before it is anonymized. */
6504
+ value?: InputMaybe<Scalars['Int']['input']>;
6505
+ };
6506
+
6507
+ export type DataToAnonymizeInput = {
6508
+ manageable?: InputMaybe<Scalars['Boolean']['input']>;
6509
+ /** List of entities that should be considered for anonymization. */
6510
+ value?: InputMaybe<Array<AnonymizableEntity>>;
6511
+ };
6512
+
6399
6513
  export type DefaultCallbackRequestFormIdInput = {
6400
6514
  manageable?: InputMaybe<Scalars['Boolean']['input']>;
6401
6515
  /** The default form to be used when creating a callback request. */