@pexip-engage-public/graphql 1.7.5 → 1.7.6

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
@@ -566,7 +566,7 @@ export type AppointmentSort = {
566
566
  };
567
567
  export type AppointmentSource = 'BACKOFFICE_APP' | 'OTHER' | 'PARTNER_BOOKING_APP' | 'PLUGIN';
568
568
  export type AppointmentStatus = 'ACCEPTED' | 'ALTERNATIVE_DATE_REQUESTED' | 'CANCELLED' | 'COMPLETED' | 'INCOMING_REQUEST' | 'NO_SHOW' | 'OUTGOING_INVITE';
569
- export type AppointmentTemplateName = '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' | 'EMPLOYEE_CREATED' | 'EXTERNAL_CALENDAR_ACCOUNT_BROKEN' | 'LOCATION_UPDATED' | 'MEETING_TYPE_UPDATED' | 'REMINDER' | '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';
569
+ export type AppointmentTemplateName = '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' | 'EMPLOYEE_CREATED' | 'EXTERNAL_CALENDAR_ACCOUNT_BROKEN' | 'LOCATION_UPDATED' | 'MEETING_TYPE_UPDATED' | 'REMINDER' | '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' | 'UPDATE_APPOINTMENT_DETAILS';
570
570
  export type AppointmentTextMessageMeta = {
571
571
  eventType: Scalars['String']['input'];
572
572
  };
@@ -1162,6 +1162,24 @@ export type CustomerSort = {
1162
1162
  direction: SortDirection;
1163
1163
  field: SortableCustomerFields;
1164
1164
  };
