@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/CHANGELOG.md +10 -0
- package/dist/get-api-client.d.ts +1 -1
- package/dist/get-api-client.d.ts.map +1 -1
- package/dist/graphql-env.d.ts +392 -0
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +453 -0
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +59 -2
- package/dist/schema.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/graphql-env.ts +453 -0
- package/src/schema.ts +82 -1
package/src/schema.ts
CHANGED
|
@@ -680,7 +680,8 @@ export type AppointmentTemplateName =
|
|
|
680
680
|
| 'RESCHEDULED_BY_EMPLOYEE'
|
|
681
681
|
| 'SECONDARY_PARTICIPANTS_UPDATED'
|
|
682
682
|
| 'SECONDARY_PARTICIPANT_ADDED'
|
|
683
|
-
| 'SECONDARY_PARTICIPANT_REMOVED'
|
|
683
|
+
| 'SECONDARY_PARTICIPANT_REMOVED'
|
|
684
|
+
| 'UPDATE_APPOINTMENT_DETAILS';
|
|
684
685
|
|
|
685
686
|
export type AppointmentTextMessageMeta = {
|
|
686
687
|
eventType: Scalars['String']['input'];
|
|
@@ -1411,6 +1412,34 @@ export type CustomerSort = {
|
|
|
1411
1412
|
field: SortableCustomerFields;
|
|
1412
1413
|
};
|
|
1413
1414
|
|
|
1415
|
+
export type DataExport = {
|
|
1416
|
+
active: Scalars['Boolean']['output'];
|
|
1417
|
+
createdAt: Scalars['ISO8601']['output'];
|
|
1418
|
+
exportMode: DataExportMode;
|
|
1419
|
+
id: Scalars['Int']['output'];
|
|
1420
|
+
lastSuccessfulExport?: Maybe<Scalars['ISO8601']['output']>;
|
|
1421
|
+
lastSuccessfulExportRecords?: Maybe<Scalars['Int']['output']>;
|
|
1422
|
+
type: DataExportType;
|
|
1423
|
+
updatedAt: Scalars['ISO8601']['output'];
|
|
1424
|
+
};
|
|
1425
|
+
|
|
1426
|
+
export type DataExportFile = {
|
|
1427
|
+
/** Size of the file in bytes */
|
|
1428
|
+
contentLength?: Maybe<Scalars['Float']['output']>;
|
|
1429
|
+
lastModified?: Maybe<Scalars['ISO8601']['output']>;
|
|
1430
|
+
name: Scalars['String']['output'];
|
|
1431
|
+
};
|
|
1432
|
+
|
|
1433
|
+
export type DataExportMode =
|
|
1434
|
+
| 'FULL_SNAPSHOT'
|
|
1435
|
+
| 'INCREMENTAL';
|
|
1436
|
+
|
|
1437
|
+
export type DataExportType =
|
|
1438
|
+
| 'EXPERTISE'
|
|
1439
|
+
| 'MEETING_ROOMS'
|
|
1440
|
+
| 'MEETING_ROOM_SCHEDULING_SETTINGS'
|
|
1441
|
+
| 'OFFICE_RELATIONS';
|
|
1442
|
+
|
|
1414
1443
|
export type DataRetentionDurationEnterpriseSetting = {
|
|
1415
1444
|
createdAt: Scalars['ISO8601']['output'];
|
|
1416
1445
|
/** 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. */
|
|
@@ -3318,6 +3347,7 @@ export type Mutation = {
|
|
|
3318
3347
|
createDataShownSessionEvent: Scalars['Boolean']['output'];
|
|
3319
3348
|
createDownloadAppointmentFileLink: Scalars['String']['output'];
|
|
3320
3349
|
createDownloadCallbackRequestFileLink: Scalars['String']['output'];
|
|
3350
|
+
createDownloadDataExportLink: Scalars['String']['output'];
|
|
3321
3351
|
createDownloadFileLink: Scalars['String']['output'];
|
|
3322
3352
|
createDownloadUnavailabilityFileLink: Scalars['String']['output'];
|
|
3323
3353
|
createEmployee: Employee;
|
|
@@ -3403,6 +3433,7 @@ export type Mutation = {
|
|
|
3403
3433
|
patchCalendarEventTemplate: CalendarEventTemplate;
|
|
3404
3434
|
patchCallbackRequest: CallbackRequest;
|
|
3405
3435
|
patchCustomer: Customer;
|
|
3436
|
+
patchDataExport: DataExport;
|
|
3406
3437
|
patchEmailTemplate: EmailTemplate;
|
|
3407
3438
|
patchEmployee: Employee;
|
|
3408
3439
|
patchEnterpriseSettings: EnterpriseSettings;
|
|
@@ -3500,6 +3531,7 @@ export type Mutation = {
|
|
|
3500
3531
|
syncMicrosoftDynamicsIntegrationCustomAttributes: Scalars['Boolean']['output'];
|
|
3501
3532
|
testMeetingRoomAccess: Scalars['Boolean']['output'];
|
|
3502
3533
|
testWebhookConfiguration: WebhookDelivery;
|
|
3534
|
+
updateAppointmentDetails: Appointment;
|
|
3503
3535
|
updateAppointmentLocation: Appointment;
|
|
3504
3536
|
updateAppointmentMeetingType: Appointment;
|
|
3505
3537
|
uploadSamlIdentityProviderMetadataByFile: SamlIntegration;
|
|
@@ -3627,6 +3659,12 @@ export type MutationCreateDownloadCallbackRequestFileLinkArgs = {
|
|
|
3627
3659
|
};
|
|
3628
3660
|
|
|
3629
3661
|
|
|
3662
|
+
export type MutationCreateDownloadDataExportLinkArgs = {
|
|
3663
|
+
dataExportId: Scalars['Int']['input'];
|
|
3664
|
+
fileName: Scalars['String']['input'];
|
|
3665
|
+
};
|
|
3666
|
+
|
|
3667
|
+
|
|
3630
3668
|
export type MutationCreateDownloadFileLinkArgs = {
|
|
3631
3669
|
id: Scalars['String']['input'];
|
|
3632
3670
|
};
|
|
@@ -4027,6 +4065,12 @@ export type MutationPatchCustomerArgs = {
|
|
|
4027
4065
|
};
|
|
4028
4066
|
|
|
4029
4067
|
|
|
4068
|
+
export type MutationPatchDataExportArgs = {
|
|
4069
|
+
id: Scalars['Int']['input'];
|
|
4070
|
+
input: PatchDataExportInput;
|
|
4071
|
+
};
|
|
4072
|
+
|
|
4073
|
+
|
|
4030
4074
|
export type MutationPatchEmailTemplateArgs = {
|
|
4031
4075
|
id: Scalars['ID']['input'];
|
|
4032
4076
|
input: EmailTemplatePatchInput;
|
|
@@ -4520,6 +4564,12 @@ export type MutationTestWebhookConfigurationArgs = {
|
|
|
4520
4564
|
};
|
|
4521
4565
|
|
|
4522
4566
|
|
|
4567
|
+
export type MutationUpdateAppointmentDetailsArgs = {
|
|
4568
|
+
id: Scalars['ID']['input'];
|
|
4569
|
+
input: UpdateAppointmentDetailsInput;
|
|
4570
|
+
};
|
|
4571
|
+
|
|
4572
|
+
|
|
4523
4573
|
export type MutationUpdateAppointmentLocationArgs = {
|
|
4524
4574
|
id: Scalars['ID']['input'];
|
|
4525
4575
|
input: AppointmentLocationUpdateInput;
|
|
@@ -4876,6 +4926,10 @@ export type PasswordAuthenticationEnabledEnterpriseSetting = {
|
|
|
4876
4926
|
value: Scalars['Boolean']['output'];
|
|
4877
4927
|
};
|
|
4878
4928
|
|
|
4929
|
+
export type PatchDataExportInput = {
|
|
4930
|
+
active: Scalars['Boolean']['input'];
|
|
4931
|
+
};
|
|
4932
|
+
|
|
4879
4933
|
export type PexipInfinityCall = {
|
|
4880
4934
|
conferenceNode: Scalars['String']['output'];
|
|
4881
4935
|
dialInCode: Scalars['String']['output'];
|
|
@@ -4957,6 +5011,9 @@ export type Query = {
|
|
|
4957
5011
|
conversionAnalyticsUserOSFamilyChart: Chart;
|
|
4958
5012
|
customer: Customer;
|
|
4959
5013
|
customers: CustomerConnection;
|
|
5014
|
+
dataExport: DataExport;
|
|
5015
|
+
dataExportFiles: Array<DataExportFile>;
|
|
5016
|
+
dataExports: Array<DataExport>;
|
|
4960
5017
|
definedAvailability: Array<DefinedAvailability>;
|
|
4961
5018
|
definedAvailabilityEvents: Array<DefinedAvailabilityEvent>;
|
|
4962
5019
|
emailTemplate: EmailTemplate;
|
|
@@ -5463,6 +5520,16 @@ export type QueryCustomersArgs = {
|
|
|
5463
5520
|
};
|
|
5464
5521
|
|
|
5465
5522
|
|
|
5523
|
+
export type QueryDataExportArgs = {
|
|
5524
|
+
id: Scalars['Int']['input'];
|
|
5525
|
+
};
|
|
5526
|
+
|
|
5527
|
+
|
|
5528
|
+
export type QueryDataExportFilesArgs = {
|
|
5529
|
+
dataExportId: Scalars['Int']['input'];
|
|
5530
|
+
};
|
|
5531
|
+
|
|
5532
|
+
|
|
5466
5533
|
export type QueryDefinedAvailabilityArgs = {
|
|
5467
5534
|
employeeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5468
5535
|
from: Scalars['ISO8601']['input'];
|
|
@@ -5539,6 +5606,7 @@ export type QueryExternalCalendarAccountsArgs = {
|
|
|
5539
5606
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
5540
5607
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
5541
5608
|
createOnlineMeetings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5609
|
+
credentialsValid?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5542
5610
|
employeeId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5543
5611
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5544
5612
|
id?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -6430,6 +6498,7 @@ export type ResourceType =
|
|
|
6430
6498
|
| 'MEETING_TYPE'
|
|
6431
6499
|
| 'OFFICE'
|
|
6432
6500
|
| 'OFFICE_RELATION'
|
|
6501
|
+
| 'OFFICE_UNAVAILABILITY'
|
|
6433
6502
|
| 'OIDC_INTEGRATION'
|
|
6434
6503
|
| 'QUESTION'
|
|
6435
6504
|
| 'SAML_INTEGRATION'
|
|
@@ -7501,6 +7570,18 @@ export type UnavailabilityType =
|
|
|
7501
7570
|
| 'LISTING_EXCLUSIVITY'
|
|
7502
7571
|
| 'USER_DEFINED';
|
|
7503
7572
|
|
|
7573
|
+
export type UpdateAppointmentDetailsInput = {
|
|
7574
|
+
answers?: InputMaybe<Array<AppointmentAnswerInput>>;
|
|
7575
|
+
appointmentParticipants?: InputMaybe<Array<AppointmentParticipantCreateInput>>;
|
|
7576
|
+
end?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
7577
|
+
messageForCustomer?: InputMaybe<Scalars['String']['input']>;
|
|
7578
|
+
start?: InputMaybe<Scalars['ISO8601']['input']>;
|
|
7579
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
7580
|
+
updatedById?: InputMaybe<Scalars['ID']['input']>;
|
|
7581
|
+
updatedByType?: InputMaybe<UserType>;
|
|
7582
|
+
userCommunication?: InputMaybe<AppointmentUserCommunicationInput>;
|
|
7583
|
+
};
|
|
7584
|
+
|
|
7504
7585
|
export type UserType =
|
|
7505
7586
|
| 'CUSTOMER'
|
|
7506
7587
|
| 'EMPLOYEE'
|