@pexip-engage-public/graphql 1.7.5 → 1.7.7

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
@@ -498,7 +498,8 @@ export type AppointmentEventType =
498
498
  | 'RESCHEDULED_BY_EMPLOYEE'
499
499
  | 'SECONDARY_PARTICIPANTS_UPDATED'
500
500
  | 'SECONDARY_PARTICIPANT_ADDED'
501
- | 'SECONDARY_PARTICIPANT_REMOVED';
501
+ | 'SECONDARY_PARTICIPANT_REMOVED'
502
+ | 'UPDATE_APPOINTMENT_DETAILS';
502
503
 
503
504
  export type AppointmentIdentity = {
504
505
  backofficeUrl: Scalars['String']['output'];
@@ -680,7 +681,8 @@ export type AppointmentTemplateName =
680
681
  | 'RESCHEDULED_BY_EMPLOYEE'
681
682
  | 'SECONDARY_PARTICIPANTS_UPDATED'
682
683
  | 'SECONDARY_PARTICIPANT_ADDED'
683
- | 'SECONDARY_PARTICIPANT_REMOVED';
684
+ | 'SECONDARY_PARTICIPANT_REMOVED'
685
+ | 'UPDATE_APPOINTMENT_DETAILS';
684
686
 
685
687
  export type AppointmentTextMessageMeta = {
686
688
  eventType: Scalars['String']['input'];
@@ -1411,6 +1413,34 @@ export type CustomerSort = {
1411
1413
  field: SortableCustomerFields;
1412
1414
  };
1413
1415
 
1416
+ export type DataExport = {
1417
+ active: Scalars['Boolean']['output'];
1418
+ createdAt: Scalars['ISO8601']['output'];
1419
+ exportMode: DataExportMode;
1420
+ id: Scalars['Int']['output'];
1421
+ lastSuccessfulExport?: Maybe<Scalars['ISO8601']['output']>;
1422
+ lastSuccessfulExportRecords?: Maybe<Scalars['Int']['output']>;
1423
+ type: DataExportType;
1424
+ updatedAt: Scalars['ISO8601']['output'];
1425
+ };
1426
+
1427
+ export type DataExportFile = {
1428
+ /** Size of the file in bytes */
1429
+ contentLength?: Maybe<Scalars['Float']['output']>;
1430
+ lastModified?: Maybe<Scalars['ISO8601']['output']>;
1431
+ name: Scalars['String']['output'];
1432
+ };
1433
+
1434
+ export type DataExportMode =
1435
+ | 'FULL_SNAPSHOT'
1436
+ | 'INCREMENTAL';
1437
+
1438
+ export type DataExportType =
1439
+ | 'EXPERTISE'
1440
+ | 'MEETING_ROOMS'
1441
+ | 'MEETING_ROOM_SCHEDULING_SETTINGS'
1442
+ | 'OFFICE_RELATIONS';
1443
+
1414
1444
  export type DataRetentionDurationEnterpriseSetting = {
1415
1445
  createdAt: Scalars['ISO8601']['output'];
1416
1446
  /** 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. */
@@ -1673,6 +1703,7 @@ export type Employee = {
1673
1703
  communicationEmail?: Maybe<Scalars['String']['output']>;
1674
1704
  createdAt: Scalars['ISO8601']['output'];
1675
1705
  deletedAt?: Maybe<Scalars['ISO8601']['output']>;
1706
+ description?: Maybe<TranslationObject>;
1676
1707
  /** Email address intended for identification and login purposes. */
1677
1708
  email: Scalars['String']['output'];
1678
1709
  externalCalendarAccounts: Array<ExternalCalendarAccount>;
@@ -1808,6 +1839,7 @@ export type EmployeeNotificationSettingsEnterpriseSetting = {
1808
1839
  export type EmployeePatchAccess = {
1809
1840
  availableRoles: Scalars['Boolean']['output'];
1810
1841
  communicationEmail: Scalars['Boolean']['output'];
1842
+ description: Scalars['Boolean']['output'];
1811
1843
  email: Scalars['Boolean']['output'];
1812
1844
  externalId: Scalars['Boolean']['output'];
1813
1845
  firstName: Scalars['Boolean']['output'];
@@ -1865,14 +1897,17 @@ export type EmployeeStatus =
1865
1897
  | 'SUSPENDED';
1866
1898
 
1867
1899
  export type EmployeeTranslations = {
1900
+ description: Array<TranslationObject>;
1868
1901
  function: Array<TranslationObject>;
1869
1902
  };
1870
1903
 
1871
1904
  export type EmployeeTranslationsCreateInput = {
1905
+ description?: InputMaybe<Array<TranslationObjectInput>>;
1872
1906
  function?: InputMaybe<Array<TranslationObjectInput>>;
1873
1907
  };
1874
1908
 
1875
1909
  export type EmployeeTranslationsPatchInput = {
1910
+ description?: InputMaybe<Array<TranslationObjectInput>>;
1876
1911
  function?: InputMaybe<Array<TranslationObjectInput>>;
1877
1912
  };
1878
1913
 
@@ -1980,6 +2015,8 @@ export type EnterpriseSettings = {
1980
2015
  localizedTermsAndConditionsUrls: LocalizedTermsAndConditionsUrlsEnterpriseSetting;
1981
2016
  /** The URL of the enterprise's logo. */
1982
2017
  logoUrl: LogoUrlEnterpriseSetting;
2018
+ /** Toggles maintenance mode for the environment. */
2019
+ maintenanceMode: MaintenanceModeEnterpriseSetting;
1983
2020
  /** The default value for the amount of maximum concurrent appointments allowed. */
1984
2021
  maxConcurrentAppointments: MaxConcurrentAppointmentsEnterpriseSetting;
1985
2022
  /** This setting determines whether meeting rooms are enabled. */
@@ -2085,6 +2122,8 @@ export type EnterpriseSettingsPatchInput = {
2085
2122
  localizedTermsAndConditionsUrls?: InputMaybe<LocalizedTermsAndConditionsUrlsInput>;
2086
2123
  /** The URL of the enterprise's logo. */
2087
2124
  logoUrl?: InputMaybe<LogoUrlInput>;
2125
+ /** Toggles maintenance mode for the environment. */
2126
+ maintenanceMode?: InputMaybe<MaintenanceModeInput>;
2088
2127
  /** The default value for the amount of maximum concurrent appointments allowed. */
2089
2128
  maxConcurrentAppointments?: InputMaybe<MaxConcurrentAppointmentsInput>;
2090
2129
  /** This setting determines whether meeting rooms are enabled. */
@@ -2968,6 +3007,15 @@ export type LogoUrlEnterpriseSetting = {
2968
3007
  value: Scalars['String']['output'];
2969
3008
  };
2970
3009
 
3010
+ export type MaintenanceModeEnterpriseSetting = {
3011
+ createdAt: Scalars['ISO8601']['output'];
3012
+ /** 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. */
3013
+ manageable: Scalars['Boolean']['output'];
3014
+ updatedAt: Scalars['ISO8601']['output'];
3015
+ /** Toggles maintenance mode for the environment. */
3016
+ value: Scalars['Boolean']['output'];
3017
+ };
3018
+
2971
3019
  export type Managed = {
2972
3020
  attempts: Scalars['Int']['output'];
2973
3021
  createdAt: Scalars['ISO8601']['output'];
@@ -3318,6 +3366,7 @@ export type Mutation = {
3318
3366
  createDataShownSessionEvent: Scalars['Boolean']['output'];
3319
3367
  createDownloadAppointmentFileLink: Scalars['String']['output'];
3320
3368
  createDownloadCallbackRequestFileLink: Scalars['String']['output'];
3369
+ createDownloadDataExportLink: Scalars['String']['output'];
3321
3370
  createDownloadFileLink: Scalars['String']['output'];
3322
3371
  createDownloadUnavailabilityFileLink: Scalars['String']['output'];
3323
3372
  createEmployee: Employee;
@@ -3403,6 +3452,7 @@ export type Mutation = {
3403
3452
  patchCalendarEventTemplate: CalendarEventTemplate;
3404
3453
  patchCallbackRequest: CallbackRequest;
3405
3454
  patchCustomer: Customer;
3455
+ patchDataExport: DataExport;
3406
3456
  patchEmailTemplate: EmailTemplate;
3407
3457
  patchEmployee: Employee;
3408
3458
  patchEnterpriseSettings: EnterpriseSettings;
@@ -3500,6 +3550,7 @@ export type Mutation = {
3500
3550
  syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
3501
3551
  testMeetingRoomAccess: Scalars['Boolean']['output'];
3502
3552
  testWebhookConfiguration: WebhookDelivery;
3553
+ updateAppointmentDetails: Appointment;
3503
3554
  updateAppointmentLocation: Appointment;
3504
3555
  updateAppointmentMeetingType: Appointment;
3505
3556
  uploadSamlIdentityProviderMetadataByFile: SamlIntegration;
@@ -3627,6 +3678,12 @@ export type MutationCreateDownloadCallbackRequestFileLinkArgs = {
3627
3678
  };
3628
3679
 
3629
3680
 
3681
+ export type MutationCreateDownloadDataExportLinkArgs = {
3682
+ dataExportId: Scalars['Int']['input'];
3683
+ fileName: Scalars['String']['input'];
3684
+ };
3685
+
3686
+
3630
3687
  export type MutationCreateDownloadFileLinkArgs = {
3631
3688
  id: Scalars['String']['input'];
3632
3689
  };
@@ -4027,6 +4084,12 @@ export type MutationPatchCustomerArgs = {
4027
4084
  };
4028
4085
 
4029
4086
 
4087
+ export type MutationPatchDataExportArgs = {
4088
+ id: Scalars['Int']['input'];
4089
+ input: PatchDataExportInput;
4090
+ };
4091
+
4092
+
4030
4093
  export type MutationPatchEmailTemplateArgs = {
4031
4094
  id: Scalars['ID']['input'];
4032
4095
  input: EmailTemplatePatchInput;
@@ -4520,6 +4583,13 @@ export type MutationTestWebhookConfigurationArgs = {
4520
4583
  };
4521
4584
 
4522
4585
 
4586
+ export type MutationUpdateAppointmentDetailsArgs = {
4587
+ forceTimeSlotValidation?: InputMaybe<Scalars['Boolean']['input']>;
4588
+ id: Scalars['ID']['input'];
4589
+ input: UpdateAppointmentDetailsInput;
4590
+ };
4591
+
4592
+
4523
4593
  export type MutationUpdateAppointmentLocationArgs = {
4524
4594
  id: Scalars['ID']['input'];
4525
4595
  input: AppointmentLocationUpdateInput;
@@ -4876,6 +4946,10 @@ export type PasswordAuthenticationEnabledEnterpriseSetting = {
4876
4946
  value: Scalars['Boolean']['output'];
4877
4947
  };
4878
4948
 
4949
+ export type PatchDataExportInput = {
4950
+ active: Scalars['Boolean']['input'];
4951
+ };
4952
+
4879
4953
  export type PexipInfinityCall = {
4880
4954
  conferenceNode: Scalars['String']['output'];
4881
4955
  dialInCode: Scalars['String']['output'];
@@ -4957,6 +5031,9 @@ export type Query = {
4957
5031
  conversionAnalyticsUserOSFamilyChart: Chart;
4958
5032
  customer: Customer;
4959
5033
  customers: CustomerConnection;
5034
+ dataExport: DataExport;
5035
+ dataExportFiles: Array<DataExportFile>;
5036
+ dataExports: Array<DataExport>;
4960
5037
  definedAvailability: Array<DefinedAvailability>;
4961
5038
  definedAvailabilityEvents: Array<DefinedAvailabilityEvent>;
4962
5039
  emailTemplate: EmailTemplate;
@@ -5463,6 +5540,16 @@ export type QueryCustomersArgs = {
5463
5540
  };
5464
5541
 
5465
5542
 
5543
+ export type QueryDataExportArgs = {
5544
+ id: Scalars['Int']['input'];
5545
+ };
5546
+
5547
+
5548
+ export type QueryDataExportFilesArgs = {
5549
+ dataExportId: Scalars['Int']['input'];
5550
+ };
5551
+
5552
+
5466
5553
  export type QueryDefinedAvailabilityArgs = {
5467
5554
  employeeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5468
5555
  from: Scalars['ISO8601']['input'];
@@ -5539,6 +5626,7 @@ export type QueryExternalCalendarAccountsArgs = {
5539
5626
  after?: InputMaybe<Scalars['String']['input']>;
5540
5627
  before?: InputMaybe<Scalars['String']['input']>;
5541
5628
  createOnlineMeetings?: InputMaybe<Scalars['Boolean']['input']>;
5629
+ credentialsValid?: InputMaybe<Scalars['Boolean']['input']>;
5542
5630
  employeeId?: InputMaybe<Array<Scalars['ID']['input']>>;
5543
5631
  first?: InputMaybe<Scalars['Int']['input']>;
5544
5632
  id?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -6430,6 +6518,7 @@ export type ResourceType =
6430
6518
  | 'MEETING_TYPE'
6431
6519
  | 'OFFICE'
6432
6520
  | 'OFFICE_RELATION'
6521
+ | 'OFFICE_UNAVAILABILITY'
6433
6522
  | 'OIDC_INTEGRATION'
6434
6523
  | 'QUESTION'
6435
6524
  | 'SAML_INTEGRATION'
@@ -7501,6 +7590,19 @@ export type UnavailabilityType =
7501
7590
  | 'LISTING_EXCLUSIVITY'
7502
7591
  | 'USER_DEFINED';
7503
7592
 
7593
+ export type UpdateAppointmentDetailsInput = {
7594
+ answers?: InputMaybe<Array<AppointmentAnswerInput>>;
7595
+ appointmentParticipants?: InputMaybe<Array<AppointmentParticipantCreateInput>>;
7596
+ end?: InputMaybe<Scalars['ISO8601']['input']>;
7597
+ messageForCustomer?: InputMaybe<Scalars['String']['input']>;
7598
+ officeId?: InputMaybe<Scalars['ID']['input']>;
7599
+ start?: InputMaybe<Scalars['ISO8601']['input']>;
7600
+ token?: InputMaybe<Scalars['String']['input']>;
7601
+ updatedById?: InputMaybe<Scalars['ID']['input']>;
7602
+ updatedByType?: InputMaybe<UserType>;
7603
+ userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
7604
+ };
7605
+
7504
7606
  export type UserType =
7505
7607
  | 'CUSTOMER'
7506
7608
  | 'EMPLOYEE'
@@ -7922,6 +8024,12 @@ export type LogoUrlInput = {
7922
8024
  value?: InputMaybe<Scalars['String']['input']>;
7923
8025
  };
7924
8026
 
8027
+ export type MaintenanceModeInput = {
8028
+ manageable?: InputMaybe<Scalars['Boolean']['input']>;
8029
+ /** Toggles maintenance mode for the environment. */
8030
+ value?: InputMaybe<Scalars['Boolean']['input']>;
8031
+ };
8032
+
7925
8033
  export type MaxConcurrentAppointmentsInput = {
7926
8034
  manageable?: InputMaybe<Scalars['Boolean']['input']>;
7927
8035
  /** The default value for the amount of maximum concurrent appointments allowed. */