1165
+ export type DataExport = {
1166
+ active: Scalars['Boolean']['output'];
1167
+ createdAt: Scalars['ISO8601']['output'];
1168
+ exportMode: DataExportMode;
1169
+ id: Scalars['Int']['output'];
1170
+ lastSuccessfulExport?: Maybe<Scalars['ISO8601']['output']>;
1171
+ lastSuccessfulExportRecords?: Maybe<Scalars['Int']['output']>;
1172
+ type: DataExportType;
1173
+ updatedAt: Scalars['ISO8601']['output'];
1174
+ };
1175
+ export type DataExportFile = {
1176
+ /** Size of the file in bytes */
1177
+ contentLength?: Maybe<Scalars['Float']['output']>;
1178
+ lastModified?: Maybe<Scalars['ISO8601']['output']>;
1179
+ name: Scalars['String']['output'];
1180
+ };
1181
+ export type DataExportMode = 'FULL_SNAPSHOT' | 'INCREMENTAL';
1182
+ export type DataExportType = 'EXPERTISE' | 'MEETING_ROOMS' | 'MEETING_ROOM_SCHEDULING_SETTINGS' | 'OFFICE_RELATIONS';
1165
1183
  export type DataRetentionDurationEnterpriseSetting = {
1166
1184
  createdAt: Scalars['ISO8601']['output'];
1167
1185
  /** 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. */
@@ -2725,6 +2743,7 @@ export type Mutation = {
2725
2743
  createDataShownSessionEvent: Scalars['Boolean']['output'];
2726
2744
  createDownloadAppointmentFileLink: Scalars['String']['output'];
2727
2745
  createDownloadCallbackRequestFileLink: Scalars['String']['output'];
2746
+ createDownloadDataExportLink: Scalars['String']['output'];
2728
2747
  createDownloadFileLink: Scalars['String']['output'];
2729
2748
  createDownloadUnavailabilityFileLink: Scalars['String']['output'];
2730
2749
  createEmployee: Employee;
@@ -2810,6 +2829,7 @@ export type Mutation = {
2810
2829
  patchCalendarEventTemplate: CalendarEventTemplate;
2811
2830
  patchCallbackRequest: CallbackRequest;
2812
2831
  patchCustomer: Customer;
2832
+ patchDataExport: DataExport;
2813
2833
  patchEmailTemplate: EmailTemplate;
2814
2834
  patchEmployee: Employee;
2815
2835
  patchEnterpriseSettings: EnterpriseSettings;
@@ -2907,6 +2927,7 @@ export type Mutation = {
2907
2927
  syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
2908
2928
  testMeetingRoomAccess: Scalars['Boolean']['output'];
2909
2929
  testWebhookConfiguration: WebhookDelivery;
2930
+ updateAppointmentDetails: Appointment;
2910
2931
  updateAppointmentLocation: Appointment;
2911
2932
  updateAppointmentMeetingType: Appointment;
2912
2933
  uploadSamlIdentityProviderMetadataByFile: SamlIntegration;
@@ -2990,6 +3011,10 @@ export type MutationCreateDownloadCallbackRequestFileLinkArgs = {
2990
3011
  fileId: Scalars['String']['input'];
2991
3012
  id: Scalars['ID']['input'];
2992
3013
  };
3014
+ export type MutationCreateDownloadDataExportLinkArgs = {
3015
+ dataExportId: Scalars['Int']['input'];
3016
+ fileName: Scalars['String']['input'];
3017
+ };
2993
3018
  export type MutationCreateDownloadFileLinkArgs = {
2994
3019
  id: Scalars['String']['input'];
2995
3020
  };
@@ -3240,6 +3265,10 @@ export type MutationPatchCustomerArgs = {
3240
3265
  customerPatchInput: CustomerPatchInput;
3241
3266
  id: Scalars['ID']['input'];
3242
3267
  };
3268
+ export type MutationPatchDataExportArgs = {
3269
+ id: Scalars['Int']['input'];
3270
+ input: PatchDataExportInput;
3271
+ };
3243
3272
  export type MutationPatchEmailTemplateArgs = {
3244
3273
  id: Scalars['ID']['input'];
3245
3274
  input: EmailTemplatePatchInput;
@@ -3565,6 +3594,10 @@ export type MutationTestMeetingRoomAccessArgs = {
3565
3594
  export type MutationTestWebhookConfigurationArgs = {
3566
3595
  id: Scalars['ID']['input'];
3567
3596
  };
3597
+ export type MutationUpdateAppointmentDetailsArgs = {
3598
+ id: Scalars['ID']['input'];
3599
+ input: UpdateAppointmentDetailsInput;
3600
+ };
3568
3601
  export type MutationUpdateAppointmentLocationArgs = {
3569
3602
  id: Scalars['ID']['input'];
3570
3603
  input: AppointmentLocationUpdateInput;
@@ -3852,6 +3885,9 @@ export type PasswordAuthenticationEnabledEnterpriseSetting = {
3852
3885
  /** Whether password authentication is used. */
3853
3886
  value: Scalars['Boolean']['output'];
3854
3887
  };
3888
+ export type PatchDataExportInput = {
3889
+ active: Scalars['Boolean']['input'];
3890
+ };
3855
3891
  export type PexipInfinityCall = {
3856
3892
  conferenceNode: Scalars['String']['output'];
3857
3893
  dialInCode: Scalars['String']['output'];
@@ -3930,6 +3966,9 @@ export type Query = {
3930
3966
  conversionAnalyticsUserOSFamilyChart: Chart;
3931
3967
  customer: Customer;
3932
3968
  customers: CustomerConnection;
3969
+ dataExport: DataExport;
3970
+ dataExportFiles: Array<DataExportFile>;
3971
+ dataExports: Array<DataExport>;
3933
3972
  definedAvailability: Array<DefinedAvailability>;
3934
3973
  definedAvailabilityEvents: Array<DefinedAvailabilityEvent>;
3935
3974
  emailTemplate: EmailTemplate;
@@ -4326,6 +4365,12 @@ export type QueryCustomersArgs = {
4326
4365
  withAnonymized?: InputMaybe<Scalars['Boolean']['input']>;
4327
4366
  withDeleted?: InputMaybe<Scalars['Boolean']['input']>;
4328
4367
  };
4368
+ export type QueryDataExportArgs = {
4369
+ id: Scalars['Int']['input'];
4370
+ };
4371
+ export type QueryDataExportFilesArgs = {
4372
+ dataExportId: Scalars['Int']['input'];
4373
+ };
4329
4374
  export type QueryDefinedAvailabilityArgs = {
4330
4375
  employeeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4331
4376
  from: Scalars['ISO8601']['input'];
@@ -4384,6 +4429,7 @@ export type QueryExternalCalendarAccountsArgs = {
4384
4429
  after?: InputMaybe<Scalars['String']['input']>;
4385
4430
  before?: InputMaybe<Scalars['String']['input']>;
4386
4431
  createOnlineMeetings?: InputMaybe<Scalars['Boolean']['input']>;
4432
+ credentialsValid?: InputMaybe<Scalars['Boolean']['input']>;
4387
4433
  employeeId?: InputMaybe<Array<Scalars['ID']['input']>>;
4388
4434
  first?: InputMaybe<Scalars['Int']['input']>;
4389
4435
  id?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -5080,7 +5126,7 @@ export type RenderedTemplateMeta = {
5080
5126
  receiver: Receiver;
5081
5127
  timeZone: Scalars['String']['output'];
5082
5128
  };
5083
- export type ResourceType = 'ANSWER_OPTION' | 'API_CLIENT' | 'APPLIED_TEMPLATE' | 'APPOINTMENT' | 'AVAILABILITY_TEMPLATE' | 'AVAILABILITY_TIME_RANGE' | 'AVAILABILITY_TIME_RANGE_OFFICE' | 'CALENDAR_EVENT_TEMPLATE' | 'CALLBACK_REQUEST' | 'CUSTOMER' | 'EMAIL_TEMPLATE' | 'EMPLOYEE' | 'ENTERPRISE_SETTING' | 'EXTERNAL_CALENDAR' | 'EXTERNAL_CALENDAR_ACCOUNT' | 'FETCH_CONFIGURATION' | 'FILE' | 'FORM' | 'LEAD_SEGMENT' | 'LISTING' | 'MEETING_ROOM' | 'MEETING_TYPE' | 'OFFICE' | 'OFFICE_RELATION' | 'OIDC_INTEGRATION' | 'QUESTION' | 'SAML_INTEGRATION' | 'SAML_KEY_PROVIDER' | 'SCIM_TOKEN' | 'SUBJECT' | 'SUBJECT_GROUP' | 'TEXT_MESSAGE_TEMPLATE' | 'UNAVAILABILITY';
5129
+ export type ResourceType = 'ANSWER_OPTION' | 'API_CLIENT' | 'APPLIED_TEMPLATE' | 'APPOINTMENT' | 'AVAILABILITY_TEMPLATE' | 'AVAILABILITY_TIME_RANGE' | 'AVAILABILITY_TIME_RANGE_OFFICE' | 'CALENDAR_EVENT_TEMPLATE' | 'CALLBACK_REQUEST' | 'CUSTOMER' | 'EMAIL_TEMPLATE' | 'EMPLOYEE' | 'ENTERPRISE_SETTING' | 'EXTERNAL_CALENDAR' | 'EXTERNAL_CALENDAR_ACCOUNT' | 'FETCH_CONFIGURATION' | 'FILE' | 'FORM' | 'LEAD_SEGMENT' | 'LISTING' | 'MEETING_ROOM' | 'MEETING_TYPE' | 'OFFICE' | 'OFFICE_RELATION' | 'OFFICE_UNAVAILABILITY' | 'OIDC_INTEGRATION' | 'QUESTION' | 'SAML_INTEGRATION' | 'SAML_KEY_PROVIDER' | 'SCIM_TOKEN' | 'SUBJECT' | 'SUBJECT_GROUP' | 'TEXT_MESSAGE_TEMPLATE' | 'UNAVAILABILITY';
5084
5130
  export type SamlIntegration = {
5085
5131
  active: Scalars['Boolean']['output'];
5086
5132
  forceAuthentication: Scalars['Boolean']['output'];
@@ -5800,6 +5846,17 @@ export type UnavailabilityRevertInput = {
5800
5846
  startDate: Scalars['CalendarDate']['input'];
5801
5847
  };
5802
5848
  export type UnavailabilityType = 'APPOINTMENT' | 'EXTERNAL_CALENDAR' | 'LISTING_EXCLUSIVITY' | 'USER_DEFINED';
5849
+ export type UpdateAppointmentDetailsInput = {
5850
+ answers?: InputMaybe<Array<AppointmentAnswerInput>>;
5851
+ appointmentParticipants?: InputMaybe<Array<AppointmentParticipantCreateInput>>;
5852
+ end?: InputMaybe<Scalars['ISO8601']['input']>;
5853
+ messageForCustomer?: InputMaybe<Scalars['String']['input']>;
5854
+ start?: InputMaybe<Scalars['ISO8601']['input']>;
5855
+ token?: InputMaybe<Scalars['String']['input']>;
5856
+ updatedById?: InputMaybe<Scalars['ID']['input']>;
5857
+ updatedByType?: InputMaybe<UserType>;
5858
+ userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
5859
+ };
5803
5860
  export type UserType = 'CUSTOMER' | 'EMPLOYEE' | 'OTHER';
5804
5861
  export type ValidatedTimetableSlot = {
5805
5862
  availableMeetingRooms: Array<MeetingRoom>;