@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/dist/schema.d.ts CHANGED
@@ -139,6 +139,14 @@ export type AllowedExternalCalendarAccountProvidersEnterpriseSetting = {
139
139
  /** The providers from which an employee can choose to connect an external calendar account. */
140
140
  value: Array<ExternalCalendarProvider>;
141
141
  };
142
+ export type AllowedMeetingRoomProvidersEnterpriseSetting = {
143
+ createdAt: Scalars['ISO8601']['output'];
144
+ /** 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. */
145
+ manageable: Scalars['Boolean']['output'];
146
+ updatedAt: Scalars['ISO8601']['output'];
147
+ /** The allowed providers for meeting rooms. */
148
+ value: Array<MeetingRoomProvider>;
149
+ };
142
150
  export type AllowedPluginDomainsEnterpriseSetting = {
143
151
  createdAt: Scalars['ISO8601']['output'];
144
152
  /** 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. */
@@ -804,6 +812,20 @@ export type CallbackRequestsEnabledEnterpriseSetting = {
804
812
  /** This setting determines whether customers can request a callback. */
805
813
  value: Scalars['Boolean']['output'];
806
814
  };
815
+ export type Communication = {
816
+ channel: CommunicationChannel;
817
+ communicationReceiver: CommunicationReceiver;
818
+ communicationType: CommunicationType;
819
+ correlationId: Scalars['String']['output'];
820
+ createdAt: Scalars['ISO8601']['output'];
821
+ eventType: Scalars['String']['output'];
822
+ id: Scalars['ID']['output'];
823
+ processedAt: Scalars['ISO8601']['output'];
824
+ resourceId: Scalars['Int']['output'];
825
+ resourceType: CommunicationResourceType;
826
+ resourceVersion?: Maybe<Scalars['Int']['output']>;
827
+ scheduledAt: Scalars['ISO8601']['output'];
828
+ };
807
829
  export type CommunicationChannel = 'EMAIL' | 'TEXT_MESSAGE';
808
830
  export type CommunicationEmailEnterpriseSetting = {
809
831
  createdAt: Scalars['ISO8601']['output'];
@@ -813,6 +835,15 @@ export type CommunicationEmailEnterpriseSetting = {
813
835
  /** The default (non-localized) email address that receives callback requests when there is no office or employee email address. */
814
836
  value?: Maybe<Scalars['String']['output']>;
815
837
  };
838
+ export type CommunicationReceiver = Customer | Employee | Enterprise | Office | {
839
+ __typename?: "%other";
840
+ };
841
+ export type CommunicationResourceType = 'APPOINTMENT' | 'CALLBACK_REQUEST';
842
+ export type CommunicationSort = {
843
+ direction: SortDirection;
844
+ field: SortableCommunicationFields;
845
+ };
846
+ export type CommunicationType = 'NOTIFICATION' | 'REMINDER';
816
847
  export type Customer = {
817
848
  anonymizedAt?: Maybe<Scalars['ISO8601']['output']>;
818
849
  company?: Maybe<Scalars['String']['output']>;
@@ -1065,7 +1096,7 @@ export type DefinedAvailabilityEvent = {
1065
1096
  office: Office;
1066
1097
  start: Scalars['ISO8601']['output'];
1067
1098
  };
1068
- export type EmailProvider = 'DEFAULT' | 'MANDRILL' | 'MICROSOFT_GRAPH_API' | 'PRETEND' | 'SMTP';
1099
+ export type EmailProvider = 'DEFAULT' | 'MANDRILL' | 'MICROSOFT_GRAPH_API' | 'PRETEND' | 'SMTP' | 'WEBHOOK';
1069
1100
  export type EmailProviderEnterpriseSetting = {
1070
1101
  createdAt: Scalars['ISO8601']['output'];
1071
1102
  /** 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. */
@@ -1277,6 +1308,9 @@ export type EmployeeTranslationsCreateInput = {
1277
1308
  export type EmployeeTranslationsPatchInput = {
1278
1309
  function?: InputMaybe<Array<TranslationObjectInput>>;
1279
1310
  };
1311
+ export type Enterprise = {
1312
+ name: Scalars['String']['output'];
1313
+ };
1280
1314
  export type EnterpriseSettingTranslationInput = {
1281
1315
  language: Language;
1282
1316
  value?: InputMaybe<Scalars['String']['input']>;
@@ -1294,6 +1328,8 @@ export type EnterpriseSettings = {
1294
1328
  agentPrioritizationEnabled: AgentPrioritizationEnabledEnterpriseSetting;
1295
1329
  /** The providers from which an employee can choose to connect an external calendar account. */
1296
1330
  allowedExternalCalendarAccountProviders: AllowedExternalCalendarAccountProvidersEnterpriseSetting;
1331
+ /** The allowed providers for meeting rooms. */
1332
+ allowedMeetingRoomProviders: AllowedMeetingRoomProvidersEnterpriseSetting;
1297
1333
  /** The domains on which the plugin can be integrated. */
1298
1334
  allowedPluginDomains: AllowedPluginDomainsEnterpriseSetting;
1299
1335
  /** Manage the default auto accept setting value or disable manual manual accept. */
@@ -1406,6 +1442,8 @@ export type EnterpriseSettingsPatchInput = {
1406
1442
  agentPrioritizationEnabled?: InputMaybe<AgentPrioritizationEnabledInput>;
1407
1443
  /** The providers from which an employee can choose to connect an external calendar account. */
1408
1444
  allowedExternalCalendarAccountProviders?: InputMaybe<AllowedExternalCalendarAccountProvidersInput>;
1445
+ /** The allowed providers for meeting rooms. */
1446
+ allowedMeetingRoomProviders?: InputMaybe<AllowedMeetingRoomProvidersInput>;
1409
1447
  /** The domains on which the plugin can be integrated. */
1410
1448
  allowedPluginDomains?: InputMaybe<AllowedPluginDomainsInput>;
1411
1449
  /** Manage the default auto accept setting value or disable manual manual accept. */
@@ -2042,6 +2080,24 @@ export type ListingTranslationsPatchInput = {
2042
2080
  description?: InputMaybe<Array<TranslationObjectInput>>;
2043
2081
  name?: InputMaybe<Array<TranslationObjectInput>>;
2044
2082
  };
2083
+ export type LocalMeetingRoomCreateInput = {
2084
+ active: Scalars['Boolean']['input'];
2085
+ capacity: Scalars['Int']['input'];
2086
+ email?: InputMaybe<Scalars['String']['input']>;
2087
+ externalId?: InputMaybe<Scalars['String']['input']>;
2088
+ isWheelChairAccessible: Scalars['Boolean']['input'];
2089
+ name: Scalars['String']['input'];
2090
+ timeZone?: InputMaybe<Scalars['String']['input']>;
2091
+ };
2092
+ export type LocalMeetingRoomPatchInput = {
2093
+ active?: InputMaybe<Scalars['Boolean']['input']>;
2094
+ capacity?: InputMaybe<Scalars['Int']['input']>;
2095
+ email?: InputMaybe<Scalars['String']['input']>;
2096
+ externalId?: InputMaybe<Scalars['String']['input']>;
2097
+ isWheelChairAccessible?: InputMaybe<Scalars['Boolean']['input']>;
2098
+ name?: InputMaybe<Scalars['String']['input']>;
2099
+ timeZone?: InputMaybe<Scalars['String']['input']>;
2100
+ };
2045
2101
  export type LocalizedNamesEnterpriseSetting = {
2046
2102
  createdAt: Scalars['ISO8601']['output'];
2047
2103
  /** 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. */
@@ -2142,6 +2198,7 @@ export type ManagedExternalCalendarEvent = Managed & {
2142
2198
  id: Scalars['String']['output'];
2143
2199
  lastSyncedAt?: Maybe<Scalars['ISO8601']['output']>;
2144
2200
  location?: Maybe<ManagedExternalCalendarEventLocation>;
2201
+ phoneNumber?: Maybe<Scalars['String']['output']>;
2145
2202
  resourceId: Scalars['String']['output'];
2146
2203
  resourceType: ExternalCalendarEventResourceType;
2147
2204
  showAs: ShowAs;
@@ -2161,6 +2218,7 @@ export type ManagedExternalCalendarEventCreateInput = {
2161
2218
  hash?: InputMaybe<Scalars['String']['input']>;
2162
2219
  location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
2163
2220
  meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
2221
+ phoneNumber?: InputMaybe<Scalars['String']['input']>;
2164
2222
  resourceId: Scalars['String']['input'];
2165
2223
  resourceType: ExternalCalendarEventResourceType;
2166
2224
  showAs: ShowAs;
@@ -2196,6 +2254,7 @@ export type ManagedExternalCalendarEventPatchInput = {
2196
2254
  hash?: InputMaybe<Scalars['String']['input']>;
2197
2255
  location?: InputMaybe<ManagedExternalCalendarEventLocationInput>;
2198
2256
  meetingRoomId?: InputMaybe<Scalars['ID']['input']>;
2257
+ phoneNumber?: InputMaybe<Scalars['String']['input']>;
2199
2258
  resourceId?: InputMaybe<Scalars['String']['input']>;
2200
2259
  resourceType?: InputMaybe<ExternalCalendarEventResourceType>;
2201
2260
  showAs?: InputMaybe<ShowAs>;
@@ -2274,7 +2333,7 @@ export type MeetingRoom = {
2274
2333
  lastSyncedAt?: Maybe<Scalars['ISO8601']['output']>;
2275
2334
  name: Scalars['String']['output'];
2276
2335
  offices: Array<Office>;
2277
- provider: ExternalCalendarProvider;
2336
+ provider: MeetingRoomProvider;
2278
2337
  schedulingSettings: Array<MeetingRoomSchedulingSetting>;
2279
2338
  timeZone: Scalars['String']['output'];
2280
2339
  updatedAt: Scalars['ISO8601']['output'];
@@ -2330,6 +2389,7 @@ export type MeetingRoomEventEdge = {
2330
2389
  export type MeetingRoomPatchInput = {
2331
2390
  active?: InputMaybe<Scalars['Boolean']['input']>;
2332
2391
  };
2392
+ export type MeetingRoomProvider = 'LOCAL' | 'OFFICE365';
2333
2393
  export type MeetingRoomSchedulingSetting = {
2334
2394
  meetingRoom: MeetingRoom;
2335
2395
  meetingType: MeetingType;
@@ -2425,12 +2485,15 @@ export type Mutation = {
2425
2485
  createLeadSegment: LeadSegment;
2426
2486
  createListing: Listing;
2427
2487
  createListingTimeSlot: ListingTimeSlot;
2488
+ createLocalMeetingRoom: MeetingRoom;
2428
2489
  createManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
2429
2490
  createManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
2430
2491
  createMicrosoftDynamicsIntegrationConnectUrl: Scalars['String']['output'];
2431
2492
  createOffice: Office;
2432
2493
  createOfficeRelation: OfficeRelation;
2433
2494
  createQuestion: Question;
2495
+ createSamlIntegration: SamlIntegration;
2496
+ createScimToken: Scalars['String']['output'];
2434
2497
  createSessionConfigSessionEvent: Scalars['Boolean']['output'];
2435
2498
  createSessionDataSessionEvent: Scalars['Boolean']['output'];
2436
2499
  createStepShownSessionEvent: Scalars['Boolean']['output'];
@@ -2444,6 +2507,7 @@ export type Mutation = {
2444
2507
  * that user will be reverted (as if you called revertUnavailability first, see its description).
2445
2508
  */
2446
2509
  createUnavailability: Unavailability;
2510
+ createUnavailabilityEvent: Unavailability;
2447
2511
  createUploadFileLink: FileCreateUploadLinkResult;
2448
2512
  createVPaaSMeeting: PexipVPaaSParticipant;
2449
2513
  createWebhookConfiguration: WebhookConfiguration;
@@ -2460,11 +2524,13 @@ export type Mutation = {
2460
2524
  deleteLeadSegment: LeadSegment;
2461
2525
  deleteListing: Listing;
2462
2526
  deleteListingTimeSlot: ListingTimeSlot;
2527
+ deleteLocalMeetingRoom: MeetingRoom;
2463
2528
  deleteManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
2464
2529
  deleteManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
2465
2530
  deleteOffice: Office;
2466
2531
  deleteOfficeRelation: OfficeRelation;
2467
2532
  deleteQuestion: Question;
2533
+ deleteSamlIntegration: SamlIntegration;
2468
2534
  deleteStorageAccountConfig: StorageAccountConfig;
2469
2535
  deleteSubject: Subject;
2470
2536
  deleteSubjectGroup: SubjectGroup;
@@ -2495,6 +2561,7 @@ export type Mutation = {
2495
2561
  patchLeadSegment: LeadSegment;
2496
2562
  patchLeadSegmentCallbackRequestSetting: LeadSegmentCallbackRequestSetting;
2497
2563
  patchListing: Listing;
2564
+ patchLocalMeetingRoom: MeetingRoom;
2498
2565
  patchManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
2499
2566
  patchManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
2500
2567
  patchMeetingRoom: MeetingRoom;
@@ -2503,6 +2570,7 @@ export type Mutation = {
2503
2570
  patchOffice: Office;
2504
2571
  patchOfficeCallbackRequestSetting: OfficeCallbackRequestSetting;
2505
2572
  patchQuestion: Question;
2573
+ patchSamlIntegration: SamlIntegration;
2506
2574
  patchStaticTranslationOverrides: Array<StaticTranslationOverride>;
2507
2575
  patchStorageAccountConfig: StorageAccountConfig;
2508
2576
  patchSubject: Subject;
@@ -2572,6 +2640,9 @@ export type Mutation = {
2572
2640
  syncMeetingRooms: Scalars['Boolean']['output'];
2573
2641
  syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
2574
2642
  testWebhookConfiguration: WebhookDelivery;
2643
+ toggleRedirectToSaml: Scalars['Boolean']['output'];
2644
+ uploadSamlIdentityProviderMetadataByFile: SamlIntegration;
2645
+ uploadSamlIdentityProviderMetadataByUrl: SamlIntegration;
2575
2646
  upsertMicrosoftGraphAPIEmailConfiguration: MicrosoftGraphApiEmailProviderConfiguration;
2576
2647
  upsertOfficeRelation: GroupedOfficeRelation;
2577
2648
  };
@@ -2679,6 +2750,9 @@ export type MutationCreateListingTimeSlotArgs = {
2679
2750
  listingId: Scalars['ID']['input'];
2680
2751
  listingTimeSlotCreateInput: ListingTimeSlotCreateInput;
2681
2752
  };
2753
+ export type MutationCreateLocalMeetingRoomArgs = {
2754
+ input: LocalMeetingRoomCreateInput;
2755
+ };
2682
2756
  export type MutationCreateManagedExternalCalendarEventArgs = {
2683
2757
  input: ManagedExternalCalendarEventCreateInput;
2684
2758
  };
@@ -2727,6 +2801,9 @@ export type MutationCreateUnavailabilityArgs = {
2727
2801
  input: UnavailabilityCreateInput;
2728
2802
  revertOverlap?: InputMaybe<Scalars['Boolean']['input']>;
2729
2803
  };
2804
+ export type MutationCreateUnavailabilityEventArgs = {
2805
+ input: UnavailabilityEventCreateInput;
2806
+ };
2730
2807
  export type MutationCreateUploadFileLinkArgs = {
2731
2808
  input: FileCreateUploadLinkInput;
2732
2809
  };
@@ -2776,6 +2853,9 @@ export type MutationDeleteListingArgs = {
2776
2853
  export type MutationDeleteListingTimeSlotArgs = {
2777
2854
  id: Scalars['ID']['input'];
2778
2855
  };
2856
+ export type MutationDeleteLocalMeetingRoomArgs = {
2857
+ id: Scalars['ID']['input'];
2858
+ };
2779
2859
  export type MutationDeleteManagedExternalCalendarEventArgs = {
2780
2860
  id: Scalars['String']['input'];
2781
2861
  };
@@ -2895,6 +2975,10 @@ export type MutationPatchListingArgs = {
2895
2975
  id: Scalars['ID']['input'];
2896
2976
  listingPatchInput: ListingPatchInput;
2897
2977
  };
2978
+ export type MutationPatchLocalMeetingRoomArgs = {
2979
+ id: Scalars['ID']['input'];
2980
+ input: LocalMeetingRoomPatchInput;
2981
+ };
2898
2982
  export type MutationPatchManagedExternalCalendarEventArgs = {
2899
2983
  id: Scalars['String']['input'];
2900
2984
  input: ManagedExternalCalendarEventPatchInput;
@@ -2926,6 +3010,9 @@ export type MutationPatchQuestionArgs = {
2926
3010
  id: Scalars['ID']['input'];
2927
3011
  questionPatchInput: QuestionPatchInput;
2928
3012
  };
3013
+ export type MutationPatchSamlIntegrationArgs = {
3014
+ input: SamlIntegrationPatchInput;
3015
+ };
2929
3016
  export type MutationPatchStaticTranslationOverridesArgs = {
2930
3017
  staticTranslationOverridesPatchInput: Array<StaticTranslationOverridePatchInput>;
2931
3018
  };
@@ -3142,6 +3229,15 @@ export type MutationSyncMicrosoftDynamicsIntegrationCustomAttributesArgs = {
3142
3229
  export type MutationTestWebhookConfigurationArgs = {
3143
3230
  id: Scalars['ID']['input'];
3144
3231
  };
3232
+ export type MutationToggleRedirectToSamlArgs = {
3233
+ shouldRedirectToSaml: Scalars['Boolean']['input'];
3234
+ };
3235
+ export type MutationUploadSamlIdentityProviderMetadataByFileArgs = {
3236
+ metadataXml: Scalars['String']['input'];
3237
+ };
3238
+ export type MutationUploadSamlIdentityProviderMetadataByUrlArgs = {
3239
+ metadataUrl: Scalars['String']['input'];
3240
+ };
3145
3241
  export type MutationUpsertMicrosoftGraphApiEmailConfigurationArgs = {
3146
3242
  input: MicrosoftGraphApiEmailProviderConfigurationInput;
3147
3243
  };
@@ -3343,6 +3439,15 @@ export type PasswordAuthenticationEnabledEnterpriseSetting = {
3343
3439
  /** Whether password authentication is used. */
3344
3440
  value: Scalars['Boolean']['output'];
3345
3441
  };
3442
+ export type PexipInfinityCall = {
3443
+ conferenceNode: Scalars['String']['output'];
3444
+ dialInCode: Scalars['String']['output'];
3445
+ dialInNumber: Scalars['String']['output'];
3446
+ id: Scalars['ID']['output'];
3447
+ pin: Scalars['String']['output'];
3448
+ vmrId: Scalars['Int']['output'];
3449
+ vmrName: Scalars['String']['output'];
3450
+ };
3346
3451
  export type PexipVPaaSParticipant = {
3347
3452
  pexipVPaaSApiAddress: Scalars['String']['output'];
3348
3453
  pexipVPaaSMeetingId: Scalars['String']['output'];
@@ -3371,6 +3476,7 @@ export type Query = {
3371
3476
  apiClients: Array<ApiClient>;
3372
3477
  appliedTemplates: AppliedTemplateConnection;
3373
3478
  appointment: Appointment;
3479
+ appointmentCommunications: Array<Communication>;
3374
3480
  appointmentParticipant: AppointmentParticipant;
3375
3481
  appointmentUnavailabilityForEmployee: Array<Unavailability>;
3376
3482
  appointments: AppointmentConnection;
@@ -3441,14 +3547,19 @@ export type Query = {
3441
3547
  officeEmployeeCoverageRegionSchedulingSettings: Array<OfficeEmployeeCoverageRegionSchedulingSetting>;
3442
3548
  officeEmployeeSubjectCoverageRegionSchedulingSettings: Array<OfficeEmployeeSubjectCoverageRegionSchedulingSetting>;
3443
3549
  offices: OfficeConnection;
3550
+ pexipInfinityCall: PexipInfinityCall;
3444
3551
  question: Question;
3445
3552
  questions: Array<Question>;
3446
3553
  regions: RegionConnection;
3554
+ samlIntegration?: Maybe<SamlIntegration>;
3447
3555
  schedulableEmployees: Array<Employee>;
3448
3556
  schedulableMeetingRooms: Array<MeetingRoom>;
3449
3557
  schedulableMeetingTypes: Array<MeetingType>;
3450
3558
  schedulableOffices: Array<Office>;
3451
3559
  schedulableSubjects: Array<Subject>;
3560
+ scheduledAppointmentCommunications: Array<ScheduledCommunication>;
3561
+ scimEndpoint: Scalars['String']['output'];
3562
+ scimTokens: Array<ScimToken>;
3452
3563
  searchRegions: Array<Region>;
3453
3564
  staticTranslationOverrides: Array<StaticTranslationOverride>;
3454
3565
  staticTranslations: Scalars['JSONObject']['output'];
@@ -3528,6 +3639,11 @@ export type QueryAppliedTemplatesArgs = {
3528
3639
  export type QueryAppointmentArgs = {
3529
3640
  id?: InputMaybe<Scalars['ID']['input']>;
3530
3641
  token?: InputMaybe<Scalars['String']['input']>;
3642
+ version?: InputMaybe<Scalars['Int']['input']>;
3643
+ };
3644
+ export type QueryAppointmentCommunicationsArgs = {
3645
+ appointmentId: Scalars['ID']['input'];
3646
+ sort?: InputMaybe<Array<CommunicationSort>>;
3531
3647
  };
3532
3648
  export type QueryAppointmentParticipantArgs = {
3533
3649
  token: Scalars['String']['input'];
@@ -3986,6 +4102,9 @@ export type QueryOfficesArgs = {
3986
4102
  virtual?: InputMaybe<Scalars['Boolean']['input']>;
3987
4103
  withDeleted?: InputMaybe<Scalars['Boolean']['input']>;
3988
4104
  };
4105
+ export type QueryPexipInfinityCallArgs = {
4106
+ token: Scalars['String']['input'];
4107
+ };
3989
4108
  export type QueryQuestionArgs = {
3990
4109
  id: Scalars['ID']['input'];
3991
4110
  };
@@ -4111,6 +4230,11 @@ export type QuerySchedulableSubjectsArgs = {
4111
4230
  subjectGroupIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4112
4231
  subjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4113
4232
  };
4233
+ export type QueryScheduledAppointmentCommunicationsArgs = {
4234
+ appointmentId: Scalars['ID']['input'];
4235
+ communicationType?: InputMaybe<Array<CommunicationType>>;
4236
+ sort?: InputMaybe<Array<ScheduledCommunicationSort>>;
4237
+ };
4114
4238
  export type QuerySearchRegionsArgs = {
4115
4239
  code?: InputMaybe<Array<Scalars['String']['input']>>;
4116
4240
  countryCode?: InputMaybe<Scalars['String']['input']>;
@@ -4232,6 +4356,8 @@ export type QueryWebhookConfigurationArgs = {
4232
4356
  id: Scalars['ID']['input'];
4233
4357
  };
4234
4358
  export type QueryWebhookConfigurationsArgs = {
4359
+ active?: InputMaybe<Scalars['Boolean']['input']>;
4360
+ eventType?: InputMaybe<Array<WebhookEventType>>;
4235
4361
  withDeleted?: InputMaybe<Scalars['Boolean']['input']>;
4236
4362
  };
4237
4363
  export type QueryWebhookDeliveriesArgs = {
@@ -4365,7 +4491,61 @@ export type RenderedTemplateMeta = {
4365
4491
  receiver: Receiver;
4366
4492
  timeZone: Scalars['String']['output'];
4367
4493
  };
4368
- export type ResourceType = 'API_CLIENT' | 'APPOINTMENT' | 'CUSTOMER' | 'EMPLOYEE' | 'ENTERPRISE_SETTING' | 'EXTERNAL_CALENDAR_ACCOUNT' | 'LEAD_SEGMENT' | 'LISTING' | 'MEETING_TYPE' | 'OFFICE' | 'OFFICE_RELATION' | 'SUBJECT' | 'SUBJECT_GROUP';
4494
+ export type ResourceType = 'API_CLIENT' | 'APPOINTMENT' | 'CUSTOMER' | 'EMPLOYEE' | 'ENTERPRISE_SETTING' | 'EXTERNAL_CALENDAR_ACCOUNT' | 'LEAD_SEGMENT' | 'LISTING' | 'MEETING_TYPE' | 'OFFICE' | 'OFFICE_RELATION' | 'SCIM_TOKEN' | 'SUBJECT' | 'SUBJECT_GROUP';
4495
+ export type SamlIntegration = {
4496
+ active: Scalars['Boolean']['output'];
4497
+ forceAuthentication: Scalars['Boolean']['output'];
4498
+ identityProviderMetadataUrl?: Maybe<Scalars['String']['output']>;
4499
+ identityProviderSignatureKey?: Maybe<SamlIntegrationIdentityProviderKey>;
4500
+ serviceProviderEncryptionKeys: Array<SamlIntegrationServiceProviderKey>;
4501
+ serviceProviderMetadataUrl: Scalars['String']['output'];
4502
+ serviceProviderSignatureKeys: Array<SamlIntegrationServiceProviderKey>;
4503
+ signServiceProviderMetadata: Scalars['Boolean']['output'];
4504
+ singleLogoutServiceUrl?: Maybe<Scalars['String']['output']>;
4505
+ singleSignOnServiceUrl?: Maybe<Scalars['String']['output']>;
4506
+ validateSignature: Scalars['Boolean']['output'];
4507
+ wantAssertionsEncrypted: Scalars['Boolean']['output'];
4508
+ wantAssertionsSigned: Scalars['Boolean']['output'];
4509
+ wantAuthnRequestsSigned: Scalars['Boolean']['output'];
4510
+ };
4511
+ export type SamlIntegrationIdentityProviderKey = {
4512
+ certificate: Scalars['String']['output'];
4513
+ expiresAt: Scalars['ISO8601']['output'];
4514
+ };
4515
+ export type SamlIntegrationKeyStatus = 'ACTIVE' | 'DISABLED' | 'PASSIVE';
4516
+ export type SamlIntegrationPatchInput = {
4517
+ active?: InputMaybe<Scalars['Boolean']['input']>;
4518
+ forceAuthentication?: InputMaybe<Scalars['Boolean']['input']>;
4519
+ signServiceProviderMetadata?: InputMaybe<Scalars['Boolean']['input']>;
4520
+ validateSignature?: InputMaybe<Scalars['Boolean']['input']>;
4521
+ wantAssertionsEncrypted?: InputMaybe<Scalars['Boolean']['input']>;
4522
+ wantAssertionsSigned?: InputMaybe<Scalars['Boolean']['input']>;
4523
+ wantAuthnRequestsSigned?: InputMaybe<Scalars['Boolean']['input']>;
4524
+ };
4525
+ export type SamlIntegrationServiceProviderKey = {
4526
+ algorithm: Scalars['String']['output'];
4527
+ certificate: Scalars['String']['output'];
4528
+ expiresAt: Scalars['ISO8601']['output'];
4529
+ id: Scalars['String']['output'];
4530
+ publicKey: Scalars['String']['output'];
4531
+ status: SamlIntegrationKeyStatus;
4532
+ };
4533
+ export type ScheduledCommunication = {
4534
+ channel: CommunicationChannel;
4535
+ communicationReceiver: CommunicationReceiver;
4536
+ communicationType: CommunicationType;
4537
+ correlationId: Scalars['String']['output'];
4538
+ createdAt: Scalars['ISO8601']['output'];
4539
+ eventType: Scalars['String']['output'];
4540
+ resourceId: Scalars['Int']['output'];
4541
+ resourceType: CommunicationResourceType;
4542
+ resourceVersion?: Maybe<Scalars['Int']['output']>;
4543
+ scheduledAt: Scalars['ISO8601']['output'];
4544
+ };
4545
+ export type ScheduledCommunicationSort = {
4546
+ direction: SortDirection;
4547
+ field: SortableScheduledCommunicationFields;
4548
+ };
4369
4549
  export type ScimIntegration = BaseIntegration & {
4370
4550
  active: Scalars['Boolean']['output'];
4371
4551
  authToken?: Maybe<Scalars['String']['output']>;
@@ -4373,6 +4553,13 @@ export type ScimIntegration = BaseIntegration & {
4373
4553
  integrationType: IntegrationType;
4374
4554
  name: Scalars['String']['output'];
4375
4555
  };
4556
+ export type ScimToken = {
4557
+ createdAt: Scalars['ISO8601']['output'];
4558
+ deletedAt?: Maybe<Scalars['ISO8601']['output']>;
4559
+ expiresAt: Scalars['ISO8601']['output'];
4560
+ id: Scalars['ID']['output'];
4561
+ updatedAt: Scalars['ISO8601']['output'];
4562
+ };
4376
4563
  export type SecondaryParticipantInput = {
4377
4564
  participantId: Scalars['ID']['input'];
4378
4565
  type: ParticipantType;
@@ -4478,6 +4665,7 @@ export type SortableAppointmentFields = 'createdAt' | 'externalId' | 'id' | 'sta
4478
4665
  export type SortableAuditLogFields = 'event' | 'id' | 'modifiedAt' | 'resourceId' | 'resourceType';
4479
4666
  export type SortableAvailabilityTemplateFields = 'id' | 'name' | 'order' | 'type';
4480
4667
  export type SortableCallbackRequestFields = 'createdAt' | 'externalId' | 'id' | 'updatedAt';
4668
+ export type SortableCommunicationFields = 'processedAt';
4481
4669
  export type SortableCustomerFields = 'createdAt' | 'email' | 'firstName' | 'id' | 'lastName' | 'updatedAt';
4482
4670
  export type SortableEmployeeFields = 'createdAt' | 'email' | 'externalId' | 'firstName' | 'id' | 'lastName' | 'status' | 'updatedAt' | 'username';
4483
4671
  export type SortableFileFields = 'blobName' | 'createdAt' | 'id' | 'originalFileName' | 'scanResultType' | 'updatedAt';
@@ -4488,6 +4676,7 @@ export type SortableManagedExternalCalendarEventFields = 'createdAt' | 'updatedA
4488
4676
  export type SortableMeetingRoomFields = 'active' | 'capacity' | 'createdAt' | 'email' | 'externalId' | 'id' | 'name' | 'updatedAt';
4489
4677
  export type SortableOfficeFields = 'active' | 'createdAt' | 'externalId' | 'id' | 'name' | 'updatedAt';
4490
4678
  export type SortableRegionFields = 'code' | 'countryCode' | 'id' | 'level' | 'name' | 'parentId';
4679
+ export type SortableScheduledCommunicationFields = 'scheduledAt';
4491
4680
  export type SortableSubjectFields = 'createdAt' | 'externalId' | 'id' | 'name' | 'order' | 'subjectGroupId' | 'subjectGroupName' | 'updatedAt';
4492
4681
  export type SortableSubjectGroupFields = 'createdAt' | 'externalId' | 'id' | 'name' | 'order' | 'updatedAt';
4493
4682
  export type StaticTranslationModule = 'BACKOFFICE_APP' | 'CALENDAR_EVENT_TEMPLATE' | 'EMAIL_TEMPLATE' | 'INSIGHTS' | 'PLUGIN' | 'TEXT_MESSAGE_TEMPLATE' | 'VIDEO';
@@ -4800,7 +4989,7 @@ export type SubjectTranslationsPatchInput = {
4800
4989
  };
4801
4990
  export type TemplateContext = 'APPOINTMENT' | 'AVAILABILITY' | 'CALLBACK_REQUEST' | 'EMPLOYEE' | 'EXTERNAL_CALENDAR_ACCOUNT' | 'LISTING_TIME_SLOT' | 'WEBHOOK_DELIVERY';
4802
4991
  export type TemplateReceiverType = 'CUSTOMER' | 'EMPLOYEE' | 'ENTERPRISE' | 'OFFICE';
4803
- export type TextMessageProvider = 'DEFAULT' | 'PRETEND' | 'SPRYNG' | 'TWILIO';
4992
+ export type TextMessageProvider = 'DEFAULT' | 'PRETEND' | 'SPRYNG' | 'TWILIO' | 'WEBHOOK';
4804
4993
  export type TextMessageProviderEnterpriseSetting = {
4805
4994
  createdAt: Scalars['ISO8601']['output'];
4806
4995
  /** 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. */
@@ -4968,6 +5157,11 @@ export type UnavailabilityEdge = {
4968
5157
  cursor: Scalars['String']['output'];
4969
5158
  node: Unavailability;
4970
5159
  };
5160
+ export type UnavailabilityEventCreateInput = {
5161
+ employeeId: Scalars['ID']['input'];
5162
+ end: Scalars['ISO8601']['input'];
5163
+ start: Scalars['ISO8601']['input'];
5164
+ };
4971
5165
  export type UnavailabilityRevertInput = {
4972
5166
  employeeId: Scalars['ID']['input'];
4973
5167
  /** Is inclusive. */
@@ -5010,7 +5204,7 @@ export type ValidatorTranslationsCreateInput = {
5010
5204
  export type ValidatorTranslationsPatchInput = {
5011
5205
  errorMessage?: InputMaybe<Array<TranslationObjectInput>>;
5012
5206
  };
5013
- export type VideoProvider = 'EXTERNAL_PROVIDER_ACCOUNT' | 'MICROSOFT_TEAMS_APPLICATION_AUTH' | 'PEXIP' | 'STATIC' | 'TEMPLATE_GENERATED_URL';
5207
+ export type VideoProvider = 'EXTERNAL_PROVIDER_ACCOUNT' | 'MICROSOFT_TEAMS_APPLICATION_AUTH' | 'PEXIP' | 'PEXIP_INFINITY' | 'STATIC' | 'TEMPLATE_GENERATED_URL';
5014
5208
  export type VideoProviderEnterpriseSetting = {
5015
5209
  createdAt: Scalars['ISO8601']['output'];
5016
5210
  /** 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. */
@@ -5113,7 +5307,7 @@ export type WebhookDeliveryEdge = {
5113
5307
  cursor: Scalars['String']['output'];
5114
5308
  node: WebhookDelivery;
5115
5309
  };
5116
- export type WebhookEventType = 'appointment_create' | 'appointment_update' | 'callback_request_create' | 'callback_request_update';
5310
+ export type WebhookEventType = 'appointment_create' | 'appointment_update' | 'callback_request_create' | 'callback_request_update' | 'communication_send';
5117
5311
  export type ActiveLanguagesInput = {
5118
5312
  manageable?: InputMaybe<Scalars['Boolean']['input']>;
5119
5313
  /** The languages supported by the enterprise. */
@@ -5134,6 +5328,11 @@ export type AllowedExternalCalendarAccountProvidersInput = {
5134
5328
  /** The providers from which an employee can choose to connect an external calendar account. */
5135
5329
  value?: InputMaybe<Array<ExternalCalendarProvider>>;
5136
5330
  };
5331
+ export type AllowedMeetingRoomProvidersInput = {
5332
+ manageable?: InputMaybe<Scalars['Boolean']['input']>;
5333
+ /** The allowed providers for meeting rooms. */
5334
+ value?: InputMaybe<Array<MeetingRoomProvider>>;
5335
+ };
5137
5336
  export type AllowedPluginDomainsInput = {
5138
5337
  manageable?: InputMaybe<Scalars['Boolean']['input']>;
5139
5338
  /** The domains on which the plugin can be integrated. */