@pexip-engage-public/graphql 1.0.73-canary-20250527085440 → 1.0.73

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. */
@@ -1320,6 +1328,8 @@ export type EnterpriseSettings = {
1320
1328
  agentPrioritizationEnabled: AgentPrioritizationEnabledEnterpriseSetting;
1321
1329
  /** The providers from which an employee can choose to connect an external calendar account. */
1322
1330
  allowedExternalCalendarAccountProviders: AllowedExternalCalendarAccountProvidersEnterpriseSetting;
1331
+ /** The allowed providers for meeting rooms. */
1332
+ allowedMeetingRoomProviders: AllowedMeetingRoomProvidersEnterpriseSetting;
1323
1333
  /** The domains on which the plugin can be integrated. */
1324
1334
  allowedPluginDomains: AllowedPluginDomainsEnterpriseSetting;
1325
1335
  /** Manage the default auto accept setting value or disable manual manual accept. */
@@ -1432,6 +1442,8 @@ export type EnterpriseSettingsPatchInput = {
1432
1442
  agentPrioritizationEnabled?: InputMaybe<AgentPrioritizationEnabledInput>;
1433
1443
  /** The providers from which an employee can choose to connect an external calendar account. */
1434
1444
  allowedExternalCalendarAccountProviders?: InputMaybe<AllowedExternalCalendarAccountProvidersInput>;
1445
+ /** The allowed providers for meeting rooms. */
1446
+ allowedMeetingRoomProviders?: InputMaybe<AllowedMeetingRoomProvidersInput>;
1435
1447
  /** The domains on which the plugin can be integrated. */
1436
1448
  allowedPluginDomains?: InputMaybe<AllowedPluginDomainsInput>;
1437
1449
  /** Manage the default auto accept setting value or disable manual manual accept. */
@@ -2068,6 +2080,24 @@ export type ListingTranslationsPatchInput = {
2068
2080
  description?: InputMaybe<Array<TranslationObjectInput>>;
2069
2081
  name?: InputMaybe<Array<TranslationObjectInput>>;
2070
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
+ };
2071
2101
  export type LocalizedNamesEnterpriseSetting = {
2072
2102
  createdAt: Scalars['ISO8601']['output'];
2073
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. */
@@ -2303,7 +2333,7 @@ export type MeetingRoom = {
2303
2333
  lastSyncedAt?: Maybe<Scalars['ISO8601']['output']>;
2304
2334
  name: Scalars['String']['output'];
2305
2335
  offices: Array<Office>;
2306
- provider: ExternalCalendarProvider;
2336
+ provider: MeetingRoomProvider;
2307
2337
  schedulingSettings: Array<MeetingRoomSchedulingSetting>;
2308
2338
  timeZone: Scalars['String']['output'];
2309
2339
  updatedAt: Scalars['ISO8601']['output'];
@@ -2359,6 +2389,7 @@ export type MeetingRoomEventEdge = {
2359
2389
  export type MeetingRoomPatchInput = {
2360
2390
  active?: InputMaybe<Scalars['Boolean']['input']>;
2361
2391
  };
2392
+ export type MeetingRoomProvider = 'LOCAL' | 'OFFICE365';
2362
2393
  export type MeetingRoomSchedulingSetting = {
2363
2394
  meetingRoom: MeetingRoom;
2364
2395
  meetingType: MeetingType;
@@ -2454,12 +2485,15 @@ export type Mutation = {
2454
2485
  createLeadSegment: LeadSegment;
2455
2486
  createListing: Listing;
2456
2487
  createListingTimeSlot: ListingTimeSlot;
2488
+ createLocalMeetingRoom: MeetingRoom;
2457
2489
  createManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
2458
2490
  createManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
2459
2491
  createMicrosoftDynamicsIntegrationConnectUrl: Scalars['String']['output'];
2460
2492
  createOffice: Office;
2461
2493
  createOfficeRelation: OfficeRelation;
2462
2494
  createQuestion: Question;
2495
+ createSamlIntegration: SamlIntegration;
2496
+ createScimToken: Scalars['String']['output'];
2463
2497
  createSessionConfigSessionEvent: Scalars['Boolean']['output'];
2464
2498
  createSessionDataSessionEvent: Scalars['Boolean']['output'];
2465
2499
  createStepShownSessionEvent: Scalars['Boolean']['output'];
@@ -2473,6 +2507,7 @@ export type Mutation = {
2473
2507
  * that user will be reverted (as if you called revertUnavailability first, see its description).
2474
2508
  */
2475
2509
  createUnavailability: Unavailability;
2510
+ createUnavailabilityEvent: Unavailability;
2476
2511
  createUploadFileLink: FileCreateUploadLinkResult;
2477
2512
  createVPaaSMeeting: PexipVPaaSParticipant;
2478
2513
  createWebhookConfiguration: WebhookConfiguration;
@@ -2489,11 +2524,13 @@ export type Mutation = {
2489
2524
  deleteLeadSegment: LeadSegment;
2490
2525
  deleteListing: Listing;
2491
2526
  deleteListingTimeSlot: ListingTimeSlot;
2527
+ deleteLocalMeetingRoom: MeetingRoom;
2492
2528
  deleteManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
2493
2529
  deleteManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
2494
2530
  deleteOffice: Office;
2495
2531
  deleteOfficeRelation: OfficeRelation;
2496
2532
  deleteQuestion: Question;
2533
+ deleteSamlIntegration: SamlIntegration;
2497
2534
  deleteStorageAccountConfig: StorageAccountConfig;
2498
2535
  deleteSubject: Subject;
2499
2536
  deleteSubjectGroup: SubjectGroup;
@@ -2524,6 +2561,7 @@ export type Mutation = {
2524
2561
  patchLeadSegment: LeadSegment;
2525
2562
  patchLeadSegmentCallbackRequestSetting: LeadSegmentCallbackRequestSetting;
2526
2563
  patchListing: Listing;
2564
+ patchLocalMeetingRoom: MeetingRoom;
2527
2565
  patchManagedExternalCalendarEvent: ManagedExternalCalendarEvent;
2528
2566
  patchManagedExternalOnlineMeeting: ManagedExternalOnlineMeeting;
2529
2567
  patchMeetingRoom: MeetingRoom;
@@ -2532,6 +2570,7 @@ export type Mutation = {
2532
2570
  patchOffice: Office;
2533
2571
  patchOfficeCallbackRequestSetting: OfficeCallbackRequestSetting;
2534
2572
  patchQuestion: Question;
2573
+ patchSamlIntegration: SamlIntegration;
2535
2574
  patchStaticTranslationOverrides: Array<StaticTranslationOverride>;
2536
2575
  patchStorageAccountConfig: StorageAccountConfig;
2537
2576
  patchSubject: Subject;
@@ -2601,6 +2640,9 @@ export type Mutation = {
2601
2640
  syncMeetingRooms: Scalars['Boolean']['output'];
2602
2641
  syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
2603
2642
  testWebhookConfiguration: WebhookDelivery;
2643
+ toggleRedirectToSaml: Scalars['Boolean']['output'];
2644
+ uploadSamlIdentityProviderMetadataByFile: SamlIntegration;
2645
+ uploadSamlIdentityProviderMetadataByUrl: SamlIntegration;
2604
2646
  upsertMicrosoftGraphAPIEmailConfiguration: MicrosoftGraphApiEmailProviderConfiguration;
2605
2647
  upsertOfficeRelation: GroupedOfficeRelation;
2606
2648
  };
@@ -2708,6 +2750,9 @@ export type MutationCreateListingTimeSlotArgs = {
2708
2750
  listingId: Scalars['ID']['input'];
2709
2751
  listingTimeSlotCreateInput: ListingTimeSlotCreateInput;
2710
2752
  };
2753
+ export type MutationCreateLocalMeetingRoomArgs = {
2754
+ input: LocalMeetingRoomCreateInput;
2755
+ };
2711
2756
  export type MutationCreateManagedExternalCalendarEventArgs = {
2712
2757
  input: ManagedExternalCalendarEventCreateInput;
2713
2758
  };
@@ -2756,6 +2801,9 @@ export type MutationCreateUnavailabilityArgs = {
2756
2801
  input: UnavailabilityCreateInput;
2757
2802
  revertOverlap?: InputMaybe<Scalars['Boolean']['input']>;
2758
2803
  };
2804
+ export type MutationCreateUnavailabilityEventArgs = {
2805
+ input: UnavailabilityEventCreateInput;
2806
+ };
2759
2807
  export type MutationCreateUploadFileLinkArgs = {
2760
2808
  input: FileCreateUploadLinkInput;
2761
2809
  };
@@ -2805,6 +2853,9 @@ export type MutationDeleteListingArgs = {
2805
2853
  export type MutationDeleteListingTimeSlotArgs = {
2806
2854
  id: Scalars['ID']['input'];
2807
2855
  };
2856
+ export type MutationDeleteLocalMeetingRoomArgs = {
2857
+ id: Scalars['ID']['input'];
2858
+ };
2808
2859
  export type MutationDeleteManagedExternalCalendarEventArgs = {
2809
2860
  id: Scalars['String']['input'];
2810
2861
  };
@@ -2924,6 +2975,10 @@ export type MutationPatchListingArgs = {
2924
2975
  id: Scalars['ID']['input'];
2925
2976
  listingPatchInput: ListingPatchInput;
2926
2977
  };
2978
+ export type MutationPatchLocalMeetingRoomArgs = {
2979
+ id: Scalars['ID']['input'];
2980
+ input: LocalMeetingRoomPatchInput;
2981
+ };
2927
2982
  export type MutationPatchManagedExternalCalendarEventArgs = {
2928
2983
  id: Scalars['String']['input'];
2929
2984
  input: ManagedExternalCalendarEventPatchInput;
@@ -2955,6 +3010,9 @@ export type MutationPatchQuestionArgs = {
2955
3010
  id: Scalars['ID']['input'];
2956
3011
  questionPatchInput: QuestionPatchInput;
2957
3012
  };
3013
+ export type MutationPatchSamlIntegrationArgs = {
3014
+ input: SamlIntegrationPatchInput;
3015
+ };
2958
3016
  export type MutationPatchStaticTranslationOverridesArgs = {
2959
3017
  staticTranslationOverridesPatchInput: Array<StaticTranslationOverridePatchInput>;
2960
3018
  };
@@ -3171,6 +3229,15 @@ export type MutationSyncMicrosoftDynamicsIntegrationCustomAttributesArgs = {
3171
3229
  export type MutationTestWebhookConfigurationArgs = {
3172
3230
  id: Scalars['ID']['input'];
3173
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
+ };
3174
3241
  export type MutationUpsertMicrosoftGraphApiEmailConfigurationArgs = {
3175
3242
  input: MicrosoftGraphApiEmailProviderConfigurationInput;
3176
3243
  };
@@ -3484,12 +3551,15 @@ export type Query = {
3484
3551
  question: Question;
3485
3552
  questions: Array<Question>;
3486
3553
  regions: RegionConnection;
3554
+ samlIntegration?: Maybe<SamlIntegration>;
3487
3555
  schedulableEmployees: Array<Employee>;
3488
3556
  schedulableMeetingRooms: Array<MeetingRoom>;
3489
3557
  schedulableMeetingTypes: Array<MeetingType>;
3490
3558
  schedulableOffices: Array<Office>;
3491
3559
  schedulableSubjects: Array<Subject>;
3492
3560
  scheduledAppointmentCommunications: Array<ScheduledCommunication>;
3561
+ scimEndpoint: Scalars['String']['output'];
3562
+ scimTokens: Array<ScimToken>;
3493
3563
  searchRegions: Array<Region>;
3494
3564
  staticTranslationOverrides: Array<StaticTranslationOverride>;
3495
3565
  staticTranslations: Scalars['JSONObject']['output'];
@@ -4421,7 +4491,45 @@ export type RenderedTemplateMeta = {
4421
4491
  receiver: Receiver;
4422
4492
  timeZone: Scalars['String']['output'];
4423
4493
  };
4424
- 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
+ };
4425
4533
  export type ScheduledCommunication = {
4426
4534
  channel: CommunicationChannel;
4427
4535
  communicationReceiver: CommunicationReceiver;
@@ -4445,6 +4553,13 @@ export type ScimIntegration = BaseIntegration & {
4445
4553
  integrationType: IntegrationType;
4446
4554
  name: Scalars['String']['output'];
4447
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
+ };
4448
4563
  export type SecondaryParticipantInput = {
4449
4564
  participantId: Scalars['ID']['input'];
4450
4565
  type: ParticipantType;
@@ -5042,6 +5157,11 @@ export type UnavailabilityEdge = {
5042
5157
  cursor: Scalars['String']['output'];
5043
5158
  node: Unavailability;
5044
5159
  };
5160
+ export type UnavailabilityEventCreateInput = {
5161
+ employeeId: Scalars['ID']['input'];
5162
+ end: Scalars['ISO8601']['input'];
5163
+ start: Scalars['ISO8601']['input'];
5164
+ };
5045
5165
  export type UnavailabilityRevertInput = {
5046
5166
  employeeId: Scalars['ID']['input'];
5047
5167
  /** Is inclusive. */
@@ -5208,6 +5328,11 @@ export type AllowedExternalCalendarAccountProvidersInput = {
5208
5328
  /** The providers from which an employee can choose to connect an external calendar account. */
5209
5329
  value?: InputMaybe<Array<ExternalCalendarProvider>>;
5210
5330
  };
5331
+ export type AllowedMeetingRoomProvidersInput = {
5332
+ manageable?: InputMaybe<Scalars['Boolean']['input']>;
5333
+ /** The allowed providers for meeting rooms. */
5334
+ value?: InputMaybe<Array<MeetingRoomProvider>>;
5335
+ };
5211
5336
  export type AllowedPluginDomainsInput = {
5212
5337
  manageable?: InputMaybe<Scalars['Boolean']['input']>;
5213
5338
  /** The domains on which the plugin can be integrated. */