@pexip-engage-public/graphql 1.0.73-canary-20250526074113 → 1.0.73-canary-20250527102608

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/schema.ts CHANGED
@@ -125,6 +125,15 @@ export type AllowedExternalCalendarAccountProvidersEnterpriseSetting = {
125
125
  value: Array<ExternalCalendarProvider>;
126
126
  };
127
127
 
128
+ export type AllowedMeetingRoomProvidersEnterpriseSetting = {
129
+ createdAt: Scalars['ISO8601']['output'];
130
+ /** Indicates if the enterprise setting can be managed by an administrator of the enterprise. Non-manageable settings can only be modified by Pexip Engage Support. */
131
+ manageable: Scalars['Boolean']['output'];
132
+ updatedAt: Scalars['ISO8601']['output'];
133
+ /** The allowed providers for meeting rooms. */
134
+ value: Array<MeetingRoomProvider>;
135
+ };
136
+
128
137
  export type AllowedPluginDomainsEnterpriseSetting = {
129
138
  createdAt: Scalars['ISO8601']['output'];
130
139
  /** Indicates if the enterprise setting can be managed by an administrator of the enterprise. Non-manageable settings can only be modified by Pexip Engage Support. */
@@ -950,6 +959,21 @@ export type CallbackRequestsEnabledEnterpriseSetting = {
950
959
  value: Scalars['Boolean']['output'];
951
960
  };
952
961
 
962
+ export type Communication = {
963
+ channel: CommunicationChannel;
964
+ communicationReceiver: CommunicationReceiver;
965
+ communicationType: CommunicationType;
966
+ correlationId: Scalars['String']['output'];
967
+ createdAt: Scalars['ISO8601']['output'];
968
+ eventType: Scalars['String']['output'];
969
+ id: Scalars['ID']['output'];
970
+ processedAt: Scalars['ISO8601']['output'];
971
+ resourceId: Scalars['Int']['output'];
972
+ resourceType: CommunicationResourceType;
973
+ resourceVersion?: Maybe<Scalars['Int']['output']>;
974
+ scheduledAt: Scalars['ISO8601']['output'];
975
+ };
976
+
953
977
  export type CommunicationChannel =
954
978
  | 'EMAIL'
955
979
  | 'TEXT_MESSAGE';
@@ -963,6 +987,21 @@ export type CommunicationEmailEnterpriseSetting = {
963
987
  value?: Maybe<Scalars['String']['output']>;
964
988
  };
965
989
 
990
+ export type CommunicationReceiver = Customer | Employee | Enterprise | Office | { __typename?: "%other" };
991
+
992
+ export type CommunicationResourceType =
993
+ | 'APPOINTMENT'
994
+ | 'CALLBACK_REQUEST';
995
+
996
+ export type CommunicationSort = {
997
+ direction: SortDirection;
998
+ field: SortableCommunicationFields;
999
+ };
1000
+
1001
+ export type CommunicationType =
1002
+ | 'NOTIFICATION'
1003
+ | 'REMINDER';
1004
+
966
1005
  export type Customer = {
967
1006
  anonymizedAt?: Maybe<Scalars['ISO8601']['output']>;
968
1007
  company?: Maybe<Scalars['String']['output']>;
@@ -1260,7 +1299,8 @@ export type EmailProvider =
1260
1299
  | 'MANDRILL'
1261
1300
  | 'MICROSOFT_GRAPH_API'
1262
1301
  | 'PRETEND'
1263
- | 'SMTP';
1302
+ | 'SMTP'
1303
+ | 'WEBHOOK';
1264
1304
 
1265
1305
  export type EmailProviderEnterpriseSetting = {
1266
1306
  createdAt: Scalars['ISO8601']['output'];
@@ -1513,6 +1553,10 @@ export type EmployeeTranslationsPatchInput = {
1513
1553
  function?: InputMaybe<Array<TranslationObjectInput>>;
1514
1554
  };
1515
1555
 
1556
+ export type Enterprise = {
1557
+ name: Scalars['String']['output'];
1558
+ };
1559
+
1516
1560
  export type EnterpriseSettingTranslationInput = {
1517
1561
  language: Language;
1518
1562
  value?: InputMaybe<Scalars['String']['input']>;
@@ -1532,6 +1576,8 @@ export type EnterpriseSettings = {
1532
1576
  agentPrioritizationEnabled: AgentPrioritizationEnabledEnterpriseSetting;
1533
1577
  /** The providers from which an employee can choose to connect an external calendar account. */
1534
1578
  allowedExternalCalendarAccountProviders: AllowedExternalCalendarAccountProvidersEnterpriseSetting;
1579
+ /** The allowed providers for meeting rooms. */
1580
+ allowedMeetingRoomProviders: AllowedMeetingRoomProvidersEnterpriseSetting;
1535
1581
  /** The domains on which the plugin can be integrated. */
1536
1582
  allowedPluginDomains: AllowedPluginDomainsEnterpriseSetting;
1537
1583
  /** Manage the default auto accept setting value or disable manual manual accept. */
@@ -1645,6 +1691,8 @@ export type EnterpriseSettingsPatchInput = {
1645
1691
  agentPrioritizationEnabled?: InputMaybe<AgentPrioritizationEnabledInput>;
1646
1692
  /** The providers from which an employee can choose to connect an external calendar account. */
1647
1693
  allowedExternalCalendarAccountProviders?: InputMaybe<AllowedExternalCalendarAccountProvidersInput>;
1694
+ /** The allowed providers for meeting rooms. */
1695
+ allowedMeetingRoomProviders?: InputMaybe<AllowedMeetingRoomProvidersInput>;
1648
1696
  /** The domains on which the plugin can be integrated. */
1649
1697
  allowedPluginDomains?: InputMaybe<AllowedPluginDomainsInput>;
1650
1698
  /** Manage the default auto accept setting value or disable manual manual accept. */
@@ -2484,6 +2532,26 @@ export type ListingTranslationsPatchInput = {
2484
2532
  name?: InputMaybe<Array<TranslationObjectInput>>;
2485
2533
  };
2486
2534
 
2535
+ export type LocalMeetingRoomCreateInput = {
2536
+ active: Scalars['Boolean']['input'];
2537
+ capacity: Scalars['Int']['input'];
2538
+ email?: InputMaybe<Scalars['String']['input']>;
2539
+ externalId?: InputMaybe<Scalars['String']['input']>;
2540
+ isWheelChairAccessible: Scalars['Boolean']['input'];
2541
+ name: Scalars['String']['input'];
2542
+ timeZone?: InputMaybe<Scalars['String']['input']>;
2543
+ };
2544
+
2545
+ export type LocalMeetingRoomPatchInput = {
2546
+ active?: InputMaybe<Scalars['Boolean']['input']>;
2547
+ capacity?: InputMaybe<Scalars['Int']['input']>;
2548
+ email?: InputMaybe<Scalars['String']['input']>;
2549
+ externalId?: InputMaybe<Scalars['String']['input']>;
2550
+ isWheelChairAccessible?: InputMaybe<Scalars['Boolean']['input']>;
2551
+ name?: InputMaybe<Scalars['String']['input']>;
2552
+ timeZone?: InputMaybe<Scalars['String']['input']>;
2553
+ };
2554
+
2487
2555
  export type LocalizedNamesEnterpriseSetting = {
2488
2556
  createdAt: Scalars['ISO8601']['output'];
2489
2557
  /** Indicates if the enterprise setting can be managed by an administrator of the enterprise. Non-manageable settings can only be modified by Pexip Engage Support. */
@@ -2595,6 +2663,7 @@ export type ManagedExternalCalendarEvent = Managed & {
2595
2663
  id: Scalars['String']['output'];
2596
2664
  lastSyncedAt?: Maybe<Scalars['ISO8601']['output']>;
2597
2665
  location?: Maybe<ManagedExternalCalendarEventLocation>;
2666
+ phoneNumber?: Maybe<Scalars['String']['output']>;
2598
2667
  resourceId: Scalars['String']['output'];
2599
2668
  resourceType: ExternalCalendarEventResourceType;
2600
2669
  showAs: ShowAs;
@@ -2616,6 +2685,7 @@ export type ManagedExternalCalendarEventCreateInput = {
2616
2685
  hash?: InputMaybe<Scalars['String']['input']>;
2617
2686
  location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
2618
2687
  meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
2688
+ phoneNumber?: InputMaybe<Scalars['String']['input']>;
2619
2689
  resourceId: Scalars['String']['input'];
2620
2690
  resourceType: ExternalCalendarEventResourceType;
2621
2691
  showAs: ShowAs;
@@ -2655,6 +2725,7 @@ export type ManagedExternalCalendarEventPatchInput = {
2655
2725
  hash?: InputMaybe<Scalars['String']['input']>;
2656
2726
  location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
2657
2727
  meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
2728
+ phoneNumber?: InputMaybe<Scalars['String']['input']>;
2658
2729
  resourceId?: InputMaybe<Scalars['String']['input']>;
2659
2730
  resourceType?: InputMaybe<ExternalCalendarEventResourceType>;
2660
2731
  showAs?: InputMaybe<ShowAs>;
@@ -2743,7 +2814,7 @@ export type MeetingRoom = {
2743
2814
  lastSyncedAt?: Maybe<Scalars['ISO8601']['output']>;
2744
2815
  name: Scalars['String']['output'];
2745
2816
  offices: Array<Office>;
2746
- provider: ExternalCalendarProvider;
2817
+ provider: MeetingRoomProvider;
2747
2818
  schedulingSettings: Array<MeetingRoomSchedulingSetting>;
2748
2819
  timeZone: Scalars['String']['output'];
2749
2820
  updatedAt: Scalars['ISO8601']['output'];
@@ -2809,6 +2880,10 @@ export type MeetingRoomPatchInput = {
2809
2880
  active?: InputMaybe<Scalars['Boolean']['input']>;
2810
2881
  };
2811
2882
 
2883
+ export type MeetingRoomProvider =
2884
+ | 'LOCAL'
2885
+ | 'OFFICE365';
2886
+
2812
2887
  export type MeetingRoomSchedulingSetting = {
2813
2888
  meetingRoom: MeetingRoom;
2814
2889
  meetingType: MeetingType;
@@ -2927,12 +3002,15 @@ export type Mutation = {
2927
3002
  createLeadSegment: LeadSegment;
2928
3003
  createListing: Listing;
2929
3004
  createListingTimeSlot: ListingTimeSlot;
3005
+ createLocalMeetingRoom: MeetingRoom;
2930
3006
  createManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
2931
3007
  createManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
2932
3008
  createMicrosoftDynamicsIntegrationConnectUrl: Scalars['String']['output'];
2933
3009
  createOffice: Office;
2934
3010
  createOfficeRelation: OfficeRelation;
2935
3011
  createQuestion: Question;
3012
+ createSamlIntegration: SamlIntegration;
3013
+ createScimToken: Scalars['String']['output'];
2936
3014
  createSessionConfigSessionEvent: Scalars['Boolean']['output'];
2937
3015
  createSessionDataSessionEvent: Scalars['Boolean']['output'];
2938
3016
  createStepShownSessionEvent: Scalars['Boolean']['output'];
@@ -2946,6 +3024,7 @@ export type Mutation = {
2946
3024
  * that user will be reverted (as if you called revertUnavailability first, see its description).
2947
3025
  */
2948
3026
  createUnavailability: Unavailability;
3027
+ createUnavailabilityEvent: Unavailability;
2949
3028
  createUploadFileLink: FileCreateUploadLinkResult;
2950
3029
  createVPaaSMeeting: PexipVPaaSParticipant;
2951
3030
  createWebhookConfiguration: WebhookConfiguration;
@@ -2962,11 +3041,13 @@ export type Mutation = {
2962
3041
  deleteLeadSegment: LeadSegment;
2963
3042
  deleteListing: Listing;
2964
3043
  deleteListingTimeSlot: ListingTimeSlot;
3044
+ deleteLocalMeetingRoom: MeetingRoom;
2965
3045
  deleteManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
2966
3046
  deleteManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
2967
3047
  deleteOffice: Office;
2968
3048
  deleteOfficeRelation: OfficeRelation;
2969
3049
  deleteQuestion: Question;
3050
+ deleteSamlIntegration: SamlIntegration;
2970
3051
  deleteStorageAccountConfig: StorageAccountConfig;
2971
3052
  deleteSubject: Subject;
2972
3053
  deleteSubjectGroup: SubjectGroup;
@@ -2997,6 +3078,7 @@ export type Mutation = {
2997
3078
  patchLeadSegment: LeadSegment;
2998
3079
  patchLeadSegmentCallbackRequestSetting: LeadSegmentCallbackRequestSetting;
2999
3080
  patchListing: Listing;
3081
+ patchLocalMeetingRoom: MeetingRoom;
3000
3082
  patchManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
3001
3083
  patchManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
3002
3084
  patchMeetingRoom: MeetingRoom;
@@ -3005,6 +3087,7 @@ export type Mutation = {
3005
3087
  patchOffice: Office;
3006
3088
  patchOfficeCallbackRequestSetting: OfficeCallbackRequestSetting;
3007
3089
  patchQuestion: Question;
3090
+ patchSamlIntegration: SamlIntegration;
3008
3091
  patchStaticTranslationOverrides: Array<StaticTranslationOverride>;
3009
3092
  patchStorageAccountConfig: StorageAccountConfig;
3010
3093
  patchSubject: Subject;
@@ -3074,6 +3157,9 @@ export type Mutation = {
3074
3157
  syncMeetingRooms: Scalars['Boolean']['output'];
3075
3158
  syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
3076
3159
  testWebhookConfiguration: WebhookDelivery;
3160
+ toggleRedirectToSaml: Scalars['Boolean']['output'];
3161
+ uploadSamlIdentityProviderMetadataByFile: SamlIntegration;
3162
+ uploadSamlIdentityProviderMetadataByUrl: SamlIntegration;
3077
3163
  upsertMicrosoftGraphAPIEmailConfiguration: MicrosoftGraphApiEmailProviderConfiguration;
3078
3164
  upsertOfficeRelation: GroupedOfficeRelation;
3079
3165
  };
@@ -3241,6 +3327,11 @@ export type MutationCreateListingTimeSlotArgs = {
3241
3327
  };
3242
3328
 
3243
3329
 
3330
+ export type MutationCreateLocalMeetingRoomArgs = {
3331
+ input: LocalMeetingRoomCreateInput;
3332
+ };
3333
+
3334
+
3244
3335
  export type MutationCreateManagedExternalCalendarEventArgs = {
3245
3336
  input: ManagedExternalCalendarEventCreateInput;
3246
3337
  };
@@ -3317,6 +3408,11 @@ export type MutationCreateUnavailabilityArgs = {
3317
3408
  };
3318
3409
 
3319
3410
 
3411
+ export type MutationCreateUnavailabilityEventArgs = {
3412
+ input: UnavailabilityEventCreateInput;
3413
+ };
3414
+
3415
+
3320
3416
  export type MutationCreateUploadFileLinkArgs = {
3321
3417
  input: FileCreateUploadLinkInput;
3322
3418
  };
@@ -3398,6 +3494,11 @@ export type MutationDeleteListingTimeSlotArgs = {
3398
3494
  };
3399
3495
 
3400
3496
 
3497
+ export type MutationDeleteLocalMeetingRoomArgs = {
3498
+ id: Scalars['ID']['input'];
3499
+ };
3500
+
3501
+
3401
3502
  export type MutationDeleteManagedExternalCalendarEventArgs = {
3402
3503
  id: Scalars['String']['input'];
3403
3504
  };
@@ -3583,6 +3684,12 @@ export type MutationPatchListingArgs = {
3583
3684
  };
3584
3685
 
3585
3686
 
3687
+ export type MutationPatchLocalMeetingRoomArgs = {
3688
+ id: Scalars['ID']['input'];
3689
+ input: LocalMeetingRoomPatchInput;
3690
+ };
3691
+
3692
+
3586
3693
  export type MutationPatchManagedExternalCalendarEventArgs = {
3587
3694
  id: Scalars['String']['input'];
3588
3695
  input: ManagedExternalCalendarEventPatchInput;
@@ -3630,6 +3737,11 @@ export type MutationPatchQuestionArgs = {
3630
3737
  };
3631
3738
 
3632
3739
 
3740
+ export type MutationPatchSamlIntegrationArgs = {
3741
+ input: SamlIntegrationPatchInput;
3742
+ };
3743
+
3744
+
3633
3745
  export type MutationPatchStaticTranslationOverridesArgs = {
3634
3746
  staticTranslationOverridesPatchInput: Array<StaticTranslationOverridePatchInput>;
3635
3747
  };
@@ -3958,6 +4070,21 @@ export type MutationTestWebhookConfigurationArgs = {
3958
4070
  };
3959
4071
 
3960
4072
 
4073
+ export type MutationToggleRedirectToSamlArgs = {
4074
+ shouldRedirectToSaml: Scalars['Boolean']['input'];
4075
+ };
4076
+
4077
+
4078
+ export type MutationUploadSamlIdentityProviderMetadataByFileArgs = {
4079
+ metadataXml: Scalars['String']['input'];
4080
+ };
4081
+
4082
+
4083
+ export type MutationUploadSamlIdentityProviderMetadataByUrlArgs = {
4084
+ metadataUrl: Scalars['String']['input'];
4085
+ };
4086
+
4087
+
3961
4088
  export type MutationUpsertMicrosoftGraphApiEmailConfigurationArgs = {
3962
4089
  input: MicrosoftGraphApiEmailProviderConfigurationInput;
3963
4090
  };
@@ -4205,6 +4332,16 @@ export type PasswordAuthenticationEnabledEnterpriseSetting = {
4205
4332
  value: Scalars['Boolean']['output'];
4206
4333
  };
4207
4334
 
4335
+ export type PexipInfinityCall = {
4336
+ conferenceNode: Scalars['String']['output'];
4337
+ dialInCode: Scalars['String']['output'];
4338
+ dialInNumber: Scalars['String']['output'];
4339
+ id: Scalars['ID']['output'];
4340
+ pin: Scalars['String']['output'];
4341
+ vmrId: Scalars['Int']['output'];
4342
+ vmrName: Scalars['String']['output'];
4343
+ };
4344
+
4208
4345
  export type PexipVPaaSParticipant = {
4209
4346
  pexipVPaaSApiAddress: Scalars['String']['output'];
4210
4347
  pexipVPaaSMeetingId: Scalars['String']['output'];
@@ -4236,6 +4373,7 @@ export type Query = {
4236
4373
  apiClients: Array<ApiClient>;
4237
4374
  appliedTemplates: AppliedTemplateConnection;
4238
4375
  appointment: Appointment;
4376
+ appointmentCommunications: Array<Communication>;
4239
4377
  appointmentParticipant: AppointmentParticipant;
4240
4378
  appointmentUnavailabilityForEmployee: Array<Unavailability>;
4241
4379
  appointments: AppointmentConnection;
@@ -4306,14 +4444,19 @@ export type Query = {
4306
4444
  officeEmployeeCoverageRegionSchedulingSettings: Array<OfficeEmployeeCoverageRegionSchedulingSetting>;
4307
4445
  officeEmployeeSubjectCoverageRegionSchedulingSettings: Array<OfficeEmployeeSubjectCoverageRegionSchedulingSetting>;
4308
4446
  offices: OfficeConnection;
4447
+ pexipInfinityCall: PexipInfinityCall;
4309
4448
  question: Question;
4310
4449
  questions: Array<Question>;
4311
4450
  regions: RegionConnection;
4451
+ samlIntegration?: Maybe<SamlIntegration>;
4312
4452
  schedulableEmployees: Array<Employee>;
4313
4453
  schedulableMeetingRooms: Array<MeetingRoom>;
4314
4454
  schedulableMeetingTypes: Array<MeetingType>;
4315
4455
  schedulableOffices: Array<Office>;
4316
4456
  schedulableSubjects: Array<Subject>;
4457
+ scheduledAppointmentCommunications: Array<ScheduledCommunication>;
4458
+ scimEndpoint: Scalars['String']['output'];
4459
+ scimTokens: Array<ScimToken>;
4317
4460
  searchRegions: Array<Region>;
4318
4461
  staticTranslationOverrides: Array<StaticTranslationOverride>;
4319
4462
  staticTranslations: Scalars['JSONObject']['output'];
@@ -4407,6 +4550,13 @@ export type QueryAppliedTemplatesArgs = {
4407
4550
  export type QueryAppointmentArgs = {
4408
4551
  id?: InputMaybe<Scalars['ID']['input']>;
4409
4552
  token?: InputMaybe<Scalars['String']['input']>;
4553
+ version?: InputMaybe<Scalars['Int']['input']>;
4554
+ };
4555
+
4556
+
4557
+ export type QueryAppointmentCommunicationsArgs = {
4558
+ appointmentId: Scalars['ID']['input'];
4559
+ sort?: InputMaybe<Array<CommunicationSort>>;
4410
4560
  };
4411
4561
 
4412
4562
 
@@ -4999,6 +5149,11 @@ export type QueryOfficesArgs = {
4999
5149
  };
5000
5150
 
5001
5151
 
5152
+ export type QueryPexipInfinityCallArgs = {
5153
+ token: Scalars['String']['input'];
5154
+ };
5155
+
5156
+
5002
5157
  export type QueryQuestionArgs = {
5003
5158
  id: Scalars['ID']['input'];
5004
5159
  };
@@ -5140,6 +5295,13 @@ export type QuerySchedulableSubjectsArgs = {
5140
5295
  };
5141
5296
 
5142
5297
 
5298
+ export type QueryScheduledAppointmentCommunicationsArgs = {
5299
+ appointmentId: Scalars['ID']['input'];
5300
+ communicationType?: InputMaybe<Array<CommunicationType>>;
5301
+ sort?: InputMaybe<Array<ScheduledCommunicationSort>>;
5302
+ };
5303
+
5304
+
5143
5305
  export type QuerySearchRegionsArgs = {
5144
5306
  code?: InputMaybe<Array<Scalars['String']['input']>>;
5145
5307
  countryCode?: InputMaybe<Scalars['String']['input']>;
@@ -5297,6 +5459,8 @@ export type QueryWebhookConfigurationArgs = {
5297
5459
 
5298
5460
 
5299
5461
  export type QueryWebhookConfigurationsArgs = {
5462
+ active?: InputMaybe<Scalars['Boolean']['input']>;
5463
+ eventType?: InputMaybe<Array<WebhookEventType>>;
5300
5464
  withDeleted?: InputMaybe<Scalars['Boolean']['input']>;
5301
5465
  };
5302
5466
 
@@ -5464,9 +5628,74 @@ export type ResourceType =
5464
5628
  | 'MEETING_TYPE'
5465
5629
  | 'OFFICE'
5466
5630
  | 'OFFICE_RELATION'
5631
+ | 'SCIM_TOKEN'
5467
5632
  | 'SUBJECT'
5468
5633
  | 'SUBJECT_GROUP';
5469
5634
 
5635
+ export type SamlIntegration = {
5636
+ active: Scalars['Boolean']['output'];
5637
+ forceAuthentication: Scalars['Boolean']['output'];
5638
+ identityProviderMetadataUrl?: Maybe<Scalars['String']['output']>;
5639
+ identityProviderSignatureKey?: Maybe<SamlIntegrationIdentityProviderKey>;
5640
+ serviceProviderEncryptionKeys: Array<SamlIntegrationServiceProviderKey>;
5641
+ serviceProviderMetadataUrl: Scalars['String']['output'];
5642
+ serviceProviderSignatureKeys: Array<SamlIntegrationServiceProviderKey>;
5643
+ signServiceProviderMetadata: Scalars['Boolean']['output'];
5644
+ singleLogoutServiceUrl?: Maybe<Scalars['String']['output']>;
5645
+ singleSignOnServiceUrl?: Maybe<Scalars['String']['output']>;
5646
+ validateSignature: Scalars['Boolean']['output'];
5647
+ wantAssertionsEncrypted: Scalars['Boolean']['output'];
5648
+ wantAssertionsSigned: Scalars['Boolean']['output'];
5649
+ wantAuthnRequestsSigned: Scalars['Boolean']['output'];
5650
+ };
5651
+
5652
+ export type SamlIntegrationIdentityProviderKey = {
5653
+ certificate: Scalars['String']['output'];
5654
+ expiresAt: Scalars['ISO8601']['output'];
5655
+ };
5656
+
5657
+ export type SamlIntegrationKeyStatus =
5658
+ | 'ACTIVE'
5659
+ | 'DISABLED'
5660
+ | 'PASSIVE';
5661
+
5662
+ export type SamlIntegrationPatchInput = {
5663
+ active?: InputMaybe<Scalars['Boolean']['input']>;
5664
+ forceAuthentication?: InputMaybe<Scalars['Boolean']['input']>;
5665
+ signServiceProviderMetadata?: InputMaybe<Scalars['Boolean']['input']>;
5666
+ validateSignature?: InputMaybe<Scalars['Boolean']['input']>;
5667
+ wantAssertionsEncrypted?: InputMaybe<Scalars['Boolean']['input']>;
5668
+ wantAssertionsSigned?: InputMaybe<Scalars['Boolean']['input']>;
5669
+ wantAuthnRequestsSigned?: InputMaybe<Scalars['Boolean']['input']>;
5670
+ };
5671
+
5672
+ export type SamlIntegrationServiceProviderKey = {
5673
+ algorithm: Scalars['String']['output'];
5674
+ certificate: Scalars['String']['output'];
5675
+ expiresAt: Scalars['ISO8601']['output'];
5676
+ id: Scalars['String']['output'];
5677
+ publicKey: Scalars['String']['output'];
5678
+ status: SamlIntegrationKeyStatus;
5679
+ };
5680
+
5681
+ export type ScheduledCommunication = {
5682
+ channel: CommunicationChannel;
5683
+ communicationReceiver: CommunicationReceiver;
5684
+ communicationType: CommunicationType;
5685
+ correlationId: Scalars['String']['output'];
5686
+ createdAt: Scalars['ISO8601']['output'];
5687
+ eventType: Scalars['String']['output'];
5688
+ resourceId: Scalars['Int']['output'];
5689
+ resourceType: CommunicationResourceType;
5690
+ resourceVersion?: Maybe<Scalars['Int']['output']>;
5691
+ scheduledAt: Scalars['ISO8601']['output'];
5692
+ };
5693
+
5694
+ export type ScheduledCommunicationSort = {
5695
+ direction: SortDirection;
5696
+ field: SortableScheduledCommunicationFields;
5697
+ };
5698
+
5470
5699
  export type ScimIntegration = BaseIntegration & {
5471
5700
  active: Scalars['Boolean']['output'];
5472
5701
  authToken?: Maybe<Scalars['String']['output']>;
@@ -5475,6 +5704,14 @@ export type ScimIntegration = BaseIntegration & {
5475
5704
  name: Scalars['String']['output'];
5476
5705
  };
5477
5706
 
5707
+ export type ScimToken = {
5708
+ createdAt: Scalars['ISO8601']['output'];
5709
+ deletedAt?: Maybe<Scalars['ISO8601']['output']>;
5710
+ expiresAt: Scalars['ISO8601']['output'];
5711
+ id: Scalars['ID']['output'];
5712
+ updatedAt: Scalars['ISO8601']['output'];
5713
+ };
5714
+
5478
5715
  export type SecondaryParticipantInput = {
5479
5716
  participantId: Scalars['ID']['input'];
5480
5717
  type: ParticipantType;
@@ -5638,6 +5875,9 @@ export type SortableCallbackRequestFields =
5638
5875
  | 'id'
5639
5876
  | 'updatedAt';
5640
5877
 
5878
+ export type SortableCommunicationFields =
5879
+ | 'processedAt';
5880
+
5641
5881
  export type SortableCustomerFields =
5642
5882
  | 'createdAt'
5643
5883
  | 'email'
@@ -5716,6 +5956,9 @@ export type SortableRegionFields =
5716
5956
  | 'name'
5717
5957
  | 'parentId';
5718
5958
 
5959
+ export type SortableScheduledCommunicationFields =
5960
+ | 'scheduledAt';
5961
+
5719
5962
  export type SortableSubjectFields =
5720
5963
  | 'createdAt'
5721
5964
  | 'externalId'
@@ -6117,7 +6360,8 @@ export type TextMessageProvider =
6117
6360
  | 'DEFAULT'
6118
6361
  | 'PRETEND'
6119
6362
  | 'SPRYNG'
6120
- | 'TWILIO';
6363
+ | 'TWILIO'
6364
+ | 'WEBHOOK';
6121
6365
 
6122
6366
  export type TextMessageProviderEnterpriseSetting = {
6123
6367
  createdAt: Scalars['ISO8601']['output'];
@@ -6360,6 +6604,12 @@ export type UnavailabilityEdge = {
6360
6604
  node: Unavailability;
6361
6605
  };
6362
6606
 
6607
+ export type UnavailabilityEventCreateInput = {
6608
+ employeeId: Scalars['ID']['input'];
6609
+ end: Scalars['ISO8601']['input'];
6610
+ start: Scalars['ISO8601']['input'];
6611
+ };
6612
+
6363
6613
  export type UnavailabilityRevertInput = {
6364
6614
  employeeId: Scalars['ID']['input'];
6365
6615
  /** Is inclusive. */
@@ -6423,6 +6673,7 @@ export type VideoProvider =
6423
6673
  | 'EXTERNAL_PROVIDER_ACCOUNT'
6424
6674
  | 'MICROSOFT_TEAMS_APPLICATION_AUTH'
6425
6675
  | 'PEXIP'
6676
+ | 'PEXIP_INFINITY'
6426
6677
  | 'STATIC'
6427
6678
  | 'TEMPLATE_GENERATED_URL';
6428
6679
 
@@ -6547,7 +6798,8 @@ export type WebhookEventType =
6547
6798
  | 'appointment_create'
6548
6799
  | 'appointment_update'
6549
6800
  | 'callback_request_create'
6550
- | 'callback_request_update';
6801
+ | 'callback_request_update'
6802
+ | 'communication_send';
6551
6803
 
6552
6804
  export type ActiveLanguagesInput = {
6553
6805
  manageable?: InputMaybe<Scalars['Boolean']['input']>;
@@ -6573,6 +6825,12 @@ export type AllowedExternalCalendarAccountProvidersInput = {
6573
6825
  value?: InputMaybe<Array<ExternalCalendarProvider>>;
6574
6826
  };
6575
6827
 
6828
+ export type AllowedMeetingRoomProvidersInput = {
6829
+ manageable?: InputMaybe<Scalars['Boolean']['input']>;
6830
+ /** The allowed providers for meeting rooms. */
6831
+ value?: InputMaybe<Array<MeetingRoomProvider>>;
6832
+ };
6833
+
6576
6834
  export type AllowedPluginDomainsInput = {
6577
6835
  manageable?: InputMaybe<Scalars['Boolean']['input']>;
6578
6836
  /** The domains on which the plugin can be integrated. */