@pexip-engage-public/graphql 1.0.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.
@@ -0,0 +1,4280 @@
1
+ /// <reference types="./scalars.d.ts" />
2
+ export type Maybe<T> = T | null;
3
+ export type InputMaybe<T> = Maybe<T>;
4
+ export type Exact<T extends {
5
+ [key: string]: unknown;
6
+ }> = {
7
+ [K in keyof T]: T[K];
8
+ };
9
+ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
10
+ [SubKey in K]?: Maybe<T[SubKey]>;
11
+ };
12
+ export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
13
+ [SubKey in K]: Maybe<T[SubKey]>;
14
+ };
15
+ export type MakeEmpty<T extends {
16
+ [key: string]: unknown;
17
+ }, K extends keyof T> = {
18
+ [_ in K]?: never;
19
+ };
20
+ export type Incremental<T> = T | {
21
+ [P in keyof T]?: P extends " $fragmentName" | "__typename" ? T[P] : never;
22
+ };
23
+ /** All built-in and custom scalars, mapped to their actual values */
24
+ export type Scalars = {
25
+ ID: {
26
+ input: string;
27
+ output: string;
28
+ };
29
+ String: {
30
+ input: string;
31
+ output: string;
32
+ };
33
+ Boolean: {
34
+ input: boolean;
35
+ output: boolean;
36
+ };
37
+ Int: {
38
+ input: number;
39
+ output: number;
40
+ };
41
+ Float: {
42
+ input: number;
43
+ output: number;
44
+ };
45
+ /** ISO 8601 YYYY-MM-DD calendar date format */
46
+ CalendarDate: {
47
+ input: CalendarDateString;
48
+ output: CalendarDateString;
49
+ };
50
+ /** A valid ISO 8601 date format */
51
+ ISO8601: {
52
+ input: ISO8601String;
53
+ output: ISO8601String;
54
+ };
55
+ /** The `JSONObject` scalar type represents JSON objects as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */
56
+ JSONObject: {
57
+ input: Record<string, unknown>;
58
+ output: Record<string, unknown>;
59
+ };
60
+ /** ISO 8601 hh:mm:ss time format */
61
+ Time: {
62
+ input: TimeString;
63
+ output: TimeString;
64
+ };
65
+ };
66
+ export type ActiveLanguagesEnterpriseSetting = {
67
+ createdAt: Scalars["ISO8601"]["output"];
68
+ manageable: Scalars["Boolean"]["output"];
69
+ updatedAt: Scalars["ISO8601"]["output"];
70
+ /** The languages supported by the enterprise. */
71
+ value: Array<Language>;
72
+ };
73
+ export type AgentPrioritizationEnabledEnterpriseSetting = {
74
+ createdAt: Scalars["ISO8601"]["output"];
75
+ manageable: Scalars["Boolean"]["output"];
76
+ updatedAt: Scalars["ISO8601"]["output"];
77
+ /** Whether ranking should be applied when offering employees for scheduling. */
78
+ value: Scalars["Boolean"]["output"];
79
+ };
80
+ export type AllowedExternalCalendarAccountProvidersEnterpriseSetting = {
81
+ createdAt: Scalars["ISO8601"]["output"];
82
+ manageable: Scalars["Boolean"]["output"];
83
+ updatedAt: Scalars["ISO8601"]["output"];
84
+ /** The providers from which an employee can choose to connect an external calendar account. */
85
+ value: Array<ExternalCalendarProvider>;
86
+ };
87
+ export type AllowedPluginDomainsEnterpriseSetting = {
88
+ createdAt: Scalars["ISO8601"]["output"];
89
+ manageable: Scalars["Boolean"]["output"];
90
+ updatedAt: Scalars["ISO8601"]["output"];
91
+ /** The domains on which the plugin can be integrated. */
92
+ value: Array<Scalars["String"]["output"]>;
93
+ };
94
+ export type AnswerOption = {
95
+ createdAt: Scalars["ISO8601"]["output"];
96
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
97
+ externalId?: Maybe<Scalars["String"]["output"]>;
98
+ id: Scalars["ID"]["output"];
99
+ label?: Maybe<TranslationObject>;
100
+ order: Scalars["Int"]["output"];
101
+ question: Question;
102
+ translations: AnswerOptionTranslations;
103
+ updatedAt: Scalars["ISO8601"]["output"];
104
+ value?: Maybe<Scalars["String"]["output"]>;
105
+ };
106
+ export type AnswerOptionCreateInput = {
107
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
108
+ order?: InputMaybe<Scalars["Int"]["input"]>;
109
+ translations: AnswerOptionTranslationsCreateInput;
110
+ value?: InputMaybe<Scalars["String"]["input"]>;
111
+ };
112
+ export type AnswerOptionPatchInput = {
113
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
114
+ order?: InputMaybe<Scalars["Int"]["input"]>;
115
+ translations?: InputMaybe<AnswerOptionTranslationsPatchInput>;
116
+ value?: InputMaybe<Scalars["String"]["input"]>;
117
+ };
118
+ export type AnswerOptionTranslations = {
119
+ label: Array<TranslationObject>;
120
+ };
121
+ export type AnswerOptionTranslationsCreateInput = {
122
+ label: Array<TranslationObjectInput>;
123
+ };
124
+ export type AnswerOptionTranslationsPatchInput = {
125
+ label?: InputMaybe<Array<TranslationObjectInput>>;
126
+ };
127
+ export type AppliedTemplate = {
128
+ availabilityTemplate: AvailabilityTemplate;
129
+ createdAt: Scalars["ISO8601"]["output"];
130
+ endDate: Scalars["CalendarDate"]["output"];
131
+ id: Scalars["ID"]["output"];
132
+ startDate: Scalars["CalendarDate"]["output"];
133
+ timeZone: Scalars["String"]["output"];
134
+ updatedAt: Scalars["ISO8601"]["output"];
135
+ };
136
+ export type AppliedTemplateConnection = {
137
+ edges: Array<AppliedTemplateEdge>;
138
+ pageInfo: PageInfo;
139
+ totalCount: Scalars["Int"]["output"];
140
+ };
141
+ export type AppliedTemplateCreateInput = {
142
+ /** Is inclusive. */
143
+ endDate: Scalars["CalendarDate"]["input"];
144
+ /** Is inclusive. */
145
+ startDate: Scalars["CalendarDate"]["input"];
146
+ };
147
+ export type AppliedTemplateEdge = {
148
+ cursor: Scalars["String"]["output"];
149
+ node: AppliedTemplate;
150
+ };
151
+ export type AppliedTemplateRevertInput = {
152
+ employeeId: Scalars["ID"]["input"];
153
+ /** Is inclusive. */
154
+ endDate: Scalars["CalendarDate"]["input"];
155
+ /** Is inclusive. */
156
+ startDate: Scalars["CalendarDate"]["input"];
157
+ type?: InputMaybe<AvailabilityTemplateType>;
158
+ };
159
+ export type Appointment = {
160
+ answers: Array<AppointmentAnswer>;
161
+ appointmentParticipants: Array<AppointmentParticipant>;
162
+ createdAt: Scalars["ISO8601"]["output"];
163
+ createdBy?: Maybe<AppointmentActor>;
164
+ createdByType: UserType;
165
+ createdFrom: AppointmentSource;
166
+ duration?: Maybe<Scalars["Int"]["output"]>;
167
+ end?: Maybe<Scalars["ISO8601"]["output"]>;
168
+ externalId?: Maybe<Scalars["String"]["output"]>;
169
+ id: Scalars["ID"]["output"];
170
+ internalNotes?: Maybe<Scalars["String"]["output"]>;
171
+ leadSegment?: Maybe<LeadSegment>;
172
+ listing?: Maybe<Listing>;
173
+ location?: Maybe<Location>;
174
+ meetingType: MeetingType;
175
+ metadata?: Maybe<Scalars["JSONObject"]["output"]>;
176
+ office: Office;
177
+ participants: Array<Participant>;
178
+ primaryCustomer: Customer;
179
+ primaryEmployee: Employee;
180
+ start?: Maybe<Scalars["ISO8601"]["output"]>;
181
+ status: AppointmentStatus;
182
+ subject: Subject;
183
+ trailingBufferTime: Scalars["Int"]["output"];
184
+ updatedAt: Scalars["ISO8601"]["output"];
185
+ updatedBy?: Maybe<AppointmentActor>;
186
+ updatedByType: UserType;
187
+ updatedFrom: AppointmentSource;
188
+ };
189
+ export type AppointmentAppointmentParticipantsArgs = {
190
+ role?: InputMaybe<ParticipantRole>;
191
+ type?: InputMaybe<ParticipantType>;
192
+ };
193
+ export type AppointmentActor = Customer | Employee | {
194
+ __typename?: "%other";
195
+ };
196
+ export type AppointmentAnswer = {
197
+ answerType: FormType;
198
+ createdAt: Scalars["ISO8601"]["output"];
199
+ form: Form;
200
+ id: Scalars["ID"]["output"];
201
+ question: Question;
202
+ selectedAnswerOptions?: Maybe<Array<AnswerOption>>;
203
+ updatedAt: Scalars["ISO8601"]["output"];
204
+ value?: Maybe<Scalars["String"]["output"]>;
205
+ };
206
+ export type AppointmentAnswerInput = {
207
+ questionId: Scalars["ID"]["input"];
208
+ selectedAnswerOptionIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
209
+ value?: InputMaybe<Scalars["String"]["input"]>;
210
+ };
211
+ export type AppointmentAutoAcceptEnterpriseSetting = {
212
+ createdAt: Scalars["ISO8601"]["output"];
213
+ manageable: Scalars["Boolean"]["output"];
214
+ updatedAt: Scalars["ISO8601"]["output"];
215
+ /** The default appointment auto accept value. */
216
+ value: Scalars["Boolean"]["output"];
217
+ };
218
+ export type AppointmentCancelInput = {
219
+ answers?: InputMaybe<Array<AppointmentAnswerInput>>;
220
+ message?: InputMaybe<Scalars["String"]["input"]>;
221
+ };
222
+ export type AppointmentCompleteInput = {
223
+ answers?: InputMaybe<Array<AppointmentAnswerInput>>;
224
+ end?: InputMaybe<Scalars["ISO8601"]["input"]>;
225
+ noShow?: InputMaybe<Scalars["Boolean"]["input"]>;
226
+ start?: InputMaybe<Scalars["ISO8601"]["input"]>;
227
+ };
228
+ export type AppointmentCompletionAllowedDaysBeforeStartEnterpriseSetting = {
229
+ createdAt: Scalars["ISO8601"]["output"];
230
+ manageable: Scalars["Boolean"]["output"];
231
+ updatedAt: Scalars["ISO8601"]["output"];
232
+ /** The number of days before its start from when an appointment can be completed. */
233
+ value: Scalars["Int"]["output"];
234
+ };
235
+ export type AppointmentConfirmedSessionEvent = {
236
+ application: SessionEventApplication;
237
+ payload: AppointmentConfirmedSessionEventPayload;
238
+ sessionId: Scalars["String"]["input"];
239
+ };
240
+ export type AppointmentConfirmedSessionEventPayload = {
241
+ appointmentId: Scalars["ID"]["input"];
242
+ };
243
+ export type AppointmentConnection = {
244
+ edges: Array<AppointmentEdge>;
245
+ pageInfo: PageInfo;
246
+ totalCount: Scalars["Int"]["output"];
247
+ };
248
+ export type AppointmentCreateInput = {
249
+ answers?: InputMaybe<Array<AppointmentAnswerInput>>;
250
+ appointmentParticipants: Array<AppointmentParticipantCreateInput>;
251
+ coverageRegionFilter?: InputMaybe<GeolocationInput>;
252
+ employeeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
253
+ end: Scalars["ISO8601"]["input"];
254
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
255
+ internalNotes?: InputMaybe<Scalars["String"]["input"]>;
256
+ leadSegmentId?: InputMaybe<Scalars["ID"]["input"]>;
257
+ listingId?: InputMaybe<Scalars["ID"]["input"]>;
258
+ location?: InputMaybe<LocationInput>;
259
+ meetingType: MeetingType;
260
+ metadata?: InputMaybe<Scalars["JSONObject"]["input"]>;
261
+ officeId: Scalars["ID"]["input"];
262
+ start: Scalars["ISO8601"]["input"];
263
+ subjectId: Scalars["ID"]["input"];
264
+ trailingBufferTime?: InputMaybe<Scalars["Int"]["input"]>;
265
+ };
266
+ export type AppointmentCrossOfficeParticipantSelectionEnabledEnterpriseSetting = {
267
+ createdAt: Scalars["ISO8601"]["output"];
268
+ manageable: Scalars["Boolean"]["output"];
269
+ updatedAt: Scalars["ISO8601"]["output"];
270
+ /** Whether reassigning appointments to another office is allowed. */
271
+ value: Scalars["Boolean"]["output"];
272
+ };
273
+ export type AppointmentDefaultEstimatedDurationEnterpriseSetting = {
274
+ createdAt: Scalars["ISO8601"]["output"];
275
+ manageable: Scalars["Boolean"]["output"];
276
+ updatedAt: Scalars["ISO8601"]["output"];
277
+ /** The default appointment duration. */
278
+ value: Scalars["Int"]["output"];
279
+ };
280
+ export type AppointmentEarliestPossibleEnterpriseSetting = {
281
+ createdAt: Scalars["ISO8601"]["output"];
282
+ manageable: Scalars["Boolean"]["output"];
283
+ updatedAt: Scalars["ISO8601"]["output"];
284
+ /** The earliest possible time from now an appointment can be booked. */
285
+ value: Scalars["Int"]["output"];
286
+ };
287
+ export type AppointmentEdge = {
288
+ cursor: Scalars["String"]["output"];
289
+ node: Appointment;
290
+ };
291
+ export type AppointmentEmailMeta = {
292
+ eventType: Scalars["String"]["input"];
293
+ message?: InputMaybe<Scalars["String"]["input"]>;
294
+ };
295
+ export type AppointmentEventType = "ACCEPTED_BY_EMPLOYEE" | "ALTERNATIVE_DATE_REQUESTED_BY_EMPLOYEE" | "ASSIGNED_BY_EMPLOYEE" | "CANCELLED_BY_CUSTOMER" | "CANCELLED_BY_EMPLOYEE" | "COMPLETED_BY_EMPLOYEE" | "CREATED_BY_CUSTOMER" | "CREATED_BY_EMPLOYEE" | "REQUEST_CREATED_BY_CUSTOMER" | "REQUEST_CREATED_BY_EMPLOYEE" | "REQUEST_RESCHEDULED_BY_CUSTOMER" | "RESCHEDULED_BY_CUSTOMER" | "RESCHEDULED_BY_EMPLOYEE" | "SECONDARY_PARTICIPANTS_UPDATED" | "SECONDARY_PARTICIPANT_ADDED" | "SECONDARY_PARTICIPANT_REMOVED";
296
+ export type AppointmentInviteInput = {
297
+ appointmentParticipants: Array<AppointmentParticipantCreateInput>;
298
+ coverageRegionFilter?: InputMaybe<GeolocationInput>;
299
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
300
+ internalNotes?: InputMaybe<Scalars["String"]["input"]>;
301
+ leadSegmentId?: InputMaybe<Scalars["ID"]["input"]>;
302
+ listingId?: InputMaybe<Scalars["ID"]["input"]>;
303
+ location?: InputMaybe<LocationInput>;
304
+ meetingType: MeetingType;
305
+ message?: InputMaybe<Scalars["String"]["input"]>;
306
+ metadata?: InputMaybe<Scalars["JSONObject"]["input"]>;
307
+ officeId: Scalars["ID"]["input"];
308
+ subjectId: Scalars["ID"]["input"];
309
+ trailingBufferTime?: InputMaybe<Scalars["Int"]["input"]>;
310
+ };
311
+ export type AppointmentLatestPossibleEnterpriseSetting = {
312
+ createdAt: Scalars["ISO8601"]["output"];
313
+ manageable: Scalars["Boolean"]["output"];
314
+ updatedAt: Scalars["ISO8601"]["output"];
315
+ /** The latest possible time from now an appointment can be booked. */
316
+ value: Scalars["Int"]["output"];
317
+ };
318
+ export type AppointmentParticipant = {
319
+ appointment: Appointment;
320
+ cancelUrl: Scalars["String"]["output"];
321
+ editUrl: Scalars["String"]["output"];
322
+ googleCalendarUrl: Scalars["String"]["output"];
323
+ icalUrl: Scalars["String"]["output"];
324
+ inviteUrl: Scalars["String"]["output"];
325
+ office365CalendarUrl: Scalars["String"]["output"];
326
+ participant: Participant;
327
+ role: ParticipantRole;
328
+ token: Scalars["String"]["output"];
329
+ type: ParticipantType;
330
+ videoTestUrl: Scalars["String"]["output"];
331
+ videoUrl: Scalars["String"]["output"];
332
+ };
333
+ export type AppointmentParticipantCreateInput = {
334
+ participantId: Scalars["ID"]["input"];
335
+ role: ParticipantRole;
336
+ type: ParticipantType;
337
+ };
338
+ export type AppointmentParticipantInput = {
339
+ id: Scalars["ID"]["input"];
340
+ type: TemplateReceiverType;
341
+ };
342
+ export type AppointmentParticipantPatchInput = {
343
+ participantId: Scalars["ID"]["input"];
344
+ role: ParticipantRole;
345
+ type: ParticipantType;
346
+ };
347
+ export type AppointmentPatchInput = {
348
+ answers?: InputMaybe<Array<AppointmentAnswerInput>>;
349
+ appointmentParticipants?: InputMaybe<Array<AppointmentParticipantPatchInput>>;
350
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
351
+ internalNotes?: InputMaybe<Scalars["String"]["input"]>;
352
+ leadSegmentId?: InputMaybe<Scalars["ID"]["input"]>;
353
+ listingId?: InputMaybe<Scalars["ID"]["input"]>;
354
+ location?: InputMaybe<LocationInput>;
355
+ metadata?: InputMaybe<Scalars["JSONObject"]["input"]>;
356
+ };
357
+ export type AppointmentReassignInput = {
358
+ message?: InputMaybe<Scalars["String"]["input"]>;
359
+ officeId: Scalars["ID"]["input"];
360
+ primaryEmployeeId: Scalars["ID"]["input"];
361
+ };
362
+ export type AppointmentRequestRescheduleInput = {
363
+ message?: InputMaybe<Scalars["String"]["input"]>;
364
+ };
365
+ export type AppointmentRescheduleInput = {
366
+ answers?: InputMaybe<Array<AppointmentAnswerInput>>;
367
+ end: Scalars["ISO8601"]["input"];
368
+ message?: InputMaybe<Scalars["String"]["input"]>;
369
+ metadata?: InputMaybe<Scalars["JSONObject"]["input"]>;
370
+ start: Scalars["ISO8601"]["input"];
371
+ };
372
+ export type AppointmentSort = {
373
+ direction: SortDirection;
374
+ field: SortableAppointmentFields;
375
+ };
376
+ export type AppointmentSource = "BACKOFFICE_APP" | "OTHER" | "PARTNER_BOOKING_APP" | "PLUGIN";
377
+ export type AppointmentStatus = "ACCEPTED" | "ALTERNATIVE_DATE_REQUESTED" | "CANCELLED" | "COMPLETED" | "INCOMING_REQUEST" | "NO_SHOW" | "OUTGOING_INVITE";
378
+ export type AppointmentTextMessageMeta = {
379
+ eventType: Scalars["String"]["input"];
380
+ message?: InputMaybe<Scalars["String"]["input"]>;
381
+ };
382
+ export type AppointmentTrailingBufferTimeEnterpriseSetting = {
383
+ createdAt: Scalars["ISO8601"]["output"];
384
+ manageable: Scalars["Boolean"]["output"];
385
+ updatedAt: Scalars["ISO8601"]["output"];
386
+ /** The default trailing buffer time after an appointment. */
387
+ value: Scalars["Int"]["output"];
388
+ };
389
+ export type AppointmentTravelBufferTimeEnterpriseSetting = {
390
+ createdAt: Scalars["ISO8601"]["output"];
391
+ manageable: Scalars["Boolean"]["output"];
392
+ updatedAt: Scalars["ISO8601"]["output"];
393
+ /** The default travel buffer time after an appointment. */
394
+ value: Scalars["Int"]["output"];
395
+ };
396
+ export type AvailabilitySetting = {
397
+ autoAccept: BooleanAvailabilitySetting;
398
+ estimatedDuration: IntegerAvailabilitySetting;
399
+ maxConcurrentAppointments: IntegerAvailabilitySetting;
400
+ meetingType: MeetingType;
401
+ office: Office;
402
+ subject: Subject;
403
+ timeSlotEarliestPossible: IntegerAvailabilitySetting;
404
+ timeSlotGranularity: IntegerAvailabilitySetting;
405
+ timeSlotLatestPossible: IntegerAvailabilitySetting;
406
+ trailingBufferTime: IntegerAvailabilitySetting;
407
+ };
408
+ export type AvailabilityTemplate = {
409
+ access: AvailabilityTemplateAccess;
410
+ appliedOn: Array<AppliedTemplate>;
411
+ availabilityTimeRanges: Array<AvailabilityTimeRange>;
412
+ color: Scalars["String"]["output"];
413
+ createdAt: Scalars["ISO8601"]["output"];
414
+ employee: Employee;
415
+ id: Scalars["ID"]["output"];
416
+ isDefault: Scalars["Boolean"]["output"];
417
+ name: Scalars["String"]["output"];
418
+ order: Scalars["Int"]["output"];
419
+ timeZone: Scalars["String"]["output"];
420
+ type: AvailabilityTemplateType;
421
+ updatedAt: Scalars["ISO8601"]["output"];
422
+ };
423
+ export type AvailabilityTemplateAccess = {
424
+ createAvailabilityTimeRanges: Scalars["Boolean"]["output"];
425
+ delete: Scalars["Boolean"]["output"];
426
+ patch: Scalars["Boolean"]["output"];
427
+ };
428
+ export type AvailabilityTemplateCreateInput = {
429
+ color?: InputMaybe<Scalars["String"]["input"]>;
430
+ employeeId: Scalars["ID"]["input"];
431
+ name: Scalars["String"]["input"];
432
+ order?: InputMaybe<Scalars["Int"]["input"]>;
433
+ timeZone: Scalars["String"]["input"];
434
+ type: AvailabilityTemplateType;
435
+ };
436
+ export type AvailabilityTemplatePatchInput = {
437
+ color?: InputMaybe<Scalars["String"]["input"]>;
438
+ name?: InputMaybe<Scalars["String"]["input"]>;
439
+ order?: InputMaybe<Scalars["Int"]["input"]>;
440
+ timeZone?: InputMaybe<Scalars["String"]["input"]>;
441
+ };
442
+ export type AvailabilityTemplateSort = {
443
+ direction: SortDirection;
444
+ field: SortableAvailabilityTemplateFields;
445
+ };
446
+ export type AvailabilityTemplateType = "DAY" | "WEEK";
447
+ export type AvailabilityTimeRange = {
448
+ access: AvailabilityTimeRangeAccess;
449
+ availabilityTemplate: AvailabilityTemplate;
450
+ availabilityTimeRangeOffices: Array<AvailabilityTimeRangeOffice>;
451
+ createdAt: Scalars["ISO8601"]["output"];
452
+ dayOfWeek?: Maybe<DayOfWeek>;
453
+ endTime: Scalars["Time"]["output"];
454
+ id: Scalars["ID"]["output"];
455
+ startTime: Scalars["Time"]["output"];
456
+ updatedAt: Scalars["ISO8601"]["output"];
457
+ };
458
+ export type AvailabilityTimeRangeAccess = {
459
+ createAvailabilityTimeRangeOffices: Scalars["Boolean"]["output"];
460
+ delete: Scalars["Boolean"]["output"];
461
+ patch: Scalars["Boolean"]["output"];
462
+ };
463
+ export type AvailabilityTimeRangeCreateInput = {
464
+ dayOfWeek?: InputMaybe<DayOfWeek>;
465
+ endTime: Scalars["Time"]["input"];
466
+ startTime: Scalars["Time"]["input"];
467
+ };
468
+ export type AvailabilityTimeRangeOffice = {
469
+ access: AvailabilityTimeRangeOfficeAccess;
470
+ availabilitySettings: Array<TimeRangeAvailabilitySetting>;
471
+ availabilitySettingsAggregated: Array<AvailabilityTimeRangeOfficeSubject>;
472
+ availabilityTimeRange: AvailabilityTimeRange;
473
+ createdAt: Scalars["ISO8601"]["output"];
474
+ forceManualAccept: Scalars["Boolean"]["output"];
475
+ id: Scalars["ID"]["output"];
476
+ office: Office;
477
+ overridesDefault: Scalars["Boolean"]["output"];
478
+ updatedAt: Scalars["ISO8601"]["output"];
479
+ };
480
+ export type AvailabilityTimeRangeOfficeAccess = {
481
+ delete: Scalars["Boolean"]["output"];
482
+ patch: Scalars["Boolean"]["output"];
483
+ };
484
+ export type AvailabilityTimeRangeOfficePutInput = {
485
+ availabilityTimeRangeOfficeSubjects?: InputMaybe<Array<AvailabilityTimeRangeOfficeSubjectInput>>;
486
+ forceManualAccept: Scalars["Boolean"]["input"];
487
+ officeId: Scalars["ID"]["input"];
488
+ overridesDefault: Scalars["Boolean"]["input"];
489
+ };
490
+ export type AvailabilityTimeRangeOfficeSubject = {
491
+ availabilitySettings: Array<TimeRangeOfficeSubjectAvailabilitySetting>;
492
+ subject: Subject;
493
+ };
494
+ export type AvailabilityTimeRangeOfficeSubjectInput = {
495
+ availabilitySettings: Array<TimeRangeOfficeSubjectAvailabilitySettingInput>;
496
+ subjectId: Scalars["ID"]["input"];
497
+ };
498
+ export type AvailabilityTimeRangePatchInput = {
499
+ dayOfWeek?: InputMaybe<DayOfWeek>;
500
+ endTime?: InputMaybe<Scalars["Time"]["input"]>;
501
+ startTime?: InputMaybe<Scalars["Time"]["input"]>;
502
+ };
503
+ export type BooleanAvailabilitySetting = {
504
+ default: Scalars["Boolean"]["output"];
505
+ isOverridden: Scalars["Boolean"]["output"];
506
+ value: Scalars["Boolean"]["output"];
507
+ };
508
+ export type CalendarEventTemplate = {
509
+ contentOverride?: Maybe<Scalars["String"]["output"]>;
510
+ context: TemplateContext;
511
+ createdAt: Scalars["ISO8601"]["output"];
512
+ defaultContent: Scalars["String"]["output"];
513
+ defaultSubject: Scalars["String"]["output"];
514
+ defaultVariables?: Maybe<Scalars["JSONObject"]["output"]>;
515
+ id: Scalars["ID"]["output"];
516
+ overrideActive: Scalars["Boolean"]["output"];
517
+ receiver: TemplateReceiverType;
518
+ subjectOverride?: Maybe<Scalars["String"]["output"]>;
519
+ updatedAt: Scalars["ISO8601"]["output"];
520
+ variablesOverride?: Maybe<Scalars["JSONObject"]["output"]>;
521
+ };
522
+ export type CalendarEventTemplatePatchInput = {
523
+ contentOverride?: InputMaybe<Scalars["String"]["input"]>;
524
+ overrideActive?: InputMaybe<Scalars["Boolean"]["input"]>;
525
+ variablesOverride?: InputMaybe<Scalars["JSONObject"]["input"]>;
526
+ };
527
+ export type CalendarEventTemplateRender = {
528
+ content: Scalars["String"]["output"];
529
+ meta: RenderedTemplateMeta;
530
+ subject: Scalars["String"]["output"];
531
+ };
532
+ export type CommunicationChannel = "EMAIL" | "TEXT_MESSAGE";
533
+ export type Customer = {
534
+ company?: Maybe<Scalars["String"]["output"]>;
535
+ createdAt: Scalars["ISO8601"]["output"];
536
+ customerNumber?: Maybe<Scalars["String"]["output"]>;
537
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
538
+ email?: Maybe<Scalars["String"]["output"]>;
539
+ existing: Scalars["Boolean"]["output"];
540
+ externalId?: Maybe<Scalars["String"]["output"]>;
541
+ firstName?: Maybe<Scalars["String"]["output"]>;
542
+ fullName?: Maybe<Scalars["String"]["output"]>;
543
+ id: Scalars["ID"]["output"];
544
+ language: Language;
545
+ lastName?: Maybe<Scalars["String"]["output"]>;
546
+ location?: Maybe<Location>;
547
+ notes?: Maybe<Scalars["String"]["output"]>;
548
+ phoneNumber?: Maybe<Scalars["String"]["output"]>;
549
+ timeZone: Scalars["String"]["output"];
550
+ updatedAt: Scalars["ISO8601"]["output"];
551
+ };
552
+ export type CustomerConnection = {
553
+ edges: Array<CustomerEdge>;
554
+ pageInfo: PageInfo;
555
+ totalCount: Scalars["Int"]["output"];
556
+ };
557
+ export type CustomerCreateInput = {
558
+ company?: InputMaybe<Scalars["String"]["input"]>;
559
+ customerNumber?: InputMaybe<Scalars["String"]["input"]>;
560
+ email?: InputMaybe<Scalars["String"]["input"]>;
561
+ existing?: InputMaybe<Scalars["Boolean"]["input"]>;
562
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
563
+ firstName?: InputMaybe<Scalars["String"]["input"]>;
564
+ language?: InputMaybe<Language>;
565
+ lastName?: InputMaybe<Scalars["String"]["input"]>;
566
+ location?: InputMaybe<LocationInput>;
567
+ notes?: InputMaybe<Scalars["String"]["input"]>;
568
+ phoneNumber?: InputMaybe<Scalars["String"]["input"]>;
569
+ timeZone?: InputMaybe<Scalars["String"]["input"]>;
570
+ };
571
+ export type CustomerDataSelectedSessionEventPayload = {
572
+ formId: Scalars["ID"]["input"];
573
+ };
574
+ export type CustomerEdge = {
575
+ cursor: Scalars["String"]["output"];
576
+ node: Customer;
577
+ };
578
+ export type CustomerNotificationSettingsEnterpriseSetting = {
579
+ createdAt: Scalars["ISO8601"]["output"];
580
+ manageable: Scalars["Boolean"]["output"];
581
+ updatedAt: Scalars["ISO8601"]["output"];
582
+ /** The settings used to calculate which notifications should be sent to the customer. */
583
+ value: Array<NotificationSettingsEnterpriseSettingValue>;
584
+ };
585
+ export type CustomerPatchInput = {
586
+ company?: InputMaybe<Scalars["String"]["input"]>;
587
+ customerNumber?: InputMaybe<Scalars["String"]["input"]>;
588
+ email?: InputMaybe<Scalars["String"]["input"]>;
589
+ existing?: InputMaybe<Scalars["Boolean"]["input"]>;
590
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
591
+ firstName?: InputMaybe<Scalars["String"]["input"]>;
592
+ language?: InputMaybe<Language>;
593
+ lastName?: InputMaybe<Scalars["String"]["input"]>;
594
+ location?: InputMaybe<LocationInput>;
595
+ notes?: InputMaybe<Scalars["String"]["input"]>;
596
+ phoneNumber?: InputMaybe<Scalars["String"]["input"]>;
597
+ timeZone?: InputMaybe<Scalars["String"]["input"]>;
598
+ };
599
+ export type CustomerReminderSettingsEnterpriseSetting = {
600
+ createdAt: Scalars["ISO8601"]["output"];
601
+ manageable: Scalars["Boolean"]["output"];
602
+ updatedAt: Scalars["ISO8601"]["output"];
603
+ /** The settings used to calculate which reminders should be sent to the customer. */
604
+ value: Array<CustomerReminderSettingsEnterpriseSettingValue>;
605
+ };
606
+ export type CustomerReminderSettingsEnterpriseSettingInput = {
607
+ channel: CommunicationChannel;
608
+ minutesUpfront: Scalars["Int"]["input"];
609
+ };
610
+ export type CustomerReminderSettingsEnterpriseSettingValue = {
611
+ channel: CommunicationChannel;
612
+ minutesUpfront: Scalars["Int"]["output"];
613
+ };
614
+ export type CustomerSort = {
615
+ direction: SortDirection;
616
+ field: SortableCustomerFields;
617
+ };
618
+ export type DataSelectedSessionEvent = {
619
+ application: SessionEventApplication;
620
+ payload: DataSelectedSessionEventPayload;
621
+ sessionId: Scalars["String"]["input"];
622
+ };
623
+ export type DataSelectedSessionEventPayload = {
624
+ customer?: InputMaybe<CustomerDataSelectedSessionEventPayload>;
625
+ employeeId?: InputMaybe<Scalars["ID"]["input"]>;
626
+ location?: InputMaybe<GeolocationInput>;
627
+ meetingType?: InputMaybe<MeetingType>;
628
+ officeId?: InputMaybe<Scalars["ID"]["input"]>;
629
+ question?: InputMaybe<QuestionDataSelectedSessionEventPayload>;
630
+ subjectGroupId?: InputMaybe<Scalars["ID"]["input"]>;
631
+ subjectId?: InputMaybe<Scalars["ID"]["input"]>;
632
+ timetable?: InputMaybe<TimetableDataSelectedSessionEventPayload>;
633
+ };
634
+ export type DataShownSessionEvent = {
635
+ application: SessionEventApplication;
636
+ payload: DataShownSessionEventPayload;
637
+ sessionId: Scalars["String"]["input"];
638
+ };
639
+ export type DataShownSessionEventPayload = {
640
+ employee?: InputMaybe<EmployeeDataShownSessionEventPayload>;
641
+ meetingType?: InputMaybe<MeetingTypeDataShownSessionEventPayload>;
642
+ office?: InputMaybe<OfficeDataShownSessionEventPayload>;
643
+ question?: InputMaybe<QuestionDataShownSessionEventPayload>;
644
+ subject?: InputMaybe<SubjectDataShownSessionEventPayload>;
645
+ subjectGroup?: InputMaybe<SubjectGroupDataShownSessionEventPayload>;
646
+ timetable?: InputMaybe<TimetableDataShownSessionEventPayload>;
647
+ };
648
+ export type DayOfWeek = "FRIDAY" | "MONDAY" | "SATURDAY" | "SUNDAY" | "THURSDAY" | "TUESDAY" | "WEDNESDAY";
649
+ export type DefaultCountryEnterpriseSetting = {
650
+ createdAt: Scalars["ISO8601"]["output"];
651
+ manageable: Scalars["Boolean"]["output"];
652
+ updatedAt: Scalars["ISO8601"]["output"];
653
+ /** The default country used wherever no country is provided. */
654
+ value: Scalars["String"]["output"];
655
+ };
656
+ export type DefaultExternalCalendarSettingsEnterpriseSetting = {
657
+ createdAt: Scalars["ISO8601"]["output"];
658
+ manageable: Scalars["Boolean"]["output"];
659
+ updatedAt: Scalars["ISO8601"]["output"];
660
+ /** The default external calendar settings that are used when a new primary external calendar is created. */
661
+ value: DefaultExternalCalendarSettingsSettingValue;
662
+ };
663
+ export type DefaultExternalCalendarSettingsSettingInput = {
664
+ exportAppointments: ExternalCalendarDefaultSettingCondition;
665
+ exportAvailability: ExternalCalendarDefaultSettingCondition;
666
+ exportListings: ExternalCalendarDefaultSettingCondition;
667
+ importEvents: ExternalCalendarDefaultSettingCondition;
668
+ };
669
+ export type DefaultExternalCalendarSettingsSettingValue = {
670
+ exportAppointments: ExternalCalendarDefaultSettingCondition;
671
+ exportAvailability: ExternalCalendarDefaultSettingCondition;
672
+ exportListings: ExternalCalendarDefaultSettingCondition;
673
+ importEvents: ExternalCalendarDefaultSettingCondition;
674
+ };
675
+ export type DefaultLanguageEnterpriseSetting = {
676
+ createdAt: Scalars["ISO8601"]["output"];
677
+ manageable: Scalars["Boolean"]["output"];
678
+ updatedAt: Scalars["ISO8601"]["output"];
679
+ /** The default language used wherever no language is specified. */
680
+ value: Language;
681
+ };
682
+ export type DefaultNameEnterpriseSetting = {
683
+ createdAt: Scalars["ISO8601"]["output"];
684
+ manageable: Scalars["Boolean"]["output"];
685
+ updatedAt: Scalars["ISO8601"]["output"];
686
+ /** The default (non-localized) name of the enterprise. */
687
+ value: Scalars["String"]["output"];
688
+ };
689
+ export type DefaultRedirectUrlEnterpriseSetting = {
690
+ createdAt: Scalars["ISO8601"]["output"];
691
+ manageable: Scalars["Boolean"]["output"];
692
+ updatedAt: Scalars["ISO8601"]["output"];
693
+ /** The default (non-localized) redirect URL to the plugin. */
694
+ value?: Maybe<Scalars["String"]["output"]>;
695
+ };
696
+ export type DefaultReturnPathDomainEnterpriseSetting = {
697
+ createdAt: Scalars["ISO8601"]["output"];
698
+ manageable: Scalars["Boolean"]["output"];
699
+ updatedAt: Scalars["ISO8601"]["output"];
700
+ /** The default (non-localized) return path domain used when sending emails. */
701
+ value?: Maybe<Scalars["String"]["output"]>;
702
+ };
703
+ export type DefaultSenderEmailAddressEnterpriseSetting = {
704
+ createdAt: Scalars["ISO8601"]["output"];
705
+ manageable: Scalars["Boolean"]["output"];
706
+ updatedAt: Scalars["ISO8601"]["output"];
707
+ /** The default (non-localized) sender email address used when sending emails. */
708
+ value: Scalars["String"]["output"];
709
+ };
710
+ export type DefaultSubjectIdEnterpriseSetting = {
711
+ createdAt: Scalars["ISO8601"]["output"];
712
+ manageable: Scalars["Boolean"]["output"];
713
+ updatedAt: Scalars["ISO8601"]["output"];
714
+ /** The default subject ID to be used when creating an appointment internally. */
715
+ value?: Maybe<Scalars["ID"]["output"]>;
716
+ };
717
+ export type DefaultTermsAndConditionsUrlEnterpriseSetting = {
718
+ createdAt: Scalars["ISO8601"]["output"];
719
+ manageable: Scalars["Boolean"]["output"];
720
+ updatedAt: Scalars["ISO8601"]["output"];
721
+ /** The default (non-localized) URL of the enterprise's terms and conditions. */
722
+ value: Scalars["String"]["output"];
723
+ };
724
+ export type DefaultTimeZoneEnterpriseSetting = {
725
+ createdAt: Scalars["ISO8601"]["output"];
726
+ manageable: Scalars["Boolean"]["output"];
727
+ updatedAt: Scalars["ISO8601"]["output"];
728
+ /** The default time zone used wherever no time zone is provided. */
729
+ value: Scalars["String"]["output"];
730
+ };
731
+ export type DefinedAvailability = {
732
+ employee: Employee;
733
+ end: Scalars["ISO8601"]["output"];
734
+ forceManualAccept: Scalars["Boolean"]["output"];
735
+ maxConcurrentAppointments: Scalars["Int"]["output"];
736
+ meetingType: MeetingType;
737
+ office: Office;
738
+ start: Scalars["ISO8601"]["output"];
739
+ subject: Subject;
740
+ };
741
+ export type DefinedAvailabilityEvent = {
742
+ employee: Employee;
743
+ end: Scalars["ISO8601"]["output"];
744
+ office: Office;
745
+ start: Scalars["ISO8601"]["output"];
746
+ };
747
+ export type EmailProvider = "DEFAULT" | "MANDRILL" | "MICROSOFT_GRAPH_API" | "PRETEND" | "SMTP";
748
+ export type EmailProviderEnterpriseSetting = {
749
+ createdAt: Scalars["ISO8601"]["output"];
750
+ manageable: Scalars["Boolean"]["output"];
751
+ updatedAt: Scalars["ISO8601"]["output"];
752
+ /** The email provider used to send emails. */
753
+ value: EmailProvider;
754
+ };
755
+ export type EmailTemplate = {
756
+ contentOverride?: Maybe<Scalars["String"]["output"]>;
757
+ context: TemplateContext;
758
+ createdAt: Scalars["ISO8601"]["output"];
759
+ defaultContent: Scalars["String"]["output"];
760
+ defaultVariables?: Maybe<Scalars["JSONObject"]["output"]>;
761
+ id: Scalars["ID"]["output"];
762
+ name: Scalars["String"]["output"];
763
+ overrideActive: Scalars["Boolean"]["output"];
764
+ receiver: TemplateReceiverType;
765
+ updatedAt: Scalars["ISO8601"]["output"];
766
+ variablesOverride?: Maybe<Scalars["JSONObject"]["output"]>;
767
+ };
768
+ export type EmailTemplatePatchInput = {
769
+ contentOverride?: InputMaybe<Scalars["String"]["input"]>;
770
+ overrideActive?: InputMaybe<Scalars["Boolean"]["input"]>;
771
+ variablesOverride?: InputMaybe<Scalars["JSONObject"]["input"]>;
772
+ };
773
+ export type EmailTemplateRender = {
774
+ content: Scalars["String"]["output"];
775
+ images: Array<EmailTemplateRenderImage>;
776
+ meta: RenderedTemplateMeta;
777
+ subject: Scalars["String"]["output"];
778
+ };
779
+ export type EmailTemplateRenderImage = {
780
+ content: Scalars["String"]["output"];
781
+ contentType: Scalars["String"]["output"];
782
+ name: Scalars["String"]["output"];
783
+ };
784
+ export type Employee = {
785
+ access: EmployeeAccess;
786
+ appliedTemplates: Array<AppliedTemplate>;
787
+ availabilityTemplates: Array<AvailabilityTemplate>;
788
+ availableRoles: Array<EmployeeRole>;
789
+ /** Email address intended for display purposes to customers. Communication emails (like appointment requests) will also be sent to this email. */
790
+ communicationEmail?: Maybe<Scalars["String"]["output"]>;
791
+ createdAt: Scalars["ISO8601"]["output"];
792
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
793
+ /** Email address intended for identification and login purposes. */
794
+ email: Scalars["String"]["output"];
795
+ externalCalendarAccounts: Array<ExternalCalendarAccount>;
796
+ externalId?: Maybe<Scalars["String"]["output"]>;
797
+ firstName?: Maybe<Scalars["String"]["output"]>;
798
+ fullName?: Maybe<Scalars["String"]["output"]>;
799
+ function?: Maybe<TranslationObject>;
800
+ groupedOfficeRelations: Array<GroupedOfficeRelation>;
801
+ id: Scalars["ID"]["output"];
802
+ language: Language;
803
+ lastName?: Maybe<Scalars["String"]["output"]>;
804
+ officeRelations: Array<OfficeRelation>;
805
+ onlinePlanning: Scalars["Boolean"]["output"];
806
+ phoneNumber?: Maybe<Scalars["String"]["output"]>;
807
+ profilePictureUrl?: Maybe<Scalars["String"]["output"]>;
808
+ roles: Array<OfficeRelationRole>;
809
+ staticVideoUrl?: Maybe<Scalars["String"]["output"]>;
810
+ status: EmployeeStatus;
811
+ subjectOfficeSchedulingSettings: Array<SubjectOfficeEmployeeSchedulingSetting>;
812
+ timeZone: Scalars["String"]["output"];
813
+ translations: EmployeeTranslations;
814
+ unavailability: Array<Unavailability>;
815
+ updatedAt: Scalars["ISO8601"]["output"];
816
+ };
817
+ export type EmployeeAppliedTemplatesArgs = {
818
+ availabilityTemplateId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
819
+ endDate?: InputMaybe<Scalars["CalendarDate"]["input"]>;
820
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
821
+ startDate?: InputMaybe<Scalars["CalendarDate"]["input"]>;
822
+ type?: InputMaybe<AvailabilityTemplateType>;
823
+ };
824
+ export type EmployeeExternalCalendarAccountsArgs = {
825
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
826
+ };
827
+ export type EmployeeOfficeRelationsArgs = {
828
+ officeId?: InputMaybe<Scalars["ID"]["input"]>;
829
+ role?: InputMaybe<OfficeRelationRole>;
830
+ };
831
+ export type EmployeeRolesArgs = {
832
+ officeId: Scalars["ID"]["input"];
833
+ };
834
+ export type EmployeeSubjectOfficeSchedulingSettingsArgs = {
835
+ officeId?: InputMaybe<Scalars["ID"]["input"]>;
836
+ subjectId?: InputMaybe<Scalars["ID"]["input"]>;
837
+ };
838
+ export type EmployeeUnavailabilityArgs = {
839
+ end?: InputMaybe<Scalars["ISO8601"]["input"]>;
840
+ start?: InputMaybe<Scalars["ISO8601"]["input"]>;
841
+ type?: InputMaybe<Array<UnavailabilityType>>;
842
+ };
843
+ /** The access object on the employee defines what actions the currently signed-in user is allowed to do on the employee. */
844
+ export type EmployeeAccess = {
845
+ patch: EmployeePatchAccess;
846
+ remove: Scalars["Boolean"]["output"];
847
+ };
848
+ export type EmployeeActivateInput = {
849
+ communicationEmail?: InputMaybe<Scalars["String"]["input"]>;
850
+ firstName: Scalars["String"]["input"];
851
+ language: Language;
852
+ lastName: Scalars["String"]["input"];
853
+ onlinePlanning?: InputMaybe<Scalars["Boolean"]["input"]>;
854
+ phoneNumber?: InputMaybe<Scalars["String"]["input"]>;
855
+ profilePictureUrl?: InputMaybe<Scalars["String"]["input"]>;
856
+ staticVideoUrl?: InputMaybe<Scalars["String"]["input"]>;
857
+ timeZone?: InputMaybe<Scalars["String"]["input"]>;
858
+ };
859
+ export type EmployeeConnection = {
860
+ edges: Array<EmployeeEdge>;
861
+ pageInfo: PageInfo;
862
+ totalCount: Scalars["Int"]["output"];
863
+ };
864
+ export type EmployeeCreateInput = {
865
+ availableRoles?: InputMaybe<Array<EmployeeRole>>;
866
+ communicationEmail?: InputMaybe<Scalars["String"]["input"]>;
867
+ email: Scalars["String"]["input"];
868
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
869
+ firstName?: InputMaybe<Scalars["String"]["input"]>;
870
+ language?: InputMaybe<Language>;
871
+ lastName?: InputMaybe<Scalars["String"]["input"]>;
872
+ officeRelations?: InputMaybe<Array<OfficeRelationCreateInput>>;
873
+ onlinePlanning?: InputMaybe<Scalars["Boolean"]["input"]>;
874
+ phoneNumber?: InputMaybe<Scalars["String"]["input"]>;
875
+ profilePictureUrl?: InputMaybe<Scalars["String"]["input"]>;
876
+ staticVideoUrl?: InputMaybe<Scalars["String"]["input"]>;
877
+ status?: InputMaybe<EmployeeStatus>;
878
+ timeZone?: InputMaybe<Scalars["String"]["input"]>;
879
+ translations: EmployeeTranslationsCreateInput;
880
+ };
881
+ export type EmployeeDataShownSessionEventPayload = {
882
+ ids: Array<Scalars["ID"]["input"]>;
883
+ };
884
+ export type EmployeeEdge = {
885
+ cursor: Scalars["String"]["output"];
886
+ node: Employee;
887
+ };
888
+ export type EmployeeNotificationSettingsEnterpriseSetting = {
889
+ createdAt: Scalars["ISO8601"]["output"];
890
+ manageable: Scalars["Boolean"]["output"];
891
+ updatedAt: Scalars["ISO8601"]["output"];
892
+ /** The settings used to calculate which notifications should be sent to the employee. */
893
+ value: Array<NotificationSettingsEnterpriseSettingValue>;
894
+ };
895
+ export type EmployeePatchAccess = {
896
+ availableRoles: Scalars["Boolean"]["output"];
897
+ communicationEmail: Scalars["Boolean"]["output"];
898
+ email: Scalars["Boolean"]["output"];
899
+ externalId: Scalars["Boolean"]["output"];
900
+ firstName: Scalars["Boolean"]["output"];
901
+ function: Scalars["Boolean"]["output"];
902
+ language: Scalars["Boolean"]["output"];
903
+ lastName: Scalars["Boolean"]["output"];
904
+ /** This officeRelations boolean indicates if the currently signed-in user can add new office relations. */
905
+ officeRelations: Scalars["Boolean"]["output"];
906
+ /** This onlinePlanning field can only be updated when the employee status is set to ACTIVE. */
907
+ onlinePlanning: Scalars["Boolean"]["output"];
908
+ phoneNumber: Scalars["Boolean"]["output"];
909
+ profilePictureUrl: Scalars["Boolean"]["output"];
910
+ staticVideoUrl: Scalars["Boolean"]["output"];
911
+ status: Scalars["Boolean"]["output"];
912
+ timeZone: Scalars["Boolean"]["output"];
913
+ };
914
+ export type EmployeePatchInput = {
915
+ availableRoles?: InputMaybe<Array<EmployeeRole>>;
916
+ communicationEmail?: InputMaybe<Scalars["String"]["input"]>;
917
+ email?: InputMaybe<Scalars["String"]["input"]>;
918
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
919
+ firstName?: InputMaybe<Scalars["String"]["input"]>;
920
+ language?: InputMaybe<Language>;
921
+ lastName?: InputMaybe<Scalars["String"]["input"]>;
922
+ officeRelations?: InputMaybe<Array<OfficeRelationPatchInput>>;
923
+ onlinePlanning?: InputMaybe<Scalars["Boolean"]["input"]>;
924
+ phoneNumber?: InputMaybe<Scalars["String"]["input"]>;
925
+ profilePictureUrl?: InputMaybe<Scalars["String"]["input"]>;
926
+ staticVideoUrl?: InputMaybe<Scalars["String"]["input"]>;
927
+ status?: InputMaybe<EmployeeStatus>;
928
+ timeZone?: InputMaybe<Scalars["String"]["input"]>;
929
+ translations?: InputMaybe<EmployeeTranslationsPatchInput>;
930
+ };
931
+ export type EmployeeRole = "ADMIN" | "AGENT" | "CENTRAL_PLANNER" | "OFFICE_MANAGER";
932
+ export type EmployeeSort = {
933
+ direction: SortDirection;
934
+ field: SortableEmployeeFields;
935
+ };
936
+ export type EmployeeStatus = "ACTIVE" | "PENDING" | "SUSPENDED";
937
+ export type EmployeeTranslations = {
938
+ function: Array<TranslationObject>;
939
+ };
940
+ export type EmployeeTranslationsCreateInput = {
941
+ function?: InputMaybe<Array<TranslationObjectInput>>;
942
+ };
943
+ export type EmployeeTranslationsPatchInput = {
944
+ function?: InputMaybe<Array<TranslationObjectInput>>;
945
+ };
946
+ export type EnterpriseSettingTranslationInput = {
947
+ language: Language;
948
+ value?: InputMaybe<Scalars["String"]["input"]>;
949
+ };
950
+ export type EnterpriseSettingTranslationValue = {
951
+ language: Language;
952
+ value: Scalars["String"]["output"];
953
+ };
954
+ export type EnterpriseSettings = {
955
+ /** The languages supported by the enterprise. */
956
+ activeLanguages: ActiveLanguagesEnterpriseSetting;
957
+ /** Whether ranking should be applied when offering employees for scheduling. */
958
+ agentPrioritizationEnabled: AgentPrioritizationEnabledEnterpriseSetting;
959
+ /** The providers from which an employee can choose to connect an external calendar account. */
960
+ allowedExternalCalendarAccountProviders: AllowedExternalCalendarAccountProvidersEnterpriseSetting;
961
+ /** The domains on which the plugin can be integrated. */
962
+ allowedPluginDomains: AllowedPluginDomainsEnterpriseSetting;
963
+ /** The default appointment auto accept value. */
964
+ appointmentAutoAccept: AppointmentAutoAcceptEnterpriseSetting;
965
+ /** The number of days before its start from when an appointment can be completed. */
966
+ appointmentCompletionAllowedDaysBeforeStart: AppointmentCompletionAllowedDaysBeforeStartEnterpriseSetting;
967
+ /** Whether reassigning appointments to another office is allowed. */
968
+ appointmentCrossOfficeParticipantSelectionEnabled: AppointmentCrossOfficeParticipantSelectionEnabledEnterpriseSetting;
969
+ /** The default appointment duration. */
970
+ appointmentDefaultEstimatedDuration: AppointmentDefaultEstimatedDurationEnterpriseSetting;
971
+ /** The earliest possible time from now an appointment can be booked. */
972
+ appointmentEarliestPossible: AppointmentEarliestPossibleEnterpriseSetting;
973
+ /** The latest possible time from now an appointment can be booked. */
974
+ appointmentLatestPossible: AppointmentLatestPossibleEnterpriseSetting;
975
+ /** The default trailing buffer time after an appointment. */
976
+ appointmentTrailingBufferTime: AppointmentTrailingBufferTimeEnterpriseSetting;
977
+ /** The default travel buffer time after an appointment. */
978
+ appointmentTravelBufferTime: AppointmentTravelBufferTimeEnterpriseSetting;
979
+ /** The settings used to calculate which notifications should be sent to the customer. */
980
+ customerNotificationSettings: CustomerNotificationSettingsEnterpriseSetting;
981
+ /** The settings used to calculate which reminders should be sent to the customer. */
982
+ customerReminderSettings: CustomerReminderSettingsEnterpriseSetting;
983
+ /** The default country used wherever no country is provided. */
984
+ defaultCountry: DefaultCountryEnterpriseSetting;
985
+ /** The default external calendar settings that are used when a new primary external calendar is created. */
986
+ defaultExternalCalendarSettings: DefaultExternalCalendarSettingsEnterpriseSetting;
987
+ /** The default language used wherever no language is specified. */
988
+ defaultLanguage: DefaultLanguageEnterpriseSetting;
989
+ /** The default (non-localized) name of the enterprise. */
990
+ defaultName: DefaultNameEnterpriseSetting;
991
+ /** The default (non-localized) redirect URL to the plugin. */
992
+ defaultRedirectUrl: DefaultRedirectUrlEnterpriseSetting;
993
+ /** The default (non-localized) return path domain used when sending emails. */
994
+ defaultReturnPathDomain: DefaultReturnPathDomainEnterpriseSetting;
995
+ /** The default (non-localized) sender email address used when sending emails. */
996
+ defaultSenderEmailAddress: DefaultSenderEmailAddressEnterpriseSetting;
997
+ /** The default subject ID to be used when creating an appointment internally. */
998
+ defaultSubjectId: DefaultSubjectIdEnterpriseSetting;
999
+ /** The default (non-localized) URL of the enterprise's terms and conditions. */
1000
+ defaultTermsAndConditionsUrl: DefaultTermsAndConditionsUrlEnterpriseSetting;
1001
+ /** The default time zone used wherever no time zone is provided. */
1002
+ defaultTimeZone: DefaultTimeZoneEnterpriseSetting;
1003
+ /** The email provider used to send emails. */
1004
+ emailProvider: EmailProviderEnterpriseSetting;
1005
+ /** The settings used to calculate which notifications should be sent to the employee. */
1006
+ employeeNotificationSettings: EmployeeNotificationSettingsEnterpriseSetting;
1007
+ /** The settings to calculate which customer fields should be shown externally and what their requirements are. */
1008
+ externalCustomerFieldSettings: ExternalCustomerFieldSettingsEnterpriseSetting;
1009
+ /** The settings to calculate which customer fields should be shown internally and what their requirements are. */
1010
+ internalCustomerFieldSettings: InternalCustomerFieldSettingsEnterpriseSetting;
1011
+ /** The localized names of the enterprise. */
1012
+ localizedNames: LocalizedNamesEnterpriseSetting;
1013
+ /** The localized redirect URLs to the plugin. */
1014
+ localizedRedirectUrls: LocalizedRedirectUrlsEnterpriseSetting;
1015
+ /** The localized return path domains. */
1016
+ localizedReturnPathDomains: LocalizedReturnPathDomainsEnterpriseSetting;
1017
+ /** The localized sender email addresses. */
1018
+ localizedSenderEmailAddresses: LocalizedSenderEmailAddressesEnterpriseSetting;
1019
+ /** The localized URLs of the enterprise's terms and conditions. */
1020
+ localizedTermsAndConditionsUrls: LocalizedTermsAndConditionsUrlsEnterpriseSetting;
1021
+ /** The URL of the enterprise's logo. */
1022
+ logoUrl: LogoUrlEnterpriseSetting;
1023
+ /** The default value for the amount of maximum concurrent appointments allowed. */
1024
+ maxConcurrentAppointments: MaxConcurrentAppointmentsEnterpriseSetting;
1025
+ /** Whether password authentication is used. */
1026
+ passwordAuthenticationEnabled: PasswordAuthenticationEnabledEnterpriseSetting;
1027
+ /** The primary brand color of the enterprise. */
1028
+ primaryBrandColor: PrimaryBrandColorEnterpriseSetting;
1029
+ /** Indicates whether email notifications should be sent for appointments. */
1030
+ sendAppointmentEmailNotifications: SendAppointmentEmailNotificationsEnterpriseSetting;
1031
+ /** Indicates whether text message notifications should be sent for appointments. */
1032
+ sendAppointmentTextMessageNotifications: SendAppointmentTextMessageNotificationsEnterpriseSetting;
1033
+ /** Indicates whether an email should be sent to the new employee when it is created. */
1034
+ sendEmployeeCreatedNotifications: SendEmployeeCreatedNotificationsEnterpriseSetting;
1035
+ /** Indicates whether an email should be sent to the employee when the connection with the external calendar account is broken. */
1036
+ sendExternalCalendarAccountBrokenNotifications: SendExternalCalendarAccountBrokenNotificationsEnterpriseSetting;
1037
+ /** The text message provider used to send text messages. */
1038
+ textMessageProvider: TextMessageProviderEnterpriseSetting;
1039
+ /** The default time slot granularity. */
1040
+ timeSlotGranularity: TimeSlotGranularityEnterpriseSetting;
1041
+ /** The settings used to determine which features are enabled in the UI. */
1042
+ uiFeatureToggles: UiFeatureTogglesEnterpriseSetting;
1043
+ /** The video provider used for video calls. */
1044
+ videoProvider: VideoProviderEnterpriseSetting;
1045
+ };
1046
+ export type EnterpriseSettingsPatchInput = {
1047
+ /** The languages supported by the enterprise. */
1048
+ activeLanguages?: InputMaybe<ActiveLanguagesInput>;
1049
+ /** Whether ranking should be applied when offering employees for scheduling. */
1050
+ agentPrioritizationEnabled?: InputMaybe<AgentPrioritizationEnabledInput>;
1051
+ /** The providers from which an employee can choose to connect an external calendar account. */
1052
+ allowedExternalCalendarAccountProviders?: InputMaybe<AllowedExternalCalendarAccountProvidersInput>;
1053
+ /** The domains on which the plugin can be integrated. */
1054
+ allowedPluginDomains?: InputMaybe<AllowedPluginDomainsInput>;
1055
+ /** The default appointment auto accept value. */
1056
+ appointmentAutoAccept?: InputMaybe<AppointmentAutoAcceptInput>;
1057
+ /** The number of days before its start from when an appointment can be completed. */
1058
+ appointmentCompletionAllowedDaysBeforeStart?: InputMaybe<AppointmentCompletionAllowedDaysBeforeStartInput>;
1059
+ /** Whether reassigning appointments to another office is allowed. */
1060
+ appointmentCrossOfficeParticipantSelectionEnabled?: InputMaybe<AppointmentCrossOfficeParticipantSelectionEnabledInput>;
1061
+ /** The default appointment duration. */
1062
+ appointmentDefaultEstimatedDuration?: InputMaybe<AppointmentDefaultEstimatedDurationInput>;
1063
+ /** The earliest possible time from now an appointment can be booked. */
1064
+ appointmentEarliestPossible?: InputMaybe<AppointmentEarliestPossibleInput>;
1065
+ /** The latest possible time from now an appointment can be booked. */
1066
+ appointmentLatestPossible?: InputMaybe<AppointmentLatestPossibleInput>;
1067
+ /** The default trailing buffer time after an appointment. */
1068
+ appointmentTrailingBufferTime?: InputMaybe<AppointmentTrailingBufferTimeInput>;
1069
+ /** The default travel buffer time after an appointment. */
1070
+ appointmentTravelBufferTime?: InputMaybe<AppointmentTravelBufferTimeInput>;
1071
+ /** The settings used to calculate which notifications should be sent to the customer. */
1072
+ customerNotificationSettings?: InputMaybe<CustomerNotificationSettingsInput>;
1073
+ /** The settings used to calculate which reminders should be sent to the customer. */
1074
+ customerReminderSettings?: InputMaybe<CustomerReminderSettingsInput>;
1075
+ /** The default country used wherever no country is provided. */
1076
+ defaultCountry?: InputMaybe<DefaultCountryInput>;
1077
+ /** The default external calendar settings that are used when a new primary external calendar is created. */
1078
+ defaultExternalCalendarSettings?: InputMaybe<DefaultExternalCalendarSettingsInput>;
1079
+ /** The default language used wherever no language is specified. */
1080
+ defaultLanguage?: InputMaybe<DefaultLanguageInput>;
1081
+ /** The default (non-localized) name of the enterprise. */
1082
+ defaultName?: InputMaybe<DefaultNameInput>;
1083
+ /** The default (non-localized) redirect URL to the plugin. */
1084
+ defaultRedirectUrl?: InputMaybe<DefaultRedirectUrlInput>;
1085
+ /** The default (non-localized) return path domain used when sending emails. */
1086
+ defaultReturnPathDomain?: InputMaybe<DefaultReturnPathDomainInput>;
1087
+ /** The default (non-localized) sender email address used when sending emails. */
1088
+ defaultSenderEmailAddress?: InputMaybe<DefaultSenderEmailAddressInput>;
1089
+ /** The default subject ID to be used when creating an appointment internally. */
1090
+ defaultSubjectId?: InputMaybe<DefaultSubjectIdInput>;
1091
+ /** The default (non-localized) URL of the enterprise's terms and conditions. */
1092
+ defaultTermsAndConditionsUrl?: InputMaybe<DefaultTermsAndConditionsUrlInput>;
1093
+ /** The default time zone used wherever no time zone is provided. */
1094
+ defaultTimeZone?: InputMaybe<DefaultTimeZoneInput>;
1095
+ /** The email provider used to send emails. */
1096
+ emailProvider?: InputMaybe<EmailProviderInput>;
1097
+ /** The settings used to calculate which notifications should be sent to the employee. */
1098
+ employeeNotificationSettings?: InputMaybe<EmployeeNotificationSettingsInput>;
1099
+ /** The settings to calculate which customer fields should be shown externally and what their requirements are. */
1100
+ externalCustomerFieldSettings?: InputMaybe<ExternalCustomerFieldSettingsInput>;
1101
+ /** The settings to calculate which customer fields should be shown internally and what their requirements are. */
1102
+ internalCustomerFieldSettings?: InputMaybe<InternalCustomerFieldSettingsInput>;
1103
+ /** The localized names of the enterprise. */
1104
+ localizedNames?: InputMaybe<LocalizedNamesInput>;
1105
+ /** The localized redirect URLs to the plugin. */
1106
+ localizedRedirectUrls?: InputMaybe<LocalizedRedirectUrlsInput>;
1107
+ /** The localized return path domains. */
1108
+ localizedReturnPathDomains?: InputMaybe<LocalizedReturnPathDomainsInput>;
1109
+ /** The localized sender email addresses. */
1110
+ localizedSenderEmailAddresses?: InputMaybe<LocalizedSenderEmailAddressesInput>;
1111
+ /** The localized URLs of the enterprise's terms and conditions. */
1112
+ localizedTermsAndConditionsUrls?: InputMaybe<LocalizedTermsAndConditionsUrlsInput>;
1113
+ /** The URL of the enterprise's logo. */
1114
+ logoUrl?: InputMaybe<LogoUrlInput>;
1115
+ /** The default value for the amount of maximum concurrent appointments allowed. */
1116
+ maxConcurrentAppointments?: InputMaybe<MaxConcurrentAppointmentsInput>;
1117
+ /** Whether password authentication is used. */
1118
+ passwordAuthenticationEnabled?: InputMaybe<PasswordAuthenticationEnabledInput>;
1119
+ /** The primary brand color of the enterprise. */
1120
+ primaryBrandColor?: InputMaybe<PrimaryBrandColorInput>;
1121
+ /** Indicates whether email notifications should be sent for appointments. */
1122
+ sendAppointmentEmailNotifications?: InputMaybe<SendAppointmentEmailNotificationsInput>;
1123
+ /** Indicates whether text message notifications should be sent for appointments. */
1124
+ sendAppointmentTextMessageNotifications?: InputMaybe<SendAppointmentTextMessageNotificationsInput>;
1125
+ /** Indicates whether an email should be sent to the new employee when it is created. */
1126
+ sendEmployeeCreatedNotifications?: InputMaybe<SendEmployeeCreatedNotificationsInput>;
1127
+ /** Indicates whether an email should be sent to the employee when the connection with the external calendar account is broken. */
1128
+ sendExternalCalendarAccountBrokenNotifications?: InputMaybe<SendExternalCalendarAccountBrokenNotificationsInput>;
1129
+ /** The text message provider used to send text messages. */
1130
+ textMessageProvider?: InputMaybe<TextMessageProviderInput>;
1131
+ /** The default time slot granularity. */
1132
+ timeSlotGranularity?: InputMaybe<TimeSlotGranularityInput>;
1133
+ /** The settings used to determine which features are enabled in the UI. */
1134
+ uiFeatureToggles?: InputMaybe<UiFeatureTogglesInput>;
1135
+ /** The video provider used for video calls. */
1136
+ videoProvider?: InputMaybe<VideoProviderInput>;
1137
+ };
1138
+ export type ExecuteFetchFieldResponse = {
1139
+ data?: Maybe<Scalars["String"]["output"]>;
1140
+ status: Scalars["Int"]["output"];
1141
+ success: Scalars["Boolean"]["output"];
1142
+ };
1143
+ export type ExternalCalendar = {
1144
+ createdAt: Scalars["ISO8601"]["output"];
1145
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1146
+ description?: Maybe<Scalars["String"]["output"]>;
1147
+ /** The exportAppointments boolean indicates if an external event should be written to the external calendar when an appointment is created */
1148
+ exportAppointments: Scalars["Boolean"]["output"];
1149
+ externalCalendarAccount: ExternalCalendarAccount;
1150
+ externalId: Scalars["String"]["output"];
1151
+ id: Scalars["ID"]["output"];
1152
+ /** The importEvents boolean indicates if the events of the external calendar should be imported and used to calculate the availability. */
1153
+ importEvents: Scalars["Boolean"]["output"];
1154
+ lastSyncedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1155
+ name: Scalars["String"]["output"];
1156
+ owner: Scalars["Boolean"]["output"];
1157
+ primary: Scalars["Boolean"]["output"];
1158
+ readOnly: Scalars["Boolean"]["output"];
1159
+ timeZone: Scalars["String"]["output"];
1160
+ updatedAt: Scalars["ISO8601"]["output"];
1161
+ };
1162
+ export type ExternalCalendarAccount = {
1163
+ access: ExternalCalendarAccountAccess;
1164
+ /** The createOnlineMeetings boolean indicates if online meetings should be created using this account. */
1165
+ createOnlineMeetings: Scalars["Boolean"]["output"];
1166
+ createdAt: Scalars["ISO8601"]["output"];
1167
+ credentialsValid: Scalars["Boolean"]["output"];
1168
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1169
+ email: Scalars["String"]["output"];
1170
+ employee: Employee;
1171
+ externalCalendarAccountFailure?: Maybe<ExternalCalendarAccountFailure>;
1172
+ externalCalendars: Array<ExternalCalendar>;
1173
+ externalId: Scalars["String"]["output"];
1174
+ grantedScopes: Array<Scalars["String"]["output"]>;
1175
+ id: Scalars["ID"]["output"];
1176
+ provider: ExternalCalendarProvider;
1177
+ updatedAt: Scalars["ISO8601"]["output"];
1178
+ };
1179
+ export type ExternalCalendarAccountExternalCalendarsArgs = {
1180
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
1181
+ };
1182
+ /** The access object on the external calendar account defines what actions the currently signed-in user is allowed to do on the external calendar account and related external calendars. */
1183
+ export type ExternalCalendarAccountAccess = {
1184
+ /** The disconnect boolean indicates if the currently signed-in user is allowed to disconnect the external calendar account. */
1185
+ disconnect: Scalars["Boolean"]["output"];
1186
+ onlineMeetings: ExternalCalendarAccountOnlineMeetingsAccess;
1187
+ /** The patch boolean indicates if the currently signed-in user is allowed to patch the external calendar account and related external calendars. */
1188
+ patch: Scalars["Boolean"]["output"];
1189
+ };
1190
+ export type ExternalCalendarAccountConnection = {
1191
+ edges: Array<ExternalCalendarAccountEdge>;
1192
+ pageInfo: PageInfo;
1193
+ totalCount: Scalars["Int"]["output"];
1194
+ };
1195
+ export type ExternalCalendarAccountEdge = {
1196
+ cursor: Scalars["String"]["output"];
1197
+ node: ExternalCalendarAccount;
1198
+ };
1199
+ export type ExternalCalendarAccountFailure = {
1200
+ createdAt: Scalars["ISO8601"]["output"];
1201
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1202
+ id: Scalars["ID"]["output"];
1203
+ updatedAt: Scalars["ISO8601"]["output"];
1204
+ };
1205
+ export type ExternalCalendarAccountOnlineMeetingsAccess = {
1206
+ /** The disabled boolean indicates if the onlineMeetings input component should be disabled. The component will be disabled if the currently signed-in is not allowed to patch, or when the external calendar account has not enough scopes to create online meetings. */
1207
+ disabled: Scalars["Boolean"]["output"];
1208
+ /** The patch boolean indicates if the currently signed-in user is allowed to patch the createOnlineMeetings property. */
1209
+ patch: Scalars["Boolean"]["output"];
1210
+ /** The show boolean indicates if the onlineMeetings input component should be shown. */
1211
+ show: Scalars["Boolean"]["output"];
1212
+ };
1213
+ export type ExternalCalendarAccountPatchInput = {
1214
+ createOnlineMeetings?: InputMaybe<Scalars["Boolean"]["input"]>;
1215
+ };
1216
+ export type ExternalCalendarConnection = {
1217
+ edges: Array<ExternalCalendarEdge>;
1218
+ pageInfo: PageInfo;
1219
+ totalCount: Scalars["Int"]["output"];
1220
+ };
1221
+ export type ExternalCalendarDefaultSettingCondition = "ALL" | "NONE" | "OWNER" | "PRIMARY";
1222
+ export type ExternalCalendarEdge = {
1223
+ cursor: Scalars["String"]["output"];
1224
+ node: ExternalCalendar;
1225
+ };
1226
+ export type ExternalCalendarEvent = {
1227
+ allDay: Scalars["Boolean"]["output"];
1228
+ createdAt: Scalars["ISO8601"]["output"];
1229
+ description?: Maybe<Scalars["String"]["output"]>;
1230
+ employee: Employee;
1231
+ end: Scalars["ISO8601"]["output"];
1232
+ externalCalendar: ExternalCalendar;
1233
+ externalCreatedAt: Scalars["ISO8601"]["output"];
1234
+ externalId: Scalars["String"]["output"];
1235
+ externalUpdatedAt: Scalars["ISO8601"]["output"];
1236
+ id: Scalars["String"]["output"];
1237
+ private: Scalars["Boolean"]["output"];
1238
+ resourceId?: Maybe<Scalars["String"]["output"]>;
1239
+ resourceType?: Maybe<ExternalCalendarEventResourceType>;
1240
+ showAs: ShowAs;
1241
+ start: Scalars["ISO8601"]["output"];
1242
+ title?: Maybe<Scalars["String"]["output"]>;
1243
+ updatedAt: Scalars["ISO8601"]["output"];
1244
+ };
1245
+ export type ExternalCalendarEventConnection = {
1246
+ edges: Array<ExternalCalendarEventEdge>;
1247
+ pageInfo: PageInfo;
1248
+ totalCount: Scalars["Int"]["output"];
1249
+ };
1250
+ export type ExternalCalendarEventEdge = {
1251
+ cursor: Scalars["String"]["output"];
1252
+ node: ExternalCalendarEvent;
1253
+ };
1254
+ export type ExternalCalendarEventResourceType = "APPOINTMENT" | "LISTING_TIME_SLOT" | "SYNC_AVAILABILITY";
1255
+ export type ExternalCalendarPatchInput = {
1256
+ exportAppointments?: InputMaybe<Scalars["Boolean"]["input"]>;
1257
+ importEvents?: InputMaybe<Scalars["Boolean"]["input"]>;
1258
+ };
1259
+ export type ExternalCalendarProvider = "CRONOFY" | "GOOGLE" | "OFFICE365";
1260
+ export type ExternalCustomerField = "company" | "customerNumber" | "email" | "existing" | "firstName" | "language" | "lastName" | "location" | "phoneNumber" | "timeZone";
1261
+ export type ExternalCustomerFieldSettingEnterpriseSettingInput = {
1262
+ field: ExternalCustomerField;
1263
+ order: Scalars["Int"]["input"];
1264
+ required: Scalars["Boolean"]["input"];
1265
+ show: Scalars["Boolean"]["input"];
1266
+ };
1267
+ export type ExternalCustomerFieldSettingEnterpriseSettingValue = {
1268
+ field: ExternalCustomerField;
1269
+ order: Scalars["Int"]["output"];
1270
+ required: Scalars["Boolean"]["output"];
1271
+ show: Scalars["Boolean"]["output"];
1272
+ };
1273
+ export type ExternalCustomerFieldSettingsEnterpriseSetting = {
1274
+ createdAt: Scalars["ISO8601"]["output"];
1275
+ manageable: Scalars["Boolean"]["output"];
1276
+ updatedAt: Scalars["ISO8601"]["output"];
1277
+ /** The settings to calculate which customer fields should be shown externally and what their requirements are. */
1278
+ value: Array<ExternalCustomerFieldSettingEnterpriseSettingValue>;
1279
+ };
1280
+ export type FavoriteAgent = {
1281
+ favoriteEmployee: Employee;
1282
+ office: Office;
1283
+ };
1284
+ export type FavoriteAgentConnection = {
1285
+ edges: Array<FavoriteAgentEdge>;
1286
+ pageInfo: PageInfo;
1287
+ totalCount: Scalars["Int"]["output"];
1288
+ };
1289
+ export type FavoriteAgentEdge = {
1290
+ cursor: Scalars["String"]["output"];
1291
+ node: FavoriteAgent;
1292
+ };
1293
+ export type FetchConfiguration = {
1294
+ body?: Maybe<Scalars["String"]["output"]>;
1295
+ createdAt: Scalars["ISO8601"]["output"];
1296
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1297
+ endpoint: Scalars["String"]["output"];
1298
+ headers: Array<HeaderItem>;
1299
+ id: Scalars["ID"]["output"];
1300
+ mapping: Array<MappingItem>;
1301
+ method: FetchMethod;
1302
+ question?: Maybe<Question>;
1303
+ updatedAt: Scalars["ISO8601"]["output"];
1304
+ };
1305
+ export type FetchConfigurationConnection = {
1306
+ edges: Array<FetchConfigurationEdge>;
1307
+ pageInfo: PageInfo;
1308
+ totalCount: Scalars["Int"]["output"];
1309
+ };
1310
+ export type FetchConfigurationCreateInput = {
1311
+ body?: InputMaybe<Scalars["String"]["input"]>;
1312
+ endpoint: Scalars["String"]["input"];
1313
+ headers?: InputMaybe<Array<HeaderItemInput>>;
1314
+ mapping: Array<MappingItemInput>;
1315
+ method: FetchMethod;
1316
+ };
1317
+ export type FetchConfigurationEdge = {
1318
+ cursor: Scalars["String"]["output"];
1319
+ node: FetchConfiguration;
1320
+ };
1321
+ export type FetchConfigurationPatchInput = {
1322
+ body?: InputMaybe<Scalars["String"]["input"]>;
1323
+ endpoint?: InputMaybe<Scalars["String"]["input"]>;
1324
+ headers?: InputMaybe<Array<HeaderItemInput>>;
1325
+ mapping?: InputMaybe<Array<MappingItemInput>>;
1326
+ method?: InputMaybe<FetchMethod>;
1327
+ };
1328
+ export type FetchMethod = "DELETE" | "GET" | "PATCH" | "POST" | "PUT";
1329
+ export type FileInput = {
1330
+ fileName: Scalars["String"]["input"];
1331
+ };
1332
+ export type FileMetadata = {
1333
+ authorizedUrl: Scalars["String"]["output"];
1334
+ url: Scalars["String"]["output"];
1335
+ };
1336
+ export type Form = {
1337
+ createdAt: Scalars["ISO8601"]["output"];
1338
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1339
+ id: Scalars["ID"]["output"];
1340
+ name: Scalars["String"]["output"];
1341
+ questions: Array<Question>;
1342
+ type: FormType;
1343
+ updatedAt: Scalars["ISO8601"]["output"];
1344
+ };
1345
+ export type FormQuestionsArgs = {
1346
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
1347
+ };
1348
+ export type FormConnection = {
1349
+ edges: Array<FormEdge>;
1350
+ pageInfo: PageInfo;
1351
+ totalCount: Scalars["Int"]["output"];
1352
+ };
1353
+ export type FormCreateInput = {
1354
+ name: Scalars["String"]["input"];
1355
+ questions?: InputMaybe<Array<QuestionPutInput>>;
1356
+ type: FormType;
1357
+ };
1358
+ export type FormEdge = {
1359
+ cursor: Scalars["String"]["output"];
1360
+ node: Form;
1361
+ };
1362
+ export type FormPatchInput = {
1363
+ name?: InputMaybe<Scalars["String"]["input"]>;
1364
+ questions?: InputMaybe<Array<QuestionPutInput>>;
1365
+ type?: InputMaybe<FormType>;
1366
+ };
1367
+ export type FormSort = {
1368
+ direction: SortDirection;
1369
+ field: SortableFormFields;
1370
+ };
1371
+ export type FormType = "APPOINTMENT_CANCELLATION" | "APPOINTMENT_COMPLETION" | "QUALIFICATION" | "SUBJECT_QUESTIONNAIRE";
1372
+ export type Geolocation = {
1373
+ latitude: Scalars["Float"]["output"];
1374
+ longitude: Scalars["Float"]["output"];
1375
+ };
1376
+ export type GeolocationInput = {
1377
+ latitude: Scalars["Float"]["input"];
1378
+ longitude: Scalars["Float"]["input"];
1379
+ };
1380
+ export type GroupedOfficeRelation = {
1381
+ access: OfficeRelationAccess;
1382
+ employee: Employee;
1383
+ office: Office;
1384
+ roles: Array<OfficeRelationRole>;
1385
+ };
1386
+ export type HttpMethod = "PATCH" | "POST" | "PUT";
1387
+ export type HeaderItem = {
1388
+ name: Scalars["String"]["output"];
1389
+ };
1390
+ export type HeaderItemInput = {
1391
+ name: Scalars["String"]["input"];
1392
+ value: Scalars["String"]["input"];
1393
+ };
1394
+ export type InputType = "ADDRESS" | "BOOLEAN" | "DATE" | "DATE_TIME" | "EMAIL" | "FETCH" | "LONG_TEXT" | "MULTI_SELECT" | "NUMBER" | "PHONE" | "SELECT" | "SHORT_TEXT" | "URL";
1395
+ export type InsightsAccessToken = {
1396
+ apiHost: Scalars["String"]["output"];
1397
+ appServer: Scalars["String"]["output"];
1398
+ authKey: Scalars["String"]["output"];
1399
+ authToken: Scalars["String"]["output"];
1400
+ dashboardId: Scalars["String"]["output"];
1401
+ };
1402
+ export type InsightsDashboardType = "APPOINTMENT_INSIGHTS" | "AVAILABILITY_INSIGHTS" | "CONVERSION_ANALYTICS";
1403
+ export type InsightsDatasetType = "APPOINTMENT_INSIGHTS" | "AVAILABILITY_INSIGHTS" | "CONVERSION_ANALYTICS" | "CONVERSION_ANALYTICS_AGGREGATED";
1404
+ export type IntegerAvailabilitySetting = {
1405
+ default: Scalars["Int"]["output"];
1406
+ isOverridden: Scalars["Boolean"]["output"];
1407
+ value: Scalars["Int"]["output"];
1408
+ };
1409
+ export type Intent = "CANCEL" | "EDIT" | "INVITE";
1410
+ export type InternalCustomerField = "company" | "customerNumber" | "email" | "existing" | "externalId" | "firstName" | "language" | "lastName" | "location" | "notes" | "phoneNumber" | "timeZone";
1411
+ export type InternalCustomerFieldSettingEnterpriseSettingInput = {
1412
+ field: InternalCustomerField;
1413
+ order: Scalars["Int"]["input"];
1414
+ private: Scalars["Boolean"]["input"];
1415
+ required: Scalars["Boolean"]["input"];
1416
+ show: Scalars["Boolean"]["input"];
1417
+ };
1418
+ export type InternalCustomerFieldSettingEnterpriseSettingValue = {
1419
+ field: InternalCustomerField;
1420
+ order: Scalars["Int"]["output"];
1421
+ private: Scalars["Boolean"]["output"];
1422
+ required: Scalars["Boolean"]["output"];
1423
+ show: Scalars["Boolean"]["output"];
1424
+ };
1425
+ export type InternalCustomerFieldSettingsEnterpriseSetting = {
1426
+ createdAt: Scalars["ISO8601"]["output"];
1427
+ manageable: Scalars["Boolean"]["output"];
1428
+ updatedAt: Scalars["ISO8601"]["output"];
1429
+ /** The settings to calculate which customer fields should be shown internally and what their requirements are. */
1430
+ value: Array<InternalCustomerFieldSettingEnterpriseSettingValue>;
1431
+ };
1432
+ export type Language = "da" | "de" | "el" | "en" | "es" | "fr" | "ja" | "nl" | "no" | "pl";
1433
+ export type LeadSegment = {
1434
+ callbacksAllowed: Scalars["Boolean"]["output"];
1435
+ code: Scalars["String"]["output"];
1436
+ createdAt: Scalars["ISO8601"]["output"];
1437
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1438
+ description?: Maybe<Scalars["String"]["output"]>;
1439
+ earliestCallbackHours?: Maybe<Scalars["Int"]["output"]>;
1440
+ id: Scalars["ID"]["output"];
1441
+ latestCallbackHours?: Maybe<Scalars["Int"]["output"]>;
1442
+ schedulingSettings: Array<LeadSegmentSchedulingSetting>;
1443
+ updatedAt: Scalars["ISO8601"]["output"];
1444
+ };
1445
+ export type LeadSegmentSchedulingSettingsArgs = {
1446
+ meetingType?: InputMaybe<Array<MeetingType>>;
1447
+ subjectId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
1448
+ };
1449
+ export type LeadSegmentConnection = {
1450
+ edges: Array<LeadSegmentEdge>;
1451
+ pageInfo: PageInfo;
1452
+ totalCount: Scalars["Int"]["output"];
1453
+ };
1454
+ export type LeadSegmentCreateInput = {
1455
+ callbacksAllowed?: InputMaybe<Scalars["Boolean"]["input"]>;
1456
+ code: Scalars["String"]["input"];
1457
+ description?: InputMaybe<Scalars["String"]["input"]>;
1458
+ earliestCallbackHours?: InputMaybe<Scalars["Int"]["input"]>;
1459
+ latestCallbackHours?: InputMaybe<Scalars["Int"]["input"]>;
1460
+ };
1461
+ export type LeadSegmentEdge = {
1462
+ cursor: Scalars["String"]["output"];
1463
+ node: LeadSegment;
1464
+ };
1465
+ export type LeadSegmentPatchInput = {
1466
+ callbacksAllowed?: InputMaybe<Scalars["Boolean"]["input"]>;
1467
+ code?: InputMaybe<Scalars["String"]["input"]>;
1468
+ description?: InputMaybe<Scalars["String"]["input"]>;
1469
+ earliestCallbackHours?: InputMaybe<Scalars["Int"]["input"]>;
1470
+ latestCallbackHours?: InputMaybe<Scalars["Int"]["input"]>;
1471
+ };
1472
+ export type LeadSegmentSchedulingSetting = {
1473
+ meetingType: MeetingType;
1474
+ subject: Subject;
1475
+ };
1476
+ export type LeadSegmentSchedulingSettingInput = {
1477
+ meetingType: MeetingType;
1478
+ subjectId: Scalars["ID"]["input"];
1479
+ };
1480
+ export type LeadSegmentSort = {
1481
+ direction: SortDirection;
1482
+ field: SortableLeadSegmentFields;
1483
+ };
1484
+ export type Listing = {
1485
+ active: Scalars["Boolean"]["output"];
1486
+ createdAt: Scalars["ISO8601"]["output"];
1487
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1488
+ description?: Maybe<TranslationObject>;
1489
+ externalId?: Maybe<Scalars["String"]["output"]>;
1490
+ id: Scalars["ID"]["output"];
1491
+ listingTimeSlots: Array<ListingTimeSlot>;
1492
+ location?: Maybe<Location>;
1493
+ name?: Maybe<TranslationObject>;
1494
+ schedulingSettings?: Maybe<ListingSchedulingSetting>;
1495
+ tags: Array<Scalars["String"]["output"]>;
1496
+ timeZone: Scalars["String"]["output"];
1497
+ translations: ListingTranslations;
1498
+ updatedAt: Scalars["ISO8601"]["output"];
1499
+ };
1500
+ export type ListingListingTimeSlotsArgs = {
1501
+ endDate?: InputMaybe<Scalars["CalendarDate"]["input"]>;
1502
+ from?: InputMaybe<Scalars["ISO8601"]["input"]>;
1503
+ startDate?: InputMaybe<Scalars["CalendarDate"]["input"]>;
1504
+ to?: InputMaybe<Scalars["ISO8601"]["input"]>;
1505
+ };
1506
+ export type ListingSchedulingSettingsArgs = {
1507
+ employeeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
1508
+ meetingType?: InputMaybe<Array<MeetingType>>;
1509
+ officeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
1510
+ subjectId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
1511
+ };
1512
+ export type ListingConnection = {
1513
+ edges: Array<ListingEdge>;
1514
+ pageInfo: PageInfo;
1515
+ totalCount: Scalars["Int"]["output"];
1516
+ };
1517
+ export type ListingCreateInput = {
1518
+ active?: InputMaybe<Scalars["Boolean"]["input"]>;
1519
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
1520
+ location?: InputMaybe<LocationInput>;
1521
+ tags?: InputMaybe<Array<Scalars["String"]["input"]>>;
1522
+ timeZone?: InputMaybe<Scalars["String"]["input"]>;
1523
+ translations: ListingTranslationsCreateInput;
1524
+ };
1525
+ export type ListingEdge = {
1526
+ cursor: Scalars["String"]["output"];
1527
+ node: Listing;
1528
+ };
1529
+ export type ListingPatchInput = {
1530
+ active?: InputMaybe<Scalars["Boolean"]["input"]>;
1531
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
1532
+ location?: InputMaybe<LocationInput>;
1533
+ tags?: InputMaybe<Array<Scalars["String"]["input"]>>;
1534
+ timeZone?: InputMaybe<Scalars["String"]["input"]>;
1535
+ translations?: InputMaybe<ListingTranslationsPatchInput>;
1536
+ };
1537
+ export type ListingSchedulingSetting = {
1538
+ employees: Array<Employee>;
1539
+ meetingTypes: Array<MeetingType>;
1540
+ offices: Array<Office>;
1541
+ subjects: Array<Subject>;
1542
+ };
1543
+ export type ListingSchedulingSettingInput = {
1544
+ employeeIds: Array<Scalars["ID"]["input"]>;
1545
+ meetingTypes: Array<MeetingType>;
1546
+ officeIds: Array<Scalars["ID"]["input"]>;
1547
+ subjectIds: Array<Scalars["ID"]["input"]>;
1548
+ };
1549
+ export type ListingSort = {
1550
+ direction: SortDirection;
1551
+ field: SortableListingFields;
1552
+ };
1553
+ export type ListingTimeSlot = {
1554
+ /** Determines whether this time slot range can be booked. Does not affect the exclusivity of this range. */
1555
+ bookable: Scalars["Boolean"]["output"];
1556
+ createdAt: Scalars["ISO8601"]["output"];
1557
+ date: Scalars["String"]["output"];
1558
+ end: Scalars["ISO8601"]["output"];
1559
+ endTime: Scalars["Time"]["output"];
1560
+ id: Scalars["ID"]["output"];
1561
+ listing: Listing;
1562
+ listingTimeSlotsEmployees: Array<ListingTimeSlotEmployee>;
1563
+ start: Scalars["ISO8601"]["output"];
1564
+ startTime: Scalars["Time"]["output"];
1565
+ updatedAt: Scalars["ISO8601"]["output"];
1566
+ };
1567
+ export type ListingTimeSlotConnection = {
1568
+ edges: Array<ListingTimeSlotEdge>;
1569
+ pageInfo: PageInfo;
1570
+ totalCount: Scalars["Int"]["output"];
1571
+ };
1572
+ export type ListingTimeSlotCreateInput = {
1573
+ bookable: Scalars["Boolean"]["input"];
1574
+ date: Scalars["CalendarDate"]["input"];
1575
+ endTime: Scalars["Time"]["input"];
1576
+ listingTimeSlotEmployees: Array<ListingTimeSlotEmployeeInput>;
1577
+ startTime: Scalars["Time"]["input"];
1578
+ };
1579
+ export type ListingTimeSlotEdge = {
1580
+ cursor: Scalars["String"]["output"];
1581
+ node: ListingTimeSlot;
1582
+ };
1583
+ export type ListingTimeSlotEmployee = {
1584
+ createdAt: Scalars["ISO8601"]["output"];
1585
+ employee: Employee;
1586
+ exclusive: Scalars["Boolean"]["output"];
1587
+ id: Scalars["ID"]["output"];
1588
+ updatedAt: Scalars["ISO8601"]["output"];
1589
+ };
1590
+ export type ListingTimeSlotEmployeeInput = {
1591
+ employeeId: Scalars["ID"]["input"];
1592
+ exclusive: Scalars["Boolean"]["input"];
1593
+ };
1594
+ export type ListingTimeSlotPutInput = {
1595
+ bookable: Scalars["Boolean"]["input"];
1596
+ date: Scalars["CalendarDate"]["input"];
1597
+ endTime: Scalars["Time"]["input"];
1598
+ listingTimeSlotEmployees: Array<ListingTimeSlotEmployeeInput>;
1599
+ startTime: Scalars["Time"]["input"];
1600
+ };
1601
+ export type ListingTranslations = {
1602
+ description: Array<TranslationObject>;
1603
+ name: Array<TranslationObject>;
1604
+ };
1605
+ export type ListingTranslationsCreateInput = {
1606
+ description?: InputMaybe<Array<TranslationObjectInput>>;
1607
+ name: Array<TranslationObjectInput>;
1608
+ };
1609
+ export type ListingTranslationsPatchInput = {
1610
+ description?: InputMaybe<Array<TranslationObjectInput>>;
1611
+ name?: InputMaybe<Array<TranslationObjectInput>>;
1612
+ };
1613
+ export type LocalizedNamesEnterpriseSetting = {
1614
+ createdAt: Scalars["ISO8601"]["output"];
1615
+ manageable: Scalars["Boolean"]["output"];
1616
+ updatedAt: Scalars["ISO8601"]["output"];
1617
+ /** The localized names of the enterprise. */
1618
+ value: Array<EnterpriseSettingTranslationValue>;
1619
+ };
1620
+ export type LocalizedRedirectUrlsEnterpriseSetting = {
1621
+ createdAt: Scalars["ISO8601"]["output"];
1622
+ manageable: Scalars["Boolean"]["output"];
1623
+ updatedAt: Scalars["ISO8601"]["output"];
1624
+ /** The localized redirect URLs to the plugin. */
1625
+ value: Array<EnterpriseSettingTranslationValue>;
1626
+ };
1627
+ export type LocalizedReturnPathDomainsEnterpriseSetting = {
1628
+ createdAt: Scalars["ISO8601"]["output"];
1629
+ manageable: Scalars["Boolean"]["output"];
1630
+ updatedAt: Scalars["ISO8601"]["output"];
1631
+ /** The localized return path domains. */
1632
+ value: Array<EnterpriseSettingTranslationValue>;
1633
+ };
1634
+ export type LocalizedSenderEmailAddressesEnterpriseSetting = {
1635
+ createdAt: Scalars["ISO8601"]["output"];
1636
+ manageable: Scalars["Boolean"]["output"];
1637
+ updatedAt: Scalars["ISO8601"]["output"];
1638
+ /** The localized sender email addresses. */
1639
+ value: Array<EnterpriseSettingTranslationValue>;
1640
+ };
1641
+ export type LocalizedTermsAndConditionsUrlsEnterpriseSetting = {
1642
+ createdAt: Scalars["ISO8601"]["output"];
1643
+ manageable: Scalars["Boolean"]["output"];
1644
+ updatedAt: Scalars["ISO8601"]["output"];
1645
+ /** The localized URLs of the enterprise's terms and conditions. */
1646
+ value: Array<EnterpriseSettingTranslationValue>;
1647
+ };
1648
+ export type Location = {
1649
+ city?: Maybe<TranslationObject>;
1650
+ countryCode: Scalars["String"]["output"];
1651
+ createdAt: Scalars["ISO8601"]["output"];
1652
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1653
+ formattedAddress: Scalars["String"]["output"];
1654
+ geolocation: Geolocation;
1655
+ postalCode?: Maybe<Scalars["String"]["output"]>;
1656
+ state?: Maybe<TranslationObject>;
1657
+ street1?: Maybe<TranslationObject>;
1658
+ street2?: Maybe<TranslationObject>;
1659
+ timeZone: Scalars["String"]["output"];
1660
+ translations: LocationTranslations;
1661
+ updatedAt: Scalars["ISO8601"]["output"];
1662
+ };
1663
+ export type LocationInput = {
1664
+ countryCode: Scalars["String"]["input"];
1665
+ geolocation?: InputMaybe<GeolocationInput>;
1666
+ postalCode?: InputMaybe<Scalars["String"]["input"]>;
1667
+ timeZone?: InputMaybe<Scalars["String"]["input"]>;
1668
+ translations: LocationTranslationsCreateInput;
1669
+ };
1670
+ export type LocationTranslations = {
1671
+ city: Array<TranslationObject>;
1672
+ state: Array<TranslationObject>;
1673
+ street1: Array<TranslationObject>;
1674
+ street2: Array<TranslationObject>;
1675
+ };
1676
+ export type LocationTranslationsCreateInput = {
1677
+ city: Array<TranslationObjectInput>;
1678
+ state?: InputMaybe<Array<TranslationObjectInput>>;
1679
+ street1: Array<TranslationObjectInput>;
1680
+ street2?: InputMaybe<Array<TranslationObjectInput>>;
1681
+ };
1682
+ export type LogoUrlEnterpriseSetting = {
1683
+ createdAt: Scalars["ISO8601"]["output"];
1684
+ manageable: Scalars["Boolean"]["output"];
1685
+ updatedAt: Scalars["ISO8601"]["output"];
1686
+ /** The URL of the enterprise's logo. */
1687
+ value: Scalars["String"]["output"];
1688
+ };
1689
+ export type Managed = {
1690
+ attempts: Scalars["Int"]["output"];
1691
+ createdAt: Scalars["ISO8601"]["output"];
1692
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1693
+ externalId?: Maybe<Scalars["String"]["output"]>;
1694
+ lastSyncedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1695
+ updatedAt: Scalars["ISO8601"]["output"];
1696
+ };
1697
+ export type ManagedExternalCalendarEvent = Managed & {
1698
+ attempts: Scalars["Int"]["output"];
1699
+ createdAt: Scalars["ISO8601"]["output"];
1700
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1701
+ description: Scalars["String"]["output"];
1702
+ externalId?: Maybe<Scalars["String"]["output"]>;
1703
+ hash?: Maybe<Scalars["String"]["output"]>;
1704
+ id: Scalars["String"]["output"];
1705
+ lastSyncedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1706
+ location?: Maybe<ManagedExternalCalendarEventLocation>;
1707
+ resourceId: Scalars["String"]["output"];
1708
+ resourceType: ExternalCalendarEventResourceType;
1709
+ showAs: ShowAs;
1710
+ title: Scalars["String"]["output"];
1711
+ updatedAt: Scalars["ISO8601"]["output"];
1712
+ url?: Maybe<Scalars["String"]["output"]>;
1713
+ };
1714
+ export type ManagedExternalCalendarEventConnection = {
1715
+ edges: Array<ManagedExternalCalendarEventEdge>;
1716
+ pageInfo: PageInfo;
1717
+ totalCount: Scalars["Int"]["output"];
1718
+ };
1719
+ export type ManagedExternalCalendarEventCreateInput = {
1720
+ description: Scalars["String"]["input"];
1721
+ end: Scalars["ISO8601"]["input"];
1722
+ externalCalendarId: Scalars["ID"]["input"];
1723
+ hash?: InputMaybe<Scalars["String"]["input"]>;
1724
+ location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
1725
+ resourceId: Scalars["String"]["input"];
1726
+ resourceType: ExternalCalendarEventResourceType;
1727
+ showAs: ShowAs;
1728
+ start: Scalars["ISO8601"]["input"];
1729
+ title: Scalars["String"]["input"];
1730
+ url?: InputMaybe<Scalars["String"]["input"]>;
1731
+ };
1732
+ export type ManagedExternalCalendarEventEdge = {
1733
+ cursor: Scalars["String"]["output"];
1734
+ node: ManagedExternalCalendarEvent;
1735
+ };
1736
+ export type ManagedExternalCalendarEventLocation = {
1737
+ city: Scalars["String"]["output"];
1738
+ countryCode: Scalars["String"]["output"];
1739
+ geolocation?: Maybe<Geolocation>;
1740
+ postalCode?: Maybe<Scalars["String"]["output"]>;
1741
+ state?: Maybe<Scalars["String"]["output"]>;
1742
+ street1: Scalars["String"]["output"];
1743
+ street2?: Maybe<Scalars["String"]["output"]>;
1744
+ };
1745
+ export type ManagedExternalCalendarEventLocationInput = {
1746
+ city: Scalars["String"]["input"];
1747
+ countryCode: Scalars["String"]["input"];
1748
+ geolocation: GeolocationInput;
1749
+ postalCode?: InputMaybe<Scalars["String"]["input"]>;
1750
+ state?: InputMaybe<Scalars["String"]["input"]>;
1751
+ street1: Scalars["String"]["input"];
1752
+ street2?: InputMaybe<Scalars["String"]["input"]>;
1753
+ };
1754
+ export type ManagedExternalCalendarEventPatchInput = {
1755
+ description?: InputMaybe<Scalars["String"]["input"]>;
1756
+ end?: InputMaybe<Scalars["ISO8601"]["input"]>;
1757
+ hash?: InputMaybe<Scalars["String"]["input"]>;
1758
+ location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
1759
+ resourceId?: InputMaybe<Scalars["String"]["input"]>;
1760
+ resourceType?: InputMaybe<ExternalCalendarEventResourceType>;
1761
+ showAs?: InputMaybe<ShowAs>;
1762
+ start?: InputMaybe<Scalars["ISO8601"]["input"]>;
1763
+ title?: InputMaybe<Scalars["String"]["input"]>;
1764
+ url?: InputMaybe<Scalars["String"]["input"]>;
1765
+ };
1766
+ export type ManagedExternalCalenderEventSort = {
1767
+ direction: SortDirection;
1768
+ field: SortableManagedExternalCalendarEventFields;
1769
+ };
1770
+ export type ManagedExternalOnlineMeeting = Managed & {
1771
+ attempts: Scalars["Int"]["output"];
1772
+ createdAt: Scalars["ISO8601"]["output"];
1773
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1774
+ externalId?: Maybe<Scalars["String"]["output"]>;
1775
+ externalJoinUrl?: Maybe<Scalars["String"]["output"]>;
1776
+ id: Scalars["String"]["output"];
1777
+ lastSyncedAt?: Maybe<Scalars["ISO8601"]["output"]>;
1778
+ resourceId: Scalars["String"]["output"];
1779
+ resourceType: ExternalCalendarEventResourceType;
1780
+ title: Scalars["String"]["output"];
1781
+ updatedAt: Scalars["ISO8601"]["output"];
1782
+ };
1783
+ export type ManagedExternalOnlineMeetingConnection = {
1784
+ edges: Array<ManagedExternalOnlineMeetingEdge>;
1785
+ pageInfo: PageInfo;
1786
+ totalCount: Scalars["Int"]["output"];
1787
+ };
1788
+ export type ManagedExternalOnlineMeetingCreateInput = {
1789
+ end: Scalars["ISO8601"]["input"];
1790
+ externalCalendarAccountId: Scalars["ID"]["input"];
1791
+ resourceId: Scalars["String"]["input"];
1792
+ resourceType: ExternalCalendarEventResourceType;
1793
+ start: Scalars["ISO8601"]["input"];
1794
+ title: Scalars["String"]["input"];
1795
+ };
1796
+ export type ManagedExternalOnlineMeetingEdge = {
1797
+ cursor: Scalars["String"]["output"];
1798
+ node: ManagedExternalOnlineMeeting;
1799
+ };
1800
+ export type ManagedExternalOnlineMeetingPatchInput = {
1801
+ end?: InputMaybe<Scalars["ISO8601"]["input"]>;
1802
+ resourceId?: InputMaybe<Scalars["String"]["input"]>;
1803
+ resourceType?: InputMaybe<ExternalCalendarEventResourceType>;
1804
+ start?: InputMaybe<Scalars["ISO8601"]["input"]>;
1805
+ title?: InputMaybe<Scalars["String"]["input"]>;
1806
+ };
1807
+ export type MappingItem = {
1808
+ sourceProperty: Scalars["String"]["output"];
1809
+ targetProperty: Scalars["String"]["output"];
1810
+ };
1811
+ export type MappingItemInput = {
1812
+ sourceProperty: Scalars["String"]["input"];
1813
+ targetProperty: Scalars["String"]["input"];
1814
+ };
1815
+ export type MaxConcurrentAppointmentsEnterpriseSetting = {
1816
+ createdAt: Scalars["ISO8601"]["output"];
1817
+ manageable: Scalars["Boolean"]["output"];
1818
+ updatedAt: Scalars["ISO8601"]["output"];
1819
+ /** The default value for the amount of maximum concurrent appointments allowed. */
1820
+ value: Scalars["Int"]["output"];
1821
+ };
1822
+ export type MeetingType = "OFFICE" | "ON_LOCATION" | "PHONE" | "VIDEO";
1823
+ export type MeetingTypeDataShownSessionEventPayload = {
1824
+ meetingTypes: Array<MeetingType>;
1825
+ };
1826
+ export type MeetingTypeEntity = {
1827
+ active: Scalars["Boolean"]["output"];
1828
+ coverageRegionActive: Scalars["Boolean"]["output"];
1829
+ createdAt: Scalars["ISO8601"]["output"];
1830
+ meetingType: MeetingType;
1831
+ updatedAt: Scalars["ISO8601"]["output"];
1832
+ };
1833
+ export type MeetingTypeInput = {
1834
+ active?: InputMaybe<Scalars["Boolean"]["input"]>;
1835
+ coverageRegionActive?: InputMaybe<Scalars["Boolean"]["input"]>;
1836
+ meetingType: MeetingType;
1837
+ };
1838
+ export type MicrosoftGraphApiEmailProviderConfiguration = {
1839
+ tenantId: Scalars["String"]["output"];
1840
+ userId: Scalars["String"]["output"];
1841
+ };
1842
+ export type MicrosoftGraphApiEmailProviderConfigurationInput = {
1843
+ tenantId: Scalars["String"]["input"];
1844
+ userId: Scalars["String"]["input"];
1845
+ };
1846
+ export type Mutation = {
1847
+ acceptAppointment: Appointment;
1848
+ activateEmployee: Employee;
1849
+ addSecondaryParticipantToAppointment: AppointmentParticipant;
1850
+ cancelAppointment: Appointment;
1851
+ completeAppointment: Appointment;
1852
+ createAnswerOption: AnswerOption;
1853
+ createAppliedTemplate: AppliedTemplate;
1854
+ createAppointment: Appointment;
1855
+ createAppointmentConfirmedSessionEvent: Scalars["Boolean"]["output"];
1856
+ createAppointmentInvite: Appointment;
1857
+ createAvailabilityTemplate: AvailabilityTemplate;
1858
+ createAvailabilityTimeRange: AvailabilityTimeRange;
1859
+ createCustomer: Customer;
1860
+ createDataSelectedSessionEvent: Scalars["Boolean"]["output"];
1861
+ createDataShownSessionEvent: Scalars["Boolean"]["output"];
1862
+ createEmployee: Employee;
1863
+ createExternalCalendarAccountConnectUrl: Scalars["String"]["output"];
1864
+ createExternalProviderTenantAdminConsentUrl: Scalars["String"]["output"];
1865
+ createFetchConfiguration: FetchConfiguration;
1866
+ createForm: Form;
1867
+ createLeadSegment: LeadSegment;
1868
+ createListing: Listing;
1869
+ createListingTimeSlot: ListingTimeSlot;
1870
+ createManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
1871
+ createManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
1872
+ createOffice: Office;
1873
+ createOfficeRelation: OfficeRelation;
1874
+ createQuestion: Question;
1875
+ createSessionConfigSessionEvent: Scalars["Boolean"]["output"];
1876
+ createSessionDataSessionEvent: Scalars["Boolean"]["output"];
1877
+ createStepShownSessionEvent: Scalars["Boolean"]["output"];
1878
+ createSubject: Subject;
1879
+ createSubjectGroup: SubjectGroup;
1880
+ createTimetableNavigationSessionEvent: Scalars["Boolean"]["output"];
1881
+ /**
1882
+ * Creates a User Defined Unavailability for a given employee between two dates (both inclusive).
1883
+ * If revertOverlap is set to true any existing, overlapping User Defined Unavailability for
1884
+ * that user will be reverted (as if you called revertUnavailability first, see its description).
1885
+ */
1886
+ createUnavailability: Unavailability;
1887
+ createValidator: Validator;
1888
+ createWebhookConfiguration: WebhookConfiguration;
1889
+ createWebhookConfigurationHeaders: Array<WebhookConfigurationHeader>;
1890
+ deleteAnswerOption: AnswerOption;
1891
+ deleteAppliedTemplate: AppliedTemplate;
1892
+ deleteAvailabilityTemplate: AvailabilityTemplate;
1893
+ deleteAvailabilityTimeRange: AvailabilityTimeRange;
1894
+ deleteAvailabilityTimeRangeOffice: AvailabilityTimeRangeOffice;
1895
+ deleteCustomer: Customer;
1896
+ deleteEmployee: Employee;
1897
+ deleteFetchConfiguration: FetchConfiguration;
1898
+ deleteForm: Form;
1899
+ deleteLeadSegment: LeadSegment;
1900
+ deleteListing: Listing;
1901
+ deleteListingTimeSlot: ListingTimeSlot;
1902
+ deleteManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
1903
+ deleteManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
1904
+ deleteOffice: Office;
1905
+ deleteOfficeRelation: OfficeRelation;
1906
+ deleteQuestion: Question;
1907
+ deleteSubject: Subject;
1908
+ deleteSubjectGroup: SubjectGroup;
1909
+ deleteUnavailability: Unavailability;
1910
+ deleteValidator: Validator;
1911
+ deleteWebhookConfiguration: WebhookConfiguration;
1912
+ deleteWebhookConfigurationHeaders: Array<WebhookConfigurationHeader>;
1913
+ disconnectExternalCalendarAccount: ExternalCalendarAccount;
1914
+ generateAppointmentGoogleCalendarUrl: Scalars["String"]["output"];
1915
+ generateAppointmentICalFileContent: Scalars["String"]["output"];
1916
+ generateAppointmentOffice365CalendarUrl: Scalars["String"]["output"];
1917
+ generateLocalizedPluginUrl: Scalars["String"]["output"];
1918
+ generateVideoUrl: Scalars["String"]["output"];
1919
+ patchAnswerOption: AnswerOption;
1920
+ patchAppointment: Appointment;
1921
+ patchAvailabilityTemplate: AvailabilityTemplate;
1922
+ patchAvailabilityTimeRange: AvailabilityTimeRange;
1923
+ patchCalendarEventTemplate: CalendarEventTemplate;
1924
+ patchCustomer: Customer;
1925
+ patchEmailTemplate: EmailTemplate;
1926
+ patchEmployee: Employee;
1927
+ patchEnterpriseSettings: EnterpriseSettings;
1928
+ patchExternalCalendar: ExternalCalendar;
1929
+ patchExternalCalendarAccount: ExternalCalendarAccount;
1930
+ patchFetchConfiguration: FetchConfiguration;
1931
+ patchForm: Form;
1932
+ patchLeadSegment: LeadSegment;
1933
+ patchListing: Listing;
1934
+ patchManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
1935
+ patchManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
1936
+ patchMeetingTypes: Array<MeetingTypeEntity>;
1937
+ patchOffice: Office;
1938
+ patchQuestion: Question;
1939
+ patchStaticTranslationOverrides: Array<StaticTranslationOverride>;
1940
+ patchSubject: Subject;
1941
+ patchSubjectGroup: SubjectGroup;
1942
+ patchTextMessageTemplate: TextMessageTemplate;
1943
+ patchValidator: Validator;
1944
+ patchVideoURLTemplate: VideoUrlTemplate;
1945
+ patchWebhookConfiguration: WebhookConfiguration;
1946
+ patchWebhookConfigurationHeaders: Array<WebhookConfigurationHeader>;
1947
+ putAppointmentAnswers: Appointment;
1948
+ putAvailabilityTimeRangeOffice: AvailabilityTimeRangeOffice;
1949
+ putAvailabilityTimeRangeOffices: Array<AvailabilityTimeRangeOffice>;
1950
+ putFavoriteAgents: Array<FavoriteAgent>;
1951
+ putLeadSegmentSchedulingSettings: Array<LeadSegmentSchedulingSetting>;
1952
+ putListingSchedulingSettings: ListingSchedulingSetting;
1953
+ putListingTimeSlot: ListingTimeSlot;
1954
+ putOfficeEmployeeCoverageRegionSchedulingSettings: Array<OfficeEmployeeCoverageRegionSchedulingSetting>;
1955
+ putOfficeEmployeeSubjectCoverageRegionSchedulingSettings: Array<OfficeEmployeeSubjectCoverageRegionSchedulingSetting>;
1956
+ putOfficeRelationsForOffice: Array<GroupedOfficeRelation>;
1957
+ putOfficeSchedulingSettings: Array<OfficeSchedulingSetting>;
1958
+ putSubjectMeetingTypeAvailabilitySetting: SubjectMeetingTypeAvailabilitySetting;
1959
+ putSubjectMeetingTypeAvailabilitySettings: Array<SubjectMeetingTypeAvailabilitySetting>;
1960
+ putSubjectOfficeEmployeeSchedulingSettingsForOffice: Array<SubjectOfficeEmployeeSchedulingSetting>;
1961
+ putSubjectOfficeEmployeeSchedulingSettingsForOfficeAndEmployee: Array<SubjectOfficeEmployeeSchedulingSetting>;
1962
+ putSubjectOfficeMeetingTypeAvailabilitySetting: SubjectOfficeMeetingTypeAvailabilitySetting;
1963
+ putSubjectOfficeMeetingTypeAvailabilitySettings: Array<SubjectOfficeMeetingTypeAvailabilitySetting>;
1964
+ putSubjectOfficeSchedulingSettings: Array<SubjectOfficeSchedulingSetting>;
1965
+ putSubjectSchedulingSettings: Array<SubjectSchedulingSetting>;
1966
+ reassignAppointment: Appointment;
1967
+ removeSecondaryParticipantFromAppointment: AppointmentParticipant;
1968
+ renderAppointmentCalendarEventTemplate: CalendarEventTemplateRender;
1969
+ renderAppointmentEmailTemplate: EmailTemplateRender;
1970
+ renderAppointmentTextMessageTemplate: TextMessageTemplateRender;
1971
+ renderAppointmentVideoURLTemplate: VideoUrlTemplateRender;
1972
+ renderEmployeeCreatedEmailTemplate: EmailTemplateRender;
1973
+ renderExternalCalendarAccountBrokenEmailTemplate: EmailTemplateRender;
1974
+ reopenAppointment: Appointment;
1975
+ replayFailedWebhooks: Scalars["Int"]["output"];
1976
+ requestRescheduleAppointment: Appointment;
1977
+ rescheduleAppointment: Appointment;
1978
+ resetEmployee: Employee;
1979
+ revertAppliedTemplates: Array<AppliedTemplate>;
1980
+ /**
1981
+ * Reverts User Defined Unavailability for a given employee between two dates
1982
+ * (both inclusive) by deleting any existing, overlapping unavailability and creating new
1983
+ * unavailability for any remaining time left in the original ranges (if any exists). The
1984
+ * original, deleted unavailability is then returned. For example:
1985
+ *
1986
+ * - Employee A has a User Defined Unavailability from 2020-01-01 to 2020-01-31
1987
+ * - We revert unavailability for Employee A from 2020-01-15 to 2020-01-20
1988
+ * - The orignial unavaiability will be deleted
1989
+ * - Two new unavailabilities are created: 2020-01-01 to 2020-01-14 and 2020-01-21 to 2020-01-31
1990
+ * - The mutation returns the deleted original unavailability
1991
+ */
1992
+ revertUnavailability: Array<Unavailability>;
1993
+ testWebhookConfiguration: WebhookDelivery;
1994
+ upsertMicrosoftGraphAPIEmailConfiguration: MicrosoftGraphApiEmailProviderConfiguration;
1995
+ upsertOfficeRelation: GroupedOfficeRelation;
1996
+ };
1997
+ export type MutationAcceptAppointmentArgs = {
1998
+ id: Scalars["ID"]["input"];
1999
+ };
2000
+ export type MutationActivateEmployeeArgs = {
2001
+ employeeActivateInput: EmployeeActivateInput;
2002
+ id: Scalars["ID"]["input"];
2003
+ };
2004
+ export type MutationAddSecondaryParticipantToAppointmentArgs = {
2005
+ id: Scalars["ID"]["input"];
2006
+ secondaryParticipantInput: SecondaryParticipantInput;
2007
+ };
2008
+ export type MutationCancelAppointmentArgs = {
2009
+ appointmentCancelInput: AppointmentCancelInput;
2010
+ id: Scalars["ID"]["input"];
2011
+ };
2012
+ export type MutationCompleteAppointmentArgs = {
2013
+ appointmentCompleteInput: AppointmentCompleteInput;
2014
+ id: Scalars["ID"]["input"];
2015
+ };
2016
+ export type MutationCreateAnswerOptionArgs = {
2017
+ answerOptionCreateInput: AnswerOptionCreateInput;
2018
+ questionId: Scalars["ID"]["input"];
2019
+ };
2020
+ export type MutationCreateAppliedTemplateArgs = {
2021
+ availabilityTemplateId: Scalars["ID"]["input"];
2022
+ input: AppliedTemplateCreateInput;
2023
+ revertOverlap?: InputMaybe<Scalars["Boolean"]["input"]>;
2024
+ };
2025
+ export type MutationCreateAppointmentArgs = {
2026
+ appointmentCreateInput: AppointmentCreateInput;
2027
+ };
2028
+ export type MutationCreateAppointmentConfirmedSessionEventArgs = {
2029
+ input: AppointmentConfirmedSessionEvent;
2030
+ };
2031
+ export type MutationCreateAppointmentInviteArgs = {
2032
+ appointmentInviteInput: AppointmentInviteInput;
2033
+ };
2034
+ export type MutationCreateAvailabilityTemplateArgs = {
2035
+ availabilityTemplateCreateInput: AvailabilityTemplateCreateInput;
2036
+ };
2037
+ export type MutationCreateAvailabilityTimeRangeArgs = {
2038
+ availabilityTemplateId: Scalars["ID"]["input"];
2039
+ input: AvailabilityTimeRangeCreateInput;
2040
+ };
2041
+ export type MutationCreateCustomerArgs = {
2042
+ customerCreateInput: CustomerCreateInput;
2043
+ };
2044
+ export type MutationCreateDataSelectedSessionEventArgs = {
2045
+ input: DataSelectedSessionEvent;
2046
+ };
2047
+ export type MutationCreateDataShownSessionEventArgs = {
2048
+ input: DataShownSessionEvent;
2049
+ };
2050
+ export type MutationCreateEmployeeArgs = {
2051
+ employeeCreateInput: EmployeeCreateInput;
2052
+ };
2053
+ export type MutationCreateExternalCalendarAccountConnectUrlArgs = {
2054
+ provider: ExternalCalendarProvider;
2055
+ redirectUrl: Scalars["String"]["input"];
2056
+ };
2057
+ export type MutationCreateExternalProviderTenantAdminConsentUrlArgs = {
2058
+ provider: ExternalCalendarProvider;
2059
+ redirectUrl: Scalars["String"]["input"];
2060
+ };
2061
+ export type MutationCreateFetchConfigurationArgs = {
2062
+ fetchConfigurationCreateInput: FetchConfigurationCreateInput;
2063
+ };
2064
+ export type MutationCreateFormArgs = {
2065
+ formCreateInput: FormCreateInput;
2066
+ };
2067
+ export type MutationCreateLeadSegmentArgs = {
2068
+ leadSegmentCreateInput: LeadSegmentCreateInput;
2069
+ };
2070
+ export type MutationCreateListingArgs = {
2071
+ listingCreateInput: ListingCreateInput;
2072
+ };
2073
+ export type MutationCreateListingTimeSlotArgs = {
2074
+ listingId: Scalars["ID"]["input"];
2075
+ listingTimeSlotCreateInput: ListingTimeSlotCreateInput;
2076
+ };
2077
+ export type MutationCreateManagedExternalCalendarEventArgs = {
2078
+ input: ManagedExternalCalendarEventCreateInput;
2079
+ };
2080
+ export type MutationCreateManagedExternalOnlineMeetingArgs = {
2081
+ input: ManagedExternalOnlineMeetingCreateInput;
2082
+ };
2083
+ export type MutationCreateOfficeArgs = {
2084
+ officeCreateInput: OfficeCreateInput;
2085
+ };
2086
+ export type MutationCreateOfficeRelationArgs = {
2087
+ employeeId: Scalars["ID"]["input"];
2088
+ officeId: Scalars["ID"]["input"];
2089
+ role: OfficeRelationRole;
2090
+ };
2091
+ export type MutationCreateQuestionArgs = {
2092
+ formId: Scalars["ID"]["input"];
2093
+ questionPutInput: QuestionPutInput;
2094
+ };
2095
+ export type MutationCreateSessionConfigSessionEventArgs = {
2096
+ input: SessionConfigSessionEvent;
2097
+ };
2098
+ export type MutationCreateSessionDataSessionEventArgs = {
2099
+ input: SessionDataSessionEvent;
2100
+ };
2101
+ export type MutationCreateStepShownSessionEventArgs = {
2102
+ input: StepShownSessionEvent;
2103
+ };
2104
+ export type MutationCreateSubjectArgs = {
2105
+ subjectCreateInput: SubjectCreateInput;
2106
+ };
2107
+ export type MutationCreateSubjectGroupArgs = {
2108
+ subjectGroupCreateInput: SubjectGroupCreateInput;
2109
+ };
2110
+ export type MutationCreateTimetableNavigationSessionEventArgs = {
2111
+ input: TimetableNavigationSessionEvent;
2112
+ };
2113
+ export type MutationCreateUnavailabilityArgs = {
2114
+ input: UnavailabilityCreateInput;
2115
+ revertOverlap?: InputMaybe<Scalars["Boolean"]["input"]>;
2116
+ };
2117
+ export type MutationCreateValidatorArgs = {
2118
+ questionId: Scalars["ID"]["input"];
2119
+ validatorCreateInput: ValidatorCreateInput;
2120
+ };
2121
+ export type MutationCreateWebhookConfigurationArgs = {
2122
+ input: WebhookConfigurationCreateInput;
2123
+ };
2124
+ export type MutationCreateWebhookConfigurationHeadersArgs = {
2125
+ input: Array<WebhookConfigurationHeaderCreateInput>;
2126
+ webhookConfigurationId: Scalars["ID"]["input"];
2127
+ };
2128
+ export type MutationDeleteAnswerOptionArgs = {
2129
+ id: Scalars["ID"]["input"];
2130
+ };
2131
+ export type MutationDeleteAppliedTemplateArgs = {
2132
+ id: Scalars["ID"]["input"];
2133
+ };
2134
+ export type MutationDeleteAvailabilityTemplateArgs = {
2135
+ id: Scalars["ID"]["input"];
2136
+ };
2137
+ export type MutationDeleteAvailabilityTimeRangeArgs = {
2138
+ id: Scalars["ID"]["input"];
2139
+ };
2140
+ export type MutationDeleteAvailabilityTimeRangeOfficeArgs = {
2141
+ id: Scalars["ID"]["input"];
2142
+ };
2143
+ export type MutationDeleteCustomerArgs = {
2144
+ id: Scalars["ID"]["input"];
2145
+ };
2146
+ export type MutationDeleteEmployeeArgs = {
2147
+ id: Scalars["ID"]["input"];
2148
+ };
2149
+ export type MutationDeleteFetchConfigurationArgs = {
2150
+ id: Scalars["ID"]["input"];
2151
+ };
2152
+ export type MutationDeleteFormArgs = {
2153
+ id: Scalars["ID"]["input"];
2154
+ };
2155
+ export type MutationDeleteLeadSegmentArgs = {
2156
+ id: Scalars["ID"]["input"];
2157
+ };
2158
+ export type MutationDeleteListingArgs = {
2159
+ id: Scalars["ID"]["input"];
2160
+ };
2161
+ export type MutationDeleteListingTimeSlotArgs = {
2162
+ id: Scalars["ID"]["input"];
2163
+ };
2164
+ export type MutationDeleteManagedExternalCalendarEventArgs = {
2165
+ id: Scalars["String"]["input"];
2166
+ };
2167
+ export type MutationDeleteManagedExternalOnlineMeetingArgs = {
2168
+ id: Scalars["String"]["input"];
2169
+ };
2170
+ export type MutationDeleteOfficeArgs = {
2171
+ id: Scalars["ID"]["input"];
2172
+ };
2173
+ export type MutationDeleteOfficeRelationArgs = {
2174
+ employeeId: Scalars["ID"]["input"];
2175
+ officeId: Scalars["ID"]["input"];
2176
+ role: OfficeRelationRole;
2177
+ };
2178
+ export type MutationDeleteQuestionArgs = {
2179
+ id: Scalars["ID"]["input"];
2180
+ };
2181
+ export type MutationDeleteSubjectArgs = {
2182
+ id: Scalars["ID"]["input"];
2183
+ };
2184
+ export type MutationDeleteSubjectGroupArgs = {
2185
+ id: Scalars["ID"]["input"];
2186
+ };
2187
+ export type MutationDeleteUnavailabilityArgs = {
2188
+ id: Scalars["ID"]["input"];
2189
+ };
2190
+ export type MutationDeleteValidatorArgs = {
2191
+ id: Scalars["ID"]["input"];
2192
+ };
2193
+ export type MutationDeleteWebhookConfigurationArgs = {
2194
+ id: Scalars["ID"]["input"];
2195
+ };
2196
+ export type MutationDeleteWebhookConfigurationHeadersArgs = {
2197
+ ids: Array<Scalars["ID"]["input"]>;
2198
+ };
2199
+ export type MutationDisconnectExternalCalendarAccountArgs = {
2200
+ id: Scalars["ID"]["input"];
2201
+ };
2202
+ export type MutationGenerateAppointmentGoogleCalendarUrlArgs = {
2203
+ token: Scalars["String"]["input"];
2204
+ };
2205
+ export type MutationGenerateAppointmentICalFileContentArgs = {
2206
+ token: Scalars["String"]["input"];
2207
+ };
2208
+ export type MutationGenerateAppointmentOffice365CalendarUrlArgs = {
2209
+ token: Scalars["String"]["input"];
2210
+ };
2211
+ export type MutationGenerateLocalizedPluginUrlArgs = {
2212
+ intent: Intent;
2213
+ token: Scalars["String"]["input"];
2214
+ };
2215
+ export type MutationGenerateVideoUrlArgs = {
2216
+ testUrl?: InputMaybe<Scalars["Boolean"]["input"]>;
2217
+ token: Scalars["String"]["input"];
2218
+ };
2219
+ export type MutationPatchAnswerOptionArgs = {
2220
+ answerOptionPatchInput: AnswerOptionPatchInput;
2221
+ id: Scalars["ID"]["input"];
2222
+ };
2223
+ export type MutationPatchAppointmentArgs = {
2224
+ appointmentPatchInput: AppointmentPatchInput;
2225
+ id: Scalars["ID"]["input"];
2226
+ };
2227
+ export type MutationPatchAvailabilityTemplateArgs = {
2228
+ availabilityTemplatePatchInput: AvailabilityTemplatePatchInput;
2229
+ id: Scalars["ID"]["input"];
2230
+ };
2231
+ export type MutationPatchAvailabilityTimeRangeArgs = {
2232
+ id: Scalars["ID"]["input"];
2233
+ input: AvailabilityTimeRangePatchInput;
2234
+ };
2235
+ export type MutationPatchCalendarEventTemplateArgs = {
2236
+ id: Scalars["ID"]["input"];
2237
+ input: CalendarEventTemplatePatchInput;
2238
+ };
2239
+ export type MutationPatchCustomerArgs = {
2240
+ customerPatchInput: CustomerPatchInput;
2241
+ id: Scalars["ID"]["input"];
2242
+ };
2243
+ export type MutationPatchEmailTemplateArgs = {
2244
+ id: Scalars["ID"]["input"];
2245
+ input: EmailTemplatePatchInput;
2246
+ };
2247
+ export type MutationPatchEmployeeArgs = {
2248
+ employeePatchInput: EmployeePatchInput;
2249
+ id: Scalars["ID"]["input"];
2250
+ };
2251
+ export type MutationPatchEnterpriseSettingsArgs = {
2252
+ enterpriseSettingsPatchInput: EnterpriseSettingsPatchInput;
2253
+ };
2254
+ export type MutationPatchExternalCalendarArgs = {
2255
+ id: Scalars["ID"]["input"];
2256
+ input: ExternalCalendarPatchInput;
2257
+ };
2258
+ export type MutationPatchExternalCalendarAccountArgs = {
2259
+ id: Scalars["ID"]["input"];
2260
+ input: ExternalCalendarAccountPatchInput;
2261
+ };
2262
+ export type MutationPatchFetchConfigurationArgs = {
2263
+ fetchConfigurationPatchInput: FetchConfigurationPatchInput;
2264
+ id: Scalars["ID"]["input"];
2265
+ };
2266
+ export type MutationPatchFormArgs = {
2267
+ formPatchInput: FormPatchInput;
2268
+ id: Scalars["ID"]["input"];
2269
+ };
2270
+ export type MutationPatchLeadSegmentArgs = {
2271
+ id: Scalars["ID"]["input"];
2272
+ leadSegmentPatchInput: LeadSegmentPatchInput;
2273
+ };
2274
+ export type MutationPatchListingArgs = {
2275
+ id: Scalars["ID"]["input"];
2276
+ listingPatchInput: ListingPatchInput;
2277
+ };
2278
+ export type MutationPatchManagedExternalCalendarEventArgs = {
2279
+ id: Scalars["String"]["input"];
2280
+ input: ManagedExternalCalendarEventPatchInput;
2281
+ };
2282
+ export type MutationPatchManagedExternalOnlineMeetingArgs = {
2283
+ id: Scalars["String"]["input"];
2284
+ input: ManagedExternalOnlineMeetingPatchInput;
2285
+ };
2286
+ export type MutationPatchMeetingTypesArgs = {
2287
+ inputs: Array<MeetingTypeInput>;
2288
+ };
2289
+ export type MutationPatchOfficeArgs = {
2290
+ id: Scalars["ID"]["input"];
2291
+ officePatchInput: OfficePatchInput;
2292
+ };
2293
+ export type MutationPatchQuestionArgs = {
2294
+ id: Scalars["ID"]["input"];
2295
+ questionPatchInput: QuestionPatchInput;
2296
+ };
2297
+ export type MutationPatchStaticTranslationOverridesArgs = {
2298
+ staticTranslationOverridesPatchInput: Array<StaticTranslationOverridePatchInput>;
2299
+ };
2300
+ export type MutationPatchSubjectArgs = {
2301
+ id: Scalars["ID"]["input"];
2302
+ subjectPatchInput: SubjectPatchInput;
2303
+ };
2304
+ export type MutationPatchSubjectGroupArgs = {
2305
+ id: Scalars["ID"]["input"];
2306
+ subjectGroupPatchInput: SubjectGroupPatchInput;
2307
+ };
2308
+ export type MutationPatchTextMessageTemplateArgs = {
2309
+ id: Scalars["ID"]["input"];
2310
+ input: TextMessageTemplatePatchInput;
2311
+ };
2312
+ export type MutationPatchValidatorArgs = {
2313
+ id: Scalars["ID"]["input"];
2314
+ validatorPatchInput: ValidatorPatchInput;
2315
+ };
2316
+ export type MutationPatchVideoUrlTemplateArgs = {
2317
+ id: Scalars["ID"]["input"];
2318
+ input: VideoUrlTemplatePatchInput;
2319
+ };
2320
+ export type MutationPatchWebhookConfigurationArgs = {
2321
+ id: Scalars["ID"]["input"];
2322
+ input: WebhookConfigurationPatchInput;
2323
+ };
2324
+ export type MutationPatchWebhookConfigurationHeadersArgs = {
2325
+ input: Array<WebhookConfigurationHeaderPatchInput>;
2326
+ };
2327
+ export type MutationPutAppointmentAnswersArgs = {
2328
+ appointmentAnswersPutInput: PutAppointmentAnswersInput;
2329
+ id: Scalars["ID"]["input"];
2330
+ };
2331
+ export type MutationPutAvailabilityTimeRangeOfficeArgs = {
2332
+ availabilityTimeRangeId: Scalars["ID"]["input"];
2333
+ input: AvailabilityTimeRangeOfficePutInput;
2334
+ };
2335
+ export type MutationPutAvailabilityTimeRangeOfficesArgs = {
2336
+ availabilityTimeRangeId: Scalars["ID"]["input"];
2337
+ input: Array<AvailabilityTimeRangeOfficePutInput>;
2338
+ };
2339
+ export type MutationPutFavoriteAgentsArgs = {
2340
+ favoriteEmployeeIds: Array<Scalars["ID"]["input"]>;
2341
+ officeId: Scalars["ID"]["input"];
2342
+ owningEmployeeId: Scalars["ID"]["input"];
2343
+ };
2344
+ export type MutationPutLeadSegmentSchedulingSettingsArgs = {
2345
+ leadSegmentId: Scalars["ID"]["input"];
2346
+ leadSegmentSchedulingSettingInputs: Array<LeadSegmentSchedulingSettingInput>;
2347
+ };
2348
+ export type MutationPutListingSchedulingSettingsArgs = {
2349
+ listingId: Scalars["ID"]["input"];
2350
+ listingSchedulingSettingInput: ListingSchedulingSettingInput;
2351
+ };
2352
+ export type MutationPutListingTimeSlotArgs = {
2353
+ id: Scalars["ID"]["input"];
2354
+ listingTimeSlotPutInput: ListingTimeSlotPutInput;
2355
+ };
2356
+ export type MutationPutOfficeEmployeeCoverageRegionSchedulingSettingsArgs = {
2357
+ employeeId: Scalars["ID"]["input"];
2358
+ officeId: Scalars["ID"]["input"];
2359
+ regionSchedulingSettingInputs: Array<OfficeEmployeeCoverageRegionSchedulingSettingInput>;
2360
+ };
2361
+ export type MutationPutOfficeEmployeeSubjectCoverageRegionSchedulingSettingsArgs = {
2362
+ employeeId: Scalars["ID"]["input"];
2363
+ officeId: Scalars["ID"]["input"];
2364
+ regionSchedulingSettingInputs: Array<OfficeEmployeeSubjectCoverageRegionSchedulingSettingInput>;
2365
+ subjectId: Scalars["ID"]["input"];
2366
+ };
2367
+ export type MutationPutOfficeRelationsForOfficeArgs = {
2368
+ input: Array<OfficeRelationPutInputForOffice>;
2369
+ officeId: Scalars["ID"]["input"];
2370
+ };
2371
+ export type MutationPutOfficeSchedulingSettingsArgs = {
2372
+ officeId: Scalars["ID"]["input"];
2373
+ officeSchedulingSettingInputs: Array<OfficeSchedulingSettingInput>;
2374
+ };
2375
+ export type MutationPutSubjectMeetingTypeAvailabilitySettingArgs = {
2376
+ subjectMeetingTypeAvailabilitySettingPutInput: SubjectMeetingTypeAvailabilitySettingPutInput;
2377
+ };
2378
+ export type MutationPutSubjectMeetingTypeAvailabilitySettingsArgs = {
2379
+ subjectMeetingTypeAvailabilitySettingBulkPutInput: Array<SubjectMeetingTypeAvailabilitySettingPutInput>;
2380
+ };
2381
+ export type MutationPutSubjectOfficeEmployeeSchedulingSettingsForOfficeArgs = {
2382
+ inputs: Array<SubjectOfficeEmployeeSchedulingSettingInputForOffice>;
2383
+ officeId: Scalars["ID"]["input"];
2384
+ };
2385
+ export type MutationPutSubjectOfficeEmployeeSchedulingSettingsForOfficeAndEmployeeArgs = {
2386
+ employeeId: Scalars["ID"]["input"];
2387
+ inputs: Array<SubjectOfficeEmployeeSchedulingSettingInputForOfficeAndEmployee>;
2388
+ officeId: Scalars["ID"]["input"];
2389
+ };
2390
+ export type MutationPutSubjectOfficeMeetingTypeAvailabilitySettingArgs = {
2391
+ subjectOfficeMeetingTypeAvailabilitySettingPutInput: SubjectOfficeMeetingTypeAvailabilitySettingPutInput;
2392
+ };
2393
+ export type MutationPutSubjectOfficeMeetingTypeAvailabilitySettingsArgs = {
2394
+ subjectOfficeMeetingTypeAvailabilitySettingBulkPutInput: Array<SubjectOfficeMeetingTypeAvailabilitySettingPutInput>;
2395
+ };
2396
+ export type MutationPutSubjectOfficeSchedulingSettingsArgs = {
2397
+ officeId: Scalars["ID"]["input"];
2398
+ subjectOfficeSchedulingSettingInputs: Array<SubjectOfficeSchedulingSettingInput>;
2399
+ };
2400
+ export type MutationPutSubjectSchedulingSettingsArgs = {
2401
+ subjectId: Scalars["ID"]["input"];
2402
+ subjectSchedulingSettingInputs: Array<SubjectSchedulingSettingInput>;
2403
+ };
2404
+ export type MutationReassignAppointmentArgs = {
2405
+ appointmentReassignInput: AppointmentReassignInput;
2406
+ id: Scalars["ID"]["input"];
2407
+ };
2408
+ export type MutationRemoveSecondaryParticipantFromAppointmentArgs = {
2409
+ id: Scalars["ID"]["input"];
2410
+ secondaryParticipantInput: SecondaryParticipantInput;
2411
+ };
2412
+ export type MutationRenderAppointmentCalendarEventTemplateArgs = {
2413
+ appointmentId: Scalars["ID"]["input"];
2414
+ participant: AppointmentParticipantInput;
2415
+ };
2416
+ export type MutationRenderAppointmentEmailTemplateArgs = {
2417
+ appointmentId: Scalars["ID"]["input"];
2418
+ input: AppointmentEmailMeta;
2419
+ participant: AppointmentParticipantInput;
2420
+ };
2421
+ export type MutationRenderAppointmentTextMessageTemplateArgs = {
2422
+ appointmentId: Scalars["ID"]["input"];
2423
+ input: AppointmentTextMessageMeta;
2424
+ participant: AppointmentParticipantInput;
2425
+ };
2426
+ export type MutationRenderAppointmentVideoUrlTemplateArgs = {
2427
+ appointmentId: Scalars["ID"]["input"];
2428
+ participant: AppointmentParticipantInput;
2429
+ };
2430
+ export type MutationRenderEmployeeCreatedEmailTemplateArgs = {
2431
+ employeeId: Scalars["ID"]["input"];
2432
+ };
2433
+ export type MutationRenderExternalCalendarAccountBrokenEmailTemplateArgs = {
2434
+ externalCalendarAccountId: Scalars["ID"]["input"];
2435
+ };
2436
+ export type MutationReopenAppointmentArgs = {
2437
+ id: Scalars["ID"]["input"];
2438
+ };
2439
+ export type MutationReplayFailedWebhooksArgs = {
2440
+ from?: InputMaybe<Scalars["ISO8601"]["input"]>;
2441
+ to?: InputMaybe<Scalars["ISO8601"]["input"]>;
2442
+ webhookId?: InputMaybe<Array<Scalars["String"]["input"]>>;
2443
+ };
2444
+ export type MutationRequestRescheduleAppointmentArgs = {
2445
+ appointmentRequestRescheduleInput: AppointmentRequestRescheduleInput;
2446
+ id: Scalars["ID"]["input"];
2447
+ };
2448
+ export type MutationRescheduleAppointmentArgs = {
2449
+ appointmentRescheduleInput: AppointmentRescheduleInput;
2450
+ id: Scalars["ID"]["input"];
2451
+ };
2452
+ export type MutationResetEmployeeArgs = {
2453
+ id: Scalars["ID"]["input"];
2454
+ };
2455
+ export type MutationRevertAppliedTemplatesArgs = {
2456
+ input: AppliedTemplateRevertInput;
2457
+ };
2458
+ export type MutationRevertUnavailabilityArgs = {
2459
+ input: UnavailabilityRevertInput;
2460
+ };
2461
+ export type MutationTestWebhookConfigurationArgs = {
2462
+ id: Scalars["ID"]["input"];
2463
+ };
2464
+ export type MutationUpsertMicrosoftGraphApiEmailConfigurationArgs = {
2465
+ input: MicrosoftGraphApiEmailProviderConfigurationInput;
2466
+ };
2467
+ export type MutationUpsertOfficeRelationArgs = {
2468
+ input: OfficeRelationUpsertInput;
2469
+ };
2470
+ export type NotificationSettingsEnterpriseSettingInput = {
2471
+ appointmentEventType: AppointmentEventType;
2472
+ email: Scalars["Boolean"]["input"];
2473
+ textMessage: Scalars["Boolean"]["input"];
2474
+ };
2475
+ export type NotificationSettingsEnterpriseSettingValue = {
2476
+ appointmentEventType: AppointmentEventType;
2477
+ email: Scalars["Boolean"]["output"];
2478
+ textMessage: Scalars["Boolean"]["output"];
2479
+ };
2480
+ export type Office = {
2481
+ active: Scalars["Boolean"]["output"];
2482
+ agents: Array<Employee>;
2483
+ callbacksAllowed: Scalars["Boolean"]["output"];
2484
+ createdAt: Scalars["ISO8601"]["output"];
2485
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
2486
+ description?: Maybe<TranslationObject>;
2487
+ directions?: Maybe<TranslationObject>;
2488
+ distance?: Maybe<Scalars["Float"]["output"]>;
2489
+ email?: Maybe<Scalars["String"]["output"]>;
2490
+ employeeRelations: Array<OfficeRelation>;
2491
+ externalId?: Maybe<Scalars["String"]["output"]>;
2492
+ /** Returns the favorite agents for the currently logged in user. */
2493
+ favoriteAgents: Array<Employee>;
2494
+ groupedOfficeRelations: Array<GroupedOfficeRelation>;
2495
+ id: Scalars["ID"]["output"];
2496
+ location: Location;
2497
+ name?: Maybe<TranslationObject>;
2498
+ officeManagers: Array<Employee>;
2499
+ parkingInfo?: Maybe<TranslationObject>;
2500
+ phoneNumber?: Maybe<Scalars["String"]["output"]>;
2501
+ schedulingSettings: Array<OfficeSchedulingSetting>;
2502
+ subjectEmployeeSchedulingSettings: Array<SubjectOfficeEmployeeSchedulingSetting>;
2503
+ subjectSchedulingSettings: Array<SubjectOfficeSchedulingSetting>;
2504
+ timeZone: Scalars["String"]["output"];
2505
+ translations: OfficeTranslations;
2506
+ updatedAt: Scalars["ISO8601"]["output"];
2507
+ usesIndependentAgents: Scalars["Boolean"]["output"];
2508
+ virtual: Scalars["Boolean"]["output"];
2509
+ };
2510
+ export type OfficeSchedulingSettingsArgs = {
2511
+ meetingType?: InputMaybe<Array<MeetingType>>;
2512
+ };
2513
+ export type OfficeSubjectEmployeeSchedulingSettingsArgs = {
2514
+ employeeId?: InputMaybe<Scalars["ID"]["input"]>;
2515
+ subjectId?: InputMaybe<Scalars["ID"]["input"]>;
2516
+ };
2517
+ export type OfficeSubjectSchedulingSettingsArgs = {
2518
+ meetingType?: InputMaybe<Array<MeetingType>>;
2519
+ subjectId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2520
+ };
2521
+ export type OfficeConnection = {
2522
+ edges: Array<OfficeEdge>;
2523
+ pageInfo: PageInfo;
2524
+ totalCount: Scalars["Int"]["output"];
2525
+ };
2526
+ export type OfficeCreateInput = {
2527
+ active?: InputMaybe<Scalars["Boolean"]["input"]>;
2528
+ callbacksAllowed?: InputMaybe<Scalars["Boolean"]["input"]>;
2529
+ email?: InputMaybe<Scalars["String"]["input"]>;
2530
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
2531
+ location: LocationInput;
2532
+ phoneNumber?: InputMaybe<Scalars["String"]["input"]>;
2533
+ timeZone?: InputMaybe<Scalars["String"]["input"]>;
2534
+ translations: OfficeTranslationsCreateInput;
2535
+ usesIndependentAgents?: InputMaybe<Scalars["Boolean"]["input"]>;
2536
+ virtual?: InputMaybe<Scalars["Boolean"]["input"]>;
2537
+ };
2538
+ export type OfficeDataShownSessionEventPayload = {
2539
+ ids: Array<Scalars["ID"]["input"]>;
2540
+ };
2541
+ export type OfficeEdge = {
2542
+ cursor: Scalars["String"]["output"];
2543
+ node: Office;
2544
+ };
2545
+ export type OfficeEmployeeCoverageRegionSchedulingSetting = {
2546
+ employee: Employee;
2547
+ meetingType: MeetingType;
2548
+ office: Office;
2549
+ regions: Array<Region>;
2550
+ };
2551
+ export type OfficeEmployeeCoverageRegionSchedulingSettingInput = {
2552
+ meetingType: MeetingType;
2553
+ regionIds: Array<Scalars["ID"]["input"]>;
2554
+ };
2555
+ export type OfficeEmployeeSubjectCoverageRegionSchedulingSetting = {
2556
+ employee: Employee;
2557
+ meetingType: MeetingType;
2558
+ office: Office;
2559
+ regions: Array<Region>;
2560
+ subject: Subject;
2561
+ };
2562
+ export type OfficeEmployeeSubjectCoverageRegionSchedulingSettingInput = {
2563
+ meetingType: MeetingType;
2564
+ regionIds: Array<Scalars["ID"]["input"]>;
2565
+ };
2566
+ export type OfficePatchInput = {
2567
+ active?: InputMaybe<Scalars["Boolean"]["input"]>;
2568
+ callbacksAllowed?: InputMaybe<Scalars["Boolean"]["input"]>;
2569
+ email?: InputMaybe<Scalars["String"]["input"]>;
2570
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
2571
+ location?: InputMaybe<LocationInput>;
2572
+ phoneNumber?: InputMaybe<Scalars["String"]["input"]>;
2573
+ timeZone?: InputMaybe<Scalars["String"]["input"]>;
2574
+ translations?: InputMaybe<OfficeTranslationsPatchInput>;
2575
+ usesIndependentAgents?: InputMaybe<Scalars["Boolean"]["input"]>;
2576
+ virtual?: InputMaybe<Scalars["Boolean"]["input"]>;
2577
+ };
2578
+ export type OfficeRelation = {
2579
+ access: OfficeRelationAccess;
2580
+ employee: Employee;
2581
+ office: Office;
2582
+ role: OfficeRelationRole;
2583
+ };
2584
+ /** The access object on the office relation defines what actions the currently signed-in user is allowed to do on the office relation. */
2585
+ export type OfficeRelationAccess = {
2586
+ patch: Scalars["Boolean"]["output"];
2587
+ };
2588
+ export type OfficeRelationCreateInput = {
2589
+ officeId: Scalars["ID"]["input"];
2590
+ role: OfficeRelationRole;
2591
+ };
2592
+ export type OfficeRelationFilter = {
2593
+ officeId?: InputMaybe<Scalars["ID"]["input"]>;
2594
+ role: OfficeRelationRole;
2595
+ };
2596
+ export type OfficeRelationPatchInput = {
2597
+ officeId: Scalars["ID"]["input"];
2598
+ role: OfficeRelationRole;
2599
+ };
2600
+ export type OfficeRelationPutInputForOffice = {
2601
+ employeeId: Scalars["ID"]["input"];
2602
+ roles: Array<OfficeRelationRole>;
2603
+ };
2604
+ export type OfficeRelationRole = "AGENT" | "OFFICE_MANAGER";
2605
+ export type OfficeRelationUpsertInput = {
2606
+ employeeId: Scalars["ID"]["input"];
2607
+ officeId: Scalars["ID"]["input"];
2608
+ roles: Array<OfficeRelationRole>;
2609
+ };
2610
+ export type OfficeSchedulingSetting = {
2611
+ meetingType: MeetingType;
2612
+ office: Office;
2613
+ };
2614
+ export type OfficeSchedulingSettingInput = {
2615
+ meetingType: MeetingType;
2616
+ };
2617
+ export type OfficeSort = {
2618
+ direction: SortDirection;
2619
+ field: SortableOfficeFields;
2620
+ };
2621
+ export type OfficeTranslations = {
2622
+ description: Array<TranslationObject>;
2623
+ directions: Array<TranslationObject>;
2624
+ name: Array<TranslationObject>;
2625
+ parkingInfo: Array<TranslationObject>;
2626
+ };
2627
+ export type OfficeTranslationsCreateInput = {
2628
+ description?: InputMaybe<Array<TranslationObjectInput>>;
2629
+ directions?: InputMaybe<Array<TranslationObjectInput>>;
2630
+ name: Array<TranslationObjectInput>;
2631
+ parkingInfo?: InputMaybe<Array<TranslationObjectInput>>;
2632
+ };
2633
+ export type OfficeTranslationsPatchInput = {
2634
+ description?: InputMaybe<Array<TranslationObjectInput>>;
2635
+ directions?: InputMaybe<Array<TranslationObjectInput>>;
2636
+ name?: InputMaybe<Array<TranslationObjectInput>>;
2637
+ parkingInfo?: InputMaybe<Array<TranslationObjectInput>>;
2638
+ };
2639
+ export type PageInfo = {
2640
+ endCursor: Scalars["String"]["output"];
2641
+ hasNextPage: Scalars["Boolean"]["output"];
2642
+ hasPreviousPage: Scalars["Boolean"]["output"];
2643
+ startCursor: Scalars["String"]["output"];
2644
+ };
2645
+ export type Participant = Customer | Employee | {
2646
+ __typename?: "%other";
2647
+ };
2648
+ export type ParticipantRole = "PRIMARY" | "SECONDARY";
2649
+ export type ParticipantType = "CUSTOMER" | "EMPLOYEE";
2650
+ export type PasswordAuthenticationEnabledEnterpriseSetting = {
2651
+ createdAt: Scalars["ISO8601"]["output"];
2652
+ manageable: Scalars["Boolean"]["output"];
2653
+ updatedAt: Scalars["ISO8601"]["output"];
2654
+ /** Whether password authentication is used. */
2655
+ value: Scalars["Boolean"]["output"];
2656
+ };
2657
+ export type PrimaryBrandColorEnterpriseSetting = {
2658
+ createdAt: Scalars["ISO8601"]["output"];
2659
+ manageable: Scalars["Boolean"]["output"];
2660
+ updatedAt: Scalars["ISO8601"]["output"];
2661
+ /** The primary brand color of the enterprise. */
2662
+ value: Scalars["String"]["output"];
2663
+ };
2664
+ export type PutAppointmentAnswersInput = {
2665
+ answers: Array<AppointmentAnswerInput>;
2666
+ };
2667
+ export type Query = {
2668
+ activeMeetingTypes: Array<MeetingType>;
2669
+ answerOption: AnswerOption;
2670
+ appliedTemplates: AppliedTemplateConnection;
2671
+ appointment: Appointment;
2672
+ appointmentParticipant: AppointmentParticipant;
2673
+ appointments: AppointmentConnection;
2674
+ availabilitySettings: Array<AvailabilitySetting>;
2675
+ availabilityTemplate: AvailabilityTemplate;
2676
+ availabilityTemplates: Array<AvailabilityTemplate>;
2677
+ availabilityTimeRange: AvailabilityTimeRange;
2678
+ availabilityTimeRangeOffice: AvailabilityTimeRangeOffice;
2679
+ availabilityTimeRangeOffices: Array<AvailabilityTimeRangeOffice>;
2680
+ availabilityTimeRanges: Array<AvailabilityTimeRange>;
2681
+ calendarEventTemplate: CalendarEventTemplate;
2682
+ calendarEventTemplates: Array<CalendarEventTemplate>;
2683
+ customer: Customer;
2684
+ customers: CustomerConnection;
2685
+ definedAvailability: Array<DefinedAvailability>;
2686
+ definedAvailabilityEvents: Array<DefinedAvailabilityEvent>;
2687
+ emailTemplate: EmailTemplate;
2688
+ emailTemplates: Array<EmailTemplate>;
2689
+ employee: Employee;
2690
+ employees: EmployeeConnection;
2691
+ enterpriseSettings: EnterpriseSettings;
2692
+ executeFetchField: ExecuteFetchFieldResponse;
2693
+ externalCalendar: ExternalCalendar;
2694
+ externalCalendarAccount: ExternalCalendarAccount;
2695
+ externalCalendarAccounts: ExternalCalendarAccountConnection;
2696
+ externalCalendarEvent: ExternalCalendarEvent;
2697
+ externalCalendarEvents: ExternalCalendarEventConnection;
2698
+ externalCalendars: ExternalCalendarConnection;
2699
+ favoriteAgents: FavoriteAgentConnection;
2700
+ fetchConfiguration: FetchConfiguration;
2701
+ fetchConfigurations: FetchConfigurationConnection;
2702
+ form: Form;
2703
+ forms: FormConnection;
2704
+ getAuthorizedProfilePictureUrl: FileMetadata;
2705
+ getInsightsAccessToken: InsightsAccessToken;
2706
+ leadSegment: LeadSegment;
2707
+ leadSegments: LeadSegmentConnection;
2708
+ listing: Listing;
2709
+ listingTimeSlot: ListingTimeSlot;
2710
+ listingTimeSlots: ListingTimeSlotConnection;
2711
+ listings: ListingConnection;
2712
+ managedExternalCalendarEvent: ManagedExternalCalendarEvent;
2713
+ managedExternalCalendarEvents: ManagedExternalCalendarEventConnection;
2714
+ managedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
2715
+ managedExternalOnlineMeetings: ManagedExternalOnlineMeetingConnection;
2716
+ me: Employee;
2717
+ meetingTypes: Array<MeetingTypeEntity>;
2718
+ microsoftGraphAPIEmailConfiguration: MicrosoftGraphApiEmailProviderConfiguration;
2719
+ office: Office;
2720
+ officeEmployeeCoverageRegionSchedulingSettings: Array<OfficeEmployeeCoverageRegionSchedulingSetting>;
2721
+ officeEmployeeSubjectCoverageRegionSchedulingSettings: Array<OfficeEmployeeSubjectCoverageRegionSchedulingSetting>;
2722
+ offices: OfficeConnection;
2723
+ question: Question;
2724
+ questions: Array<Question>;
2725
+ regions: RegionConnection;
2726
+ schedulableEmployees: Array<Employee>;
2727
+ schedulableMeetingTypes: Array<MeetingType>;
2728
+ schedulableOffices: Array<Office>;
2729
+ schedulableSubjects: Array<Subject>;
2730
+ searchRegions: Array<Region>;
2731
+ staticTranslationOverrides: Array<StaticTranslationOverride>;
2732
+ staticTranslations: Scalars["JSONObject"]["output"];
2733
+ subject: Subject;
2734
+ subjectGroup: SubjectGroup;
2735
+ subjectGroups: SubjectGroupConnection;
2736
+ subjectMeetingTypeAvailabilitySettings: Array<SubjectMeetingTypeAvailabilitySetting>;
2737
+ subjectOfficeMeetingTypeAvailabilitySettings: Array<SubjectOfficeMeetingTypeAvailabilitySetting>;
2738
+ subjects: SubjectConnection;
2739
+ textMessageTemplate: TextMessageTemplate;
2740
+ textMessageTemplates: Array<TextMessageTemplate>;
2741
+ timeRangeAvailabilitySettings: Array<TimeRangeAvailabilitySetting>;
2742
+ timetable: Timetable;
2743
+ treeListRegions: Array<Region>;
2744
+ unavailability: UnavailabilityConnection;
2745
+ validator: Validator;
2746
+ validators: Array<Validator>;
2747
+ videoURLTemplate: VideoUrlTemplate;
2748
+ videoURLTemplates: Array<VideoUrlTemplate>;
2749
+ webhookConfiguration: WebhookConfiguration;
2750
+ webhookConfigurations: Array<WebhookConfiguration>;
2751
+ webhookDeliveries: WebhookDeliveryConnection;
2752
+ webhookDelivery: WebhookDelivery;
2753
+ };
2754
+ export type QueryAnswerOptionArgs = {
2755
+ id: Scalars["ID"]["input"];
2756
+ };
2757
+ export type QueryAppliedTemplatesArgs = {
2758
+ after?: InputMaybe<Scalars["String"]["input"]>;
2759
+ availabilityTemplateId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2760
+ before?: InputMaybe<Scalars["String"]["input"]>;
2761
+ employeeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2762
+ endDate?: InputMaybe<Scalars["CalendarDate"]["input"]>;
2763
+ first?: InputMaybe<Scalars["Int"]["input"]>;
2764
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2765
+ last?: InputMaybe<Scalars["Int"]["input"]>;
2766
+ startDate?: InputMaybe<Scalars["CalendarDate"]["input"]>;
2767
+ type?: InputMaybe<AvailabilityTemplateType>;
2768
+ };
2769
+ export type QueryAppointmentArgs = {
2770
+ id?: InputMaybe<Scalars["ID"]["input"]>;
2771
+ token?: InputMaybe<Scalars["String"]["input"]>;
2772
+ };
2773
+ export type QueryAppointmentParticipantArgs = {
2774
+ token: Scalars["String"]["input"];
2775
+ };
2776
+ export type QueryAppointmentsArgs = {
2777
+ after?: InputMaybe<Scalars["String"]["input"]>;
2778
+ before?: InputMaybe<Scalars["String"]["input"]>;
2779
+ customerId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2780
+ employeeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2781
+ externalId?: InputMaybe<Array<Scalars["String"]["input"]>>;
2782
+ first?: InputMaybe<Scalars["Int"]["input"]>;
2783
+ from?: InputMaybe<Scalars["ISO8601"]["input"]>;
2784
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2785
+ last?: InputMaybe<Scalars["Int"]["input"]>;
2786
+ leadSegmentId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2787
+ listingId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2788
+ meetingType?: InputMaybe<Array<MeetingType>>;
2789
+ officeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2790
+ sort?: InputMaybe<Array<AppointmentSort>>;
2791
+ status?: InputMaybe<Array<AppointmentStatus>>;
2792
+ subjectId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2793
+ to?: InputMaybe<Scalars["ISO8601"]["input"]>;
2794
+ };
2795
+ export type QueryAvailabilitySettingsArgs = {
2796
+ meetingType?: InputMaybe<Array<MeetingType>>;
2797
+ officeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2798
+ subjectId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2799
+ };
2800
+ export type QueryAvailabilityTemplateArgs = {
2801
+ id: Scalars["ID"]["input"];
2802
+ };
2803
+ export type QueryAvailabilityTemplatesArgs = {
2804
+ employeeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2805
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2806
+ isDefault?: InputMaybe<Scalars["Boolean"]["input"]>;
2807
+ search?: InputMaybe<Scalars["String"]["input"]>;
2808
+ sort?: InputMaybe<Array<AvailabilityTemplateSort>>;
2809
+ type?: InputMaybe<Array<AvailabilityTemplateType>>;
2810
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
2811
+ };
2812
+ export type QueryAvailabilityTimeRangeArgs = {
2813
+ id: Scalars["ID"]["input"];
2814
+ };
2815
+ export type QueryAvailabilityTimeRangeOfficeArgs = {
2816
+ id: Scalars["ID"]["input"];
2817
+ };
2818
+ export type QueryAvailabilityTimeRangeOfficesArgs = {
2819
+ availabilityTimeRangeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2820
+ officeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2821
+ };
2822
+ export type QueryAvailabilityTimeRangesArgs = {
2823
+ availabilityTemplateId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2824
+ };
2825
+ export type QueryCalendarEventTemplateArgs = {
2826
+ id: Scalars["ID"]["input"];
2827
+ };
2828
+ export type QueryCalendarEventTemplatesArgs = {
2829
+ context?: InputMaybe<Array<TemplateContext>>;
2830
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2831
+ receiver?: InputMaybe<Array<TemplateReceiverType>>;
2832
+ };
2833
+ export type QueryCustomerArgs = {
2834
+ id: Scalars["ID"]["input"];
2835
+ };
2836
+ export type QueryCustomersArgs = {
2837
+ after?: InputMaybe<Scalars["String"]["input"]>;
2838
+ before?: InputMaybe<Scalars["String"]["input"]>;
2839
+ customerNumber?: InputMaybe<Array<Scalars["String"]["input"]>>;
2840
+ externalId?: InputMaybe<Array<Scalars["String"]["input"]>>;
2841
+ first?: InputMaybe<Scalars["Int"]["input"]>;
2842
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2843
+ last?: InputMaybe<Scalars["Int"]["input"]>;
2844
+ search?: InputMaybe<Scalars["String"]["input"]>;
2845
+ sort?: InputMaybe<Array<CustomerSort>>;
2846
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
2847
+ };
2848
+ export type QueryDefinedAvailabilityArgs = {
2849
+ employeeIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2850
+ from: Scalars["ISO8601"]["input"];
2851
+ meetingTypes?: InputMaybe<Array<MeetingType>>;
2852
+ officeId: Scalars["ID"]["input"];
2853
+ subjectIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2854
+ to: Scalars["ISO8601"]["input"];
2855
+ };
2856
+ export type QueryDefinedAvailabilityEventsArgs = {
2857
+ employeeIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2858
+ from: Scalars["ISO8601"]["input"];
2859
+ officeId: Scalars["ID"]["input"];
2860
+ to: Scalars["ISO8601"]["input"];
2861
+ };
2862
+ export type QueryEmailTemplateArgs = {
2863
+ id: Scalars["ID"]["input"];
2864
+ };
2865
+ export type QueryEmailTemplatesArgs = {
2866
+ context?: InputMaybe<Array<TemplateContext>>;
2867
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2868
+ receiver?: InputMaybe<Array<TemplateReceiverType>>;
2869
+ };
2870
+ export type QueryEmployeeArgs = {
2871
+ id: Scalars["ID"]["input"];
2872
+ };
2873
+ export type QueryEmployeesArgs = {
2874
+ after?: InputMaybe<Scalars["String"]["input"]>;
2875
+ availableRole?: InputMaybe<Array<EmployeeRole>>;
2876
+ before?: InputMaybe<Scalars["String"]["input"]>;
2877
+ colleaguesOnly?: InputMaybe<Scalars["Boolean"]["input"]>;
2878
+ email?: InputMaybe<Array<Scalars["String"]["input"]>>;
2879
+ externalId?: InputMaybe<Array<Scalars["String"]["input"]>>;
2880
+ first?: InputMaybe<Scalars["Int"]["input"]>;
2881
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2882
+ last?: InputMaybe<Scalars["Int"]["input"]>;
2883
+ officeRelations?: InputMaybe<Array<OfficeRelationFilter>>;
2884
+ search?: InputMaybe<Scalars["String"]["input"]>;
2885
+ sort?: InputMaybe<Array<EmployeeSort>>;
2886
+ status?: InputMaybe<Array<EmployeeStatus>>;
2887
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
2888
+ };
2889
+ export type QueryExecuteFetchFieldArgs = {
2890
+ id: Scalars["ID"]["input"];
2891
+ value?: InputMaybe<Scalars["String"]["input"]>;
2892
+ };
2893
+ export type QueryExternalCalendarArgs = {
2894
+ id: Scalars["ID"]["input"];
2895
+ };
2896
+ export type QueryExternalCalendarAccountArgs = {
2897
+ id: Scalars["ID"]["input"];
2898
+ };
2899
+ export type QueryExternalCalendarAccountsArgs = {
2900
+ after?: InputMaybe<Scalars["String"]["input"]>;
2901
+ before?: InputMaybe<Scalars["String"]["input"]>;
2902
+ employeeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2903
+ first?: InputMaybe<Scalars["Int"]["input"]>;
2904
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2905
+ last?: InputMaybe<Scalars["Int"]["input"]>;
2906
+ provider?: InputMaybe<Array<ExternalCalendarProvider>>;
2907
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
2908
+ };
2909
+ export type QueryExternalCalendarEventArgs = {
2910
+ id: Scalars["String"]["input"];
2911
+ };
2912
+ export type QueryExternalCalendarEventsArgs = {
2913
+ after?: InputMaybe<Scalars["String"]["input"]>;
2914
+ before?: InputMaybe<Scalars["String"]["input"]>;
2915
+ employeeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2916
+ externalCalendarId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2917
+ first?: InputMaybe<Scalars["Int"]["input"]>;
2918
+ from: Scalars["ISO8601"]["input"];
2919
+ id?: InputMaybe<Array<Scalars["String"]["input"]>>;
2920
+ last?: InputMaybe<Scalars["Int"]["input"]>;
2921
+ noInternalEvents?: InputMaybe<Scalars["Boolean"]["input"]>;
2922
+ showAs?: InputMaybe<Array<ShowAs>>;
2923
+ to: Scalars["ISO8601"]["input"];
2924
+ };
2925
+ export type QueryExternalCalendarsArgs = {
2926
+ after?: InputMaybe<Scalars["String"]["input"]>;
2927
+ before?: InputMaybe<Scalars["String"]["input"]>;
2928
+ exportAppointments?: InputMaybe<Scalars["Boolean"]["input"]>;
2929
+ first?: InputMaybe<Scalars["Int"]["input"]>;
2930
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2931
+ importEvents?: InputMaybe<Scalars["Boolean"]["input"]>;
2932
+ last?: InputMaybe<Scalars["Int"]["input"]>;
2933
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
2934
+ };
2935
+ export type QueryFavoriteAgentsArgs = {
2936
+ after?: InputMaybe<Scalars["String"]["input"]>;
2937
+ before?: InputMaybe<Scalars["String"]["input"]>;
2938
+ first?: InputMaybe<Scalars["Int"]["input"]>;
2939
+ last?: InputMaybe<Scalars["Int"]["input"]>;
2940
+ officeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2941
+ owningEmployeeId: Scalars["ID"]["input"];
2942
+ };
2943
+ export type QueryFetchConfigurationArgs = {
2944
+ id: Scalars["ID"]["input"];
2945
+ };
2946
+ export type QueryFetchConfigurationsArgs = {
2947
+ after?: InputMaybe<Scalars["String"]["input"]>;
2948
+ before?: InputMaybe<Scalars["String"]["input"]>;
2949
+ first?: InputMaybe<Scalars["Int"]["input"]>;
2950
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2951
+ last?: InputMaybe<Scalars["Int"]["input"]>;
2952
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
2953
+ };
2954
+ export type QueryFormArgs = {
2955
+ id: Scalars["ID"]["input"];
2956
+ };
2957
+ export type QueryFormsArgs = {
2958
+ after?: InputMaybe<Scalars["String"]["input"]>;
2959
+ before?: InputMaybe<Scalars["String"]["input"]>;
2960
+ first?: InputMaybe<Scalars["Int"]["input"]>;
2961
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2962
+ last?: InputMaybe<Scalars["Int"]["input"]>;
2963
+ search?: InputMaybe<Scalars["String"]["input"]>;
2964
+ sort?: InputMaybe<Array<FormSort>>;
2965
+ type?: InputMaybe<Array<FormType>>;
2966
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
2967
+ };
2968
+ export type QueryGetAuthorizedProfilePictureUrlArgs = {
2969
+ fileInput: FileInput;
2970
+ };
2971
+ export type QueryGetInsightsAccessTokenArgs = {
2972
+ dashboard: InsightsDashboardType;
2973
+ officeId?: InputMaybe<Scalars["ID"]["input"]>;
2974
+ };
2975
+ export type QueryLeadSegmentArgs = {
2976
+ id: Scalars["ID"]["input"];
2977
+ };
2978
+ export type QueryLeadSegmentsArgs = {
2979
+ after?: InputMaybe<Scalars["String"]["input"]>;
2980
+ before?: InputMaybe<Scalars["String"]["input"]>;
2981
+ code?: InputMaybe<Array<Scalars["String"]["input"]>>;
2982
+ first?: InputMaybe<Scalars["Int"]["input"]>;
2983
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
2984
+ last?: InputMaybe<Scalars["Int"]["input"]>;
2985
+ search?: InputMaybe<Scalars["String"]["input"]>;
2986
+ sort?: InputMaybe<Array<LeadSegmentSort>>;
2987
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
2988
+ };
2989
+ export type QueryListingArgs = {
2990
+ id: Scalars["ID"]["input"];
2991
+ };
2992
+ export type QueryListingTimeSlotArgs = {
2993
+ id: Scalars["ID"]["input"];
2994
+ };
2995
+ export type QueryListingTimeSlotsArgs = {
2996
+ after?: InputMaybe<Scalars["String"]["input"]>;
2997
+ before?: InputMaybe<Scalars["String"]["input"]>;
2998
+ bookable?: InputMaybe<Scalars["Boolean"]["input"]>;
2999
+ employeeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3000
+ endDate?: InputMaybe<Scalars["CalendarDate"]["input"]>;
3001
+ first?: InputMaybe<Scalars["Int"]["input"]>;
3002
+ from?: InputMaybe<Scalars["ISO8601"]["input"]>;
3003
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3004
+ last?: InputMaybe<Scalars["Int"]["input"]>;
3005
+ listingId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3006
+ startDate?: InputMaybe<Scalars["CalendarDate"]["input"]>;
3007
+ to?: InputMaybe<Scalars["ISO8601"]["input"]>;
3008
+ };
3009
+ export type QueryListingsArgs = {
3010
+ active?: InputMaybe<Scalars["Boolean"]["input"]>;
3011
+ after?: InputMaybe<Scalars["String"]["input"]>;
3012
+ before?: InputMaybe<Scalars["String"]["input"]>;
3013
+ externalId?: InputMaybe<Array<Scalars["String"]["input"]>>;
3014
+ first?: InputMaybe<Scalars["Int"]["input"]>;
3015
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3016
+ last?: InputMaybe<Scalars["Int"]["input"]>;
3017
+ search?: InputMaybe<Scalars["String"]["input"]>;
3018
+ sort?: InputMaybe<Array<ListingSort>>;
3019
+ tag?: InputMaybe<Array<Scalars["String"]["input"]>>;
3020
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
3021
+ };
3022
+ export type QueryManagedExternalCalendarEventArgs = {
3023
+ id: Scalars["String"]["input"];
3024
+ };
3025
+ export type QueryManagedExternalCalendarEventsArgs = {
3026
+ after?: InputMaybe<Scalars["String"]["input"]>;
3027
+ before?: InputMaybe<Scalars["String"]["input"]>;
3028
+ externalCalendarId?: InputMaybe<Scalars["ID"]["input"]>;
3029
+ first?: InputMaybe<Scalars["Int"]["input"]>;
3030
+ id?: InputMaybe<Array<Scalars["String"]["input"]>>;
3031
+ last?: InputMaybe<Scalars["Int"]["input"]>;
3032
+ resourceId?: InputMaybe<Scalars["String"]["input"]>;
3033
+ resourceType?: InputMaybe<ExternalCalendarEventResourceType>;
3034
+ sort?: InputMaybe<Array<ManagedExternalCalenderEventSort>>;
3035
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
3036
+ };
3037
+ export type QueryManagedExternalOnlineMeetingArgs = {
3038
+ id: Scalars["String"]["input"];
3039
+ };
3040
+ export type QueryManagedExternalOnlineMeetingsArgs = {
3041
+ after?: InputMaybe<Scalars["String"]["input"]>;
3042
+ before?: InputMaybe<Scalars["String"]["input"]>;
3043
+ externalCalendarAccountId?: InputMaybe<Scalars["ID"]["input"]>;
3044
+ first?: InputMaybe<Scalars["Int"]["input"]>;
3045
+ id?: InputMaybe<Array<Scalars["String"]["input"]>>;
3046
+ last?: InputMaybe<Scalars["Int"]["input"]>;
3047
+ resourceId?: InputMaybe<Scalars["String"]["input"]>;
3048
+ resourceType?: InputMaybe<ExternalCalendarEventResourceType>;
3049
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
3050
+ };
3051
+ export type QueryOfficeArgs = {
3052
+ id: Scalars["ID"]["input"];
3053
+ };
3054
+ export type QueryOfficeEmployeeCoverageRegionSchedulingSettingsArgs = {
3055
+ employeeId: Scalars["ID"]["input"];
3056
+ meetingType?: InputMaybe<Array<MeetingType>>;
3057
+ officeId: Scalars["ID"]["input"];
3058
+ regionId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3059
+ };
3060
+ export type QueryOfficeEmployeeSubjectCoverageRegionSchedulingSettingsArgs = {
3061
+ employeeId: Scalars["ID"]["input"];
3062
+ meetingType?: InputMaybe<Array<MeetingType>>;
3063
+ officeId: Scalars["ID"]["input"];
3064
+ regionId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3065
+ subjectId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3066
+ };
3067
+ export type QueryOfficesArgs = {
3068
+ active?: InputMaybe<Scalars["Boolean"]["input"]>;
3069
+ after?: InputMaybe<Scalars["String"]["input"]>;
3070
+ before?: InputMaybe<Scalars["String"]["input"]>;
3071
+ employeeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3072
+ employeeRelationRole?: InputMaybe<Array<OfficeRelationRole>>;
3073
+ externalId?: InputMaybe<Array<Scalars["String"]["input"]>>;
3074
+ first?: InputMaybe<Scalars["Int"]["input"]>;
3075
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3076
+ last?: InputMaybe<Scalars["Int"]["input"]>;
3077
+ search?: InputMaybe<Scalars["String"]["input"]>;
3078
+ sort?: InputMaybe<Array<OfficeSort>>;
3079
+ virtual?: InputMaybe<Scalars["Boolean"]["input"]>;
3080
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
3081
+ };
3082
+ export type QueryQuestionArgs = {
3083
+ id: Scalars["ID"]["input"];
3084
+ };
3085
+ export type QueryQuestionsArgs = {
3086
+ externalId?: InputMaybe<Array<Scalars["String"]["input"]>>;
3087
+ formId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3088
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3089
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
3090
+ };
3091
+ export type QueryRegionsArgs = {
3092
+ after?: InputMaybe<Scalars["String"]["input"]>;
3093
+ before?: InputMaybe<Scalars["String"]["input"]>;
3094
+ countryCode: Scalars["String"]["input"];
3095
+ first?: InputMaybe<Scalars["Int"]["input"]>;
3096
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3097
+ last?: InputMaybe<Scalars["Int"]["input"]>;
3098
+ level?: InputMaybe<Array<Scalars["Int"]["input"]>>;
3099
+ search?: InputMaybe<Scalars["String"]["input"]>;
3100
+ sort?: InputMaybe<Array<RegionSort>>;
3101
+ };
3102
+ export type QuerySchedulableEmployeesArgs = {
3103
+ employeeExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3104
+ employeeIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3105
+ leadSegmentCode?: InputMaybe<Scalars["String"]["input"]>;
3106
+ leadSegmentId?: InputMaybe<Scalars["ID"]["input"]>;
3107
+ listingExternalId?: InputMaybe<Scalars["String"]["input"]>;
3108
+ listingId?: InputMaybe<Scalars["ID"]["input"]>;
3109
+ location?: InputMaybe<GeolocationInput>;
3110
+ meetingTypes?: InputMaybe<Array<MeetingType>>;
3111
+ officeExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3112
+ officeIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3113
+ orderByDistanceTo?: InputMaybe<GeolocationInput>;
3114
+ subjectExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3115
+ subjectGroupExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3116
+ subjectGroupIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3117
+ subjectIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3118
+ };
3119
+ export type QuerySchedulableMeetingTypesArgs = {
3120
+ employeeExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3121
+ employeeIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3122
+ leadSegmentCode?: InputMaybe<Scalars["String"]["input"]>;
3123
+ leadSegmentId?: InputMaybe<Scalars["ID"]["input"]>;
3124
+ listingExternalId?: InputMaybe<Scalars["String"]["input"]>;
3125
+ listingId?: InputMaybe<Scalars["ID"]["input"]>;
3126
+ location?: InputMaybe<GeolocationInput>;
3127
+ meetingTypes?: InputMaybe<Array<MeetingType>>;
3128
+ officeExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3129
+ officeIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3130
+ orderByDistanceTo?: InputMaybe<GeolocationInput>;
3131
+ subjectExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3132
+ subjectGroupExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3133
+ subjectGroupIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3134
+ subjectIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3135
+ };
3136
+ export type QuerySchedulableOfficesArgs = {
3137
+ employeeExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3138
+ employeeIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3139
+ leadSegmentCode?: InputMaybe<Scalars["String"]["input"]>;
3140
+ leadSegmentId?: InputMaybe<Scalars["ID"]["input"]>;
3141
+ listingExternalId?: InputMaybe<Scalars["String"]["input"]>;
3142
+ listingId?: InputMaybe<Scalars["ID"]["input"]>;
3143
+ location?: InputMaybe<GeolocationInput>;
3144
+ meetingTypes?: InputMaybe<Array<MeetingType>>;
3145
+ officeExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3146
+ officeIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3147
+ orderByDistanceTo?: InputMaybe<GeolocationInput>;
3148
+ subjectExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3149
+ subjectGroupExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3150
+ subjectGroupIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3151
+ subjectIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3152
+ };
3153
+ export type QuerySchedulableSubjectsArgs = {
3154
+ employeeExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3155
+ employeeIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3156
+ leadSegmentCode?: InputMaybe<Scalars["String"]["input"]>;
3157
+ leadSegmentId?: InputMaybe<Scalars["ID"]["input"]>;
3158
+ listingExternalId?: InputMaybe<Scalars["String"]["input"]>;
3159
+ listingId?: InputMaybe<Scalars["ID"]["input"]>;
3160
+ location?: InputMaybe<GeolocationInput>;
3161
+ meetingTypes?: InputMaybe<Array<MeetingType>>;
3162
+ officeExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3163
+ officeIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3164
+ orderByDistanceTo?: InputMaybe<GeolocationInput>;
3165
+ subjectExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3166
+ subjectGroupExternalIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
3167
+ subjectGroupIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3168
+ subjectIds?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3169
+ };
3170
+ export type QuerySearchRegionsArgs = {
3171
+ countryCode: Scalars["String"]["input"];
3172
+ query: Scalars["String"]["input"];
3173
+ };
3174
+ export type QueryStaticTranslationOverridesArgs = {
3175
+ key?: InputMaybe<Array<Scalars["String"]["input"]>>;
3176
+ language?: InputMaybe<Array<Language>>;
3177
+ module?: InputMaybe<Array<StaticTranslationModule>>;
3178
+ };
3179
+ export type QueryStaticTranslationsArgs = {
3180
+ language: Language;
3181
+ module: StaticTranslationModule;
3182
+ };
3183
+ export type QuerySubjectArgs = {
3184
+ id: Scalars["ID"]["input"];
3185
+ };
3186
+ export type QuerySubjectGroupArgs = {
3187
+ id: Scalars["ID"]["input"];
3188
+ };
3189
+ export type QuerySubjectGroupsArgs = {
3190
+ after?: InputMaybe<Scalars["String"]["input"]>;
3191
+ before?: InputMaybe<Scalars["String"]["input"]>;
3192
+ externalId?: InputMaybe<Array<Scalars["String"]["input"]>>;
3193
+ first?: InputMaybe<Scalars["Int"]["input"]>;
3194
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3195
+ last?: InputMaybe<Scalars["Int"]["input"]>;
3196
+ search?: InputMaybe<Scalars["String"]["input"]>;
3197
+ sort?: InputMaybe<Array<SubjectGroupSort>>;
3198
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
3199
+ };
3200
+ export type QuerySubjectMeetingTypeAvailabilitySettingsArgs = {
3201
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3202
+ meetingType?: InputMaybe<Array<MeetingType>>;
3203
+ subjectId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3204
+ };
3205
+ export type QuerySubjectOfficeMeetingTypeAvailabilitySettingsArgs = {
3206
+ officeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3207
+ subjectId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3208
+ };
3209
+ export type QuerySubjectsArgs = {
3210
+ after?: InputMaybe<Scalars["String"]["input"]>;
3211
+ before?: InputMaybe<Scalars["String"]["input"]>;
3212
+ enabledForCustomerUse?: InputMaybe<Scalars["Boolean"]["input"]>;
3213
+ enabledForInternalUse?: InputMaybe<Scalars["Boolean"]["input"]>;
3214
+ externalId?: InputMaybe<Array<Scalars["String"]["input"]>>;
3215
+ first?: InputMaybe<Scalars["Int"]["input"]>;
3216
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3217
+ last?: InputMaybe<Scalars["Int"]["input"]>;
3218
+ search?: InputMaybe<Scalars["String"]["input"]>;
3219
+ sort?: InputMaybe<Array<SubjectSort>>;
3220
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
3221
+ };
3222
+ export type QueryTextMessageTemplateArgs = {
3223
+ id: Scalars["ID"]["input"];
3224
+ };
3225
+ export type QueryTextMessageTemplatesArgs = {
3226
+ context?: InputMaybe<Array<TemplateContext>>;
3227
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3228
+ receiver?: InputMaybe<Array<TemplateReceiverType>>;
3229
+ };
3230
+ export type QueryTimetableArgs = {
3231
+ employeeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3232
+ from: Scalars["ISO8601"]["input"];
3233
+ leadSegmentId?: InputMaybe<Scalars["ID"]["input"]>;
3234
+ listingId?: InputMaybe<Scalars["ID"]["input"]>;
3235
+ location?: InputMaybe<GeolocationInput>;
3236
+ meetingType: MeetingType;
3237
+ officeId: Scalars["ID"]["input"];
3238
+ subjectId: Scalars["ID"]["input"];
3239
+ to: Scalars["ISO8601"]["input"];
3240
+ };
3241
+ export type QueryTreeListRegionsArgs = {
3242
+ code?: InputMaybe<Array<Scalars["String"]["input"]>>;
3243
+ countryCode: Scalars["String"]["input"];
3244
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3245
+ level?: InputMaybe<Array<Scalars["Int"]["input"]>>;
3246
+ parentId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3247
+ };
3248
+ export type QueryUnavailabilityArgs = {
3249
+ after?: InputMaybe<Scalars["String"]["input"]>;
3250
+ before?: InputMaybe<Scalars["String"]["input"]>;
3251
+ employeeId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3252
+ end?: InputMaybe<Scalars["ISO8601"]["input"]>;
3253
+ first?: InputMaybe<Scalars["Int"]["input"]>;
3254
+ last?: InputMaybe<Scalars["Int"]["input"]>;
3255
+ start?: InputMaybe<Scalars["ISO8601"]["input"]>;
3256
+ type?: InputMaybe<Array<UnavailabilityType>>;
3257
+ };
3258
+ export type QueryValidatorArgs = {
3259
+ id: Scalars["ID"]["input"];
3260
+ };
3261
+ export type QueryValidatorsArgs = {
3262
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3263
+ questionId: Array<Scalars["ID"]["input"]>;
3264
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
3265
+ };
3266
+ export type QueryVideoUrlTemplateArgs = {
3267
+ id: Scalars["ID"]["input"];
3268
+ };
3269
+ export type QueryVideoUrlTemplatesArgs = {
3270
+ context?: InputMaybe<Array<TemplateContext>>;
3271
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3272
+ receiver?: InputMaybe<Array<TemplateReceiverType>>;
3273
+ };
3274
+ export type QueryWebhookConfigurationArgs = {
3275
+ id: Scalars["ID"]["input"];
3276
+ };
3277
+ export type QueryWebhookConfigurationsArgs = {
3278
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
3279
+ };
3280
+ export type QueryWebhookDeliveriesArgs = {
3281
+ after?: InputMaybe<Scalars["String"]["input"]>;
3282
+ before?: InputMaybe<Scalars["String"]["input"]>;
3283
+ correlationId?: InputMaybe<Array<Scalars["String"]["input"]>>;
3284
+ first?: InputMaybe<Scalars["Int"]["input"]>;
3285
+ last?: InputMaybe<Scalars["Int"]["input"]>;
3286
+ resourceId?: InputMaybe<Array<Scalars["String"]["input"]>>;
3287
+ success?: InputMaybe<Scalars["Boolean"]["input"]>;
3288
+ webhookConfigurationId?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3289
+ webhookId?: InputMaybe<Array<Scalars["String"]["input"]>>;
3290
+ };
3291
+ export type QueryWebhookDeliveryArgs = {
3292
+ webhookId: Scalars["String"]["input"];
3293
+ };
3294
+ export type Question = {
3295
+ answerOptions: Array<AnswerOption>;
3296
+ createdAt: Scalars["ISO8601"]["output"];
3297
+ defaultValue?: Maybe<Scalars["String"]["output"]>;
3298
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
3299
+ externalId?: Maybe<Scalars["String"]["output"]>;
3300
+ fetchConfiguration?: Maybe<FetchConfiguration>;
3301
+ fetchConfigurationId?: Maybe<Scalars["Int"]["output"]>;
3302
+ form: Form;
3303
+ helpText?: Maybe<TranslationObject>;
3304
+ hidden: Scalars["Boolean"]["output"];
3305
+ id: Scalars["ID"]["output"];
3306
+ inputType: InputType;
3307
+ label?: Maybe<TranslationObject>;
3308
+ order: Scalars["Int"]["output"];
3309
+ placeholder?: Maybe<TranslationObject>;
3310
+ required: Scalars["Boolean"]["output"];
3311
+ targetProperty?: Maybe<Scalars["String"]["output"]>;
3312
+ translations: QuestionTranslations;
3313
+ updatedAt: Scalars["ISO8601"]["output"];
3314
+ validator?: Maybe<Validator>;
3315
+ };
3316
+ export type QuestionAnswerOptionsArgs = {
3317
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
3318
+ };
3319
+ export type QuestionDataSelectedSessionEventPayload = {
3320
+ formId: Scalars["ID"]["input"];
3321
+ };
3322
+ export type QuestionDataShownSessionEventPayload = {
3323
+ ids: Array<Scalars["ID"]["input"]>;
3324
+ };
3325
+ export type QuestionPatchInput = {
3326
+ answerOptions?: InputMaybe<Array<AnswerOptionCreateInput>>;
3327
+ defaultValue?: InputMaybe<Scalars["String"]["input"]>;
3328
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
3329
+ fetchConfigurationId?: InputMaybe<Scalars["ID"]["input"]>;
3330
+ hidden?: InputMaybe<Scalars["Boolean"]["input"]>;
3331
+ inputType?: InputMaybe<InputType>;
3332
+ order?: InputMaybe<Scalars["Int"]["input"]>;
3333
+ required?: InputMaybe<Scalars["Boolean"]["input"]>;
3334
+ targetProperty?: InputMaybe<Scalars["String"]["input"]>;
3335
+ translations?: InputMaybe<QuestionTranslationsPatchInput>;
3336
+ validator?: InputMaybe<ValidatorPatchInput>;
3337
+ };
3338
+ export type QuestionPutInput = {
3339
+ answerOptions?: InputMaybe<Array<AnswerOptionCreateInput>>;
3340
+ defaultValue?: InputMaybe<Scalars["String"]["input"]>;
3341
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
3342
+ fetchConfigurationId?: InputMaybe<Scalars["ID"]["input"]>;
3343
+ hidden?: InputMaybe<Scalars["Boolean"]["input"]>;
3344
+ id?: InputMaybe<Scalars["ID"]["input"]>;
3345
+ inputType: InputType;
3346
+ order?: InputMaybe<Scalars["Int"]["input"]>;
3347
+ required?: InputMaybe<Scalars["Boolean"]["input"]>;
3348
+ targetProperty?: InputMaybe<Scalars["String"]["input"]>;
3349
+ translations: QuestionTranslationsCreateInput;
3350
+ validator?: InputMaybe<ValidatorCreateInput>;
3351
+ };
3352
+ export type QuestionTranslations = {
3353
+ helpText: Array<TranslationObject>;
3354
+ label: Array<TranslationObject>;
3355
+ placeholder: Array<TranslationObject>;
3356
+ };
3357
+ export type QuestionTranslationsCreateInput = {
3358
+ helpText?: InputMaybe<Array<TranslationObjectInput>>;
3359
+ label: Array<TranslationObjectInput>;
3360
+ placeholder?: InputMaybe<Array<TranslationObjectInput>>;
3361
+ };
3362
+ export type QuestionTranslationsPatchInput = {
3363
+ helpText?: InputMaybe<Array<TranslationObjectInput>>;
3364
+ label?: InputMaybe<Array<TranslationObjectInput>>;
3365
+ placeholder?: InputMaybe<Array<TranslationObjectInput>>;
3366
+ };
3367
+ export type Receiver = {
3368
+ email?: Maybe<Scalars["String"]["output"]>;
3369
+ fullName?: Maybe<Scalars["String"]["output"]>;
3370
+ language: Language;
3371
+ phoneNumber?: Maybe<Scalars["String"]["output"]>;
3372
+ timeZone: Scalars["String"]["output"];
3373
+ };
3374
+ export type Region = {
3375
+ code?: Maybe<Scalars["String"]["output"]>;
3376
+ countryCode: Scalars["String"]["output"];
3377
+ id: Scalars["ID"]["output"];
3378
+ level: Scalars["Int"]["output"];
3379
+ name: Scalars["String"]["output"];
3380
+ parentId?: Maybe<Scalars["ID"]["output"]>;
3381
+ };
3382
+ export type RegionConnection = {
3383
+ edges: Array<RegionEdge>;
3384
+ pageInfo: PageInfo;
3385
+ totalCount: Scalars["Int"]["output"];
3386
+ };
3387
+ export type RegionEdge = {
3388
+ cursor: Scalars["String"]["output"];
3389
+ node: Region;
3390
+ };
3391
+ export type RegionSort = {
3392
+ direction: SortDirection;
3393
+ field: SortableRegionFields;
3394
+ };
3395
+ export type RenderedTemplateMeta = {
3396
+ language: Language;
3397
+ receiver: Receiver;
3398
+ timeZone: Scalars["String"]["output"];
3399
+ };
3400
+ export type SecondaryParticipantInput = {
3401
+ participantId: Scalars["ID"]["input"];
3402
+ type: ParticipantType;
3403
+ };
3404
+ export type SeedInput = {
3405
+ /** Only the enterprises in this list will be seeded. */
3406
+ enterpriseFilter?: Array<Scalars["String"]["input"]>;
3407
+ /** Run all enterprises in parallel? */
3408
+ parallel?: Scalars["Boolean"]["input"];
3409
+ };
3410
+ export type SendAppointmentEmailNotificationsEnterpriseSetting = {
3411
+ createdAt: Scalars["ISO8601"]["output"];
3412
+ manageable: Scalars["Boolean"]["output"];
3413
+ updatedAt: Scalars["ISO8601"]["output"];
3414
+ /** Indicates whether email notifications should be sent for appointments. */
3415
+ value: Scalars["Boolean"]["output"];
3416
+ };
3417
+ export type SendAppointmentTextMessageNotificationsEnterpriseSetting = {
3418
+ createdAt: Scalars["ISO8601"]["output"];
3419
+ manageable: Scalars["Boolean"]["output"];
3420
+ updatedAt: Scalars["ISO8601"]["output"];
3421
+ /** Indicates whether text message notifications should be sent for appointments. */
3422
+ value: Scalars["Boolean"]["output"];
3423
+ };
3424
+ export type SendEmployeeCreatedNotificationsEnterpriseSetting = {
3425
+ createdAt: Scalars["ISO8601"]["output"];
3426
+ manageable: Scalars["Boolean"]["output"];
3427
+ updatedAt: Scalars["ISO8601"]["output"];
3428
+ /** Indicates whether an email should be sent to the new employee when it is created. */
3429
+ value: Scalars["Boolean"]["output"];
3430
+ };
3431
+ export type SendExternalCalendarAccountBrokenNotificationsEnterpriseSetting = {
3432
+ createdAt: Scalars["ISO8601"]["output"];
3433
+ manageable: Scalars["Boolean"]["output"];
3434
+ updatedAt: Scalars["ISO8601"]["output"];
3435
+ /** Indicates whether an email should be sent to the employee when the connection with the external calendar account is broken. */
3436
+ value: Scalars["Boolean"]["output"];
3437
+ };
3438
+ export type SessionConfigId = {
3439
+ id: Scalars["String"]["input"];
3440
+ type: SessionEventIdType;
3441
+ };
3442
+ export type SessionConfigIds = {
3443
+ ids: Array<Scalars["String"]["input"]>;
3444
+ type: SessionEventIdType;
3445
+ };
3446
+ export type SessionConfigLeadSegmentId = {
3447
+ id: Scalars["String"]["input"];
3448
+ type: SessionEventLeadSegmentIdType;
3449
+ };
3450
+ export type SessionConfigSessionEvent = {
3451
+ application: SessionEventApplication;
3452
+ payload: SessionConfigSessionEventPayload;
3453
+ sessionId: Scalars["String"]["input"];
3454
+ };
3455
+ export type SessionConfigSessionEventPayload = {
3456
+ browserHref: Scalars["String"]["input"];
3457
+ employees: SessionConfigIds;
3458
+ flow: Scalars["String"]["input"];
3459
+ intent: SessionIntent;
3460
+ language: Language;
3461
+ leadSegment?: InputMaybe<SessionConfigLeadSegmentId>;
3462
+ listing?: InputMaybe<SessionConfigId>;
3463
+ meetingTypes: Array<MeetingType>;
3464
+ offices: SessionConfigIds;
3465
+ sourceTags: Array<Scalars["String"]["input"]>;
3466
+ subjectGroups: SessionConfigIds;
3467
+ subjects: SessionConfigIds;
3468
+ timeZone: Scalars["String"]["input"];
3469
+ timetableView: TimetableView;
3470
+ userAgent: Scalars["String"]["input"];
3471
+ };
3472
+ export type SessionDataSessionEvent = {
3473
+ application: SessionEventApplication;
3474
+ payload: SessionDataSessionEventPayload;
3475
+ sessionId: Scalars["String"]["input"];
3476
+ };
3477
+ export type SessionDataSessionEventPayload = {
3478
+ appointmentId: Scalars["ID"]["input"];
3479
+ };
3480
+ export type SessionEventApplication = {
3481
+ name: Scalars["String"]["input"];
3482
+ version: Scalars["String"]["input"];
3483
+ };
3484
+ export type SessionEventIdType = "externalId" | "id";
3485
+ export type SessionEventLeadSegmentIdType = "code" | "id";
3486
+ export type SessionIntent = "CANCEL" | "COMPLETE" | "EDIT" | "INVITE" | "RESCHEDULE" | "SCHEDULE";
3487
+ export type ShowAs = "BUSY" | "FREE" | "TENTATIVE";
3488
+ export type SortDirection = "ASC" | "DESC";
3489
+ export type SortableAppointmentFields = "createdAt" | "externalId" | "id" | "start" | "updatedAt";
3490
+ export type SortableAvailabilityTemplateFields = "id" | "name" | "order" | "type";
3491
+ export type SortableCustomerFields = "createdAt" | "email" | "firstName" | "id" | "lastName" | "updatedAt";
3492
+ export type SortableEmployeeFields = "createdAt" | "email" | "externalId" | "firstName" | "id" | "lastName" | "status" | "updatedAt";
3493
+ export type SortableFormFields = "createdAt" | "id" | "name" | "updatedAt";
3494
+ export type SortableLeadSegmentFields = "callbacksAllowed" | "code" | "createdAt" | "description" | "id" | "updatedAt";
3495
+ export type SortableListingFields = "active" | "createdAt" | "externalId" | "id" | "name" | "updatedAt";
3496
+ export type SortableManagedExternalCalendarEventFields = "createdAt" | "updatedAt";
3497
+ export type SortableOfficeFields = "active" | "createdAt" | "externalId" | "id" | "name" | "updatedAt";
3498
+ export type SortableRegionFields = "code" | "countryCode" | "id" | "level" | "name" | "parentId";
3499
+ export type SortableSubjectFields = "createdAt" | "externalId" | "id" | "name" | "order" | "subjectGroupId" | "subjectGroupName" | "updatedAt";
3500
+ export type SortableSubjectGroupFields = "createdAt" | "externalId" | "id" | "name" | "order" | "updatedAt";
3501
+ export type StaticTranslationModule = "BACKOFFICE_APP" | "CALENDAR_EVENT_TEMPLATE" | "EMAIL_TEMPLATE" | "INSIGHTS" | "PLUGIN" | "TEXT_MESSAGE_TEMPLATE" | "VIDEO";
3502
+ export type StaticTranslationOverride = {
3503
+ createdAt: Scalars["ISO8601"]["output"];
3504
+ key: Scalars["String"]["output"];
3505
+ language: Language;
3506
+ module: StaticTranslationModule;
3507
+ updatedAt: Scalars["ISO8601"]["output"];
3508
+ value: Scalars["String"]["output"];
3509
+ };
3510
+ export type StaticTranslationOverridePatchInput = {
3511
+ key: Scalars["String"]["input"];
3512
+ language: Language;
3513
+ module: StaticTranslationModule;
3514
+ value?: InputMaybe<Scalars["String"]["input"]>;
3515
+ };
3516
+ export type StepShownSessionEvent = {
3517
+ application: SessionEventApplication;
3518
+ payload: StepShownSessionEventPayload;
3519
+ sessionId: Scalars["String"]["input"];
3520
+ };
3521
+ export type StepShownSessionEventPayload = {
3522
+ view: StepShownView;
3523
+ };
3524
+ export type StepShownView = "CUSTOMER" | "EMPLOYEE" | "MEETING_TYPE" | "OFFICE" | "QUESTION" | "SUBJECT" | "TIMETABLE";
3525
+ export type Subject = {
3526
+ cancellationByAgentForm?: Maybe<Form>;
3527
+ cancellationByCustomerForm?: Maybe<Form>;
3528
+ completionByAgentForm?: Maybe<Form>;
3529
+ createdAt: Scalars["ISO8601"]["output"];
3530
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
3531
+ description?: Maybe<TranslationObject>;
3532
+ enabledForCustomerUse: Scalars["Boolean"]["output"];
3533
+ enabledForInternalUse: Scalars["Boolean"]["output"];
3534
+ externalId?: Maybe<Scalars["String"]["output"]>;
3535
+ id: Scalars["ID"]["output"];
3536
+ instructions?: Maybe<TranslationObject>;
3537
+ name?: Maybe<TranslationObject>;
3538
+ order: Scalars["Int"]["output"];
3539
+ questionnaireForm?: Maybe<Form>;
3540
+ schedulingSettings: Array<SubjectSchedulingSetting>;
3541
+ subjectGroup: SubjectGroup;
3542
+ translations: SubjectTranslations;
3543
+ updatedAt: Scalars["ISO8601"]["output"];
3544
+ };
3545
+ export type SubjectConnection = {
3546
+ edges: Array<SubjectEdge>;
3547
+ pageInfo: PageInfo;
3548
+ totalCount: Scalars["Int"]["output"];
3549
+ };
3550
+ export type SubjectCreateInput = {
3551
+ cancellationByAgentFormId?: InputMaybe<Scalars["ID"]["input"]>;
3552
+ cancellationByCustomerFormId?: InputMaybe<Scalars["ID"]["input"]>;
3553
+ completionByAgentFormId?: InputMaybe<Scalars["ID"]["input"]>;
3554
+ enabledForCustomerUse?: InputMaybe<Scalars["Boolean"]["input"]>;
3555
+ enabledForInternalUse?: InputMaybe<Scalars["Boolean"]["input"]>;
3556
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
3557
+ order?: InputMaybe<Scalars["Int"]["input"]>;
3558
+ questionnaireFormId?: InputMaybe<Scalars["ID"]["input"]>;
3559
+ subjectGroupId: Scalars["ID"]["input"];
3560
+ translations: SubjectTranslationsCreateInput;
3561
+ };
3562
+ export type SubjectDataShownSessionEventPayload = {
3563
+ ids: Array<Scalars["ID"]["input"]>;
3564
+ };
3565
+ export type SubjectEdge = {
3566
+ cursor: Scalars["String"]["output"];
3567
+ node: Subject;
3568
+ };
3569
+ export type SubjectGroup = {
3570
+ color: Scalars["String"]["output"];
3571
+ createdAt: Scalars["ISO8601"]["output"];
3572
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
3573
+ externalId?: Maybe<Scalars["String"]["output"]>;
3574
+ id: Scalars["ID"]["output"];
3575
+ image?: Maybe<Scalars["String"]["output"]>;
3576
+ name?: Maybe<TranslationObject>;
3577
+ order: Scalars["Int"]["output"];
3578
+ subjects: SubjectConnection;
3579
+ translations: SubjectGroupTranslations;
3580
+ updatedAt: Scalars["ISO8601"]["output"];
3581
+ };
3582
+ export type SubjectGroupSubjectsArgs = {
3583
+ after?: InputMaybe<Scalars["String"]["input"]>;
3584
+ before?: InputMaybe<Scalars["String"]["input"]>;
3585
+ enabledForCustomerUse?: InputMaybe<Scalars["Boolean"]["input"]>;
3586
+ enabledForInternalUse?: InputMaybe<Scalars["Boolean"]["input"]>;
3587
+ externalId?: InputMaybe<Array<Scalars["String"]["input"]>>;
3588
+ first?: InputMaybe<Scalars["Int"]["input"]>;
3589
+ id?: InputMaybe<Array<Scalars["ID"]["input"]>>;
3590
+ last?: InputMaybe<Scalars["Int"]["input"]>;
3591
+ search?: InputMaybe<Scalars["String"]["input"]>;
3592
+ sort?: InputMaybe<Array<SubjectSort>>;
3593
+ withDeleted?: InputMaybe<Scalars["Boolean"]["input"]>;
3594
+ };
3595
+ export type SubjectGroupConnection = {
3596
+ edges: Array<SubjectGroupEdge>;
3597
+ pageInfo: PageInfo;
3598
+ totalCount: Scalars["Int"]["output"];
3599
+ };
3600
+ export type SubjectGroupCreateInput = {
3601
+ color?: InputMaybe<Scalars["String"]["input"]>;
3602
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
3603
+ image?: InputMaybe<Scalars["String"]["input"]>;
3604
+ order?: InputMaybe<Scalars["Int"]["input"]>;
3605
+ translations: SubjectGroupTranslationsCreateInput;
3606
+ };
3607
+ export type SubjectGroupDataShownSessionEventPayload = {
3608
+ ids: Array<Scalars["ID"]["input"]>;
3609
+ };
3610
+ export type SubjectGroupEdge = {
3611
+ cursor: Scalars["String"]["output"];
3612
+ node: SubjectGroup;
3613
+ };
3614
+ export type SubjectGroupPatchInput = {
3615
+ color?: InputMaybe<Scalars["String"]["input"]>;
3616
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
3617
+ image?: InputMaybe<Scalars["String"]["input"]>;
3618
+ order?: InputMaybe<Scalars["Int"]["input"]>;
3619
+ translations?: InputMaybe<SubjectGroupTranslationsPatchInput>;
3620
+ };
3621
+ export type SubjectGroupSort = {
3622
+ direction: SortDirection;
3623
+ field: SortableSubjectGroupFields;
3624
+ };
3625
+ export type SubjectGroupTranslations = {
3626
+ name: Array<TranslationObject>;
3627
+ };
3628
+ export type SubjectGroupTranslationsCreateInput = {
3629
+ name: Array<TranslationObjectInput>;
3630
+ };
3631
+ export type SubjectGroupTranslationsPatchInput = {
3632
+ name?: InputMaybe<Array<TranslationObjectInput>>;
3633
+ };
3634
+ export type SubjectMeetingTypeAvailabilitySetting = {
3635
+ autoAccept: Scalars["Boolean"]["output"];
3636
+ createdAt: Scalars["ISO8601"]["output"];
3637
+ estimatedDuration: Scalars["Int"]["output"];
3638
+ maxConcurrentAppointments: Scalars["Int"]["output"];
3639
+ meetingType: MeetingType;
3640
+ subject: Subject;
3641
+ timeSlotEarliestPossible: Scalars["Int"]["output"];
3642
+ timeSlotGranularity: Scalars["Int"]["output"];
3643
+ timeSlotLatestPossible: Scalars["Int"]["output"];
3644
+ trailingBufferTime: Scalars["Int"]["output"];
3645
+ updatedAt: Scalars["ISO8601"]["output"];
3646
+ };
3647
+ export type SubjectMeetingTypeAvailabilitySettingPutInput = {
3648
+ autoAccept: Scalars["Boolean"]["input"];
3649
+ /** Expressed in minutes. Valid values are between 1-IntMax. */
3650
+ estimatedDuration: Scalars["Int"]["input"];
3651
+ /** Valid values are 1-IntMax. */
3652
+ maxConcurrentAppointments: Scalars["Int"]["input"];
3653
+ meetingType: MeetingType;
3654
+ subjectId: Scalars["ID"]["input"];
3655
+ /** Expressed in minutes. Valid values are 0-806400 (560 days in minutes). */
3656
+ timeSlotEarliestPossible: Scalars["Int"]["input"];
3657
+ /** Expressed in minutes. Valid values are between 1-IntMax. */
3658
+ timeSlotGranularity: Scalars["Int"]["input"];
3659
+ /** Expressed in minutes. Valid values are 0-806400 (560 days in minutes). */
3660
+ timeSlotLatestPossible: Scalars["Int"]["input"];
3661
+ /** Expressed in minutes. Valid values are between 0-IntMax. */
3662
+ trailingBufferTime: Scalars["Int"]["input"];
3663
+ };
3664
+ export type SubjectOfficeEmployeeSchedulingSetting = {
3665
+ employee: Employee;
3666
+ meetingTypes: Array<MeetingType>;
3667
+ office: Office;
3668
+ rank: Scalars["Int"]["output"];
3669
+ subject: Subject;
3670
+ };
3671
+ export type SubjectOfficeEmployeeSchedulingSettingInputForOffice = {
3672
+ employeeId: Scalars["ID"]["input"];
3673
+ rank?: InputMaybe<Scalars["Int"]["input"]>;
3674
+ subjectId: Scalars["ID"]["input"];
3675
+ };
3676
+ export type SubjectOfficeEmployeeSchedulingSettingInputForOfficeAndEmployee = {
3677
+ /** Value between 1 and 3 with 1 being the highest rank and 3 the lowest. */
3678
+ rank?: InputMaybe<Scalars["Int"]["input"]>;
3679
+ subjectId: Scalars["ID"]["input"];
3680
+ };
3681
+ export type SubjectOfficeMeetingTypeAvailabilitySetting = {
3682
+ autoAccept?: Maybe<Scalars["Boolean"]["output"]>;
3683
+ createdAt: Scalars["ISO8601"]["output"];
3684
+ estimatedDuration?: Maybe<Scalars["Int"]["output"]>;
3685
+ maxConcurrentAppointments?: Maybe<Scalars["Int"]["output"]>;
3686
+ meetingType: MeetingType;
3687
+ office: Office;
3688
+ subject: Subject;
3689
+ timeSlotEarliestPossible?: Maybe<Scalars["Int"]["output"]>;
3690
+ timeSlotGranularity?: Maybe<Scalars["Int"]["output"]>;
3691
+ timeSlotLatestPossible?: Maybe<Scalars["Int"]["output"]>;
3692
+ trailingBufferTime?: Maybe<Scalars["Int"]["output"]>;
3693
+ updatedAt: Scalars["ISO8601"]["output"];
3694
+ };
3695
+ export type SubjectOfficeMeetingTypeAvailabilitySettingPutInput = {
3696
+ autoAccept?: InputMaybe<Scalars["Boolean"]["input"]>;
3697
+ /** Expressed in minutes. Valid values are 1-IntMax. */
3698
+ estimatedDuration?: InputMaybe<Scalars["Int"]["input"]>;
3699
+ /** Valid values are 1-IntMax. */
3700
+ maxConcurrentAppointments?: InputMaybe<Scalars["Int"]["input"]>;
3701
+ meetingType: MeetingType;
3702
+ officeId: Scalars["ID"]["input"];
3703
+ subjectId: Scalars["ID"]["input"];
3704
+ /** Expressed in minutes. Valid values are 0-806400 (560 days in minutes). */
3705
+ timeSlotEarliestPossible?: InputMaybe<Scalars["Int"]["input"]>;
3706
+ /** Expressed in minutes. Valid values are 1-IntMax. */
3707
+ timeSlotGranularity?: InputMaybe<Scalars["Int"]["input"]>;
3708
+ /** Expressed in minutes. Valid values are 0-806400 (560 days in minutes). */
3709
+ timeSlotLatestPossible?: InputMaybe<Scalars["Int"]["input"]>;
3710
+ /** Expressed in minutes. Valid values are 0-IntMax. */
3711
+ trailingBufferTime?: InputMaybe<Scalars["Int"]["input"]>;
3712
+ };
3713
+ export type SubjectOfficeSchedulingSetting = {
3714
+ meetingType: MeetingType;
3715
+ office: Office;
3716
+ subject: Subject;
3717
+ };
3718
+ export type SubjectOfficeSchedulingSettingInput = {
3719
+ meetingType: MeetingType;
3720
+ subjectId: Scalars["ID"]["input"];
3721
+ };
3722
+ export type SubjectPatchInput = {
3723
+ cancellationByAgentFormId?: InputMaybe<Scalars["ID"]["input"]>;
3724
+ cancellationByCustomerFormId?: InputMaybe<Scalars["ID"]["input"]>;
3725
+ completionByAgentFormId?: InputMaybe<Scalars["ID"]["input"]>;
3726
+ enabledForCustomerUse?: InputMaybe<Scalars["Boolean"]["input"]>;
3727
+ enabledForInternalUse?: InputMaybe<Scalars["Boolean"]["input"]>;
3728
+ externalId?: InputMaybe<Scalars["String"]["input"]>;
3729
+ order?: InputMaybe<Scalars["Int"]["input"]>;
3730
+ questionnaireFormId?: InputMaybe<Scalars["ID"]["input"]>;
3731
+ subjectGroupId?: InputMaybe<Scalars["ID"]["input"]>;
3732
+ translations?: InputMaybe<SubjectTranslationsPatchInput>;
3733
+ };
3734
+ export type SubjectSchedulingSetting = {
3735
+ meetingType: MeetingType;
3736
+ subject: Subject;
3737
+ };
3738
+ export type SubjectSchedulingSettingInput = {
3739
+ meetingType: MeetingType;
3740
+ };
3741
+ export type SubjectSort = {
3742
+ direction: SortDirection;
3743
+ field: SortableSubjectFields;
3744
+ };
3745
+ export type SubjectTranslations = {
3746
+ description: Array<TranslationObject>;
3747
+ instructions: Array<TranslationObject>;
3748
+ name: Array<TranslationObject>;
3749
+ };
3750
+ export type SubjectTranslationsCreateInput = {
3751
+ description?: InputMaybe<Array<TranslationObjectInput>>;
3752
+ instructions?: InputMaybe<Array<TranslationObjectInput>>;
3753
+ name: Array<TranslationObjectInput>;
3754
+ };
3755
+ export type SubjectTranslationsPatchInput = {
3756
+ description?: InputMaybe<Array<TranslationObjectInput>>;
3757
+ instructions?: InputMaybe<Array<TranslationObjectInput>>;
3758
+ name?: InputMaybe<Array<TranslationObjectInput>>;
3759
+ };
3760
+ export type TemplateContext = "APPOINTMENT" | "AVAILABILITY" | "EMPLOYEE" | "EXTERNAL_CALENDAR_ACCOUNT" | "LISTING";
3761
+ export type TemplateReceiverType = "CUSTOMER" | "EMPLOYEE";
3762
+ export type TextMessageProvider = "DEFAULT" | "PRETEND" | "SPRYNG" | "TWILIO";
3763
+ export type TextMessageProviderEnterpriseSetting = {
3764
+ createdAt: Scalars["ISO8601"]["output"];
3765
+ manageable: Scalars["Boolean"]["output"];
3766
+ updatedAt: Scalars["ISO8601"]["output"];
3767
+ /** The text message provider used to send text messages. */
3768
+ value: TextMessageProvider;
3769
+ };
3770
+ export type TextMessageTemplate = {
3771
+ contentOverride?: Maybe<Scalars["String"]["output"]>;
3772
+ context: TemplateContext;
3773
+ createdAt: Scalars["ISO8601"]["output"];
3774
+ defaultContent: Scalars["String"]["output"];
3775
+ defaultVariables?: Maybe<Scalars["JSONObject"]["output"]>;
3776
+ id: Scalars["ID"]["output"];
3777
+ overrideActive: Scalars["Boolean"]["output"];
3778
+ receiver: TemplateReceiverType;
3779
+ updatedAt: Scalars["ISO8601"]["output"];
3780
+ variablesOverride?: Maybe<Scalars["JSONObject"]["output"]>;
3781
+ };
3782
+ export type TextMessageTemplatePatchInput = {
3783
+ contentOverride?: InputMaybe<Scalars["String"]["input"]>;
3784
+ overrideActive?: InputMaybe<Scalars["Boolean"]["input"]>;
3785
+ variablesOverride?: InputMaybe<Scalars["JSONObject"]["input"]>;
3786
+ };
3787
+ export type TextMessageTemplateRender = {
3788
+ content: Scalars["String"]["output"];
3789
+ meta: RenderedTemplateMeta;
3790
+ };
3791
+ export type TimeRangeAvailabilitySetting = {
3792
+ availabilityTimeRangeOffice: AvailabilityTimeRangeOffice;
3793
+ createdAt: Scalars["ISO8601"]["output"];
3794
+ maxConcurrentAppointments: Scalars["Int"]["output"];
3795
+ meetingType: MeetingType;
3796
+ office: Office;
3797
+ schedulable: Scalars["Boolean"]["output"];
3798
+ subject: Subject;
3799
+ updatedAt: Scalars["ISO8601"]["output"];
3800
+ };
3801
+ export type TimeRangeOfficeSubjectAvailabilitySetting = {
3802
+ active: Scalars["Boolean"]["output"];
3803
+ maxConcurrentAppointments: Scalars["Int"]["output"];
3804
+ meetingType: MeetingType;
3805
+ };
3806
+ export type TimeRangeOfficeSubjectAvailabilitySettingInput = {
3807
+ /** Valid values are 1-IntMax. */
3808
+ maxConcurrentAppointments: Scalars["Int"]["input"];
3809
+ meetingType: MeetingType;
3810
+ };
3811
+ export type TimeSlotGranularityEnterpriseSetting = {
3812
+ createdAt: Scalars["ISO8601"]["output"];
3813
+ manageable: Scalars["Boolean"]["output"];
3814
+ updatedAt: Scalars["ISO8601"]["output"];
3815
+ /** The default time slot granularity. */
3816
+ value: Scalars["Int"]["output"];
3817
+ };
3818
+ export type Timetable = {
3819
+ /** Expressed in minutes. */
3820
+ duration: Scalars["Int"]["output"];
3821
+ /** Earliest possible date a timeslot can be offered. */
3822
+ earliestPossible: Scalars["ISO8601"]["output"];
3823
+ /** Latest possible date a timeslot can be offered. */
3824
+ latestPossible: Scalars["ISO8601"]["output"];
3825
+ listing?: Maybe<Listing>;
3826
+ meetingType: MeetingType;
3827
+ office: Office;
3828
+ slots: Array<TimetableSlot>;
3829
+ subject: Subject;
3830
+ /** Expressed in minutes. */
3831
+ trailingBufferTime: Scalars["Int"]["output"];
3832
+ };
3833
+ export type TimetableDataSelectedSessionEventPayload = {
3834
+ employeeIds: Array<Scalars["ID"]["input"]>;
3835
+ end: Scalars["ISO8601"]["input"];
3836
+ start: Scalars["ISO8601"]["input"];
3837
+ timeZone: Scalars["String"]["input"];
3838
+ };
3839
+ export type TimetableDataShownSessionEventPayload = {
3840
+ endDate: Scalars["CalendarDate"]["input"];
3841
+ slots: Array<TimetableDataShownSlotSessionEventPayload>;
3842
+ startDate: Scalars["CalendarDate"]["input"];
3843
+ timeZone: Scalars["String"]["input"];
3844
+ };
3845
+ export type TimetableDataShownSlotSessionEventPayload = {
3846
+ end: Scalars["ISO8601"]["input"];
3847
+ start: Scalars["ISO8601"]["input"];
3848
+ };
3849
+ export type TimetableNavigationSessionEvent = {
3850
+ application: SessionEventApplication;
3851
+ payload: TimetableNavigationSessionEventPayload;
3852
+ sessionId: Scalars["String"]["input"];
3853
+ };
3854
+ export type TimetableNavigationSessionEventPayload = {
3855
+ endDate: Scalars["CalendarDate"]["input"];
3856
+ startDate: Scalars["CalendarDate"]["input"];
3857
+ timeZone: Scalars["String"]["input"];
3858
+ type: TimetableNavigationType;
3859
+ };
3860
+ export type TimetableNavigationType = "DATE_SELECTION" | "NEXT" | "PREVIOUS";
3861
+ export type TimetableSlot = {
3862
+ availableEmployees: Array<TimetableSlotAvailableEmployee>;
3863
+ end: Scalars["ISO8601"]["output"];
3864
+ start: Scalars["ISO8601"]["output"];
3865
+ };
3866
+ export type TimetableSlotAvailableEmployee = {
3867
+ autoAccept: Scalars["Boolean"]["output"];
3868
+ employee: Employee;
3869
+ };
3870
+ export type TimetableView = "DAY" | "MONTH" | "WEEK";
3871
+ export type TranslationObject = {
3872
+ language: Language;
3873
+ value: Scalars["String"]["output"];
3874
+ };
3875
+ export type TranslationObjectInput = {
3876
+ language: Language;
3877
+ value: Scalars["String"]["input"];
3878
+ };
3879
+ export type UiFeature = "APPOINTMENT_CREATION" | "APPOINTMENT_CUSTOMER_SELECTION" | "APPOINTMENT_SUBJECT_SELECTION" | "CUSTOMER_CREATION" | "CUSTOMER_DETAILS" | "DEFAULT_AVAILABILITY_SETTINGS_OVERRIDE" | "DEFINED_AVAILABILITY_SYNCHRONIZATION" | "FORMS" | "INDEPENDENT_AGENTS" | "INVITE_CREATION" | "LEAD_SEGMENTS" | "LISTINGS" | "MANUAL_ACCEPT" | "MEETING_LINK_CREATION" | "MY_APPOINTMENTS" | "MY_APPOINTMENT_HOURS" | "MY_AUTHENTICATION" | "MY_PROFILE" | "MY_SYNCHRONIZED_CALENDARS" | "RESCHEDULE_REQUEST" | "TEAM_APPOINTMENTS_OVERVIEW" | "TEAM_APPOINTMENT_INSIGHTS" | "TEAM_COVERAGE_REGIONS_ON_LOCATION" | "TEAM_COVERAGE_REGIONS_PHONE" | "TEAM_COVERAGE_REGIONS_VIDEO" | "TEAM_MEMBERS_OVERVIEW" | "TEAM_MEMBER_APPOINTMENT_HOURS" | "TEAM_MEMBER_EXPERTISE" | "TEAM_MEMBER_PROFILE" | "TEAM_MEMBER_REMOVAL" | "TEAM_MEMBER_SYNCHRONIZED_CALENDARS" | "TEAM_OFFICE_DETAILS" | "TEAM_OFFICE_EXPERTISE" | "TEAM_OFFICE_PLANNING_RULES" | "VIRTUAL_OFFICES";
3880
+ export type UiFeatureToggleEnterpriseSettingInput = {
3881
+ enabled: Scalars["Boolean"]["input"];
3882
+ feature: UiFeature;
3883
+ };
3884
+ export type UiFeatureToggleEnterpriseSettingValue = {
3885
+ enabled: Scalars["Boolean"]["output"];
3886
+ feature: UiFeature;
3887
+ };
3888
+ export type UiFeatureTogglesEnterpriseSetting = {
3889
+ createdAt: Scalars["ISO8601"]["output"];
3890
+ manageable: Scalars["Boolean"]["output"];
3891
+ updatedAt: Scalars["ISO8601"]["output"];
3892
+ /** The settings used to determine which features are enabled in the UI. */
3893
+ value: Array<UiFeatureToggleEnterpriseSettingValue>;
3894
+ };
3895
+ export type Unavailability = {
3896
+ createdAt: Scalars["ISO8601"]["output"];
3897
+ employee: Employee;
3898
+ /** End time of unavailability. */
3899
+ end: Scalars["ISO8601"]["output"];
3900
+ /** Start date of allDay unavailability. Returns null if unavailability has allDay set to false. */
3901
+ endDate?: Maybe<Scalars["CalendarDate"]["output"]>;
3902
+ externalId?: Maybe<Scalars["String"]["output"]>;
3903
+ id: Scalars["ID"]["output"];
3904
+ /** Start time of unavailability. */
3905
+ start: Scalars["ISO8601"]["output"];
3906
+ /** Start date of allDay unavailability. Returns null if unavailability has allDay set to false. */
3907
+ startDate?: Maybe<Scalars["CalendarDate"]["output"]>;
3908
+ type: UnavailabilityType;
3909
+ updatedAt: Scalars["ISO8601"]["output"];
3910
+ };
3911
+ export type UnavailabilityConnection = {
3912
+ edges: Array<UnavailabilityEdge>;
3913
+ pageInfo: PageInfo;
3914
+ totalCount: Scalars["Int"]["output"];
3915
+ };
3916
+ export type UnavailabilityCreateInput = {
3917
+ employeeId: Scalars["ID"]["input"];
3918
+ /** Is inclusive. */
3919
+ endDate: Scalars["CalendarDate"]["input"];
3920
+ /** Is inclusive. */
3921
+ startDate: Scalars["CalendarDate"]["input"];
3922
+ };
3923
+ export type UnavailabilityEdge = {
3924
+ cursor: Scalars["String"]["output"];
3925
+ node: Unavailability;
3926
+ };
3927
+ export type UnavailabilityRevertInput = {
3928
+ employeeId: Scalars["ID"]["input"];
3929
+ /** Is inclusive. */
3930
+ endDate: Scalars["CalendarDate"]["input"];
3931
+ /** Is inclusive. */
3932
+ startDate: Scalars["CalendarDate"]["input"];
3933
+ };
3934
+ export type UnavailabilityType = "APPOINTMENT" | "EXTERNAL_CALENDAR" | "LISTING_EXCLUSIVITY" | "USER_DEFINED";
3935
+ export type UserType = "CUSTOMER" | "EMPLOYEE" | "OTHER";
3936
+ export type Validator = {
3937
+ createdAt: Scalars["ISO8601"]["output"];
3938
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
3939
+ errorMessage?: Maybe<TranslationObject>;
3940
+ id: Scalars["ID"]["output"];
3941
+ question: Question;
3942
+ regex: Scalars["String"]["output"];
3943
+ translations: ValidatorTranslations;
3944
+ updatedAt: Scalars["ISO8601"]["output"];
3945
+ };
3946
+ export type ValidatorCreateInput = {
3947
+ regex: Scalars["String"]["input"];
3948
+ translations: ValidatorTranslationsCreateInput;
3949
+ };
3950
+ export type ValidatorPatchInput = {
3951
+ regex?: InputMaybe<Scalars["String"]["input"]>;
3952
+ translations?: InputMaybe<ValidatorTranslationsPatchInput>;
3953
+ };
3954
+ export type ValidatorTranslations = {
3955
+ errorMessage: Array<TranslationObject>;
3956
+ };
3957
+ export type ValidatorTranslationsCreateInput = {
3958
+ errorMessage: Array<TranslationObjectInput>;
3959
+ };
3960
+ export type ValidatorTranslationsPatchInput = {
3961
+ errorMessage?: InputMaybe<Array<TranslationObjectInput>>;
3962
+ };
3963
+ export type VideoProvider = "MICROSOFT_TEAMS_APPLICATION_AUTH" | "MICROSOFT_TEAMS_DELEGATED_AUTH" | "PEXIP" | "STATIC" | "TEMPLATE_GENERATED_URL";
3964
+ export type VideoProviderEnterpriseSetting = {
3965
+ createdAt: Scalars["ISO8601"]["output"];
3966
+ manageable: Scalars["Boolean"]["output"];
3967
+ updatedAt: Scalars["ISO8601"]["output"];
3968
+ /** The video provider used for video calls. */
3969
+ value: VideoProvider;
3970
+ };
3971
+ export type VideoUrlTemplate = {
3972
+ contentOverride?: Maybe<Scalars["String"]["output"]>;
3973
+ context: TemplateContext;
3974
+ createdAt: Scalars["ISO8601"]["output"];
3975
+ defaultContent: Scalars["String"]["output"];
3976
+ defaultVariables?: Maybe<Scalars["JSONObject"]["output"]>;
3977
+ id: Scalars["ID"]["output"];
3978
+ overrideActive: Scalars["Boolean"]["output"];
3979
+ receiver: TemplateReceiverType;
3980
+ updatedAt: Scalars["ISO8601"]["output"];
3981
+ variablesOverride?: Maybe<Scalars["JSONObject"]["output"]>;
3982
+ };
3983
+ export type VideoUrlTemplatePatchInput = {
3984
+ contentOverride?: InputMaybe<Scalars["String"]["input"]>;
3985
+ overrideActive?: InputMaybe<Scalars["Boolean"]["input"]>;
3986
+ variablesOverride?: InputMaybe<Scalars["JSONObject"]["input"]>;
3987
+ };
3988
+ export type VideoUrlTemplateRender = {
3989
+ content: Scalars["String"]["output"];
3990
+ meta: RenderedTemplateMeta;
3991
+ };
3992
+ export type WebhookConfiguration = {
3993
+ active: Scalars["Boolean"]["output"];
3994
+ createdAt: Scalars["ISO8601"]["output"];
3995
+ deletedAt?: Maybe<Scalars["ISO8601"]["output"]>;
3996
+ headers: Array<WebhookConfigurationHeader>;
3997
+ id: Scalars["ID"]["output"];
3998
+ method: HttpMethod;
3999
+ token: Scalars["String"]["output"];
4000
+ updatedAt: Scalars["ISO8601"]["output"];
4001
+ url: Scalars["String"]["output"];
4002
+ };
4003
+ export type WebhookConfigurationCreateInput = {
4004
+ active: Scalars["Boolean"]["input"];
4005
+ method: HttpMethod;
4006
+ token: Scalars["String"]["input"];
4007
+ url: Scalars["String"]["input"];
4008
+ };
4009
+ export type WebhookConfigurationHeader = {
4010
+ id: Scalars["ID"]["output"];
4011
+ key: Scalars["String"]["output"];
4012
+ value: Scalars["String"]["output"];
4013
+ };
4014
+ export type WebhookConfigurationHeaderCreateInput = {
4015
+ key: Scalars["String"]["input"];
4016
+ value: Scalars["String"]["input"];
4017
+ };
4018
+ export type WebhookConfigurationHeaderPatchInput = {
4019
+ id: Scalars["ID"]["input"];
4020
+ key?: InputMaybe<Scalars["String"]["input"]>;
4021
+ value?: InputMaybe<Scalars["String"]["input"]>;
4022
+ };
4023
+ export type WebhookConfigurationPatchInput = {
4024
+ active?: InputMaybe<Scalars["Boolean"]["input"]>;
4025
+ method?: InputMaybe<HttpMethod>;
4026
+ token?: InputMaybe<Scalars["String"]["input"]>;
4027
+ url?: InputMaybe<Scalars["String"]["input"]>;
4028
+ };
4029
+ export type WebhookDelivery = {
4030
+ correlationId: Scalars["String"]["output"];
4031
+ createdAt: Scalars["ISO8601"]["output"];
4032
+ /** Return the duration in milliseconds. */
4033
+ duration?: Maybe<Scalars["Int"]["output"]>;
4034
+ error?: Maybe<Scalars["String"]["output"]>;
4035
+ event: Scalars["String"]["output"];
4036
+ requestData: Scalars["String"]["output"];
4037
+ resourceId: Scalars["String"]["output"];
4038
+ responseData?: Maybe<Scalars["String"]["output"]>;
4039
+ responseHeaders?: Maybe<Scalars["String"]["output"]>;
4040
+ statusCode?: Maybe<Scalars["Float"]["output"]>;
4041
+ success: Scalars["Boolean"]["output"];
4042
+ updatedAt: Scalars["ISO8601"]["output"];
4043
+ webhookConfiguration: WebhookConfiguration;
4044
+ webhookId: Scalars["String"]["output"];
4045
+ };
4046
+ export type WebhookDeliveryConnection = {
4047
+ edges: Array<WebhookDeliveryEdge>;
4048
+ pageInfo: PageInfo;
4049
+ totalCount: Scalars["Int"]["output"];
4050
+ };
4051
+ export type WebhookDeliveryEdge = {
4052
+ cursor: Scalars["String"]["output"];
4053
+ node: WebhookDelivery;
4054
+ };
4055
+ export type ActiveLanguagesInput = {
4056
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4057
+ /** The languages supported by the enterprise. */
4058
+ value?: InputMaybe<Array<Language>>;
4059
+ };
4060
+ export type AgentPrioritizationEnabledInput = {
4061
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4062
+ /** Whether ranking should be applied when offering employees for scheduling. */
4063
+ value?: InputMaybe<Scalars["Boolean"]["input"]>;
4064
+ };
4065
+ export type AllowedExternalCalendarAccountProvidersInput = {
4066
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4067
+ /** The providers from which an employee can choose to connect an external calendar account. */
4068
+ value?: InputMaybe<Array<ExternalCalendarProvider>>;
4069
+ };
4070
+ export type AllowedPluginDomainsInput = {
4071
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4072
+ /** The domains on which the plugin can be integrated. */
4073
+ value?: InputMaybe<Array<Scalars["String"]["input"]>>;
4074
+ };
4075
+ export type AppointmentAutoAcceptInput = {
4076
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4077
+ /** The default appointment auto accept value. */
4078
+ value?: InputMaybe<Scalars["Boolean"]["input"]>;
4079
+ };
4080
+ export type AppointmentCompletionAllowedDaysBeforeStartInput = {
4081
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4082
+ /** The number of days before its start from when an appointment can be completed. */
4083
+ value?: InputMaybe<Scalars["Int"]["input"]>;
4084
+ };
4085
+ export type AppointmentCrossOfficeParticipantSelectionEnabledInput = {
4086
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4087
+ /** Whether reassigning appointments to another office is allowed. */
4088
+ value?: InputMaybe<Scalars["Boolean"]["input"]>;
4089
+ };
4090
+ export type AppointmentDefaultEstimatedDurationInput = {
4091
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4092
+ /** The default appointment duration. */
4093
+ value?: InputMaybe<Scalars["Int"]["input"]>;
4094
+ };
4095
+ export type AppointmentEarliestPossibleInput = {
4096
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4097
+ /** The earliest possible time from now an appointment can be booked. */
4098
+ value?: InputMaybe<Scalars["Int"]["input"]>;
4099
+ };
4100
+ export type AppointmentLatestPossibleInput = {
4101
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4102
+ /** The latest possible time from now an appointment can be booked. */
4103
+ value?: InputMaybe<Scalars["Int"]["input"]>;
4104
+ };
4105
+ export type AppointmentTrailingBufferTimeInput = {
4106
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4107
+ /** The default trailing buffer time after an appointment. */
4108
+ value?: InputMaybe<Scalars["Int"]["input"]>;
4109
+ };
4110
+ export type AppointmentTravelBufferTimeInput = {
4111
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4112
+ /** The default travel buffer time after an appointment. */
4113
+ value?: InputMaybe<Scalars["Int"]["input"]>;
4114
+ };
4115
+ export type CustomerNotificationSettingsInput = {
4116
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4117
+ /** The settings used to calculate which notifications should be sent to the customer. */
4118
+ value?: InputMaybe<Array<NotificationSettingsEnterpriseSettingInput>>;
4119
+ };
4120
+ export type CustomerReminderSettingsInput = {
4121
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4122
+ /** The settings used to calculate which reminders should be sent to the customer. */
4123
+ value?: InputMaybe<Array<CustomerReminderSettingsEnterpriseSettingInput>>;
4124
+ };
4125
+ export type DefaultCountryInput = {
4126
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4127
+ /** The default country used wherever no country is provided. */
4128
+ value?: InputMaybe<Scalars["String"]["input"]>;
4129
+ };
4130
+ export type DefaultExternalCalendarSettingsInput = {
4131
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4132
+ /** The default external calendar settings that are used when a new primary external calendar is created. */
4133
+ value?: InputMaybe<DefaultExternalCalendarSettingsSettingInput>;
4134
+ };
4135
+ export type DefaultLanguageInput = {
4136
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4137
+ /** The default language used wherever no language is specified. */
4138
+ value?: InputMaybe<Language>;
4139
+ };
4140
+ export type DefaultNameInput = {
4141
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4142
+ /** The default (non-localized) name of the enterprise. */
4143
+ value?: InputMaybe<Scalars["String"]["input"]>;
4144
+ };
4145
+ export type DefaultRedirectUrlInput = {
4146
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4147
+ /** The default (non-localized) redirect URL to the plugin. */
4148
+ value?: InputMaybe<Scalars["String"]["input"]>;
4149
+ };
4150
+ export type DefaultReturnPathDomainInput = {
4151
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4152
+ /** The default (non-localized) return path domain used when sending emails. */
4153
+ value?: InputMaybe<Scalars["String"]["input"]>;
4154
+ };
4155
+ export type DefaultSenderEmailAddressInput = {
4156
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4157
+ /** The default (non-localized) sender email address used when sending emails. */
4158
+ value?: InputMaybe<Scalars["String"]["input"]>;
4159
+ };
4160
+ export type DefaultSubjectIdInput = {
4161
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4162
+ /** The default subject ID to be used when creating an appointment internally. */
4163
+ value?: InputMaybe<Scalars["ID"]["input"]>;
4164
+ };
4165
+ export type DefaultTermsAndConditionsUrlInput = {
4166
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4167
+ /** The default (non-localized) URL of the enterprise's terms and conditions. */
4168
+ value?: InputMaybe<Scalars["String"]["input"]>;
4169
+ };
4170
+ export type DefaultTimeZoneInput = {
4171
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4172
+ /** The default time zone used wherever no time zone is provided. */
4173
+ value?: InputMaybe<Scalars["String"]["input"]>;
4174
+ };
4175
+ export type EmailProviderInput = {
4176
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4177
+ /** The email provider used to send emails. */
4178
+ value?: InputMaybe<EmailProvider>;
4179
+ };
4180
+ export type EmployeeNotificationSettingsInput = {
4181
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4182
+ /** The settings used to calculate which notifications should be sent to the employee. */
4183
+ value?: InputMaybe<Array<NotificationSettingsEnterpriseSettingInput>>;
4184
+ };
4185
+ export type ExternalCustomerFieldSettingsInput = {
4186
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4187
+ /** The settings to calculate which customer fields should be shown externally and what their requirements are. */
4188
+ value?: InputMaybe<Array<ExternalCustomerFieldSettingEnterpriseSettingInput>>;
4189
+ };
4190
+ export type InternalCustomerFieldSettingsInput = {
4191
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4192
+ /** The settings to calculate which customer fields should be shown internally and what their requirements are. */
4193
+ value?: InputMaybe<Array<InternalCustomerFieldSettingEnterpriseSettingInput>>;
4194
+ };
4195
+ export type LocalizedNamesInput = {
4196
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4197
+ /** The localized names of the enterprise. */
4198
+ value?: InputMaybe<Array<EnterpriseSettingTranslationInput>>;
4199
+ };
4200
+ export type LocalizedRedirectUrlsInput = {
4201
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4202
+ /** The localized redirect URLs to the plugin. */
4203
+ value?: InputMaybe<Array<EnterpriseSettingTranslationInput>>;
4204
+ };
4205
+ export type LocalizedReturnPathDomainsInput = {
4206
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4207
+ /** The localized return path domains. */
4208
+ value?: InputMaybe<Array<EnterpriseSettingTranslationInput>>;
4209
+ };
4210
+ export type LocalizedSenderEmailAddressesInput = {
4211
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4212
+ /** The localized sender email addresses. */
4213
+ value?: InputMaybe<Array<EnterpriseSettingTranslationInput>>;
4214
+ };
4215
+ export type LocalizedTermsAndConditionsUrlsInput = {
4216
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4217
+ /** The localized URLs of the enterprise's terms and conditions. */
4218
+ value?: InputMaybe<Array<EnterpriseSettingTranslationInput>>;
4219
+ };
4220
+ export type LogoUrlInput = {
4221
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4222
+ /** The URL of the enterprise's logo. */
4223
+ value?: InputMaybe<Scalars["String"]["input"]>;
4224
+ };
4225
+ export type MaxConcurrentAppointmentsInput = {
4226
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4227
+ /** The default value for the amount of maximum concurrent appointments allowed. */
4228
+ value?: InputMaybe<Scalars["Int"]["input"]>;
4229
+ };
4230
+ export type PasswordAuthenticationEnabledInput = {
4231
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4232
+ /** Whether password authentication is used. */
4233
+ value?: InputMaybe<Scalars["Boolean"]["input"]>;
4234
+ };
4235
+ export type PrimaryBrandColorInput = {
4236
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4237
+ /** The primary brand color of the enterprise. */
4238
+ value?: InputMaybe<Scalars["String"]["input"]>;
4239
+ };
4240
+ export type SendAppointmentEmailNotificationsInput = {
4241
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4242
+ /** Indicates whether email notifications should be sent for appointments. */
4243
+ value?: InputMaybe<Scalars["Boolean"]["input"]>;
4244
+ };
4245
+ export type SendAppointmentTextMessageNotificationsInput = {
4246
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4247
+ /** Indicates whether text message notifications should be sent for appointments. */
4248
+ value?: InputMaybe<Scalars["Boolean"]["input"]>;
4249
+ };
4250
+ export type SendEmployeeCreatedNotificationsInput = {
4251
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4252
+ /** Indicates whether an email should be sent to the new employee when it is created. */
4253
+ value?: InputMaybe<Scalars["Boolean"]["input"]>;
4254
+ };
4255
+ export type SendExternalCalendarAccountBrokenNotificationsInput = {
4256
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4257
+ /** Indicates whether an email should be sent to the employee when the connection with the external calendar account is broken. */
4258
+ value?: InputMaybe<Scalars["Boolean"]["input"]>;
4259
+ };
4260
+ export type TextMessageProviderInput = {
4261
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4262
+ /** The text message provider used to send text messages. */
4263
+ value?: InputMaybe<TextMessageProvider>;
4264
+ };
4265
+ export type TimeSlotGranularityInput = {
4266
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4267
+ /** The default time slot granularity. */
4268
+ value?: InputMaybe<Scalars["Int"]["input"]>;
4269
+ };
4270
+ export type UiFeatureTogglesInput = {
4271
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4272
+ /** The settings used to determine which features are enabled in the UI. */
4273
+ value?: InputMaybe<Array<UiFeatureToggleEnterpriseSettingInput>>;
4274
+ };
4275
+ export type VideoProviderInput = {
4276
+ manageable?: InputMaybe<Scalars["Boolean"]["input"]>;
4277
+ /** The video provider used for video calls. */
4278
+ value?: InputMaybe<VideoProvider>;
4279
+ };
4280
+ //# sourceMappingURL=schema.d.ts.map